/* ======================
   RESET & BASE STYLES
====================== */

html,
body {
  overflow-x: hidden;
}


body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #2d2d2d;
}

/* ======================
   NAVBAR STYLES
====================== */
.navbar {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-color: #f4c04d;
  height: 70px;
  padding: 0;
  position: relative;
  z-index: 1000;
}

.navbar-item {
  flex: 1;
  text-align: center;
  font-size: 1em;
  font-weight: 500;
  text-decoration: none;
  color: #2d2d2d;
  padding: 16px 0;
  border-right: 1px solid #fff;
  transition: background 0.3s ease;
}

.navbar-item:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.navbar-item:first-child {
  border-left: none;
}

/* Logo Tab */
.logo-tab {
  background-color: #fff;
  border-bottom-right-radius: 60px;
  height: 70px;
  /* height: 100%; */
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: none;
}

.nav-logo {
  height: 45px;
  width: auto;
  display: block;
}

/* Divider (if used) */
.divider {
  height: 24px;
  width: 1px;
  background-color: #fff;
}

/* HAMBURGER MENU (hidden by default */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 15px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 15px;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background-color: #2d2d2d;
  border-radius: 2px;
}

/* ======================
   RESPONSIVE DESIGN
====================== */

/* Mobile View (<=768px) */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    height: 50px;
  }

  .logo-tab {
    background-color: #fff;
    border-bottom-right-radius: 60px;
    height: 70px;
    /* height: 100%; */
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex: none;
    padding: 0;
}

  .nav-logo {
    height: 40px;
  }

  .navbar-item {
    display: none;
    width: 100%;
    text-align: left;
    padding: 12px 10px;
    border: none;
    background-color: #f4c04d;
    font-size: 16px;
  }

  .navbar-item.show {
    display: block;
  }

  .hamburger {
    display: flex;
  }
}


/* HOME PAGE STYLES */

/* HERO-STATS WRAPPER */
.hero-stats-wrapper {
  position: relative;
}

/* HERO SECTION */
.hero {
  position: relative;
  background: url("../images/home-bg.jpg") center/cover no-repeat;
  height: 550px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 2, 118, 0.15), rgba(0, 2, 118, 0.2));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  text-align: left;
  /* padding: 40px 30px; */
}

.hero-title {
  /* font-size: 40px; */
  font-weight: 500;
  margin-bottom: 18px;
  text-align: left;
  font-family: 'Iowan Old Style';
  color: white;
  font-size: 2em;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-desc {
  font-size: 25px;
  margin-bottom: 32px;
  color: #e0e0e0;
  font-family: 'Iowan Old Style';
  letter-spacing: 1px
}

.hero-cta {
  display: flex;
  gap: 20px;
}

.hero-cta button {
  background: #FBC23D;
  color: #2d2d2d;
  border: none;
  border-radius: 6px;
  font-size: 1em;
  padding: 12px 28px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

.hero-cta button:hover {
  background: #ffd700;
}

/* EXPERIENCE LOGO */
.experience-logo-wrapper {
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;

}

.experience-logo-wrapper img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .hero {
    height: 700px;
  }

  .experience-logo-wrapper {
    display: none;
  }

  .hero-desc,
  .hero-cta {
    align-content: center;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 15px;
  }

  .hero-title {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 25px;
    font-weight: 700;
    align-content: center;
  }
}


/* STATS BAR */
.stats-bar-home {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  /* padding-top:10px; */
  padding-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  gap: 50px;
  flex-wrap: wrap;
}

.stat-home {
  text-align: center;
  min-width: 220px;
}

.stat-number-home {
  font-size: 2em;
  font-weight: bold;
  color: #2d2d2d;
}

.stat-label-home {
  font-size: 1em;
  color: #444;
  /* margin-top: 6px; */
}

.stat-divider {
  height: 114px;
  width: 1px;
  background-color: #361A1B;
}

@media (max-width: 768px) {
  .stats-bar-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px 10px;
  }

  .stat-home {
    min-width: unset;
    font-size: 14px;
  }

  .stat-number-home {
    font-size: 1.6em;
  }

  .stat-label-home {
    font-size: 0.95em;
    line-height: 1.4;
    margin-top: 6px;
  }

  .stat-divider {
    display: none;
  }
}

/* Our Solutions Section */

.solution-card-link {
  color: #fff;
  text-decoration: none;
}

.solutions-section {
  max-width: 1100px;
  margin: 20px auto 20px auto;
  padding: 10px 20px 10px 20px;
  /* background: #faf9f7; */
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.solutions-title {
  font-size: 2em;
  font-family: 'Iowan Old Style', serif;
  color: #3d2c1b;
  margin-bottom: 32px;
  font-weight: 600;
}

.solutions-grid {
  display: flex;
  justify-content: space-between;
  gap: 0;
}

.solution-card {
  position: relative;
  flex: 1;
  min-width: 240px;
  height: 320px;
  overflow: hidden;
  border-right: 1px solid #e0e0e0;
  background: #eee;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 5px;
}

.solution-card:last-child {
  border-right: none;
}

.solution-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.85);
  z-index: 1;
  transition: transform 0.3s;
}

.solution-card:hover .solution-image {
  transform: scale(1.04);
}

.solution-label {
  position: relative;
  z-index: 3;
  font-size: 1.18em;
  font-family: 'Iowan Old Style', serif;
  color: #2d2d2d;
  font-weight: 500;
  padding: 15px 10px 5px 10px;
  width: 100%;
  background: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
  border-radius: 0 0 6px 6px;
  min-height: 80px;
  box-sizing: border-box;
}

.solutions-footer {
  margin-top: 24px;
  font-size: 1.08em;
  color: #6b4b1c;
  letter-spacing: 0.02em;
  font-family: 'Iowan Old Style', serif;
  font-weight: 500;
}

/* Make horizontal scroll on small screens */
@media (max-width: 768px) {
  .solutions-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .solutions-grid {
    flex-wrap: nowrap;
    width: max-content;
  }

  .solution-card {
    flex: 0 0 280px;
    border-right: 1px solid #e0e0e0;
    border-bottom: none;
  }

  .solution-card:last-child {
    border-right: none;
  }
}

.solutions-wrapper {
  position: relative;
  padding: 20px 0;
}

.solutions-scroll-wrapper {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.solutions-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.left-solution-arrow,
.right-solution-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  background-color: rgba(209, 207, 202, 0.9);
  color: rgb(95, 92, 92);
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  user-select: none;
}

.left-solution-arrow {
  left: 0;
}

.right-solution-arrow {
  right: 0;
}


/* Trusted Clients Section */
.trusted-title {
  font-family: Iowan Old Style;
  font-weight: 700;
  font-size: 35px;
  line-height: 40px;
  letter-spacing: 0%;
  color: #361A1B;

  margin-top: 100px;
  text-align: center;
}

.trusted-logos {
  text-align: center;
  padding-inline: 30px;
}

.trusted-logos img {
  margin: 30px;
  max-width: 150px;
}

@media (max-width: 768px) {
  .trusted-logos {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px;
    scroll-behavior: smooth;
  }

  .trusted-logos img {
    max-width: 110px;
    height: auto;
    flex-shrink: 0;
  }

  .trusted-logos {
    display: flex;
    overflow-x: scroll;
    scroll-behavior: smooth;
    gap: 30px;
    padding: 10px 50px;
    scrollbar-width: none;
  }

  .trusted-logos::-webkit-scrollbar {
    display: none;
  }

  .trusted-logos img {
    flex-shrink: 0;
    max-width: 160px;
    height: auto;
    transition: transform 0.3s ease;
  }

  .trusted-logos img:hover {
    transform: scale(1.05);
  }

  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    background-color: rgba(164, 161, 153, 0.9);
    color: #2d2d2d;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    user-select: none;
  }

  .left-arrow {
    left: 10px;
  }

  .right-arrow {
    right: 10px;
  }

  .trusted-wrapper {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
  }

  .trusted-title {
    font-family: Iowan Old Style;
    font-weight: 700;
    font-size: 35px;
    text-align: center;
    margin-top: 30px;
    color: #361A1B;
  }
}

.active {
  background-color: #996c28;
}

/* Project Section */
.container {
  margin: 40px auto;
  padding: 20px;
  display: flex;
  gap: 40px;
  max-width: 1100px;
  flex-wrap: wrap;
}

/* Project Section */
.colored-container {
  padding: 50px;
  background: rgb(54, 26, 27, 0.05);
}

.project-image img {
  width: 320px;
  max-width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}

.project-content-home {
  flex: 1;
  min-width: 280px;
}

.project-title {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 18px;
  color: #2d2d2d;
}

.project-description {
  font-size: 1.11em;
  margin-bottom: 16px;
  color: #333;
  line-height: 1.6;
}

.highlights-title {
  font-weight: bold;
  color: #b22222;
  margin-bottom: 8px;
  font-size: 1.08em;
}

.highlights-list {
  margin: 0 0 18px 0;
  padding-left: 20px;
}

.highlights-list li {
  margin-bottom: 7px;
  font-size: 1em;
}

@media (max-width: 768px) {
  .project-image img {
    max-width: 100%;
  }

  .colored-container {
    padding: 0px;
  }

  .well-said-title {
    padding-top: 30px;
  }
}

.cta-btn {
  display: inline-block;
  background: #FBC23D;
  color: #2d2d2d;
  font-weight: 600;
  font-size: 1.1em;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  margin-top: 14px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  text-decoration: none;
  transition: background 0.2s;
  text-align: center;

}

.cta-btn:hover {
  background: #ffd700;
}

.footer-contact-btn {
  margin-bottom: 15px;
  font-size: 28px;
  font-weight: 700;
  font-family: 'Exo', sans-serif;
  color: #673536;
  cursor: pointer;
  margin-bottom: 10px;
  text-decoration: none;

}

.footer-contact-btn :hover {
  text-decoration-line: underline;
  transition: background 0.2s;
  color: #ffd700;
}

.well-said-section {
  max-width: 1100px;
  margin: 70px auto 40px auto;
  background: #faf7f2;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  padding: 38px 34px 36px 34px;
  font-family: 'Iowan Old Style', serif;
}

.well-said-header {
  text-align: center;
  margin-bottom: 18px;
  position: relative;
}

.well-said-intro {
  font-size: 1em;
  color: #7a6a4f;
  margin-bottom: 2px;
}

.well-said-title {
  font-size: 2.1em;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 6px;
}

.well-said-featured {
  font-size: 1.02em;
  color: #a08c6c;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.well-said-card {
  display: flex;
  background: #f1f0ef;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  margin-top: 18px;
  align-items: stretch;
}

.well-said-img {
  flex: 0 0 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e5e3df;
}

.well-said-img img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin: 14px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.well-said-content {
  flex: 1;
  padding: 28px 32px 20px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.well-said-post-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 6px;
}

.well-said-meta {
  font-size: 0.98em;
  color: #7a6a4f;
  margin-bottom: 14px;
}

.well-said-snippet {
  font-size: 1.07em;
  color: #3d2c1b;
  margin-bottom: 22px;
  line-height: 1.6;
}

.well-said-btn {
  display: inline-block;
  background: #FBC23D;
  color: #2d2d2d;
  font-weight: bold;
  font-size: 1.08em;
  border: none;
  border-radius: 7px;
  padding: 12px 28px;
  text-decoration: none;
  transition: background 0.2s;
  text-align: center;
}

.well-said-btn:hover {
  background: #ffd700;
}

@media (max-width: 900px) {
  .well-said-card {
    flex-direction: column;
    align-items: center;
  }

  .well-said-img {
    justify-content: center;
    width: 100%;
  }

  .well-said-content {
    padding: 20px 10px 16px 10px;
  }
}


/* About Us Page Specific */

.about-hero {
  background: url('../images/home-bg.jpg') center/cover no-repeat;
  height: 200px;
  position: relative;
}

.about-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.about-content {
  flex: 2;
  font-size: 1.05em;
  line-height: 1.7;
  color: #2d2d2d;
}

.about-content p {
  margin-bottom: 18px;
  font-family: Iowan Old Style;
}

.about-values {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-size: 1.2em;
  font-weight: bold;
  color: #3a2d2d;
}

.value-block {
  border-left: 4px solid #FBC23D;
  padding-left: 14px;
}


/* Mission & Edge */
.mission-edge {
  max-width: 1000px;
  margin: 60px auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.mission-box,
.edge-box {
  flex: 1;
  background: #fbc23d;
  padding: 15px 40px;
  border-radius: 8px;
  clip-path: polygon(0% 0%, 80% 0%, 100% 50%, 80% 100%, 0% 100%, 10% 50%);
  color: #3d2d1d;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.mission-box p,
.edge-box li {
  text-align: left;
  max-width: 100%;
  line-height: 1.5;
  margin: 0;
  padding: 5px 50px 5px 30px;
  /* font-size: 20px; */
  font-weight: 500;
}

.edge-box ul {
  /* padding-left: 20px; */
  margin: 0;
}

.edge-box li {
  list-style-type: disc;
  /* margin-bottom: 8px; */
}

.leadership-section {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
}

.section-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #2d2d2d;
}

.leader-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.leader-left {
  flex: 1;
  max-width: 300px;
}

.leader-name {
  font-size: 1.4em;
  font-weight: bold;
  color: #361a1b;
  margin-bottom: 4px;
}

.leader-title {
  font-size: 1em;
  color: #5a423c;
  margin-bottom: 14px;
}

.leader-photo {
  width: 100%;
  max-width: 280px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.leader-description {
  flex: 2;
  font-size: 1.05em;
  line-height: 1.7;
  color: #2d2d2d;
  margin-top: 65px;
  text-align: justify;
}


@media (max-width: 768px) {
  .about-section {
    display: flex;
    flex-direction: column;
  }

  .about-values {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    order: 1;
    margin-bottom: 20px;
    height: 100%;
  }

  .value-block {
    border-left: none;
    /* border-top: 4px solid #FBC23D; */
    padding-left: 0;
    width: 100%;
    max-width: 300px;
    text-align: center;
    height: 100%;
    font-size: 20px;
  }

  .about-content {
    order: 0;
    max-width: 100%;
    text-align: justify;
  }

  .mission-edge {
    flex-direction: column;
    gap: 15px;
    padding: 0;
  }

  .mission-box p,
  .edge-box li {
    padding: 0 10px;
  }

  .mission-box,
  .edge-box {
    width: 100%;
    border-radius: 0;
    clip-path: none;
    margin: 0;
    padding: 15px 10px;
    box-shadow: none;
    align-items: center;
    text-align: center;
  }

  .leader-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .leader-left {
    max-width: none;
    flex: none;
    text-align: center;
    margin-bottom: 20px;
  }

  .leader-photo {
    max-width: 200px;
    margin: 0 auto 15px auto;
    display: block;
  }

  .leader-name {
    font-size: 1.5em;
    margin-bottom: 6px;
  }

  .leader-title {
    margin-bottom: 10px;
  }

  .leader-description {
    flex: none;
    margin-top: 0;
    text-align: justify;
    width: 100%;
  }
}

.certificates-section,
.subsidiaries-section {
  max-width: 1100px;
  margin: 80px auto 60px;
  padding: 0 20px;
}

.certificates-content {
  display: flex;
  flex-direction: row;
  gap: 50px;
  align-items: flex-start;
}

.certificates-content p {
  flex: 0 0 35%;
  margin: 0;
  font-size: 1.05em;
  line-height: 1.6;
  color: #333;
}

.certificates-images {
  flex: 0 0 65%;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.certificates-images img {
  width: 130px;
  height: auto;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.subsidiaries-section p {
  font-size: 1.05em;
  line-height: 1.7;
  color: #2d2d2d;
}

.stats-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #fbc23d;
  padding: 30px 10px;
  flex-wrap: wrap;
  border-top: 4px solid #dadada;
  border-bottom: 4px solid #dadada;
}

.stat {
  text-align: center;
  min-width: 160px;
  padding: 10px;
}

.stat-number {
  font-size: 1.8em;
  font-weight: bold;
  color: #361a1b;
}

.stat-label {
  font-size: 1em;
  margin-top: 6px;
  color: #5a423c;
  line-height: 1.4;
}


/* ======================SOLUTIONS PAGE STYLES====================== */


/* Hero Section */
.solutions-hero {
  background: url('../images/home-bg.jpg') center/cover no-repeat;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}



/* Flex Layout for Sidebar + Content */
.solutions-wrapper {
  display: flex;
  max-width: 1512px;
  margin: 40px auto;
  padding: 0 20px;
  box-sizing: border-box;
  gap: 30px;
}

/* Sidebar */
.solutions-sidebar {
  width: 30%;
  box-sizing: border-box;
}

.solutions-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.solutions-sidebar li {
  background: #fbc23d;
  clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
  color: #3a2a10;
  font-weight: bold;
  font-size: 0.95em;
  transition: background 0.3s;
}

.solutions-sidebar li:hover {
  background: #e1a600;
}

.solutions-sidebar a {
  display: block;
  padding: 14px 16px;
  text-decoration: none;
  color: inherit;
}

/* Main Content */
.solutions-content {
  width: 70%;
}

.solutions-content h2 {
  font-size: 1.6em;
  margin-bottom: 14px;
}

.solutions-content p {
  line-height: 1.6;
}

.solution-img {
  width: 100%;
  max-width: 580px;
  margin-top: 24px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: block;
}

.inactive-sidebar {
  display: none;
}

.solutions-dropdown-container,
.solutions-dropdown-title,
.solutions-dropdown-content {
  display: none;
}

@media (max-width: 768px) {

    .solutions-dropdown-content {
    display: none;
    background-color: white;
    width: 98%;
    align-items: center;
    text-align: justify;
    margin: 0 auto;
    padding: 10px;

  }

  .solutions-sidebar,
  .solutions-content,
  .solutions-wrapper {
    display: none;
  }

  .solutions-wrapper {
    display: none;
  }

  .solutions-dropdown-container {
    display: block;
    align-items: center;
  }

  .solutions-dropdown-box {
    border: 2px solid #ccc;
    border-radius: 8px;
    padding: 2px;
    width: 100%;
    margin: 2px auto;
    background: #fbc23d;
    font-family: Iowan Old Style;
    transition: background 0.3s;
    align-items: center;
    justify-content: center
  }

  .solutions-dropdown-box.open {
    background: #fff;
  }


  .projects-sidebar,
  .projects-wrapper {
    display: none;
  }

  .project-title {
    font-size: 15px;
    font-weight: bold;
    color: #361A1B;
    margin-bottom: 10px;
  }

  .project-hide-icon {
    margin-right: 10px;
    transition: transform 0.3s ease;
  }

  .solutions-dropdown-title {
    font-size: 1.2em;
    font-weight: bold;
    color: #361A1B;
    margin-bottom: 20px;
    padding: 0%;
  }

}



/* PROJECTS NEW STYLES */

.projects-wrapper {
  display: flex;
  max-width: 1512px;
  margin: 40px auto;
  padding: 0 20px;
  box-sizing: border-box;
  gap: 30px;
}

/* Sidebar */
.projects-sidebar {
  width: 30%;
  box-sizing: border-box;
}

.projects-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.projects-sidebar li {
  background: #fbc23d;
  clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
  color: #3a2a10;
  font-weight: bold;
  font-size: 0.95em;
  transition: background 0.3s;
}

.projects-sidebar li:hover {
  background: #e1a600;
}

.projects-sidebar a {
  display: block;
  padding: 14px 16px;
  text-decoration: none;
  color: inherit;
}

/* Main Content PROJECTS */
.projects-content {
  width: 70%;
}

.projects-sidebar {
  width: 30%;
  box-sizing: border-box;
}

.projects-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.projects-sidebar li {
  background: #fbc23d;
  clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
  color: #3a2a10;
  font-weight: bold;
  font-size: 0.95em;
  transition: background 0.3s;
}

.projects-sidebar li:hover {
  background: #e1a600;
}

.projects-sidebar a {
  display: block;
  padding: 14px 16px;
  text-decoration: none;
  color: inherit;
}

.projects-dropdown,
.projects-dropdown-container {
  display: none;
}


@media (max-width: 768px) {
  .projects-dropdown-container {
    display: block;
  }

  .project-box {
    border: 2px solid #ccc;
    border-radius: 8px;
    padding: 2px;
    width: 100%;
    margin: 2px auto;
    background: #fbc23d;
    font-family: Iowan Old Style;
    transition: background 0.3s;
  }

  .project-box.open {
    background: #fff;
  }

  .project-content {
    display: none;
    padding: 0px;
  }

  .projects-dropdown {
    background: #fbc23d;
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }

  .projects-sidebar,
  .projects-wrapper {
    display: none;
  }

  .project-title {
    font-size: 15px;
    font-weight: bold;
    color: #361A1B;
    margin-bottom: 10px;
  }

  .project-hide-icon {
    margin-right: 10px;
    transition: transform 0.3s ease;
  }
}


/* CAREERS STYLES */

.openings-container-main {
  background: #361A1B0D;
  max-width: 1200px;
  margin: 40px auto 40px auto;
  padding-top: 10px;
  padding-bottom: 10px;
}

.openings-container {
  max-width: 1100px;
  margin: 70px auto 40px auto;
  background: #ffffffff;
  margin-top: 25px;
  padding-right: 25px;
  padding-left: 25px;
}

.openings-title {
  font-family: Iowan Old Style;
  font-weight: 700;
  font-size: 25px;
  text-align: left;
  margin-top: 30px;
  color: #673536;
}

.opening-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}

.opening-details-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.blog-featured,
.blog-more {
  margin: 60px auto;
  padding: 0 20px;
  max-width: 1000px;
}

.section-subtitle {
  font-size: 1.2em;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 20px;
}

.blog-card {
  display: flex;
  gap: 20px;
  background: #f8f8f8;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.blog-card img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
}

.blog-details {
  flex: 1;
}

.blog-title {
  font-size: 1.3em;
  margin-bottom: 6px;
  color: #2d2d2d;
}

.blog-meta {
  font-size: 0.9em;
  color: #777;
  margin-bottom: 10px;
}

.blog-excerpt {
  font-size: 1em;
  margin-bottom: 16px;
  color: #444;
}

@media (max-width: 768px) {
  .blog-card {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    height: auto;
    padding: 20px;
  }

  .navbar-tabs {
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
  }

  .container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .project-content-home {
    flex-direction: column;
    justify-content: center;
  }

  .solutions-dropdown-content .cta-btn {
    width: 80%;
    margin: 0 10%;
  }

  .hero-content {
    text-align: left;
  }

  .hero-cta {
    justify-content: center;
  }
}

/* BLOG READ MORE */
.blog-main-container {
  display: flex;
  justify-content: center;
  margin-top: -40px;
}

.blog-inner-container {
  /* style=" */
  background: #fff;
  padding: 48px 38px 32px 38px;
  width: 75%;
  max-width: 850px;
  border-radius: 10px;
  box-shadow: 0 8px 22px 0 rgba(50, 50, 93, .05);
  /* " */
}

/* footer style */
.footer-section {
  background-color: #02312D;
}

.footer-items {
  color: #fff !important;
  padding-right: 0px;
}

.footer-link {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 300;
}

.footer-link:hover {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
}