
      :root {
            --primary: #4f46e5;
            --primary-light: #818cf8;
            --bg: #0f172a;
            --card-bg: #0f172a;
            --text: #e2e8f0;
            --text-muted: #94a3b8;
            --border: rgba(129, 140, 248, 0.2);
            --transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        

        body {
            font-family: 'Manrope', sans-serif;
            background: var(--bg);
            color: var(--text);
            overflow-x: hidden;
                background-color: #0f172a ! Important;
        }

        h1, h2, h3, h4 { font-weight: 800; line-height: 1.2; }

        .container {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Floating Icons Background */
        .bg-icons {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: -1;
            opacity: 0.08;
        }

        .bg-icon {
            position: absolute;
            font-size: 4rem;
            color: var(--primary-light);
            animation: float 20s infinite linear;
        }

        @keyframes float {
            0% { transform: translateY(100vh) rotate(0deg); }
            100% { transform: translateY(-100px) rotate(360deg); }
        }

        /* Navbar */
        /* ---------- Header ---------- */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2000;
  background: transparent;
}

/* ---------- Hamburger ---------- */
.hamburger {
  width: 36px;
  height: 28px;
  position: relative;
  cursor: pointer;
  display: none;
}

.hamburger i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.6rem;
  color: #4f46e5;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Default state */
.hamburger .fa-xmark {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

/* Active state (menu open) */
.hamburger.active .fa-bars {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-90deg);
}

.hamburger.active .fa-xmark {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0);
}

/* ---------- Navigation Links ---------- */
.nav-links {
  display: flex;
  gap: 3rem;
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    z-index: 2100;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transition: right 0.4s ease;
    z-index: 2000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.6rem;
    color: #fff;
  }
}

        header {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 2rem 0;
            z-index: 1000;
            transition: var(--transition);
        }

        header.scrolled {
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(20px);
            padding: 1.2rem 0;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2.4rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-links {
            display: flex;
            gap: 3rem;  pointer-events: auto;
        }

        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }

        .nav-links a:hover::after { width: 100%; }

        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: var(--primary);
            cursor: pointer;
        }

        /* Hero */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 100px;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 5.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #fff, var(--primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-content h2 {
            font-size: 2.8rem;
            color: var(--primary-light);
            margin-bottom: 2rem;
        }

        .hero-content p {
            font-size: 1.4rem;
            color: var(--text-muted);
            max-width: 600px;
            /* margin-bottom: 3rem; */
        }
.hero-grid img{width: 100%;}
.footer-social a{text-decoration: none;}
        .btn-primary {
            padding: 1.2rem 3rem;
            background: var(--primary);
            border: none; opacity: 1!important;
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 12px;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
        }
.btn-primary  a{color: #fff; text-decoration: none;}
        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(79, 70, 229, 0.4);
        }

        .hero-image {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 1rem;
            text-align: center;
            backdrop-filter: blur(10px);
        }

        .hero-icon {
            font-size: 12rem;
            color: var(--primary-light);
            margin-bottom: 2rem;
        }

        .hero-image p {
            font-size: 1.6rem;
            color: var(--text-muted);
        }

        /* Sections */
        section { padding: 50px 0; }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title {
            font-size: 3rem;
            margin-bottom: 0.5rem;
            background: linear-gradient(90deg, #fff, var(--primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-subtitle {
            font-size: 1.3rem;
            color: var(--text-muted);
            max-width: 800px;
            margin: 0 auto;
        }

        /* About */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .about-text p {
               font-size: 18px;
    margin-bottom: 1rem;
            color: var(--text-muted);
        }

        .about-image {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 1rem;
            text-align: center;
            backdrop-filter: blur(10px);
        }
.about-image p{    font-size: 1.6rem;
    color: var(--text-muted);}
        .about-icon {
            font-size: 10rem;
            color: var(--primary-light);
            margin-bottom: 2rem;
        }
        .about-icon img{width: 100%;height: 550px;
    object-fit: cover;}

        /* Cards */
      .grid {
    display: grid
;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 2rem;
}

        .card {
                background: #0f172a!important;
            background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 25px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .card:hover {
            transform: translateY(-15px);
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15);
        }

        .card-icon {
            font-size: 3rem;
            color: var(--primary-light);
            margin-bottom: 1rem;
        }

        .card h3 {
                font-size: 20px;
            margin-bottom: 1rem;
            color: var(--primary-light);
        }
         .card p{color: #fff;}

        /* Services */
        .service-card {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            background: var(--card-bg);
            border: 1px solid var(--border);
        }
.service-icon{width: 100%;}
.service-icon img{    height: 280px;
    width: 100%;
    object-fit: cover;}
        .service-icon-wrapper {
            height: 280px;
            background: linear-gradient(135deg, rgba(79,70,229,0.2), rgba(129,140,248,0.1));
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-icon {
            font-size: 8rem;
            color: var(--primary-light);
        }

        .service-content {
            padding: 1.5rem;
        }
    .service-content h3 {font-size: 20px;
    margin-bottom: 1rem;
    color: var(--primary-light);}
      .service-content p{color: #fff;}
        /* Contact */
        .contact-section {
            background: linear-gradient(135deg, #1e293b, #0f172a);
            border-radius: 32px;
            padding: 4rem 4rem;
                   margin: 50px 6rem 4rem 6rem;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
        }

        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 1.4rem;
            margin-bottom: 2rem;
            background: rgba(255,255,255,0.05);
            border: 1px solid var(--border);
            border-radius: 16px;
            color: var(--text);
            font-size: 1.1rem;
        }

        /* Footer */
        footer {
            padding: 5rem 0;
            text-align: center;
            border-top: 1px solid var(--border);
        }

        .footer-logo {
            font-size: 2.2rem;
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .logo {
    font-size: 1.4rem;}
            .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; text-align: center; }
            .hero-content h1 { font-size: 3rem; }
            .contact-section { margin: 0; border-radius: 0; padding: 2rem;}
        }
.hero-content h2 {
    font-size: 2rem;}

          @media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 1100;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: right 0.4s ease;
        z-index: 1050;
        display: flex; /* IMPORTANT */
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.6rem;
    }
}



    .footer {
  background: radial-gradient(circle at top, #0f172a, #020617);
  color: #cbd5f5;
      padding: 40px 16px 5px 16px;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.footer-text {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 18px;
}

.footer-links a {
  font-size: 14px;
  color: #8b9cff;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c7d2fe;
  font-size: 14px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #4f46e5;
  color: #fff;
}

.footer-subscribe {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 360px;
  margin: 0 auto 18px;
  background: #fff;
  border-radius: 999px;
  padding: 4px;
}

.footer-subscribe input {
  flex: 1;
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  outline: none;
  font-size: 14px;
}

.footer-subscribe button {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #4f46e5;
  color: #fff;
  cursor: pointer;
}

.footer-copy {
  font-size: 12px;
  opacity: 0.6;margin-top: 40px;
}


    /* Arrow Scroll to Top Button */
    .scroll-top-btn{
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #000;
      border: none;
      border-radius: 50%;
      font-size: 1.5rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--glow);
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px) scale(0.8);
      transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
      z-index: 999;
      backdrop-filter: blur(8px);
    }

    .scroll-top-btn.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0) scale(1);
    }

    .scroll-top-btn:hover {
      transform: translateY(-6px) scale(1.12);
      box-shadow: 0 0 45px rgba(0, 212, 255, 0.7);
    }

    .scroll-top-btn:active {
      transform: translateY(-4px) scale(1.08);
    }

    .scroll-top-btn i {
      animation: bounce 2s infinite; color: #fff;
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }

    /* Responsive */
    @media (max-width: 576px) {
      .scroll-top-btn {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
        bottom: 20px;
        right: 20px;
      }
    }