    /* Reset */
    * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
    body { background: #fff; color: #333; line-height: 1.6; overflow-x: hidden; }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
    }
    /* Navbar */
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 30px;
      background: #fff;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1001;
    }

    .logo img {
      margin-left: 10px;
      height: 35px;
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 55px;
    }

    .nav-links li a {
      text-decoration: none;
      color: #333;
      font-size: 16px;
      transition: 0.3s;
    }

    .nav-links li a:hover {
      color: #0077ff;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
      z-index: 1002;
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background: #333;
      border-radius: 5px;
    }

    /* Overlay for blur */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      backdrop-filter: blur(5px);
      background: rgba(0, 0, 0, 0.3);
      display: none;
      z-index: 1000;
    }

    .overlay.active {
      display: block;
    }

    /* Mobile */
    @media (max-width: 768px) {
      .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 220px;
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
        padding-top: 80px;
        transform: translateX(100%);
        transition: 0.3s ease-in-out;
        z-index: 1001;
      }

      .nav-links.active {
        transform: translateX(0);
      }

      .hamburger {
        display: flex;
      }
    }

        /* About Us Banner Section */
  .about-banner {
    padding: 80;
    margin-top: 50px;
    position: relative;
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  /* Overlay with sky blue tint */
  .about-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 160, 255, 0.5);
    backdrop-filter: brightness(0.8);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Text Content */
  .about-content {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 2;
    animation: fadeUp 1s ease forwards;
  }

  .about-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.2);
  }

  .about-content p {
    font-size: 18px;
    color: #e0f3ff;
    letter-spacing: 0.5px;
  }

  /* Fade Up Animation */
  @keyframes fadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .about-banner {
      height: 250px;
    }

    .about-content h1 {
      font-size: 32px;
    }

    .about-content p {
      font-size: 16px;
    }
  }


       /*Footer Section*/

        footer {
      background: #1f2a37; /* dark background */
      color: #cbd5e1;
      padding: 60px 80px 30px;
    }

    .footer-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 40px;
    }

    .footer-logo h2 {
      color: #3b82f6;
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .footer-logo p {
      line-height: 1.6;
      font-size: 15px;
    }

    .footer-links h3 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 15px;
      color: #fff;
    }

    .footer-links ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links ul li {
      margin-bottom: 10px;
    }

    .footer-links ul li a {
      text-decoration: none;
      color: #cbd5e1;
      transition: 0.3s;
      font-size: 15px;
    }

    .footer-links ul li a:hover {
      color: #3b82f6;
    }

    .contact-info p {
      display: flex;
      align-items: center;
      margin: 10px 0;
      font-size: 15px;
    }

    .contact-info p i {
      margin-right: 10px;
      color: #3b82f6;
      font-size: 18px;
    }

    /* Social icons */
    .social-icons {
      margin-top: 20px;
    }

    .social-icons a {
      display: inline-block;
      width: 40px;
      height: 40px;
      margin-right: 10px;
      background: #273548;
      color: #cbd5e1;
      font-size: 18px;
      text-align: center;
      line-height: 40px;
      border-radius: 8px;
      transition: 0.3s;
    }

    .social-icons a:hover {
      background: #ffffff;
      color: #fff;
    }

    /* Bottom */
    .footer-bottom {
      border-top: 1px solid #334155;
      margin-top: 40px;
      padding-top: 20px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
      color: #94a3b8;
    }

    .footer-bottom a {
      text-decoration: none;
      margin-left: 15px;
      color: #94a3b8;
      transition: 0.3s;
    }
    
    .footer-logo img{
      height: 30px;
    }

    .footer-bottom a:hover {
      color: #3b82f6;
    }

    @media (max-width: 768px) {
      footer {
        padding: 40px 30px 20px;
      }
      .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
      }
    }

    /* about us section */

     .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
      max-width: 1200px;
      margin: auto;
    }
    .image-section {
      position: relative;
    }
    .image-section img {
      width: 100%;
      border-radius: 12px;
      transition: transform 0.3s ease;
    }
    .image-section img:hover {
      transform: scale(1.03);
    }
    .counter {
      position: absolute;
      bottom: 20px;
      left: 20px;
      background-color: #603cc4;
      color: rgb(255, 255, 255);
      padding: 15px 20px;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1.2rem;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }
    .content-section {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .title {
      text-align: center;
      margin-top: 20px;
      font-size: 2.8rem;
      font-weight: bold;
      color: #008cff;
    }
    .description {
      margin-top: -10px;
      color: #666;
      line-height: 1.6;
    }
    .features {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    .feature {
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }
    .feature-icon {
      background-color: #008cff;
      color: white;
      padding: 10px;
      border-radius: 50%;
      font-size: 1.2rem;
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: transform 0.3s ease;
    }
    .feature:hover .feature-icon {
      transform: scale(1.2);
    }
    .feature-text {
      flex: 1;
    }
    .feature-text h4 {
      margin: 0;
      font-weight: bold;
    }
    .feature-text p {
      margin: 5px 0 0;
      color: #555;
      font-size: 0.9rem;
    }
    .stats {
    padding: 20px 2%;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 10px;
      text-align: center;
    }
    .stat {
      background-color: #eaeaea;
      padding: 20px;
      border-radius: 12px;
      transition: transform 0.3s;
    }
    .stat:hover {
      transform: translateY(-5px);
      background-color: #ffffff;
    }
    .stat-number {
      font-size: 1.6rem;
      color: #008cff;
      font-weight: bold;
    }
    @media (max-width: 768px) {
      .container {
        padding: 20px 3%;
        grid-template-columns: 1fr;
      }
      .image-section img {
        height: auto;
      }
      .title {
        margin-top: -40px;
      }
    }

    /* our mission or vission section */
       body {
      background-color: #9db3ca;
      color: #222;
    }

    .about-section {
      border-radius: 10px;
      background-color: #ededed;
      max-width: 1200px;
      margin: 60px auto;
      text-align: center;
    }

    .about-header {
      margin-bottom: 40px;
    }

    .about-header small {
      font-weight: 600;
      color: #00aaff;
      letter-spacing: 1px;
    }

    .about-header h2 {
      font-size: 1.8rem;
      font-weight: 700;
      margin-top: 10px;
      color: #111;
    }

    .about-header span {
      color: #00aaff;
    }

    .about-boxes {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .about-box {
      background: #fff;
      border-radius: 16px;
      padding: 40px 20px;
      box-shadow: 0 4px 10px rgba(0, 170, 255, 0.1);
      transition: all 0.4s ease;
      cursor: pointer;
    }

    .about-box:hover {
      transform: translateY(-10px);
      box-shadow: 0 6px 20px rgba(0, 170, 255, 0.25);
    }

    .about-icon {
      font-size: 45px;
      color: #00aaff;
      margin-bottom: 15px;
      transition: transform 0.3s ease;
    }

    .about-box:hover .about-icon {
      transform: rotate(10deg) scale(1.1);
    }

    .about-box h3 {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 10px;
      color: #111;
    }

    .about-box p {
      font-size: 0.95rem;
      color: #555;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .about-header h2 {
        font-size: 1.4rem;
      }
      .about-box {
        padding: 25px 15px;
      }
    }

    /* Growth Section */

       body {
      background-color: #ffffff;
      color: #111;
      line-height: 1.7;
      overflow-x: hidden;
    }

    .grow-section {
      margin-top: -90px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 20px auto;
      padding: 40px 20px;
      gap: 40px;
    }

    /* Left Image Section */
    .grow-image {
      flex: 1 1 45%;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .grow-image img {
      width: 100%;
      max-width: 450px;
      animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    /* Right Text Section */
    .grow-content {
      flex: 1 1 50%;
    }

    .grow-content h2 {
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: #111;
      line-height: 1.3;
    }

    .grow-content h2 span {
      color: #00aaff;
    }

    .grow-content p {
      color: #555;
      margin-bottom: 18px;
      font-size: 1rem;
    }

    .grow-content ul {
      list-style: none;
      margin-bottom: 25px;
    }

    .grow-content ul li {
      color: #333;
      font-size: 1rem;
      margin-bottom: 10px;
      padding-left: 28px;
      position: relative;
    }

    .grow-content ul li::before {
      content: "✔";
      color: #00aaff;
      font-weight: 600;
      position: absolute;
      left: 0;
      top: 0;
      font-size: 1.1rem;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .grow-section {
        flex-direction: column;
        text-align: center;
        gap: 50px;
      }

      .grow-content {
        max-width: 90%;
        margin: 0 auto;
      }

      .grow-content h2 {
        font-size: 1.8rem;
      }

      .grow-content p,
      .grow-content ul li {
        text-align: left;
        font-size: 0.95rem;
      }

      .grow-image img {
        max-width: 380px;
      }
    }

    @media (max-width: 600px) {
      .grow-content h2 {
        font-size: 1.6rem;
      }

      .grow-content p {
        font-size: 0.9rem;
      }
    }

    /* team section */
          .team-section {
      background-color: #d8e0ea;
      border-radius: 20px;
      max-width: 1200px;
      margin: 80px auto;
      text-align: center;
      padding: 20px;
    }

    .team-section h2 {
      font-size: 2.6rem;
      font-weight: 700;
      margin-bottom: 8px;
      color: #00b7ff;
    }

    .team-section p {
      color: #555;
      margin-bottom: 50px;
      font-size: 1rem;
    }

    .team-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      justify-items: center;
    }

    .team-card {
      background: #fff;
      border-radius: 18px;
      width: 100%;
      max-width: 320px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      cursor: pointer;
    }

    .team-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .team-top {
      background: linear-gradient(135deg, #00bfff, #002b5b);
      height: 120px;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      border-bottom: 3px solid #fff;
    }

    .team-img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      border: 4px solid #fff;
      background-color: #f3f3f3;
      overflow: hidden;
      position: absolute;
      bottom: -50px;
      transition: transform 0.3s ease;
    }

    .team-card:hover .team-img {
      transform: scale(1.05);
    }

    .team-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .team-info {
      margin-top: 60px;
      padding: 20px;
    }

    .team-info h3 {
      font-size: 1.6rem;
      font-weight: 600;
      color: #008cff;
      margin-bottom: 5px;
    }

    .team-info p {
      color: #555;
      font-size: 0.95rem;
    }

    @media (max-width: 992px) {
      .team-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .team-container {
        grid-template-columns: repeat(1, 1fr);
      }

      .team-card {
        max-width: 90%;
      }
    }