
        /* --- CSS Variables & Creative Palette --- */
        :root {
            --primary: #3b82f6;
            --primary-glow: rgba(59, 130, 246, 0.5);
            --accent: #06b6d4;
            --secondary: #8b5cf6;
            --bg-dark: #030305;
            --glass-bg: rgba(255, 255, 255, 0.03);
            --glass-border: rgba(255, 255, 255, 0.08);
            --glass-highlight: rgba(255, 255, 255, 0.15);
            --text-main: #ffffff;
            --text-muted: #94a3b8;
            --radius: 24px;
            --container-width: 1280px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-main);
            line-height: 1.7;
            overflow-x: hidden;
            position: relative;
        }

        /* --- Creative Background Animation --- */
        .bg-mesh {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -1;
            overflow: hidden;
            background: #050505;
        }

        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.4;
            animation: floatOrb 20s infinite ease-in-out alternate;
        }

        .orb-1 { width: 500px; height: 500px; background: var(--primary); top: -100px; left: -100px; }
        .orb-2 { width: 600px; height: 600px; background: var(--secondary); bottom: -100px; right: -100px; animation-delay: -5s; }
        .orb-3 { width: 400px; height: 400px; background: var(--accent); top: 40%; left: 40%; animation-delay: -10s; opacity: 0.2; }

        @keyframes floatOrb {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(30px, 50px) scale(1.1); }
        }
        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 2;
        }
          /* --- Glassmorphism Components --- */
        .glass-panel {
            background: var(--glass-bg);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius);
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
            transition: 0.4s ease;
        }

        .glass-panel:hover {
            border-color: var(--glass-highlight);
            transform: translateY(-5px);
            box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
        }  
          /* --- Footer --- */
        footer {
            background: #000;
            padding: 80px 0 30px;
            border-top: 1px solid var(--glass-border);
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr; /* 3 columns now */
            gap: 50px;
            margin-bottom: 60px;
        }

        .footer-links a {
            display: block;
            color: var(--text-muted);
            margin-bottom: 12px;
            transition: 0.2s;
        }

        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }

.hero-section{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container-box{
    max-width: 900px;
}

.hero-title{
    font-size: 60px;
    font-weight: 700;

}
 .hero-btns{
    display:flex;
    gap:20px;
    justify-content:center;
    margin-top:30px;
}

.hero-btns .btn{
    position:relative;
    overflow:hidden;
    padding:14px 32px;
    border-radius:50px;
    font-weight:500;
    letter-spacing:0.5px;
    transition:0.4s ease;
    backdrop-filter: blur(10px);
}
.btn-primary{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.15);
    color:#fff;
}

/* sliding layer */
.btn-primary::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,#394861,#06b6d4);
    transform:translateX(-100%);
    transition:0.5s ease;
    z-index:-1;
}

.btn-primary:hover::before{
    transform:translateX(0);
}
.btn-primary:hover{
    border-color:transparent;
    color:#fff;
}
.btn-primary{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.15);
    color:#fff;
}

/* sliding layer */
.btn-primary::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,#cad4e3,#d2d9db);
    transform:translateX(-100%);
    transition:0.5s ease;
    z-index:-1;
}

.btn-primary:hover::before{
    transform:translateX(0);
}

.btn-primary:hover{
    border-color:transparent;
    color:#1f1c1c;
}
.btn-outline{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.25);
    color:#fff;
}

/* grey glass remove effect */
.btn-outline::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(255,255,255,0.08);
    transform:translateX(0);
    transition:0.5s ease;
    z-index:-1;
}

.btn-outline:hover::before{
    transform:translateX(100%);
}

.btn-outline:hover{
    background:transparent;
    border-color:rgba(255,255,255,0.4);
}
.text-slider{
    height: 70px;
    overflow: hidden;
    position: relative;
}

.text-track{
    display: flex;
    flex-direction: column;
    transition: transform 0.6s ease-in-out;
}

.text-track span{
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 55px;
    font-weight: 700;
     color: rgb(134, 190, 171);
}
.text-track span.active{
 color: rgb(134, 190, 171);
}

.hero-desc{
    margin-top: 25px;
    font-size: 18px;
    line-height: 1.6;
}/* GRADIENT ANIMATION */
@keyframes gradientMove{
    0%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0% 50%;}
}
/* ============================= */
/* 📱 MOBILE (max-width: 576px) */
/* ============================= */
@media (max-width:576px){

    .hero-section{
        height:auto;
        padding:120px 0 80px;
    }

    .container-box{
        margin-top:0;
        padding:0 10px;
    }

    .hero-title{
        font-size:34px;
        line-height:1.3;
    }

    .text-slider{
        height:50px;
    }

    .text-track span{
        height:50px;
        font-size:32px;
    }

    .hero-desc{
        font-size:15px;
        padding:0 10px;
    }

    .hero-btns{
        flex-direction:column;
        gap:15px;
    }

    .hero-btns .btn{
        width:100%;
        text-align:center;
    }
}


/* ============================= */
/* 📱 TABLET (577px – 768px) */
/* ============================= */
@media (min-width:577px) and (max-width:768px){

    .container-box{
        margin-top:-120px;
    }

    .hero-title{
        font-size:42px;
    }

    .text-track span{
        font-size:40px;
        height:60px;
    }

    .text-slider{
        height:60px;
    }

    .hero-desc{
        font-size:16px;
    }
}


/* ============================= */
/* 💻 SMALL LAPTOP (769px – 992px) */
/* ============================= */
@media (min-width:769px) and (max-width:992px){

    .container-box{
        margin-top:-180px;
    }

    .hero-title{
        font-size:50px;
    }

    .text-track span{
        font-size:48px;
    }
}


/* ============================= */
/* 🖥 LARGE SCREEN (1400px+) */
/* ============================= */
@media (min-width:1400px){

    .container-box{
        margin-top:-320px;
    }

    .hero-title{
        font-size:72px;
    }

    .text-track span{
        font-size:65px;
    }

    .hero-desc{
        font-size:20px;
    }
}
.about-stack .stack-card{
  position: sticky;
  top: 0;
  min-height: 100vh;
  padding: 100px 20px;

  display: flex;
  justify-content: center;
  align-items: center;

  background: linear-gradient(135deg,#020617,#0f172a);
}

/* GRID WRAPPER */
.team-grid{
  max-width: 1200px;
  width: 100%;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

/* TEAM CARD BIGGER */
.team-card{
  padding: 40px 30px;
  width: 320px;
  text-align: center;
  border-radius: 20px;
  transition: 0.4s;
}

.team-card:hover{
  transform: translateY(-12px) scale(1.04);
}

/* IMAGE */
.team-img-wrapper img{
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin-bottom: 20px;
}

/* STATS ROW — FORCE NEW LINE */
.stats-row{
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 60px;
  flex-wrap: wrap;
}

/* STAT BOX */
.stat-box{
  width: 220px;
  padding: 45px 20px;
  text-align: center;
  border-radius: 18px;
  transition: 0.4s;
}

.stat-box:hover{
  transform: translateY(-10px) scale(1.05);
}

/* GLASS EFFECT */
.glass-panel{
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
}

/* TEXT */
.team-card h3{
  color:#fff;
  margin-top:10px;
}

.team-card span{
  color:rgb(134,190,171);
  font-size:14px;
}

.team-card p{
  color:#cbd5e1;
  font-size:15px;
}

.stat-box h3{
  font-size:40px;
  color:#fff;
}

.stat-box p{
  color:#cbd5e1;
}
/* ===================== */
/* Tablet (max 992px) */
/* ===================== */
@media (max-width: 992px) {

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-title h2 {
    font-size: 45px !important;
  }

}

/* ===================== */
/* Mobile (max 576px) */
/* ===================== */
@media (max-width: 576px) {

  .team-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .stats-row {
    flex-direction: column;
    align-items: center;
  }

  .team-img-wrapper img {
    max-width: 200px;
  }

  h2 {
    font-size: 32px !important;
  }

  .glass-panel {
    padding: 20px;
  }

}


body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

.services {
  padding: 80px 8%;
  text-align: center;

}

.title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.title span {
  color: #dfac9c;
}

.subtitle {
  max-width: 750px;
  margin: auto;
  color: #e3dfdf;
  font-size: 18px;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  margin: 30px 0 70px;
  padding: 14px 30px;
  background: #4f5363;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: #42444d;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  grid-template-rows: auto auto;       /* 2 rows */
  gap: 30px;
}
.card {
  background: transparent;
  padding: 20px 30px; /* kam padding for compact height */
  border-radius: 12px;
  text-align: left;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(60px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  cursor: pointer; /* pointer cursor */
  height: auto; /* remove fixed height */
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #333; /* default text color */
}

.card i {
  font-size: 36px;
  color: #3b5bdb;
  transition: color 0.3s ease;
}

.card h3 {
  margin: 0;
  font-weight: 700;
  transition: color 0.3s ease;
}


/* Hover Effect */
.card:hover {
  background-color: transparent; /* blue background */
  color: white;
  box-shadow: 0 8px 20px rgba(168, 250, 249, 0.963);
}

.card:hover i,
.card:hover h3,
.card:hover p {
  color: white;
}
/* Scroll animation active */
.card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media(max-width: 992px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .services-container {
    grid-template-columns: 1fr;
  }

  .title {
    font-size: 34px;
  }
}
/* Projects Section */
.projects-section {
  padding: 80px 6%;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  color: #f1f0f0;
}

.section-header h2 span {
  color: #3b5bdb;
}

.section-header p {
  color: #555454;
  max-width: 650px;
  margin: 10px auto 0;
}

/* Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-content: center;
}

/* Project Card */
.project-card {
  background: transparent;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
  cursor: pointer;

  /* Fade & Pop on load */
  opacity: 0;
  transform: scale(0.9) translateY(20px);
  animation: popFade 0.6s forwards;
}

/* Staggered animation */
.project-card:nth-child(1) { animation-delay: 0.1s; }
.project-card:nth-child(2) { animation-delay: 0.3s; }
.project-card:nth-child(3) { animation-delay: 0.5s; }

/* Hover effect */
.project-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Card Image */
.card-img {
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover .card-img img {
  transform: scale(1.1);
}

/* Card Content */
.card-content {
  padding: 20px;
}

.category {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #3b5bdb;
  letter-spacing: 1px;
}

.card-content h3 {
  margin: 10px 0;
  font-size: 18px;
  color: white;
}

.card-content p {
  font-size: 10px;
  color: white;
  line-height: 1.5;
}

/* Pop & Fade Animation */
@keyframes popFade {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  60% {
    opacity: 1;
    transform: scale(1.05) translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ============================= */
/* Tablet View (max-width: 992px) */
/* ============================= */
@media (max-width: 992px) {

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .card-img img {
    height: 200px;
  }

  .card-content h3 {
    font-size: 16px;
  }

}

/* ============================= */
/* Mobile View (max-width: 576px) */
/* ============================= */
@media (max-width: 576px) {

  .projects-section {
    padding: 50px 20px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .section-header p {
    font-size: 14px;
  }

  .card-img img {
    height: 180px;
  }

  .card-content {
    padding: 15px;
  }

  .card-content h3 {
    font-size: 15px;
  }

  .card-content p {
    font-size: 12px;
  }

}
/* ================= CONTACT SECTION ================= */

.contact-section {
  color: #fff;
  position: relative;
  overflow: hidden;

  /* ❌ min-height removed */
  padding: 50px 0;   /* Controlled vertical spacing */

  background:
    linear-gradient(rgba(3,3,5,0.95), rgba(3,3,5,0.95)),
    url("static/images/noce.avif");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-position 0.2s ease-out;
}

/* Reduce gap below buttons */
.btn-group {
  margin-bottom: 15px !important;
}

/* FLOATING BLOBS */
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #030305, #0f2027, #203a43, #2c5364);
  opacity: 0.85;
  z-index: 1;
}

.contact-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(0,255,213,0.08);
  border-radius: 50%;
  bottom: -120px;
  right: -120px;
  animation: float 8s infinite ease-in-out;
  filter: blur(40px);
}

/* FLOAT ANIMATION */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(40px); }
}

/* TITLE */
.title {
  font-size: 48px;
  font-weight: 700;
  animation: fadeUp 1s ease;
}

.title span {
  color: #00ffd5;
}

/* ================= FORM CARD ================= */

.form-card {
  max-width: 650px;
  padding: 28px;  /* Compact padding */
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
  animation: fadeUp 1.2s ease;
  transition: 0.4s;
  margin-top: 5px;   /* Buttons ke bilkul niche */
  position: relative;
  z-index: 2;
}

.form-card:hover {
  transform: translateY(-5px);
}

/* ================= INPUT FIELDS ================= */

.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  padding: 10px;   /* Reduced padding */
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  outline: none;
  background: rgba(255,255,255,0.12);
  color: #fff;
  transition: 0.3s;
}

/* ✅ TEXTAREA SIZE CONTROL */
.form-card textarea {
  height: 130px;   /* Reduced height */
  resize: none;
}

.form-card input::placeholder,
.form-card textarea::placeholder {
  color: #ddd;
}

.form-card input:focus,
.form-card textarea:focus {
  background: rgba(255,255,255,0.18);
  border-color: #00ffd5;
  box-shadow: 0 0 12px rgba(0,255,213,0.5);
  transform: scale(1.02);
}

/* FADE ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Company Modal Styling */
.company-modal {
  background: rgba(20,20,25,0.95);
  border-radius: 20px;
  padding: 30px;
  color: #fff;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.1);
}

.company-logo {
  width: 90px;
  margin-bottom: 15px;
}

.company-name {
  font-weight: 700;
  margin-bottom: 10px;
}

.company-desc {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 15px;
}

.company-details p {
  margin: 5px 0;
  font-size: 15px;
}

.company-details i {
  color: #00ffd5;
  margin-right: 8px;
}


.btn-close-custom {
  background: #00ffd5;
  color: #000;
  border-radius: 25px;
  padding: 8px 20px;
  border: none;
}

.nav-link {
  position: relative;
  display: inline-block;
  overflow: hidden;
  height: 80px;   /* text height ke according */
}

.link-text {
  display: block;
  transition: transform 0.4s ease;
}

/* second text initially niche */
.hover-text {
  position: absolute;
  top: 100%;
  left: 0;
}

/* HOVER EFFECT */
.nav-link:hover .link-text {
  transform: translateY(-100%);
}