     /* 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;
    }
  }

  /* our services */
     /* === Global Styles === */
    body {
      font-family: 'Poppins', sans-serif;
      background: #f4f9ff;
      margin: 0;
      padding: 0;
      color: #222;
    }

    h1, h2, p {
      margin: 0;
      padding: 0;
    }

    section.services-section {
      display: flex;
      flex-direction: column;
      gap: 60px;
      padding: 40px 8%;
    }

    /* === Section Heading === */
    .section-title {
      text-align: center;
      font-size: 30px;
      color: #003366;
      font-weight: 600;
      margin-bottom: 40px;
      position: relative;
    }

    .section-title::after {
      content: "";
      width: 90px;
      height: 4px;
      background: #00bfff;
      display: block;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    /* === Service Card === */
    .service-card {
      display: flex;
      align-items: center;
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: all 0.4s ease;
      opacity: 0;
      transform: translateY(50px);
      animation: fadeUp 1s forwards;
    }

    .service-card.reverse {
      flex-direction: row-reverse;
      animation-delay: 0.2s;
    }

    .service-card:hover {
      transform: translateY(-5px) scale(1.02);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .service-img img {
      width: 450px;
      height: 320px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .service-card:hover .service-img img {
      transform: scale(1.05);
    }

    .service-content {
      flex: 1;
      padding: 40px;
    }

    .service-content h2 {
      color: #003366;
      font-size: 22px;
      margin-bottom: 15px;
      line-height: 1.4;
    }

    .service-content p {
      color: #555;
      margin-bottom: 15px;
      line-height: 1.6;
    }

    .service-content ul {
      margin: 0 0 20px;
      padding-left: 20px;
      color: #333;
    }

    .service-content ul li {
      margin-bottom: 8px;
      list-style: disc;
      transition: color 0.3s;
    }

    .service-content ul li:hover {
      color: #00bfff;
    }

    .btn-learn {
      display: inline-block;
      background-color: #00bfff;
      color: #fff;
      padding: 10px 24px;
      border-radius: 6px;
      text-decoration: none;
      transition: background 0.3s, transform 0.3s;
    }

    .btn-learn:hover {
      background-color: #003366;
      transform: translateY(-3px);
    }

    /* === Animation === */
    @keyframes fadeUp {
      0% {
        opacity: 0;
        transform: translateY(50px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* === Responsive === */
    @media (max-width: 900px) {
      .service-card,
      .service-card.reverse {
        flex-direction: column;
      }
      .service-img img {
        width: 100%;
        height: auto;
      }
      .service-content {
        padding: 25px;
      }
    }
    
    /* our work strategy */
       .container {
      max-width: 1200px;
      margin: auto;
      padding: 40px 20px;
    }

        /* General Reset */
        * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    /* Container */
    .container {
      max-width: 1100px;
      margin: auto;
      padding: 40px 20px;
      text-align: center;
    }

    /* Headings */
    h1 {
      font-size: 40px;
      color: #080071;
      margin-bottom: 10px;
      opacity: 0;
      transform: translateY(-20px);
      animation: fadeIn 1s ease-in-out forwards;
    }

    h3 {
      font-size: 22px;
      color: #555;
      font-weight: normal;
      margin-bottom: 50px;
      opacity: 0;
      transform: translateY(-20px);
      animation: fadeIn 1s ease-in-out forwards 0.3s;
    }

    .highlight {
      color: #d32f2f;
      font-weight: bold;
    }

    /* Process Flow */
    .process {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 30px;
      position: relative;
    }

    /* Connecting Line */
    .process::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 5%;
      width: 90%;
      height: 4px;
      background: #ccc;
      z-index: -1;
      animation: fadeIn 1.5s ease-in-out forwards;
    }

    /* Step Boxes */
    .step {
      flex: 1 1 30%;
      min-width: 280px;
      text-align: center;
      position: relative;
      opacity: 0;
      transform: translateY(20px);
      animation: slideIn 1s ease-in-out forwards;
    }

    .step:nth-child(1) { animation-delay: 0.2s; }
    .step:nth-child(2) { animation-delay: 0.4s; }
    .step:nth-child(3) { animation-delay: 0.6s; }
    .step:nth-child(4) { animation-delay: 0.8s; }
    .step:nth-child(5) { animation-delay: 1s; }
    .step:nth-child(6) { animation-delay: 1.2s; }

    /* Circle Numbers */
    .circle {
      width: 65px;
      height: 65px;
      line-height: 65px;
      border-radius: 50%;
      color: #fff;
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 15px;
      display: inline-block;
      transition: all 0.3s ease-in-out;
    }

    /* Colored Circles */
    .yellow { background: #fbc02d; }
    .green { background: #26a69a; }
    .blue { background: #1976d2; }
    .pink { background: #ec407a; }
    .red { background: #d32f2f; }
    .purple { background: #8e44ad; }

    /* Content Card */
    .content {
      background: #fff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
      min-height: 180px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .yellow-border { border-top: 5px solid #fbc02d; }
    .green-border { border-top: 5px solid #26a69a; }
    .blue-border { border-top: 5px solid #1976d2; }
    .pink-border { border-top: 5px solid #ec407a; }
    .red-border { border-top: 5px solid #d32f2f; }
    .purple-border { border-top: 5px solid #8e44ad; }

    /* Hover Effects */
    .step:hover .circle {
      transform: scale(1.1);
      filter: brightness(1.2);
    }

    .step:hover .content {
      transform: translateY(-5px);
      box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .process {
        flex-direction: column;
        align-items: center;
      }

      .step {
        width: 90%;
        margin-bottom: 20px;
      }

      .process::before {
        display: none;
      }

      h1 {
        font-size: 25px;
      }

      h3 {
        font-size: 15px;
      }

      .content {
        padding: 15px;
      }
    }

    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes slideIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

       /*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;
      }
    }
