 /* 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;
      }
    }

    /* Hero Section */
    .hero {
      margin-top: 80px;
      display: flex; justify-content: space-between; align-items: center;
      padding: 30px 8%; flex-wrap: wrap; position: relative;
    }
    .hero-text { max-width: 500px; z-index: 2; animation: fadeIn 1s ease; }
    .hero-text h4 { color: #0d084b; font-weight: 600; margin-bottom: 10px; }
    .hero-text h1 { font-size: 42px; font-weight: 700; line-height: 1.2; min-height: 120px; }
    .hero-text h1 span { color: #008cff; }
    .hero-text p { font-size: 16px; margin: 15px 0 25px; color: #555; }
    .hero-buttons { display: flex; gap: 15px; }

    /* Buttons */
    .btn-primary, .btn-secondary {
      padding: 12px 24px; border-radius: 25px; text-decoration: none; font-weight: 600; transition: 0.3s;
    }
    .btn-primary { background: #008cff; color: #fff; }
    .btn-primary:hover { background: #051a3d; }
    .btn-secondary { background: #ff4b2b; color: #fff; }
    .btn-secondary:hover { background: #e03e20; }

    /* Hero Image */
    .hero-img { max-width: 550px; z-index: 2; }
    .hero-img img { width: 100%; border-radius: 10px; }

    /* Curved Background */
    .hero::after {
      content: ""; position: absolute; top: 0; right: 0; width: 50%; height: 80%;
      background: #0084ff; border-bottom-left-radius: 50% 20%; z-index: 1;
      opacity: 0.2;
    }

    /* Fade animation for text slides */
    .fade { animation: fadeEffect 1s ease; }
    @keyframes fadeEffect { from { opacity: 0; transform: translateY(20px);} to { opacity: 1; transform: translateY(0);} }
    @keyframes fadeIn { from {opacity: 0;} to {opacity: 1;} }

    /* Responsive */
    @media (max-width: 900px) {
      nav ul { display: none; }
      .menu-toggle { display: flex; }
      .hero { flex-direction: column; text-align: center; }
      .hero-text h1 { font-size: 30px; }
      .hero-img { margin-top: 20px; max-width: 100%; }
      .hero::after { width: 100%; height: 50%; border-bottom-left-radius: 0; border-top-left-radius: 100% 40%; }
      .hero-buttons { justify-content: center; }
    }

    /* ====== about us ====== */

    .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 {
      font-size: 1.8rem;
      font-weight: bold;
      color: #008cff;
    }
    .description {
      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;
      }
    }

    /* ====== services section ====== */
   :root {
    --bg: #ffffff;
    --text: #101010;
    --brand: #008cff;
    --shadow: 0 10px 25px rgba(0,0,0,.08);
    --radius: 18px;
  }

  body {
    margin: 0;
    font-family: system-ui, Roboto, Helvetica, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
  }

  .wrap {
    max-width: 1180px;
    margin: auto;
    padding: 40px 16px;
  }

  .heading {
    color: #001f4d;
    text-align: center;
    margin-bottom: 24px;
  }

  h2{
    font-family: sans-serif;
    font-size: 3.5rem;
    color: #008cff;
  }

  .eyebrow {
    color: #051a3d;
    letter-spacing: .2em;
    font-size: .8rem;
    color: var(--brand);
    font-weight: 700;
  }

  h2 {
    margin: 6px 0 8px;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  }

  .sub {
    color: #555;
    margin: 0 0 22px;
  }

  .services {
    position: relative;
  }

  .viewport {
    overflow: hidden;
  }

  .track {
    display: flex;
    gap: 18px;
    padding: 6px 2px 20px;
    will-change: transform;
  }

  .card {
    position: relative;
    width: 300px;
    flex: 0 0 300px;
    height: 340px;
    perspective: 1000px;
  }

  .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform .7s cubic-bezier(.2,.7,.2,1);
  }

  .card:hover .card-inner,
  .card.flipped .card-inner {
    transform: rotateY(180deg);
  }

  .face {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #008cff, #001f4d); /* dark sky blue gradient */
    color: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px 20px 56px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    backface-visibility: hidden;
  }

  .face.back {
    transform: rotateY(180deg);
  }

  .tit {
    color: #ffd52b;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 4px 0 8px;
  }

  .desc {
    line-height: 1.45;
    font-size: .93rem;
    color: #f0f0f0;
  }

  .btn {
    position: absolute;
    left: 20px;
    bottom: 20px;
    padding: 10px 16px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: #fff;
    color: #001f4d;
    font-weight: 700;
  }

  .accent {
    position: absolute;
    height: 8px;
    width: 70%;
    left: 15%;
    bottom: -6px;
    background: #ffd52b;
    border-radius: 999px;
    opacity: .7;
  }

  .icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.2);
    margin-bottom: 10px;
    font-size: 24px;
  }

  .controls {
    margin-top: 8px;
    display: flex;
    justify-content: center;
  }

  .toggle {
    border: none;
    background: #111;
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
  }

  /* Expanded grid view */
  .services.expanded .viewport {
    overflow: visible;
  }

  .services.expanded .track {
    flex-wrap: wrap;
    transform: none !important;
    justify-content: center;
  }

  .services.expanded .card {
    flex: 0 1 calc(33.333% - 18px);
    width: auto;
  }

  @media (max-width:800px) {
    .services.expanded .card { flex: 0 1 calc(50% - 14px); }
  }

  @media (max-width:520px) {
    .services.expanded .card { flex: 0 1 100%; }
  }


    /* ====== why choose us ====== */

    .why-choose-us {
      background-color: #001f4d;
      text-align: center;
      margin: 19px auto;
      max-width: 1200px;
      height: 550px;
      border-radius: 32px;
      padding: 24px 12px;
      box-sizing: border-box;
    }

    .why-choose-us h2 {
      color: #ffd52b;
      margin-top: 15px;
      font-size: 3.5rem;
      margin-bottom: 10px;
    }

    .why-choose-us p.subtext {
      max-width: 80%;
      margin: 0 auto 40px;
      color: #ffffff;
      font-size: 20px;
    }

    .why-choose-us .box-container {
      display: flex;
      justify-content: center;
      align-items: stretch;
      gap: 20px;
      flex-wrap: nowrap;
    }

    .why-choose-us .box {
      background: #fff;
      border-radius: 12px;
      padding: 5px 15px;
      width: 250px;
      text-align: center;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      cursor: pointer;
      position: relative;
      overflow: hidden;
      flex-shrink: 0;
    }

    .why-choose-us .box:hover {
      transform: translateY(-10px) scale(1.05);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

.why-choose-us .icon {
  margin-left: 85px;
  font-size: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}

    .purple { color: #7d4dff; }
    .orange { color: #ff914d; }
    .red { color: #ffd52b; }
    .green { color: #2ecc71; }

    .why-choose-us h3 {
      font-size: 18px;
      margin-bottom: 10px;
    }

    .why-choose-us p {
      font-size: 14px;
      color: #666;
    }

    /* Hover gradient effect */
    .why-choose-us .box::before {
      content: "";
      position: absolute;
      top: -100%;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(120deg, rgba(125,77,255,0.2), rgba(46,204,113,0.2));
      transition: top 0.4s ease;
      z-index: 0;
    }

    .why-choose-us .box:hover::before {
      top: 0;
    }

    .why-choose-us .box * {
      position: relative;
      z-index: 1;
    }

    /* Responsive styles */
    @media (max-width: 900px) {
      .why-choose-us {
      height: auto;
      padding: 20px 6px;
      border-radius: 18px;
      }
      .why-choose-us h2 {
      font-size: 2.2rem;
      }
      .why-choose-us .box-container {
      gap: 14px;
      }
      .why-choose-us .box {
      width: 180px;
      padding: 22px 10px;
      }
   .why-choose-us .icon {
            margin-left: 125px;
  font-size: 28px;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
    }

    @media (max-width: 600px) {
      .why-choose-us {
      padding: 24px 10px;
      border-radius: 10px;
      }
      .why-choose-us h2 {
      font-size: 1.4rem;
      margin-bottom: 6px;
      }
      .why-choose-us p.subtext {
      font-size: 15px;
      margin-bottom: 18px;
      }
      .why-choose-us .box-container {
      flex-direction: column;
      align-items: center;
      gap: 12px;
      }
      .why-choose-us .box {
      width: 95vw;
      max-width: 340px;
      padding: 16px 8px;
      }
 .why-choose-us .icon {
          margin-left: 125px;
  font-size: 28px;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
      .why-choose-us h3 {
      font-size: 1rem;
      }
      .why-choose-us p {
      font-size: 13px;
      }
    }

    /* ====== Our Previous Work ====== */

    .portfolio-section {
      max-width: 1000px;
      margin: auto;
      padding: 60px 20px;
      text-align: center;
    }
    .portfolio-card {
  border: 3px solid #FFD700; /* Yellow border */
  border-radius: 15px;       /* Round corners */
  overflow: hidden;
        box-shadow: 0px 8px 25px rgba(0,0,0,0.15);          /* Image/content ko round ke andar rakhega */
}

    .portfolio-section h2 {
      font-size: 42px;
      margin-bottom: 10px;
      color: #008cff;
    }
    p.sub {
      color: #061997;
      margin-bottom: 40px;
      font-size: 18px;
    }
    /* Swiper */
    .swiper {
      width: 100%;
      padding: 20px 0;
    }

    .swiper-slide {
      background: #fff;
      border-color: yellow;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 5px 8px 25px rgba(0,0,0,0.15);
      transition: transform 0.6s ease, box-shadow 0.6s ease;
    }

    .swiper-slide-active {
      transform: scale(1.03);
      box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    }

    .portfolio-card img {
      width: 100%;
      height: 350px;
      object-fit: cover;
    }

    .portfolio-content {
      padding: 25px;
      text-align: left;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .portfolio-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .portfolio-content h3 {
      font-size: 24px;
      color: #111;
      margin: 0;
    }

    .portfolio-content p {
      font-size: 16px;
      color: #555;
      margin: 0;
    }

    .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .tag {
      background: #0077ff;
      color: #fff;
      font-size: 13px;
      padding: 6px 15px;
      border-radius: 20px;
    }

    /* View Button */
    .view-btn {
      background: #0077ff;
      color: #fff;
      padding: 8px 18px;
      border-radius: 6px;
      text-decoration: none;
      font-size: 14px;
      transition: 0.3s;
    }

    .view-btn:hover {
      background: #005bb5;
    }

    /* work process */
       .process-section {
      text-align: center;
      padding: 60px 20px;
    }

    .process-section h5 {
      color: #3b82f6;
      margin-bottom: 10px;
      font-size: 16px;
      letter-spacing: 2px;
    }

    .process-section h2 {
      font-size: 32px;
      font-weight: 600;
      margin-bottom: 60px;
    }

    .process-steps {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      position: relative;
      max-width: 1000px;
      margin: 0 auto;
    }

    .step {
      width: 22%;
      text-align: center;
      position: relative;
    }

    .step .icon-wrap {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background: #e5f0ff;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0 auto 15px;
      position: relative;
    }

    .step .icon-wrap span {
      background: #3b82f6;
      color: #fff;
      font-weight: bold;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 14px;
      position: absolute;
      top: -10px;
      right: -10px;
    }

    .step h3 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .step p {
      font-size: 14px;
      color: #666;
    }

    /* Connecting lines */
    .process-steps::before {
      content: "";
      position: absolute;
      top: 30px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: #ccc;
      z-index: -1;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .process-steps {
        flex-direction: column;
      }
      .step {
        width: 100%;
        margin-bottom: 40px;
      }
      .process-steps::before {
        display: none;
      }
    }

        /* Styling for the WhatsApp button */
  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 999;
  }

  .whatsapp-float img {
    width: 24px;
    height: 24px;
  }

  .whatsapp-label {
    display: inline;
  }

  /* Mobile view - only WhatsApp icon */
  @media (max-width: 768px) {
    .whatsapp-float {
      padding: 10px;
      border-radius: 50%;
      flex-direction: column;
    }

    .whatsapp-label {
      display: none; /* Hide label on mobile */
    }
  }

  /* Larger screen - icon + label */
  @media (min-width: 769px) {
    .whatsapp-float {
      flex-direction: row;
    }

    .whatsapp-label {
      font-size: 14px; /* Adjust font size on larger screen */
    }
  }

    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        align-items: flex-start;
      }
    }

/* TOols Section */
   body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background: #f9f9f9;
      color: #333;
    }

    .tools-section {
      text-align: center;
      padding: 20px 10px;
    }

    .tools-section h2 {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 50px;
      color: #222;
      position: relative;
      display: inline-block;
      animation: fadeDown 1s ease-in-out;
    }

    .tools-section h2::after {
      content: "";
      width: 60%;
      height: 3px;
      background: #4a90e2;
      display: block;
      margin: 8px auto 0;
      border-radius: 3px;
    }

    .tools-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 30px;
      justify-items: center;
      animation: fadeUp 1.2s ease-in-out;
    }

    .tool-card {
      background: #fff;
      border: 2px solid #e0e0e0;
      border-radius: 12px;
      padding: 25px 15px;
      text-align: center;
      width: 160px;
      transition: all 0.35s ease;
      box-shadow: 0 3px 8px rgba(16, 63, 110, 0.08);
      cursor: pointer;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 0.8s ease forwards;
    }

    /* delay animation for each tool */
    .tool-card:nth-child(1) { animation-delay: 0.2s; }
    .tool-card:nth-child(2) { animation-delay: 0.4s; }
    .tool-card:nth-child(3) { animation-delay: 0.6s; }
    .tool-card:nth-child(4) { animation-delay: 0.8s; }
    .tool-card:nth-child(5) { animation-delay: 1s; }
    .tool-card:nth-child(6) { animation-delay: 1.2s; }
    .tool-card:nth-child(7) { animation-delay: 1.4s; }
    .tool-card:nth-child(8) { animation-delay: 1.6s; }
    .tool-card:nth-child(9) { animation-delay: 1.8s; }

    .tool-card:hover {
      transform: translateY(-10px) scale(1.05);
      border-color: #4a90e2;
      box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }

    .tool-logo {
      width: 55px;
      height: 55px;
      object-fit: contain;
      margin-bottom: 12px;
      transition: transform 0.4s ease;
    }

    .tool-card:hover .tool-logo {
      transform: rotate(10deg) scale(1.1);
    }

    .tool-name {
      font-size: 15px;
      font-weight: 600;
      color: #444;
    }

    @media (max-width: 768px) {
      .tools-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
      }
      .tool-card {
        width: 130px;
        padding: 20px 12px;
      }
      .tool-logo {
        width: 45px;
        height: 45px;
      }
    }

    /* Animations */
    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Fact Section */
        body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background: #f4f6fb;
      color: #333;
    }

    .faq-section {
      max-width: 900px;
      margin: 60px auto;
      padding: 20px;
    }

    .faq-title {
      text-align: center;
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 40px;
      color: #222;
      animation: fadeDown 1s ease;
    }

    .faq-item {
      background: #fff;
      border-radius: 12px;
      margin-bottom: 15px;
      padding: 20px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .faq-item:hover {
      transform: scale(1.02);
      border-left: 5px solid #4a90e2;
      box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }

    .faq-question {
      font-size: 18px;
      font-weight: 600;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: color 0.3s ease;
    }

    .faq-question:hover {
      color: #4a90e2;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: all 0.4s ease;
      font-size: 15px;
      color: #555;
      margin-top: 10px;
      line-height: 1.6;
    }

    .faq-item.active .faq-answer {
      max-height: 300px;
      opacity: 1;
    }

    .faq-icon {
      font-size: 22px;
      transition: transform 0.4s ease;
      color: #4a90e2;
    }

    .faq-item.active .faq-icon {
      transform: rotate(180deg);
    }

    /* Animations */
    @keyframes fadeDown {
      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;
      }
    }

    /* Enquiry Form  */
  

    /* Background Section */
    .enquiry-section {
      margin-top: 40px;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      display: flex;
      justify-content: center;
      align-items: center;
      visibility: hidden;
      opacity: 0;
      transition: 0.3s;
      z-index: 10;
    }

    .enquiry-section.active {
      visibility: visible;
      opacity: 1;
    }

    /* Enquiry Form Box */
    .enquiry-form {
      background: #ffffff;
      border-radius: 12px;
      box-shadow: 0 0 20px rgba(0,0,0,0.1);
      width: 380px;
      max-width: 90%;
      position: relative;
      overflow-y: auto;
      max-height: 85vh;
      animation: scaleUp 0.3s ease;
    }

    @keyframes scaleUp {
      0% { transform: scale(0.85); opacity: 0; }
      100% { transform: scale(1); opacity: 1; }
    }

    /* Header Title */
    .form-header {
      background: #007bff;
      color: #fff;
      padding: 12px 20px;
      border-top-left-radius: 12px;
      border-top-right-radius: 12px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 5;
    }

    .form-header h2 {
      color: white;
      margin: 0;
      font-size: 18px;
      font-weight: 600;
    }

    /* Close Button */
    .close-btn {
      font-size: 24px;
      color: #fff;
      cursor: pointer;
      font-weight: bold;
      line-height: 1;
    }

    .close-btn:hover {
      color: #ffdfdf;
    }

    /* Form Body */
    .form-body {
      padding: 20px;
    }

    .form-body label {
      font-weight: 500;
      color: #333;
      display: block;
      margin-bottom: 5px;
      font-size: 14px;
    }

    .form-body input,
    .form-body textarea {
      width: 100%;
      padding: 10px;
      margin-bottom: 12px;
      border: 1px solid #ccc;
      border-radius: 8px;
      background: #f9f9f9;
      font-size: 14px;
      transition: all 0.3s;
    }

    .form-body input:focus,
    .form-body textarea:focus {
      border-color: #007bff;
      background: #fff;
      outline: none;
    }

    .form-body button {
      width: 100%;
      padding: 12px;
      background: #007bff;
      color: #fff;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 16px;
      font-weight: 600;
      transition: 0.3s;
      position: sticky;
      bottom: 0;
    }

    .form-body button:hover {
      background: #0056b3;
    }

    /* Thank You Popup */
    .popup {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.6);
      display: flex;
      justify-content: center;
      align-items: center;
      visibility: hidden;
      opacity: 0;
      transition: 0.3s;
      z-index: 20;
    }

    .popup.active {
      visibility: visible;
      opacity: 1;
    }

    .popup-content {
      background: #fff;
      padding: 25px 30px;
      border-radius: 12px;
      text-align: center;
      box-shadow: 0 0 20px rgba(0,0,0,0.2);
      width: 300px;
      animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.85); }
      to { opacity: 1; transform: scale(1); }
    }

    .popup-content h3 {
      margin-bottom: 10px;
      color: #2b3a55;
      font-size: 20px;
    }

    .popup-content p {
      font-size: 14px;
      color: #555;
      margin-bottom: 15px;
    }

    .popup-content button {
      background: #007bff;
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 10px 20px;
      cursor: pointer;
      font-weight: 600;
      transition: 0.3s;
    }

    .popup-content button:hover {
      background: #0056b3;
    }

    /* Mobile Responsive */
    @media (max-width: 480px) {
      .enquiry-form {
        width: 90%;
        max-height: 80vh;
      }

      .form-header h2 {
        font-size: 16px;
      }

      .close-btn {
        font-size: 22px;
      }

      .popup-content {
        width: 85%;
        padding: 20px;
      }
    }

    /*Get Started */
      /* Section Styling */
  .start-project {
    background: linear-gradient(135deg, #ffffff, #f7f8fa);
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
  }

  .start-project::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0,123,255,0.1), transparent 60%);
    animation: rotateBg 12s linear infinite;
    z-index: 0;
  }

  @keyframes rotateBg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  .start-project .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
  }

  .start-project h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
  }

  .start-project h2 span {
    background: linear-gradient(90deg, #007bff, #6f42c1, #e83e8c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientFlow 3s linear infinite;
  }

  @keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
  }

  .start-project p {
    color: #444;
    font-size: 17px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }

  /* Animated Button */
  .btn-animated {
    display: inline-block;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #007bff, #6f42c1, #e83e8c);
    background-size: 200%;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 0 15px rgba(0,123,255,0.3);
    position: relative;
    overflow: hidden;
  }

  .btn-animated:hover {
    background-position: 100% 0;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(111,66,193,0.4);
  }

  /* Button Hover Ripple Effect */
  .btn-animated::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.4);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.6s ease;
  }

  .btn-animated:hover::after {
    transform: translate(-50%, -50%) scale(8);
    opacity: 0;
  }

  /* Fade Animation */
  .fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards;
  }

  .delay-1 { animation-delay: 0.3s; }
  .delay-2 { animation-delay: 0.6s; }

  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .start-project {
      padding: 10px 5px;
    }

    .start-project h2 {
      font-size: 28px;
    }

    .start-project p {
      font-size: 15px;
    }

    .btn-animated {
      padding: 14px 30px;
      font-size: 16px;
    }
  }

  