
    @import url('fonts.css');
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body, html {
      height: 100%;
      font-family: 'Zawya Pro';
    }

    /* Slider Start */
    .home-slider {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }
    .home-slider__slide-1 {
      background-image: url('../images/bg.jpg');
    }
    .home-slider__slide-2 {
      background-image: url('../images/bg.jpg');
    }
    .home-slider__slide-3 {
      background-image: url('../images/bg.jpg');
    }
    .home-slider__slides {
      display: flex;
      transition: transform 0.5s ease-in-out;
      height: 100%;
    }
    .home-slider__slide {
      min-width: 100%;
      height: 100vh;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
    .home-slider__dots {
      position: absolute;
      bottom: 20px;
      right: 20px;
      display: flex;
      gap: 8px;
    }
    .home-slider__dot {
      width: 12px;
      height: 12px;
      background: white;
      border-radius: 50%;
      opacity: 0.5;
      cursor: pointer;
      transition: opacity 0.3s;
    }
    .home-slider__dot.active {
      opacity: 1;
    }

    /* Slider End */

    .home-logo {
      content:url(../images/logo.png);
    }

    header.scrolled .home-logo {
      content:url(../images/page-logo.png);
    }

    .banner {
      height: 100vh;
      /* background-image: url('../images/bg.png'); */
      background-size: cover;
      background-position: center;
    }
    .banner-inner{
        padding: 200px 0 0 130px;
        color: white;
        width: 80%;
    }
    .banner-inner .banner-header{
        font-size: 100px;
        line-height: 100px;
    }
    .banner-inner .banner-sub-header{
        font-size: 25px;
        padding-top: 50px;
        font-family: 'Submariner';
    }

    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 55px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 0 0 15px;
      background-color: transparent;
      color: white;
      transition: background-color 0.4s ease, color 0.4s ease;
      z-index: 1000;
      border-bottom: 1px solid white;
    }

    header.scrolled {
      background-color: white;
      color: #005000;
      border-bottom: 1px solid gray;
    }

    header.scrolled nav ul li a {
      font-weight: bold;
    }

    .header-left {
      display: flex;
      align-items: center;
      gap: 40px;
      height: 100%;
    }

    .logo {
      font-size: 24px;
      font-weight: bold;
      color: inherit;
      transition: color 0.4s ease;
      width: 150px;
      height: 100%;
      border-right: 1px solid white;
    }

    header.scrolled .logo{
      border-right: 1px solid gray;
    }

    .logo img {
      max-width: 100%;
      height: auto;
      padding: 12px 5px;
    }

    .top-info-bar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 30px;
        margin-left: 138px;
        display: flex;
        align-items: center;
        padding-left: 15px; /* Aligns with header padding */
        font-size: 14px;
        z-index: 1001;
        transition: background-color 0.4s ease, color 0.4s ease;
    }



    .top-info-bar span{
      padding-right: 30px;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 35px;
    }

    nav ul li{
      position: relative;
    }

    nav ul li:hover ul.submenu {
      display: block;
    }

    nav ul li a {
      text-decoration: none;
      color: inherit;
      transition: color 0.3s ease;
      font-family: 'Zawya Pro CondensedThin';
      font-size: 18pt;
    }

    nav ul li a i{
      margin-left: 3px;
    }

    nav ul li a:hover {
      border-bottom: 3px solid #cb942d;
      padding-bottom: 4px;
    }

    /* Submenu */
    ul.submenu {
      list-style: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: #444;
      display: none;
      min-width: 160px;
      z-index: 1000;
    }

    ul.submenu li a {
      display: block;
      padding: 10px;
      color: white;
      text-decoration: none;
      line-height: 1;
      font-weight: 100 !important;
    }

    ul.submenu li:hover {
      background: #555;
    }


    .header-right {
    display: flex;
    align-items: center;
    gap: 0; /* No gap between dropdown and button */
    height: 100%;
    }

    .language-select {
    font-family: 'Zawya Pro CondensedThin';
    font-size: 25px;
    margin: 0px 10px;
    padding-left: 10px;
    height: 100%;
    border: none;
    background-color: rgba(0, 0, 0, 0.3); /* translucent when transparent header */
    color: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-left: 1px solid white;
    }

    header.scrolled .language-select {
    color: black;
    border-left: 1px solid gray;
    background-color: rgba(0, 0, 0, 0);
    }


    .contacts-btn {
      font-family: 'Zawya Pro CondensedThin';
      letter-spacing: 3px;
      font-size: 15px;
      position: relative;
      background-color: #cb942d;
      color: white;
      margin-right: 10px;
      padding: 0px 10px;
      cursor: pointer;
      overflow: hidden;
      border:none;
      z-index: 1;
      transition: color 0.3s;
    }

    .contacts-btn::before {
      content: '';
      position: absolute;
      top: -100%;
      left: 0;
      width: 100%;
      height: 100%;
      background: #012f0b;
      z-index: -1;
      transition: top 0.3s;
    }

    .contacts-btn:hover::before {
      top: 0;
    }

    .contacts-btn:hover {
      color: white;
    }

   .proposal-btn {
    font-family: 'Zawya Pro CondensedThin';
    letter-spacing: 3px;
    font-size: 20px;
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 0 20px;
  background-color: #cb942d;
  color: white;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 0;
}

/* Hamburger Menu Start*/
    .hamburger-container {
      padding: 20px;
      display: none;
    }

   .hamburger-container .hamburger{
      cursor: pointer;
      width: 30px;
      height: 24px;
      position: relative;
    }

    .hamburger-container .hamburger span {
      position: absolute;
      height: 4px;
      width: 100%;
      background-color: #ce942d;
      border-radius: 2px;
      transition: all 0.4s ease;
    }

    .hamburger-container .hamburger span:nth-child(1) {
      top: 0;
    }

    .hamburger-container .hamburger span:nth-child(2) {
      top: 10px;
    }

    .hamburger-container .hamburger span:nth-child(3) {
      top: 20px;
    }







/* Hamburger Menu End*/

/* Background layer for hover effect */
.proposal-btn::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #012f0b;
  z-index: -1;
  transition: top 0.4s ease;
}

/* Slide black background from top on hover */
.proposal-btn:hover::before {
  top: 0;
}

/* Change text color on hover */
.proposal-btn:hover {
  color: white;
}

.mine-btn {
  font-family: 'Zawya Pro';
  font-size: 15px;
  position: relative;
  overflow: hidden;
  padding: 5px 25px;
  background-color: #cb942d;
  color: white;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 0;
  text-transform: uppercase;
  border-radius: 3px;
}

.mine-btn::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #012f0b;
  z-index: -1;
  transition: top 0.4s ease;
}

/* Slide black background from top on hover */
.mine-btn:hover::before {
  top: 0;
}

/* Change text color on hover */
.mine-btn:hover {
  color: white;
}

    /* Sidebar */
    .left-bar {
      font-family: 'Zawya Pro CondensedThin';
      font-size: 26px;
      font-weight: 100;
      position: fixed;
      top: 55px;
      left: 0;
      width: 50px;
      height: calc(100% - 55px);
      background-color: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      transform: rotate(180deg);
      color: white;
      transition: background-color 0.4s ease, color 0.4s ease;
      z-index: 999;
      border-left: 1px solid white;
    }
    .social-icons{
      top: 25px;
      position: absolute;
      transform: rotate(180deg);
    }

    .social-icons a{
      text-decoration: none;
      padding-bottom: 10px;
    }

    .social-icons a i{
      color: white;
      font-size: 20px;
    }

    .left-bar.scrolled .social-icons a i{
      color: black;
    }

    .left-bar.scrolled {
      background-color: white;
      color: black;
      border-left: 1px solid gray;
    }
    .body{
        padding: 0px 0 0 50px;
    }
    .introduction2,
    .our-journey,
    .our-products,
    .our-services,
    .our-projects,
    .latest-news,
    .our-clients{
      padding-left: 50px !important;
    }

    .home-section h2{
      font-size: 70px;
      line-height: 63px;
      width: 70%;
      font-family: 'Zawya Pro CondensedThin';
      text-transform: uppercase;
      color: #012f0b;
      margin-bottom: 2rem;
    }



   /* Service Popup Style Start*/
    .popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      display: none;
      z-index: 1000;
      color: white;
    }

    .popup-overlay.active {
      display: block;
    }

    .popup-section {
      position: absolute;
      width: 33.3333%;
      height: 100%;
      top: -100%;
      background-color: #172624;
      background-size: cover;
      transition: top 0.6s ease;
    }

    .section-left { left: 0; background-position: left center; }
    .section-middle { left: 33.3333%; background-position: center center; }
    .section-right { right: 0; background-position: right center; }

    .popup-overlay.show .section-right { top: 0; transition-delay: 0s; }
    .popup-overlay.show .section-middle { top: 0; transition-delay: 0.2s; }
    .popup-overlay.show .section-left { top: 0; transition-delay: 0.4s; }

    .popup-overlay.popup-hide .section-left { top: -100%; transition-delay: 0s; }
    .popup-overlay.popup-hide .section-middle { top: -100%; transition-delay: 0.2s; }
    .popup-overlay.popup-hide .section-right { top: -100%; transition-delay: 0.4s; }

    .popup-overlay.popup-hide .close-btn{
      top: -100%; transition-delay: 0.5s;
    }

    /* Form Container */
    .form-container {
      position: absolute;
      top: -100%;
      left: 0;
      width: 66.6666%;
      height: 100%;
      padding: 40px;
      box-sizing: border-box;
      overflow-y: scroll;
      scrollbar-width: none;
      z-index: 1100;
      color: white;
      display: flex;
      flex-direction: column;
      gap: 20px;
      transition: top 0.8s ease;
    }

    /* Hide scrollbar for Chrome, Edge, and Safari */
    .form-container::-webkit-scrollbar {
        display: none;
    }

    .popup-overlay.show .form-container {
      top: 0;
      transition-delay: 0.6s;
    }

    .popup-overlay.popup-hide .form-container {
      top: -100%;
      transition-delay: 0s;
    }

    .form-container h2 {
      font-size: 28px;
    }
    .form-row {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .form-row input, .form-row textarea {
      flex: 1 1 45%;
      padding: 12px;
      font-size: 18px;
      background: transparent;
      border: 2px solid white;
      color: white;
      border-radius: 5px;
    }

    textarea {
      flex: 1 1 100%;
    }

    .form-container button {
      padding: 12px;
      font-size: 18px;
      background-color: #d49a2b;
      border: none;
      color: white;
      border-radius: 5px;
      cursor: pointer;
      width: 200px;
      align-self: flex-start;
    }

    .form-container button:hover {
      background-color: #005000;
    }

    /* Info Section */
    .info-container {
      position: absolute;
      top: -100%;
      right: 0;
      width: 33.3333%;
      height: 100%;
      padding: 150px 45px 0 0;
      box-sizing: border-box;
      z-index: 1100;
      font-size: 24px;
      line-height: 1.8;
      text-align: right;
      transition: top 0.8s ease;
    }

    .popup-overlay.show .info-container {
      top: 0;
      transition-delay: 0.8s;
    }

    .popup-overlay.popup-hide .info-container {
      top: -100%;
      transition-delay: 0s;
    }

    .form-container::-webkit-scrollbar {
      width: 8px;
    }
    .form-container::-webkit-scrollbar-thumb {
      background-color: white;
      border-radius: 4px;
    }

    @media (max-width: 768px) {
      .banner-inner .banner-header {
            font-size: 50px;
            line-height: 50px;
        }
      .form-row {
        flex-direction: column;
        flex-wrap: nowrap;
      }

      .form-container, .info-container {
        width: 100%;
        text-align: left;
      }

      .info-container {
        display: none;
      }

      .form-container button {
        width: 100%;
      }
    }

    .input-group {
  position: relative;
  margin-bottom: 24px;
  flex: 1 1 45%;
}

.input-group input,
.input-group textarea,
.input-group select {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #d19a1d;
  color: #fff;
  width: 100%;
  padding: 0px 2px 8px 2px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s ease, color 0.3s ease;
  border-radius: 0%;
}

.input-group select .option{
  color: black;
}

.tc-checkbox{
  padding-right: 5px;
}

.input-group label {
    position: absolute;
    top: 16px;
    left: 0px;
    color: #7d8c7a;
    font-size: 12px;
    pointer-events: none;
    transition: all 0.3s ease;
}

/* When focused or has value */
.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:focus + label,
.input-group textarea:not(:placeholder-shown) + label {
  top: -17px;
  font-size: 14px;
  color: white;
}

.input-group input:focus,
.input-group textarea:focus {
  border-bottom-color: white;
  color: white;
}

/* Service Popup Style end*/
    .introduction {
      display: flex;
      justify-content: space-around;
      align-items: center;
      padding: 100px 20px;
      border-top: 5px solid #fff;
      background: #012f0b;
      color: #fff;
    }

    .stat {
      text-align: center;
      width: 20%;
    }

    .stat h2 {
      font-size: 3em;
      margin-bottom: 10px;
    }

    .stat p {
      font-size: 1.2em;
      line-height: 1.4em;
    }

    .divider {
      width: 2px;
      height: 100px;
      background: #aaa;
    }

    @media (max-width: 768px) {
      .introduction {
        display: block;
      }

      .stat {
          width: 100%;
      }

      .divider {
          width: 150px;
          height: 2px;
          margin: 20px auto;
      }
    }

    /* Introduction 2 start */

    .introduction2 {
      color: #012f0b;
      padding: 2rem;
    }

    .introduction2 .container {
      margin: 0 auto;
    }

    .introduction2 .highlight {
      font-size: 2.5rem;
      font-weight: 700;
      text-transform: uppercase;
      display: block;
    }

    .introduction2 .description {
      font-size: 1.1rem;
      max-width: 800px;
      margin: 2rem 0;
      line-height: 1.6;
      font-family: 'Submariner';
    }

    @media (max-width: 768px) {
      .introduction2 h1,
      .introduction2 .highlight {
        font-size: 1.8rem;
      }

      .introduction2 .description {
        font-size: 1rem;
      }

      .introduction2 .btn {
        width: 100%;
        text-align: center;
      }
    }

    /* Introduction 2 End */

    /* Our Journey Start */

    .our-journey {
      padding: 2rem;
      color: #012f0b;
    }

    /* .our-journey h2 {
      font-size: 2.2rem;
      text-transform: uppercase;
      font-weight: 700;
      margin-bottom: 2rem;
      color: #012f0b;
    } */

    .our-journey .timeline {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 2rem 0;
      position: relative;
      overflow: hidden;
    }

    .our-journey .timeline::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      z-index: 1;
    }

    .our-journey .year {
      position: relative;
      text-align: center;
      z-index: 2;
      flex: 1;
      min-width: 100px;
      margin-right: 4px;
    }

    .our-journey .year:hover::before{
      background-color: #cb942d;
      cursor: pointer;
      width: 18px;
      height: 18px;
    }

    .our-journey .year:hover span{
      color: #cb942d;
      cursor: pointer;
      font-size: 18px;
    }

    .our-journey .custom-tooltip {
      position: absolute;
      background-color: #cb942d;
      color: #fff;
      padding: 10px 10px;
      border-radius: 4px;
      font-size: 12px;
      width: 250px;
      z-index: 9999;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.2s;
      line-height: 12px;
    }

    .our-journey .year:hover .tooltip {
      opacity: 1;
    }

    .our-journey .year::before {
      content: '';
      width: 14px;
      height: 14px;
      background-color: #012f0b;
      border-radius: 50%;
      display: block;
      position: absolute;
      top: 0%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .our-journey .year span {
      font-weight: bold;
      color: #012f0b;
      display: block;
      border-top: 3px dashed #012f0b;
      line-height: 50px;
    }

    .our-journey .info-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      margin-top: 3rem;
      gap: 2rem;
    }

    .our-journey .info-item {
      flex: 1 1 250px;
      text-align: center;
      padding: 40px 20px;
      border: 1px solid #cb942d;
      border-radius: 15px;
    }

    .our-journey .info-item:hover {
      background-color: #005000;    
    }

    .our-journey .info-item:hover h3{
      color:white;
    }

    .our-journey .info-item h3 {
      font-size: 1.2rem;
      text-transform: uppercase;
      margin-bottom: 1rem;
      color: #000;
    }

    @media (max-width: 768px) {
      .our-journey h2 {
        font-size: 1.6rem;
        text-align: center;
      }

      .our-journey .info-grid {
        flex-direction: column;
        align-items: center;
      }

      .our-journey .timeline {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 1rem;
      }

      .our-journey .year {
        min-width: 80px;
      }
    }

    /* Our Journey End */

    /* Our Products start */

    .our-products {
        padding: 2rem;
        color: #012f0b;
    }

    /* .our-products h2 {
        font-size: 2.2rem;
        text-transform: uppercase;
        margin-bottom: 2.5rem;
        font-weight: 700;
    } */

   /* .our-products {
      padding: 2rem;
      text-align: center;
      background: #fff;
    }

    .our-products h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
    } */

    .our-products .carousel-container {
      position: relative;
      overflow: hidden;
      max-width: 100%;
      margin: 0 auto;
    }

    .our-products .carousel-track {
      display: flex;
      transition: transform 0.4s ease-in-out;
    }

    .our-products .product-card {
      flex: 0 0 100%;
      box-sizing: border-box;
      padding: 1rem;
      transition: transform 0.3s ease;
    }

    .our-products .product-card:hover {
      transform: translateY(-5px);
    }

    .our-products .product-card img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .our-products .product-card p {
      margin-top: 0.5rem;
      font-weight: bold;
    }

    .our-products .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: #333;
      color: #fff;
      border: none;
      padding: 0.6rem 1rem;
      cursor: pointer;
      z-index: 10;
      border-radius: 50%;
      font-size: 1.2rem;
      opacity: 0.7;
    }

    .our-products .carousel-btn:hover {
      opacity: 1;
    }

    .our-products .carousel-btn.prev {
      left: 10px;
    }

    .our-products .carousel-btn.next {
      right: 10px;
    }

    .our-products .view-all-container {
      margin-top: 1.5rem;
      text-align: center
    }

   /* .our-products .btn {
        background-color: #cb942d;
        color: white;
        border: none;
        padding: 0.7rem 2rem;
        font-size: 1rem;
        text-transform: uppercase;
        border-radius: 8px;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .our-products .btn:hover {
        background-color: #a57723;
    } */

    /* Responsive Settings */
    @media (min-width: 600px) {
      .our-products .product-card {
        flex: 0 0 50%;
      }
    }

    @media (min-width: 900px) {
      .our-products .product-card {
        flex: 0 0 25%;
      }
    }

    /* .our-products {
        padding: 2rem;
        color: #012f0b;
    }

    .our-products h2 {
        font-size: 2.2rem;
        text-transform: uppercase;
        margin-bottom: 2.5rem;
        font-weight: 700;
    }

    .our-products .products-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }

    .our-products .product-card {
        background: white;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        max-width: 320px;
        width: 100%;
        border-radius: 0.5rem;
    }

    .our-products .product-card img {
        width: 100%;
        height: auto;
        border-radius: 0.25rem;
        margin-bottom: 1rem;
    }

    .our-products .product-card p {
        font-weight: bold;
        text-transform: uppercase;
        font-size: 0.9rem;
        color: #012f0b;
    }

    .our-products .view-all-container {
        margin-top: 2.5rem;
        text-align: center;
    }

    .our-products .btn {
        background-color: #cb942d;
        color: white;
        border: none;
        padding: 0.7rem 2rem;
        font-size: 1rem;
        text-transform: uppercase;
        border-radius: 8px;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .our-products .btn:hover {
        background-color: #a57723;
    }

    @media (max-width: 768px) {
        .our-products .products-grid {
        flex-direction: column;
        align-items: center;
        }
    } */

    /* Our Products End */

    /* Our services start */

  .our-services {
    padding: 2rem;
    min-height: 370px;
  }



  .our-services .service-left{
    width: 30%;
    float: left;
  }

  .our-services .service-left p{
    margin-bottom: 20px;
  }

  .our-services .service-right{
    width: 67%;
    float: left;
    margin-left: 3%;
  }

  /* .our-services h2 {
    font-size: 2.2rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 700;
  } */

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 0 auto;
    text-align: left;
  }

  .service-item {
    font-size: 1.1rem;
    color: #000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
  }

  .service-item:hover {
    margin-left: 10px;
    transition: all 0.5s ease;
  }

  .service-item::before {
    content: "❯";
    color: #cb942d;
    font-size: 1.4rem;
    font-weight: bold;
  }

   @media (max-width: 768px) {
      .our-services .service-left,
      .our-services .service-right {
        width: 100%;
        margin-bottom: 1.5rem;
      }
    }

  /* Our services end */

  /* Our Projects start */
  .our-projects {
    padding: 2rem;
    color: #012f0b;
    clear: both;
  }

  /* .our-projects h2 {
    font-size: 2.2rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 700;
  } */

  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin: 0 auto;
  }

  .project {
    background-color: #fff;
    padding: 0.5rem;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
  }

  .project:hover {
    transform: translateY(-5px);
  }

  .project img {
    width: 100%;
  }

  .project p {
    margin-top: 0.8rem;
    font-size: 1rem;
    font-weight: bold;
    color: #012f0b;
    text-transform: uppercase;
  }
  /* Our Projects End */

  /* Latest News Start */
  .latest-news {
    padding: 3rem 1.5rem;
  }

  .news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  /* .news-header h2 {
    font-size: 2.2rem;
    color: #012f0b;
    text-transform: uppercase;
    font-weight: 700;
  } */

  .view-all {
    font-size: 1rem;
    text-decoration: underline;
    color: #9a6c00;
    font-weight: 500;
  }

  .news-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }

  .news-card {
    background: #fff;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    height:430px;
  }

  .news-card span {
    float: right;
    font-size: 30px;
    display: none;
    transition: opacity 1s ease-out;
    opacity: 0;
}

  .news-card:hover {
    transform: translateY(-5px);
  }
  .news-card:hover span{
    opacity: 1;
    display: block;
  }

  .news-card:hover img {
    height: 110px;
    transition: height 1s;
  }

  .news-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
  }

  .news-card .date {
    display: block;
    margin: 0.6rem 0 0.3rem;
    font-size: 0.9rem;
    color: #333;
  }

  .news-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .news-card h3 a {
    color: #012f0b;
    text-decoration: underline;
    font-weight: bold;
  }

  .news-card p {
    font-size: 0.9rem;
    color: #444;
  }
  /* Latest News End */

  /* Our Clients Start */
  .our-clients {
    padding: 2rem;
    color: #012f0b;
  }

  /* .our-clients h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 2rem;
  } */

  .client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }

  .client-logos img {
    max-width: 120px;
    height: auto;
    filter: grayscale(100%);
    transition: transform 0.3s, filter 0.3s;
  }

  .client-logos img:hover {
    transform: scale(1.05);
    filter: grayscale(0%);
  }
  /* Our Clients End */

  /* Footer Start */
   .contact-footer {
    background-color:#012f0b;
    color: #ffffff;
    padding: 3rem 4rem 1rem 4rem;
  }

  .contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10rem;
    margin: auto;
  }

  .contact-left {
    flex: 1 1 350px;
  }

  .contact-left h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 1rem;
  }

  .contact-left p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .enquiry-btn {
    display: inline-block;
    background-color: #cb942d;
    color: #fff;
    padding: 0.9rem 1.8rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    text-transform: uppercase;
  }

  .contact-right {
    display: flex;
    flex: 1 1 400px;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .column h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
  }

  .column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .column ul li {
    margin-bottom: 0.5rem;
  }

  .column ul li a {
    color: #fff;
    text-decoration: none;
  }

  .column p {
    margin: 0.4rem 0;
  }

  .footer-bottom {
    text-align: center;
    padding-top: 5rem;
    font-size: 0.95rem;
    color: #ddd;
  }
  .footer-img {
    float: right;
    position: absolute;
    right: 150px;
    padding-top: 190px;
  }

  .footer-img  p{
    text-align: center;
    margin-top: 20px;
    position: absolute;
    margin-left: 65px;
  }

  .footer-img img{
    width: 200px;
  }
  /* Footer End */
  
    /* Menu Popup Start */
    
    .menu-popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      display: none;
      z-index: 1000;
      color: white;
    }

    .menu-popup-overlay.active {
      display: block;
    }

    .menu-popup-overlay .popup-section {
      position: absolute;
      width: 33.3333%;
      height: 100%;
      top: -100%;
      background-color: #172624;
      background-size: cover;
      transition: top 0.6s ease;
    }

    .menu-popup-overlay .section-left { left: 0; background-position: left center; }
    .menu-popup-overlay .section-middle { left: 33.3333%; background-position: center center; }
    .menu-popup-overlay .section-right { right: 0; background-position: right center; }

    .menu-popup-overlay.show .section-right { top: 0; transition-delay: 0s; }
    .menu-popup-overlay.show .section-middle { top: 0; transition-delay: 0.2s; }
    .menu-popup-overlay.show .section-left { top: 0; transition-delay: 0.4s; }

    .menu-popup-overlay.popup-hide .section-left { top: -100%; transition-delay: 0s; }
    .menu-popup-overlay.popup-hide .section-middle { top: -100%; transition-delay: 0.2s; }
    .menu-popup-overlay.popup-hide .section-right { top: -100%; transition-delay: 0.4s; }

    .menu-popup-overlay .menu-container {
      position: absolute;
      top: -100%;
      left: 0;
      width: 100%;
      height: 100%;
      padding: 50px;
      box-sizing: border-box;
      overflow-y: scroll;
      scrollbar-width: none;
      z-index: 1100;
      color: white;
      display: flex;
      flex-direction: column;
      gap: 5px;
      transition: top 0.8s ease;
    }
    .menu-popup-overlay .menu-container h1 a{
      color: white;
      text-decoration: none;
    }
    .menu-popup-overlay .menu-container h1 a:hover{
      text-decoration: underline;
      text-decoration-color: #ce942d;
    }
    .menu-popup-overlay.popup-hide .close-btn{
       top: -100%; transition-delay: 0.5s; 
    }
    .hamburger-language-select{
      float: right;
      background: transparent;
      color: #ffffff;
      border: none;
      font-size: 20px;
    }
    .hamburger-language-select option{
      margin: 40px;
      background: rgba(0, 0, 0, 0.3);
      color: black
    }
    .hamburger-social-icons a{
      color: white;
      font-size: 25px;
      text-decoration: none;
      padding-right: 15px;
    }

    .hamburger-social-icons a:hover{
      color: #ce942d;
    }

    #hamburger-proposal-btn{
      height: 50px;
      width: 100%;
      display: block;
    }
    .menu-popup-overlay.show .menu-container {
      top: 0;
      transition-delay: 0.6s;
    }

    .menu-popup-overlay.popup-hide .menu-container {
      top: -100%;
      transition-delay: 0s;
    }

    .close-btn span {
      position: absolute;
      height: 4px;
      width: 100%;
      background-color: #ce942d;
      border-radius: 2px;
      transition: all 0.4s ease;
    }

    .close-btn {
      position: absolute;
      top: 20px;
      right: 50px;
      background: rgba(0, 0, 0, 0);
      color: white;
      padding: 10px 15px;
      border: none;
      cursor: pointer;
      z-index: 1200;
      font-size: 16px;
      border-radius: 5px;
    }

    .close-btn span {
      top: 10px;
      transform-origin: center;
    }

    .close-btn span:nth-child(1) {
      transform: rotate(45deg);
    }

    .close-btn span:nth-child(2) {
      transform: rotate(-45deg);
    }



    .form-container::-webkit-scrollbar {
      width: 8px;
    }
    .form-container::-webkit-scrollbar-thumb {
      background-color: white;
      border-radius: 4px;
    }
 /* Menu Popup End */

 /* Header responsive start */
    @media (max-width: 1199px) {
      .menu{
        display: none;
      }
      .hamburger-container {
          display: block;
        }
    }
     @media (max-width: 991px) {
        .menu{
          display: none;
        }
        .banner-inner{
          width:100%;
          padding: 200px 0 0 70px;
        }
        .top-info-bar{
          display: none;
        }
    }
    @media (max-width: 768px) {
    .body {
       padding: 0;
    }
    body .left-bar{
      display: none;
    }
    .header-right .language-select,
    .proposal-btn {
        display: none;
      }
    .contacts-btn {
      display: none;
    }
    .banner-inner {
      padding: 140px 40px 0 40px;
    }
    .our-journey .info-item {
      flex: 1 1 90px;
      width:100%
    }
    .menu-popup-overlay .menu-container {
      gap: 20px;
    }

      
    }
/* Header responsive end */

/* Mobile submenu start */
.menu-item-with-submenu .submenu-mobile {
  display: none;
  flex-direction: column;
  background: #fff;
  margin-left: 20px;
  border-left: 2px solid #cb942d;
  padding-left: 10px;
}
.menu-item-with-submenu:hover .submenu-mobile,
.menu-item-with-submenu:focus-within .submenu-mobile {
  display: flex;
}
.menu-item-with-submenu .submenu-toggle {
  cursor: pointer;
  font-size: 18px;
  margin-left: 8px;
  color: #cb942d;
  user-select: none;
}

.menu-item-with-submenu .submenu-mobile a{
  text-decoration: none;
  color: #172624;
  font-size: 25px;
}

.menu-item-with-submenu .submenu-mobile a:hover{
    text-decoration: underline;
    text-decoration-color: #ce942d;
}

.menu-item-with-submenu h1 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}
/* Mobile submenu end */
 