* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:
Poppins (woff2)
sans-serif;
}


body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container {
  width: 100%;
  max-width: 100%;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 0px;
  margin: 0px;
}

/* ================= HEADER ================= */
.header {
  position: absolute;   /* 👈 banner ke upar */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 30px;

  background: transparent;   /* 👈 transparent */
  box-shadow: none;
  transition: all 0.3s ease; /* scroll par smooth change */
}

/* 👇 Scroll hone par white background */


.logo img {
  height: 145px;
  width: auto;
  background-color: #fff;
  border-radius: 16px;
}

.header-right {
  display: flex;
  align-items: center;
}
.header-right.active {
  max-height: 500px;
}

/* ✅ Toggle Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}
.menu-toggle span {
  height: 3px;
  width: 100%;
  background-color: black; /* 👈 transparent header ke liye white lines */
  border-radius: 3px;
  transition: all 0.3s ease;
}

.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
  margin-right: 20px;
}
.nav-links a {
  text-decoration: none;
  color: #fff;   /* 👈 transparent header ke liye white text */
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
  white-space: nowrap;
}
.nav-links a:not(.quote-button):hover {
  color: #4d944e;
}
.nav-links a:not(.quote-button):after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #4d944e;
  transition: width 0.3s ease;
}
.nav-links a:not(.quote-button):hover:after {
  width: 100%;
}
.nav-links a.active {
  color: #4d944e;
  
}
.nav-links a.active:after {
  width: 100%;
}

.quote-button {
  background-color: #4d944e;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none !important;
  font-weight: bold;
  margin-right: 20px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.quote-button:hover {
  background-color: #e6b800;
  color: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 204, 0, 0.3);
}

.social-icons {
  display: flex;
  gap: 15px;
}
.social-icons a {
  color: #fff;   /* 👈 transparent header ke liye white */
  font-size: 18px;
  transition: all 0.3s ease;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #4d944e;
}
.social-icons a:hover {
  color: #333;
  background: #ffcc00;
  transform: translateY(-3px);
}

/* ================= Responsive ================= */
@media (max-width: 992px) {
  .nav-links {
    gap: 15px;
  }
  .quote-button {
    padding: 10px 15px;
    margin-right: 15px;
  }
}
@media (max-width: 868px) {
  .header {
    padding: 15px 20px;
  }
  .nav-links a:not(.quote-button) {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .header {
    flex-wrap: wrap;
  }
  .menu-toggle {
    display: flex;
    color: black;
        background: transparent;
        border: none;
  }
  .header-right {
    width: 100%;
    order: 3;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: rgba(0,0,0,0.7); /* 👈 mobile menu background */
  }
  .nav-links {
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-right: 0;
    padding: 20px 0;
  }
  .nav-links a:not(.quote-button) {
    padding: 15px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }
  .nav-links a:not(.quote-button):last-child {
    border-bottom: none;
  }
  .quote-button {
    margin: 15px 0;
    text-align: center;
    display: block;
  }
  .social-icons {
    justify-content: center;
    margin-bottom: 10px;
  }
  .header-right.active {
    max-height: 500px;
  }
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}
@media (max-width: 480px) {
  .header {
    padding: 0px 15px;
  }
  .logo img {
    height: 88px;
    margin-top: 10px;
    border-radius: 10px;
  }
  .quote-button {
    padding: 8px 12px;
    font-size: 14px;
  }
  .social-icons a {
    font-size: 16px;
    width: 32px;
    height: 32px;
  }
}


    /*---------2nd number--=====*/

    
    /* First Row */
    .cs7-hero {
      background-color: #007bff;
      color: #fff;
      padding: 10px 60px 120px; /* overlap ke liye niche extra space */
      position: relative;
      text-align: left;
          margin: 40px;
    border-radius: 20px
    }
    .cs7-hero h1 {
      margin: 0;
      font-size: 40px;
      padding: 20px 0;
    }
    .cs7-hero p {
      font-size: 16px;
      margin-top: 10px;
      line-height: 1.6;
    }

    /* Image overlap styling (desktop) */
    .cs7-half-image {
      position: absolute;
      bottom: -300px; 
      right: 5%; 
      width: 500px;
      z-index: 10;
    }
    .cs7-half-image img {
      width: 100%;
      border-radius: 15px;
      
    }

    /* Second Row */
    .cs7-row {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
      width: 55%;
      padding: 40px;
      padding-top: 0px;
      padding-right: 0px;
    }

    .cs7-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      flex: 1;
      min-width: 300px;
    }

    .cs7-card {
      background: #f8f9fa;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      text-align: center;
    }

    /* Tablet (image cards ke niche chali jaye) */
    @media(max-width: 992px) {
      .cs7-row {
        width: 100%;
        padding-top: 30px;
      }
      .cs7-half-image {
        position: static;   /* absolute hataya */
        width: 100%;
        max-width: 600px;
        margin: 30px auto 0;
        display: block;
        text-align: center;
      }
      .cs7-half-image img {
        width: 100%;
        border-radius: 15px;
      }
    }
@media (min-width: 334px) and (max-width: 768px) {
  .cs7-hero {
    text-align: center;
    padding: 0px 5px;
    margin: 7px;
    margin-top: 0px; /* Margin-top 0px for this range */
  }
}
    /* Mobile */
    @media(max-width: 768px) {
      .cs7-hero {
        text-align: center;
        padding: 0px 5px;
        margin: 7px;
        margin-top: -50px;
        
      }
      
     
      .cs7-hero h1 {
        font-size: 28px;
      }
      .cs7-hero p {
        font-size: 14px;
      }
      .cs7-row {
        flex-direction: column;
        padding: 0px;
        text-align: center;
        width: 100%;
      }
      .cs7-cards {
        grid-template-columns: 1fr;
        max-width: 85%;
      }
      .cs7-half-image {
        width: 100%;
        max-width: 400px;
        margin-top: 20px;
      }
    }
      /* 👇 Icon Image Styling */
    .cs7-card img {
      width: 60px;      /* छोटा size */
      height: 60px;     /* square ratio */
      object-fit: contain; 
      margin-bottom: 15px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }
    /*==================2nd number end===========*/


    /*--============================3rd number image cards-================*/

     .cs-container {
      max-width: 93%;
      margin: 50px auto;
      text-align: center;
    }
    /* ✅ Small screen ke liye */
@media (max-width: 768px) {
  .cs-container {
    max-width: 85%;
  }
}

    .cs-title {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .cs-subtitle {
      font-size: 15px;
      color: #555;
      margin-bottom: 40px;
    }

    .cs-services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .cs-service-card {
      background: #fff;
      border-radius: 12px;
      text-decoration: none;
      overflow: hidden;
      text-align: left;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .cs-service-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 12px 12px 0 0;
      transition: transform 0.3s ease;
    }

    .cs-service-card:hover img {
      transform: scale(1.1);
    }

    .cs-service-content {
      padding: 15px;
    }

    .cs-service-content small {
      display: block;
      font-size: 13px;
      color: #777;
      margin-bottom: 5px;
    }

    .cs-service-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .cs-service-header h3 {
      font-size: 16px;
      margin: 0;
    }

    .cs-arrow-btn {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 35px;
      height: 35px;
      background: #0d9ef5;
      color: #fff;
      border-radius: 50%;
      font-size: 35px;
      text-decoration: none;
      transition: background 0.3s ease;
    }

    .cs-arrow-btn:hover {
      background: #007acc;
    }

    .cs-view-all {
      margin-top: 30px;
    }

    .cs-view-all button {
      background: #ff6600;
      border: none;
      color: #fff;
      padding: 12px 30px;
      font-size: 16px;
      border-radius: 5px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .cs-view-all button:hover {
      background: #e65c00;
    }
    /*--========================3rd number image cards end-======================*/

    /*---=============4rd number icon cards=============*/

     h1.ccs-heading {
      text-align: center;
      margin-bottom: 40px;
      font-size: 2rem;
      font-weight: 700;
    }

    .ccs-services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      max-width: 1315px;
      margin: 0 auto;
      padding-bottom: 20px;
    }
    /* ✅ Small screen ke liye */
@media (max-width: 768px) {
  .ccs-services-grid {
    max-width: 85%;
  }
}

    .ccs-card {
      background-color: #fff;
      border-radius: 10px;
      padding: 25px 20px;
      text-align: center;
      box-shadow: 0 0 10px rgba(10,3.5,10,1);
      transition: transform 0.3s ease;
      border: 2px solid #f1f1f1;
    }

    .ccs-card:hover {
      transform: translateY(-5px);
    }

    .ccs-icon-wrapper {
      background-color: #f04d2d;
      color: white;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px auto;
      font-size: 30px;
    }

    .ccs-card-title {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 10px;
      color: #222;
    }

    .ccs-card-desc {
      font-size: 0.95rem;
      color: #666;
    }
    /*------------------=========4rd number icon cards=====*/

    /*----------5TH NUMBER BACKGROUND IMAGE---====*/
    

  .cs7-section {
    position: relative;
    text-align: center;
    padding: 100px 20px;
  }

  /* Background overlay for opacity */
  .cs7-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/5TH-BG.jpg") center center/cover no-repeat;
    opacity: 0.1; /* Adjust opacity here (0.1 to 1) */
    z-index: 0;
  }

  .cs7-heading {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
  }

  .cs7-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    flex-wrap: wrap;
    gap: 15px;
    z-index: 1;
  }

  .cs7-column {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 60px;
  }

  .cs7-box {
    text-align: left;
    color: #1a1a1a;
  }

  .cs7-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .cs7-box p {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
  }

  .cs7-ribbon-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px; /* Increased size from 200px to 300px */
    z-index: 2;
  }

  @media (max-width: 992px) {
    .cs7-content {
      flex-direction: column;
      align-items: center;
    }

    .cs7-column {
      width: 100%;
      align-items: center;
    }

    .cs7-box {
      text-align: center;
    }

    .cs7-ribbon-img {
      position: static;
      transform: none;
      margin: 40px 0;
      width: 250px; /* Slightly smaller on mobile */
    }
  }
    /*-----------5TH NUMBER BACKGROUND IMAGE========*/

   /*-----------------video cards------------*/
   
    .video-section {
      padding: 60px 20px;
      text-align: center;
    }

    .video-section h2 {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 40px;
    }

    .video-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto 40px auto;
    }

    .video-card {
      position: relative;
      width: 280px;
      height: 240px;
      overflow: hidden;
      border-radius: 6px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      background-color: #000;
    }

    .video-card iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .video-logo {
      position: absolute;
      top: 10px;
      left: 10px;
      width: 40px;
      height: 40px;
      z-index: 2;
    }

    .video-logo img {
      display: none;
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .view-all-btn {
      background-color: #f58220;
      color: white;
      border: none;
      padding: 12px 24px;
      font-size: 15px;
      font-weight: bold;
      border-radius: 4px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .view-all-btn:hover {
      background-color: #d96e13;
    }

    @media (max-width: 768px) {
      .video-card {
        width: 100%;
        max-width: 350px;
        height: 200px;
      }
    }
   /*----------------video cards end-----------------*/

   /*-------------contact cards -------------------*/
    .contact-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      padding: 0px 5%;
      background-color: #f7fbff;
    }

    .contact-left {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      flex: 1;
      min-width: 300px;
    }

    .contact-card {
      background-color: #f0f7fd;
      border-radius: 10px;
      padding: 30px 20px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.03);
      transition: all 0.3s ease;
    }

    .contact-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 16px rgba(0,0,0,0.06);
    }

    .contact-card img.icon {
      width: 32px;
      height: 32px;
      margin-bottom: 15px;
    }

    .contact-card h4 {
      margin: 0 0 8px;
      font-size: 18px;
      font-weight: 700;
    }

    .contact-card p {
      margin: 0;
      font-size: 14px;
      color: #2a61d9;
    }

    .contact-right {
      flex: 1;
      min-width: 300px;
      text-align: center;
      padding-top: 30px;
    }

    .contact-right img {
      max-width: 100%;
      height: auto;
    }

    @media (max-width: 992px) {
      .contact-section {
        flex-direction: column;
        gap: 40px;
      }

      .contact-left {
        grid-template-columns: 1fr 1fr;
      }

      .contact-right {
        padding-top: 0;
      }
    }

    @media (max-width: 576px) {
      .contact-left {
        grid-template-columns: 1fr;
      }
    }
   /*----------------contact cards end--------------------*/

   /*-----certification==================*/
     .cert-section {
      padding: 0px;
      padding-bottom: 20px;
      text-align: center;
      display: none;
    }

    .cert-section h2 {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 40px;
      color: #1e1e1e;
    }

    .cert-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      max-width: 100%
      margin: 0 auto;
    }

    .cert-card {
      background-color: white;
      border-radius: 8px;
      width: 303px;
    height: 252px;
      
      box-shadow: 0 4px 12px rgba(0, 0, 0, 1.05);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cert-card img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

    @media (max-width: 768px) {
      .cert-card {
        width: 45%;
        height: auto;
      }
    }

    @media (max-width: 480px) {
      .cert-card {
        width: 85%;
      }
    }
   /*--------------certification end--------------*/

   /*-----small background image--------------*/
     .cta-section {
      position: relative;
      background: url("../img/BG.jpg") no-repeat center center/cover;
      height: 300px;
      display: flex;
      align-items: center;
      color: white;
    }

    .cta-overlay {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background-color: rgba(0, 0, 0, 0.55);
      z-index: 1;
    }

    .cta-content {
      position: relative;
      z-index: 2;
      padding: 0 5%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .cta-text {
      max-width: 700px;
    }

    .cta-text h2 {
      font-size: 24px;
      font-weight: 700;
      margin: 0 0 10px;
    }

    .cta-text p {
      font-size: 16px;
      margin: 0 0 20px;
    }

    .cta-text .phone {
      font-size: 28px;
      font-weight: 800;
    }

    .cta-btn {
      background-color: #4d944e;
      color: white;
      padding: 12px 28px;
      border: none;
      border-radius: 30px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s ease;
      text-decoration: none;
    }

    .cta-btn:hover {
      background-color: #e85b00;
      text-decoration: none;
      color:#fff;
    }

    @media (max-width: 768px) {
      .cta-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
      }

      .cta-btn {
        align-self: center;
      }
    }
   /*------------SMALL background  image end----------*/

   /*-----------footer------------*/
   
    .footer {
      background-color: #111;
      padding: 60px 40px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px;
    }

    .footer-column {
      flex: 1;
      min-width: 220px;
    }

    .footer-column h3 {
      font-size: 18px;
      margin-bottom: 20px;
      color: #fff;
    }

    .footer-column p, .footer-column a, .footer-column span {
      font-size: 14px;
      color: #ccc;
      line-height: 1.8;
      text-decoration: none;
    }

    .newsletter-input {
      display: flex;
      margin-top: 10px;
    }

    .newsletter-input input {
      flex: 1;
      padding: 10px;
      border: none;
      border-radius: 4px 0 0 4px;
      outline: none;
      font-size: 14px;
    }

    .newsletter-input button {
      background-color: #00a4d6;
      border: none;
      color: white;
      padding: 0 20px;
      border-radius: 0 4px 4px 0;
      cursor: pointer;
      font-weight: 600;
    }

    .info-item {
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .info-item i {
      color: #FA6400;
    }

    .footer-social {
      display: flex;
      gap: 10px;
      margin-top: 10px;
    }

    .footer-social a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background-color: #4d944e;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      font-size: 16px;
      transition: 0.3s ease;
    }
   
    .footer-social a:hover {
      background-color: #ffcc00;
    }

    @media (max-width: 768px) {
      .footer {
        flex-direction: column;
      }
    }
   /*-----------footer end------------*/
   