   /* 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;
    }

       /*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;
      }
    }
    /* Portfolio Section */
        body {
        font-family: Arial, sans-serif;
        background: linear-gradient(to bottom right, #f5f9ff, #e8f1ff);
        color: #333;
        margin: 0;
        padding: 0;
    }

    .portfolio-section {
        text-align: center;
        padding: 60px 20px;
    }

    .portfolio-title {
        font-size: 36px;
        font-weight: bold;
        color: #0057c2;
        margin-bottom: 10px;
        animation: fadeDown 1s ease-in-out;
    }

    .portfolio-description {
        max-width: 950px;
        margin: 0 auto 50px;
        color: #555;
        font-size: 17px;
        animation: fadeUp 1.2s ease-in-out;
    }

    .project {
        margin-bottom: 60px;
        padding-bottom: 40px;
        position: relative;
        animation: fadeUp 1s ease-in-out;
    }

    .project-title {
        font-size: 30px;
        font-weight: bold;
        color: #003f88;
        text-align: left;
        margin-left: 8%;
        margin-bottom: 15px;
        position: relative;
    }

    .project-title::before {
        content: "";
        position: absolute;
        left: -20px;
        top: 50%;
        transform: translateY(-50%);
        width: 8px;
        height: 40px;
        background-color: #007bff;
        border-radius: 4px;
    }

    .project-image {
        width: 90%;
        max-width: 1600px;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 90, 255, 0.15);
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .project-image:hover {
        transform: scale(1.03);
        box-shadow: 0 8px 30px rgba(0, 90, 255, 0.3);
    }

    .project-description {
      max-width: 90%;
        text-align: justify;
        margin-left: 5%;
        font-size: 16px;
        color: #444;
        line-height: 1.7;
    }

       /* View Project Button */
    .view-btn {
        display: inline-block;
        background-color: #007bff;
        color: white;
        padding: 12px 24px;
        margin-top: 10px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: bold;
        transition: box-shadow 0.3s, transform 0.2s;
    }

    .view-btn:hover {
        box-shadow: 0 6px 20px rgba(0, 90, 255, 0.4);
        transform: translateY(-3px);
    }


    /* Gradient divider */
    .divider {
        width: 80%;
        height: 2px;
        margin: 20px auto;
        background: linear-gradient(to right, transparent, #007bff, transparent);
        border-radius: 5px;
    }

    @keyframes fadeUp {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeDown {
        from { opacity: 0; transform: translateY(-20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 768px) {
        .project-image { width: 100%; }
        .project-title { margin-left: 20px; }
        .project-title::before { left: -10px; height: 30px; }
    }