  :root {
  --primary: #3f9ed7;
  --secondary: #88d0e6;
  --dark: #222;
  --light: #fff;
  --muted: #333;
  --accent: #88d0e6;
  --section-bg: #e8dcc3;
  --overlay: rgba(0, 0, 0, 0.6);

  --brown: #88d0e6;
  --beige: #E1F3FC;

    --black: black;

}
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
 
    }
 
@font-face {
  font-family: 'ProximaNova-Reg';
  src: url('./fonts/ProximaNova-Reg.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {

    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    font-family: 'ProximaNova-Reg', sans-serif;

  color: var(--dark);
  background: var(--light);
  line-height: 1.4;
  overflow-x: hidden;
  /* page level horizontal scroll hide */
  /* padding-top: 110px; header ke neeche content start hoga */
 
}

.hhh1{
  text-decoration: underline;
}


     input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #EBDCBD inset !important;
  -webkit-text-fill-color: #000 !important;
  caret-color: #000 !important;
}

  

    #about-gfrp{
      scroll-margin-top: 120px; /* anchor link ke liye thoda gap */
    }
    #application{
      scroll-margin-top: 120px; /* anchor link ke liye thoda gap */
    }
    #advantage{
      scroll-margin-top: 120px; /* anchor link ke liye thoda gap */
    }

    .section-advantages {
background:var(--beige);
padding: clamp(24px, 6vw, 72px) 5%;
margin-top: -5px;
}
.adv-wrap {
display: flex;
align-items: center;
gap: clamp(16px, 4vw, 48px);
max-width: 1500px;
margin: 0 auto;
}
.adv-text {
flex: 1 1 30%;
color: #333;
}
.adv-text h2 {
  color: var(--black);
  margin: 0 0 12px;

  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 600;
}
.adv-text .lead {
  margin: 0 0 16px;

  font-size: 2rem;
  line-height: 1.6;
  font-weight: 500;
}
.adv-list {
  margin: 0;
  padding-left: 1em;
  display: grid;
  gap: 10px;
  list-style: disc;

  font-size: 1.5rem;
  line-height: 1.8;
  font-weight: 400;
}
.adv-image {
flex: 1 1 40%;
}
.adv-image img {
width: 100%;
height: auto;
display: block;
/* border-radius: 6px; */
object-fit: cover;
}

/* Responsive */
@media (max-width: 1024px) {
.adv-wrap { gap: 24px; }
.adv-text h2 { font-size: 1.6rem; }
}
@media (max-width: 768px) {
.adv-wrap { flex-direction: column; }
.adv-text, .adv-image { flex-basis: auto; width: 100%; }
}
    
  

    /* .company-text {
      text-align: right;
    } */

    .company-text h1 {
      font-size: 1.6rem;
      color: var(--dark);
      /* font-weight: 1; */
      letter-spacing: 1px;
    }

    .company-text p {
      font-size: 1.05rem;
      color: var(--secondary);
      font-weight: 600;
      margin-top: 4px;
    }

  
  
 
 
 
  
    /* ---------- Hero ---------- */
    .hero {
      display: flex;
      justify-content: space-between;
      align-items: center;
      min-height: 420px;
      margin-top: 4rem;
    }

    /* .hero-text {
      flex: 0 0 30%;
      min-width: 260px;
      margin-left: 10%;
    } */
     .hero-text {
  flex: 0 0 34%;
  min-width: 260px;
  margin-left: 6%;
  overflow: hidden;  
}
 

 
.hero-text img {
  max-width: 100%;   /* container se bada na ho */
  /* height: auto;        */
  display: block;    /* extra space remove karega */
  object-fit: contain; /* image ko container ke andar hi fit karega */
}
    .hero-text h2 {
      font-size: 1.1rem;
      color: var(--muted);
      margin-bottom: 12px;
      /* font-weight: 400; */
    }

    .hero-text h1 {
      /* font-weight: 900; */
      margin: 0;
      line-height: 0.9;
      color: var(--primary);
       font-size: clamp(36px, 5vw, 120px);
      letter-spacing: -2px;
    }

    .hero-text h1 span {
      display: block;
      color: var(--primary);
      /* font-weight: 900; */
    }

    /* ---------- Slider ---------- */
    .hero-slider {
      flex: 1 1 58%;
      min-width: 300px;
      position: relative;
      overflow: hidden;
    }

    .slider-window {
      width: 100%;
      overflow: hidden;
      position: relative;
    }

    .slides {
      display: flex;
      transition: transform 0.55s ease;
      will-change: transform;
    }

    .slides img {
      width: 100%;
      height: 91vh;
      display: block;
      flex-shrink: 0;
      object-fit: cover;
    }

    .control {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.45);
      color: var(--light);
      border: 0;
      padding: 10px 12px;
      border-radius: 50%;
      cursor: pointer;
      /* font-size: 20px; */
      user-select: none;
    }

    .prev {
      left: 12px;
    }

    .next {
      right: 12px;
    }

    .dots {
      position: absolute;
      bottom: 12px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
    }

    .dots button {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      border: 0;
      background: rgba(255, 255, 255, 0.75);
      cursor: pointer;
    }

    .dots button.active {
      background: var(--primary);
    }

    /* ---------- Responsive ---------- */
    @media (max-width:768px) {
      .header {
        padding: 12px 5%;
      }
       .slides img {
        height: auto;      
        max-height: 60vh;   /* optional limit */
    }

      .company-text {
        width: 100%;
        order: 3;
        margin-top: 8px;
        text-align: center;
      }

      .logo {
        width: 100%;
        display: flex;
        justify-content: center;
        order: 1;
        margin-bottom: 8px;
      }

      .menu-toggle {
        display: block;
      }

      

      .hero {
        flex-direction: column;
        gap: 18px;
        min-height: auto;
        padding: 18px 4%;
        /* margin-top: 9rem; */
      }

      .hero-text {
        text-align: center;
      }

      .hero-slider {
        width: 100%;
      }

     
      
    }

    @media (max-width:420px) {
      .hero-text h1 {
        font-size: clamp(30px, 14vw, 80px);
      }

      .company-text h1 {
        font-size: 1.2rem;
      }
    }
 

    .gfrp-section {
  background: linear-gradient(
    to bottom, 
    var(--beige) 0%, 
    var(--beige) 85%, 
    transparent 65%, 
    transparent 100%
  );
  padding: 50px 6%;
  text-align: center;
  margin-top: 3%;
}


    
    .gfrp-section h2 {
      font-size: 2.5rem;
      /* font-weight: 600; */
      /* color: var(--black); */
      margin-bottom: 14px;
    }

    .gfrp-section p {
      max-width: 80%;
      margin: 0 auto 32px;
      font-size: 1.5rem;
      line-height: 2;
      color: var(--muted);
      text-align: justify;
    }

    .suited-box {
      text-align: center;
      margin: 40px auto;
      max-width: 900px;
      position: relative;
    }

    .title-box {
      font-size: 1.5rem;
      display: inline-block;
      background: var(--primary);
      color: var(--light);
      padding: 12px 26px;
      /* font-weight: 600; */
      /* border-radius: 3px; */
      position: relative;
    }

    .title-box::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -30px;
      width: 4px;
      height: 35px;
      background: var(--primary);
      transform: translateX(-50%);
    }

    .items {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-top: 60px;
      position: relative;
    }

    .items::before {
      content: "";
      position: absolute;
      top: -30px;
      left: 12.5%;
      right: 12.5%;
      height: 4px;
      background: var(--primary);
    }

    .item {
      width: 25%;
      font-size: 1.5rem;
      color: var(--muted);
      text-align: center;
      position: relative;
    }

    .item::before {
      content: "";
      position: absolute;
      top: -30px;
      left: 50%;
      width: 4px;
      height: 30px;
      background: var(--primary);
      transform: translateX(-50%);
    }

    @media(max-width:768px) {
      .items {
        flex-direction: column;
        align-items: center;
      }

      .items::before {
        display: none;
      }

      .item {
        width: 100%;
        margin: 20px 0;
      }

      .item::before {
        top: -15px;
        height: 15px;
      }
    }

    /* images */
    .gfrp-images {
      display: flex;
      justify-content: center;
      gap: 30px;
      margin-top: 20px;
      flex-wrap: wrap;
    }

    .gfrp-images img {
      width: 42%;
      height: 40vh;
      object-fit: cover;
      border: 4px solid var(--light);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      border-radius: 3px;
    }

    @media(max-width:768px) {
      .gfrp-images img {
        width: 100%;
        height: 280px;
      }
    }

    /* Section with overlay text */
    .section1 {
      position: relative;
      display: inline-block;
    }

    .section1 img {
      width: 100%;
      display: block;
    }

    .text-box {
      position: absolute;
      top: 20%;
      left: 10%;
      background: var(--overlay);
      color: var(--light);
      padding: 15px 25px;
      border-radius: 10px;
      font-size: 20px;
    }

/* 3rd section */
 
    .section2 {
      position: relative; /* parent positioning */
      display: inline-block;
      width: 100%;
      margin-top: 3%;
    }

    .section2 img {
      width: 100%;
      height: auto;
      display: block;
    }

    .text-box1 {
      position: absolute;   /* relative to section */
      top: 10%;             /* section ke top se */
      left: 0;              
      /* background: white; */
      background: rgba(0, 0, 0, 0.70);
      /* background: rgba(255, 255, 255, 0.55); */

      color:white;
      padding: 15px 25px;
      /* font-size: 20px; */
      width: 100%;
    }

    .text-box1 h2 {
    font-size: 2.5rem;
    margin-left: 10%;

    }

    .text-box1 p {
    font-size: 1.5rem;
        margin-left: 10%;
        line-height: 2;

    }
    /* Tablet */
    @media (max-width: 768px) {
      .text-box1 {
        top: 65%;
        width: 70%;
        font-size: 16px;
        padding: 12px 18px;
      }
      .text-box1 h2 {
        font-size: 18px;
      }
    }

    /* Mobile */
    @media (max-width: 480px) {
      .text-box1 {
        position: static;  /* chhote screen par neeche aa jayega */
        width: 100%;
        font-size: 14px;
        padding: 10px 15px;
        margin-top: 10px;
      }
      .text-box1 h2 {
        font-size: 16px;
      }
      .text-box1 p {
        font-size: 14px;
      }
      .adv-text { font-size: 14px; padding: 10px 15px; }
#advantage h2 { font-size: 1.5rem; }
#advantage .lead, #advantage .adv-list { font-size: 14px; }
      
    }


/* 4th section */
  
 
   
    /* ✅ Main container */


    .container2 {
      max-width: 80%;
      margin: auto;
      padding: 3rem 1rem;
    }

    /* Titles */
    .title-wrap {
      margin-bottom: 1.5rem;
    }

    .title {
      color: var(--black);
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      margin-bottom: 0.5rem;
    }

    .subtitle {
      color: #333;
      font-size: clamp(1rem, 2vw, 1.8rem);
      opacity: 0.95;
    }

    /* Top Grid */
    .top-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      align-items: stretch;
      margin-top: 1.5rem;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }

    .card,
    .small-card,
    .hero1,
    .wide-image {
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    /* Top cards */
    .card {
      min-height: 15em; /* top cards height */
    }

    .card .head1,
    .small-card .head1 {
      background: var(--primary);
      color: #fff;
      padding: 0.8rem 1rem;
      font-size: clamp(0.9rem, 1.5vw, 1.4rem);
      line-height: 1.2;
    }

    .card .body1,
    .card .body2,
    .small-card .body1 {
      background: var(--beige);
      padding: 1rem;
      color: #222;
      font-size: clamp(0.9rem, 1.2vw, 1.3rem);
      flex: 1;
      /* text-align: justify; */
    }

    /* Hero & Wide Image */
    .wide-image img {
      width: 100%;
      /* object-fit: cover; */
      height:250px;
      display: block;
    }
        .hero1 img{
      width: 100%;
      object-fit: cover;
      height:510px;
      display: block;
    }


    /* Bottom Row */
    .bottom-row {
      display: grid;
      grid-template-columns: 0.96fr 0.96fr 2fr;
      gap: 2rem;
      margin-top: 2rem;
      align-items: stretch;
    }

    /* Reduce height of bottom row */
    .bottom-row .small-card,
    .bottom-row .wide-image {
      min-height: 4em; 
    }

    /* Responsive Layouts */
    @media (max-width: 1000px) {
      .top-grid {
        grid-template-columns: 1fr;
      }
      .hero1 {
        order: 3;
      }
      .bottom-row {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .cards {
        grid-template-columns: 1fr;
      }
      .bottom-row {
        gap: 1rem;
      }
    }

    @media (max-width: 480px) {
      .container2 {
        padding: 2rem 0.5rem;
      }
    }

  
    /* 5th section */

  
    .section5 {
       background: var(--beige);
      padding: 20px 4%;
      display: grid;
      grid-template-columns: 2fr 1fr;
      align-items: center;
      /* gap: 40px; */
    }

    /* Text block */
    .section-text {
      width: 80%;
    }

    .section-text h2 {
      color: var(--brown);
      font-size: 3rem;
    }

    .section-text h4 {
      color: black;
      font-size: 1.5rem;
      margin-bottom: 10px;
      opacity: 0.85;
    }

    .section-text p {
      color: #222;
      font-size: 1.3rem;
      max-width: 500px;
      line-height: 1.6;
    }
.carousel-inner {
      border: 6px solid #fff;

}
    /* Bootstrap Carousel */
    .carousel-item img {
      width: 100%;
      height: 60vh; /* Increased height */
      object-fit: cover;
      box-shadow: 0 4px 16px rgba(0,0,0,0.15);
      /* border-radius: 10px; */
     }

    /* Responsive Tablet & Below */
    @media (max-width: 992px) {
      .section5 {
        grid-template-columns: 1fr;
        padding: 50px 6%;
      }
      .section-text {
        margin: 0 auto;
        width: 100%;
        text-align: center;
      }
    }

    /* Small Mobile */
    @media (max-width: 600px) {
      .section5 {
        padding: 40px 5%;
      }
      .section-text h2 {
        font-size: 28px;
      }
      .section-text p {
        font-size: 14px;
      }
      .carousel-item img {
        height: 40vh;
      }
    }

    /* 6th section */

    .hero-section {
      position: relative;
      width: 100%;
      height: 100vh; /* Desktop height */
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      overflow: hidden;
      margin-top: 8%;
    }

    /* Background image */
    .hero-section img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
    }

    /* Overlay */
    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      /* background: rgba(0,0,0,0.25);  */
      z-index: 2;
    }

    /* ✅ Text content box */
    .hero-content {
      position: relative;
      z-index: 3;
      color: #fff;
      /* max-width: 420px; */
      padding: 0px 0px 10px 30px  ;
      background: rgba(0, 0, 0, 0.55); /* text ke peeche black transparent box */
      margin-left: 0; /* 👈 Left se bilkul start */
      margin-top: -22%;
    }

    .hero-content h1 {
      font-size: 3rem;
      /* font-weight: 600; */
      margin: 0 0 12px 0;
      color:gold;
    }

    .hero-content p {
      font-size: 1.5rem;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .hero-content .btn {
      display: inline-block;
      background: #fff;
      color: var(--primary);
      padding: 12px 22px;
      /* font-weight: 600; */
      text-decoration: none;
      /* border-radius: 4px; */
      transition: 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.5rem;
    }

    .hero-content .btn:hover {
      background: var(--beige);
      color: #000;
    }

    /* ✅ Responsive */
    @media (max-width: 768px) {
      .hero-section {
        height: 55vh;
      }
      .hero-content {
        max-width: 80%;
        padding: 20px;
      }
      .hero-content h1 {
        font-size: 28px;
      }
      .hero-content p {
        font-size: 15px;
      }
    }

    @media (max-width: 480px) {
      .hero-section {
        height: 50vh;
        min-height: 320px;
        justify-content: center;
        text-align: center;
      }
      .hero-content {
        margin: 0 15px;
        max-width: 100%;
        padding: 15px;
      }
      .hero-content h1 {
        font-size: 24px;
      }
      .hero-content p {
        font-size: 14px;
      }
    }

    /* footer */

       /* ✅ Footer */
    footer {
      background:white;
      color: #fff;
      padding: 40px 20px 20px;
      border-top: 15px solid var(--primary);
      color: black;
 
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      max-width: 1200px;
      margin: auto;
      gap: 20px;
    }

    /* Left Logo */
    .footer-left img {
      max-width: 350px;
      width: 65%;
      height: auto;
      background: #fff;
      /* padding: 10px; */
      /* margin-top: 34%; */
     }

    /* Right Section */
    .footer-right {
      max-width: 500px;
      /* flex: 1; */
    }

    /* ✅ PATH text replaced with image */
    .footer-right img {
      max-width: 180px;
      width: 100%;
      height: auto;
      /* margin-bottom: 12px; */
      /* padding: 6px; */
      /* border-radius: 6px; */
    }

    .footer-right p {
      margin: 6px 0;
      font-size: 15px;
      line-height: 1.6;
    }

    /* ✅ Line below company name */
    .footer-right .company-name {
      position: relative;
      padding-bottom: 6px;
      margin-bottom: 10px;
      color: black;
    }

    .footer-right .company-name::after {
      content: "";
      display: block;
      width: 98%;
      height: 2px;
      background-color: var(--brown);
      margin-top: 5px;
    }

    /* Social Icons */
    .social-icons {
      margin-top: 15px;
    }

    .social-icons a {
      display: inline-block;
      margin-right: 12px;
    }

    .social-icons img {
      width: 40px;
      height: 40px;
      transition: 0.3s;
      /* filter: brightness(0) invert(1);  */
    }

    .social-icons img:hover {
      transform: scale(1.1);
      filter: none; /* show original color on hover */
    }

    /* ✅ Responsive */
    @media (max-width: 1024px) {
      .footer-left img {
        max-width: 280px;
      }
      .footer-right {
        max-width: 400px;
      }
      .gfrp-section p {
    max-width: 850px;
    margin: 0 auto 32px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--muted);
}
.gfrp-section h2 {
    font-size: 1.4rem;
    
}
    }

    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-left img {
        max-width: 260px;
        margin-bottom: 20px;
      }
      .footer-right img {
        max-width: 160px;
        margin-top: 10px;
      }
      .footer-right .company-name::after {
        margin-left: auto;
        margin-right: auto;
      }
      .gfrp-section p {
    max-width: 850px;
    margin: 0 auto 32px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--muted);

}
.gfrp-section h2 {
    font-size: 1.4rem;
    
}

       .item {
      font-size: 1rem;}
    .title-box {
      font-size: 1rem;}
              #Required{
      margin-left: 0% !important;
    }
      .hero-content .btn {
      font-size: 14px;
    }
    }

    @media (max-width: 480px) {
      .footer-left img {
        max-width: 220px;
      }
      .footer-right img {
        max-width: 140px;
      }
      .footer-right p {
        font-size: 13px;
      }
      .social-icons img {
        width: 28px;
        height: 28px;
      }
      .gfrp-section p {
    max-width: 850px;
    margin: 0 auto 32px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--muted);
}

.gfrp-section h2 {
    font-size: 1.4rem;
    
}


    .title-box {
      font-size: 1rem;}

       .item {
      font-size: 1rem;}
        #Required{
      margin-left: 0% !important;
    }
    .hero-content .btn {
      font-size: 14px;
    }
    }


    /* #Required{
      margin-left: 20%;
    } */

    #text-box2 h2{
      color: var(--primary);
    }



    /* slide certification */

 
        .partner {
            background-color: var(--beige);
            margin-top: 5%;
            height: 60vh;
 
            display: flex;
            flex-direction: column;
            justify-content: center; /* Vertically center the content */
            align-items: center;     
        }

        .partner h1{
          margin-top: -5%;
            margin-bottom: 5%;
            font-size: 2.5rem;
            color: #d4aa5c;
            text-align: center;

        }
        .sliderCert-containerCer {
            position: relative;
            width: 90%;
            overflow: hidden;
            border-radius: 20px;
            /* background-color: #fff; */
        }

        .sliderCert {
            display: flex;
        }

        .slideCert {
            flex: 0 0 25%;
            box-sizing: border-box;
            padding: 10px;
        }

        .slideCert img {
            width: 90%;
            height:auto;
            display: block;
            border-radius: 15px;
            object-fit: contain;
            background-color: #fff;
        }

        @media (max-width: 992px) {
            .slideCert {
                flex: 0 0 25%;
            }
        }

        @media (max-width: 768px) {
            .slideCert {
                flex: 0 0 33.33%;
            }
        }

        @media (max-width: 576px) {
            .slideCert {
                flex: 0 0 50%;
            }
        }

        @media (max-width: 400px) {
            .slideCert {
                flex: 0 0 100%;
            }
                    .partner h1{
           
            font-size: 2rem;
 
        }
        }
        .actions-btn {
          font-weight: bold;
        }


        /* nav bar  */

 

/* ===== Navbar ===== */



*{
  margin:0;
  padding:0;
  box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;

 }

/* ===== Navbar ===== */
nav{
  background:white;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 15px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  /* border: 2px solid red; */
}

.menu-toggle{
  display:none;
  padding:12px;
  color:black;
  cursor:pointer;
  font-size:35px;
}

.nav-container{
  max-width:100%;
  /* background:var(--primary); */
}

.nav-container ul{
  list-style:none;
  display:flex;
  justify-content:flex-end;
  align-items:center;
  flex-wrap:wrap;
}

.nav-container ul li{
  position:relative;
}

/* ul li a {
    color:black !important;

} */

/* ul li ul li a  {
    color:black !important;

} */
.nav-container ul li a{
  display:block;
  padding:20px 20px;
  /* color:black !important; */
  text-decoration:none;
  font-weight:500;
  font-size:1rem;
  white-space:nowrap;
}

.nav-container ul li a:hover{
  color:var(--primary);
 }

/* Dropdown */
.nav-container ul li ul{
  position:absolute;
  top:100%;
  left:0;              /* parent ke left se align */
  min-width:190px;
  background:white;
  /* padding:8px 0; */
  z-index:50;

  opacity:0;
  visibility:hidden;
  transform: translateY(-10px);
  transition: all 0.4s ease;

  text-align:left;     /* text left aligned */
}


.nav-container ul li:hover > ul{
  opacity:1;
  visibility:visible;
  transform: translateY(0);
}

/* .nav-container ul li ul li{
  background:white;
  color: #000 !important;
 } */
.nav-container ul li ul li{
    width:100%;

  opacity:0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}
/*   */
.nav-container ul li ul li a{
  display:block;
  padding:10px 15px;
  text-align:left;     /* ensure left alignment */
      border-bottom: 1px solid var(--primary);

}

.nav-container ul li ul li a :hover{
  color: var(--primary) !important;
 }
.nav-container ul li:hover ul li{
  opacity:1;
  transform: translateY(0);
}


.nav-container ul li:hover ul li:nth-child(1){
  transition-delay: 0.1s;
}
.nav-container ul li:hover ul li:nth-child(2){
  transition-delay: 0.2s;
}
.nav-container ul li:hover ul li:nth-child(3){
  transition-delay: 0.3s;
}

/* .nav-container ul li:hover>ul{
  display:block;
} */

/* ===== Logo ===== */
.logo-wrap{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo-wrap img{
  height:75px;
  background:white;
  padding:5px;
}

.company-name{
  font-size:18px;
  color:white;
  font-weight:500;
}

/* ===== MOBILE ===== */
/* MOBILE */
@media(max-width:768px){

  .nav-container ul li ul li a{
  text-align:center;      
 
}
  /* .nav-container ul li ul li {
    border: 1px solid red;
  } */


  .menu-toggle{
    display:block;
  }

  .nav-container{
    position:absolute;
    top:100%;
    right:0;
    width:100%;
  }

  .nav-container ul{
    flex-direction:column;
    display:none;
    width:100%;
    background:white;
  }

  .nav-container ul.show{
    display:flex;
  }

  .nav-container ul li{
    width:100%;
  }

  .nav-container ul li a{
    padding:14px;
    text-align:center;
  }

  /* 🔥 Child hidden by default */
  .nav-container ul li ul{
    position:static;
    display:none;
  }

  /* 🔥 Open when class added */
  .nav-container ul li.open > ul{
    display:block;
  }

}





/* left Section */
.footer-left {
  max-width: 500px;
  /* flex: 1; */
}

/* ✅ PATH text replaced with image */
 

.footer-left p {
  margin: 6px 0;
  font-size: 15px;
  line-height: 1.6;
}

/* ✅ Line below company name */
.footer-left .company-name {
  position: relative;
  padding-bottom: 6px;
  margin-bottom: 10px;
  color: black;
}

.footer-left .company-name::after {
  content: "";
  display: block;
  width: 98%;
  height: 2px;
  background-color: var(--brown);
  margin-top: 25px;
}

.footer-left .social-icons img {
    width: 40px;
    height: 40px;
    transition: 0.3s;
    /* filter: brightness(0) invert(1); */
}