* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #0b0f19;
  color: #ffffff;
}

/* NAVBAR start*/
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
}

.nav-container {
  max-width: 1300px;
  margin: auto;
  padding: 0px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.nav-logo {
  display: flex;
  align-items: center;
  gap: -2px;
}

.nav-logo img {
  height: 88px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  line-height: 1.1;
}

.logo-text strong {
  font-weight: 600;
}

.logo-text span {
  font-size: 12px;
  opacity: 0.8;
}

/* MENU */
.nav-menu {
  display: flex;
  gap: 26px;
}

.nav-menu a {
  text-decoration: none;
  color: #e5e7eb;
  font-size: 14px;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #c084fc;
}


.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 14px;
}


/* HERO FIX (navbar ke niche push karne ke liye) */
.hero {
  padding-top: 120px;
}

/* RESPONSIVE */
@media (max-width: 667px) {
  .nav-menu {
    display: none;
  }
}

/* ===============================
   HIDE NAVBAR WHATSAPP (MOBILE ONLY)
=============================== */
@media (max-width: 992px){
  .navbar .whatsapp-btn{
    display: none !important;
  }
}


/*navbar end

/* HERO SECTION START */
.hero {
  position: relative;
  min-height: 100vh;
  background: url("../assets/images/homeimage.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(124,58,237,0.35), rgba(0,0,0,0.9));
}

.hero-content {
  position: relative;
  max-width: 1100px;
  text-align: center;
  z-index: 2;
}

/* Badge */
.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(255,255,255,0.1);
  font-size: 14px;
  margin-bottom: 20px;
}

/* Heading */
.hero h1 {
  font-size: 56px;
  line-height: 1.2;
  font-weight: 700;
}

.hero h1 span {
  color: #c084fc;
}

/* Text */
.hero p {
  margin: 20px auto 35px;
  max-width: 700px;
  font-size: 16px;
  color: #d1d5db;
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 26px;
  border-radius: 40px;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn.primary {
  background: #ffffff;
  color: #000;
}

.btn.primary:hover {
  transform: translateY(-2px);
}

.btn.whatsapp {
  background: #22c55e;
  color: #fff;
}

.btn.whatsapp:hover {
  transform: translateY(-2px);
}

/* Stats */
.hero-stats {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.stat-box {
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  padding: 20px 30px;
  border-radius: 20px;
  min-width: 200px;
}

.stat-box h3 {
  font-size: 35px;
  color: #c084fc;
}

.stat-box span {
  font-size: 30px;
  color: #9ca3af;
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 45px;
  }

  .hero p {
    font-size: 15px;
  }
}
/* HERO SECTION END */


/* ================= ABOUT SECTION ================= */

.about {
  position: relative;
  overflow: hidden;
  padding: 100px 20px;
  background: linear-gradient(135deg, #2b0a3d, #3b1d6d);
}

/* animated decorative elements */
.about-shape {
  position: absolute;
  z-index: 0;
  filter: blur(45px);
  opacity: 0.6;
}

.shape-1 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, #c084fc, transparent 70%);
  top: 25%;
  left: 8%;
  animation: floatOne 10s ease-in-out infinite;
}

.shape-2 {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, #6366f1, transparent 70%);
  bottom: 15%;
  right: 10%;
  animation: floatTwo 12s ease-in-out infinite;
}

/* container */
.about-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* LEFT */
.about-tag {
  display: inline-block;
  font-size: 34px;
  letter-spacing: 2px;
  color: #c084fc;
  margin-bottom: 18px;
}

.about-left h2 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.about-left h2 span {
  color: #c084fc;
}

/* RIGHT */
.about-right p {
  font-size: 15px;
  line-height: 1.8;
  color: #e5e7eb;
  margin-bottom: 18px;
}

.about-right strong {
  color: #ffffff;
}

/* animations */
@keyframes floatOne {
  0% { transform: translate(0, 0); }
  50% { transform: translate(30px, -40px); }
  100% { transform: translate(0, 0); }
}

@keyframes floatTwo {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 30px); }
  100% { transform: translate(0, 0); }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-left h2 {
    font-size: 34px;
  }
}


/* ABOUT SECTION END*/


/* ================= BUSINESS CARD SECTION ================= */

.bc-section{
  padding:80px 20px;          /* extra top-bottom space FIXED */
  background: linear-gradient(135deg, #1a0628, #2b0a3d);
  text-align:center;
  color:#fff;
}

.bc-title{
  font-size:42px;
  margin-bottom:10px;
}

.bc-sub{
  opacity:.75;
  margin-bottom:40px;
}

.bc-container{
  display:flex;
  justify-content:center;
  perspective:1200px;
}

/* CARD */
.bc-card{
  width:360px;
  height:220px;
  position:relative;
  transform-style:preserve-3d;
  transition:transform 1s ease;
}

/* CARD FACES */
.bc-face{
  position:absolute;
  width:100%;
  height:100%;
  border-radius:18px;
  overflow:hidden;
  backface-visibility:hidden;
  box-shadow:0 30px 60px rgba(0,0,0,.6);
}

.bc-face img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* FRONT SIDE (IMPORTANT) */
.bc-front{
  transform:rotateY(0deg);
  z-index:2;
}


/* BACK SIDE */
.bc-back{
  transform:rotateY(180deg);
}

.bc-hint{
  display:block;
  margin-top:25px;
  font-size:14px;
  opacity:.6;
}

/* RESPONSIVE */
@media(max-width:500px){
  .bc-card{
    width:300px;
    height:190px;
  }
}


/* ================= SERVICES SECTION ================= */

.services {
  padding: 110px 20px;
  background: linear-gradient(135deg, #1a0628, #2b0a3d);
  position: relative;
  overflow: hidden;
}

/* floating background glow */
.services::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(192,132,252,0.25), transparent 70%);
  top: -100px;
  left: -100px;
  filter: blur(60px);
  animation: serviceGlow 10s ease-in-out infinite alternate;
}

@keyframes serviceGlow {
  from { transform: translateY(0); }
  to { transform: translateY(60px); }
}

.services-container {
  max-width: 1300px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* heading */
.services-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  font-size: 34px;
  letter-spacing: 2px;
  color: #c084fc;
  margin-bottom: 14px;
}

.services-head h2 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.services-head h2 span {
  color: #c084fc;
}

.services-head p {
  margin-top: 16px;
  color: #d1d5db;
  font-size: 15px;
  line-height: 1.7;
}

/* grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* cards */
.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 36px 28px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(192,132,252,0.25),
    transparent
  );
  transform: translateX(-100%);
  transition: 0.6s;
}

.service-card:hover::before {
  transform: translateX(100%);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(192,132,252,0.5);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.service-card .icon {
  font-size: 36px;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #d1d5db;
}

/* responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-head h2 {
    font-size: 25px;
  }
}

/* ================= PROCESS SECTION ================= */

.process {
  position: relative;
  padding: 120px 20px;
  background: linear-gradient(135deg, #2b0a3d, #1a0628);
  overflow: hidden;
}

/* animated glow element */
.process-glow {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(192,132,252,0.25), transparent 70%);
  bottom: -150px;
  left: -150px;
  filter: blur(70px);
  animation: processGlowMove 12s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes processGlowMove {
  from { transform: translateY(0); }
  to { transform: translateY(-80px); }
}

.process-container {
  max-width: 1300px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* heading */
.process-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.process-head h2 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}

.process-head h2 span {
  color: #c084fc;
}

.process-head p {
  margin-top: 16px;
  color: #d1d5db;
  font-size: 15px;
  line-height: 1.7;
}

/* grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* cards */
.process-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 36px 28px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(192,132,252,0.25),
    transparent
  );
  transform: translateX(-100%);
  transition: 0.6s;
}

.process-card:hover::before {
  transform: translateX(100%);
}

.process-card:hover {
  transform: translateY(-12px);
  border-color: rgba(192,132,252,0.5);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* step number */
.process-card .step {
  font-size: 42px;
  font-weight: 700;
  color: rgba(192,132,252,0.35);
  display: block;
  margin-bottom: 14px;
}

.process-card h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
}

.process-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #d1d5db;
}

/* responsive */
@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-head h2 {
    font-size: 32px;
  }
}


/* animated background light */
.process-card::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(
    circle,
    rgba(192,132,252,0.25),
    transparent 60%
  );
  animation: processLightMove 6s linear infinite;
  z-index: 0;
}

/* content upar rahe */
.process-card * {
  position: relative;
  z-index: 2;
}

/* animation */
@keyframes processLightMove {
  0% {
    transform: translateX(-30%) translateY(-30%);
  }
  50% {
    transform: translateX(30%) translateY(30%);
  }
  100% {
    transform: translateX(-30%) translateY(-30%);
  }
}

/* ================= PORTFOLIO SECTION ================= */

/* ===== PORTFOLIO ===== */

.portfolio {
  padding: 90px 20px;
  background: linear-gradient(135deg, #1a0628, #2b0a3d);
}

.portfolio-head h2 {
  text-align: center;
  font-size: 42px;
  color: #fff;
  margin-bottom: 35px;
}

.portfolio-title span {
  color: #c084fc;
}

/* tabs */
.portfolio-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.portfolio-tabs .tab {
  padding: 8px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  cursor: pointer;
}

.portfolio-tabs .tab.active {
  background: #c084fc;
  color: #1a0628;
}

/* 🔥 MASONRY GRID – GAP PROBLEM SOLVED */
.portfolio-grid {
  max-width: 1000px;
  margin: auto;
  column-count: 3;
  column-gap: 30px;
}

.portfolio-item {
  break-inside: avoid;
  margin-bottom: 30px;   /* 🔥 vertical gap control */
}

.portfolio-item {
  display: inline-block;     /* 🔥 MOST IMPORTANT */
  width: 100%;
  vertical-align: top;       /* 🔥 gap fix */
}


/* images & videos – ORIGINAL SIZE */
.portfolio-item img,
.portfolio-item video {
  width: 100%;
  height: auto;          /* 🔥 no cut */
  display: block;
  border-radius: 18px;
}

.portfolio-item video,
.portfolio-item img {
  display: block;            /* extra safety */
}


/* animation base */
.portfolio-item {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: all 0.8s ease;
}

/* active state */
.portfolio-item.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}


/* responsive */
@media (max-width: 992px) {
  .portfolio-grid {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .portfolio-grid {
    column-count: 1;
  }
}

/* ===== PRICING SECTION ===== */

.pricing {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1a0628, #2b0a3d);
  text-align: center;
}

.pricing-title {
  font-size: 42px;
  color: #fff;
}

.pricing-title span {
  color: #c084fc;
}

.pricing-sub {
  color: #cfcfcf;
  margin: 12px 0 50px;
}

/* cards wrapper */
.pricing-cards {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* card */
.pricing-card {
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 40px 30px;
  color: #fff;
  transition: all 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 0 30px rgba(192,132,252,0.4);
}

/* featured */
.pricing-card.featured {
  background: linear-gradient(135deg, #c084fc, #8b5cf6);
  color: #1a0628;
  transform: scale(1.05);
}

/* headings */
.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.pricing-card h1 {
  font-size: 38px;
  margin-bottom: 20px;
}


/* list */
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.pricing-card ul li {
  margin: 10px 0;
}

/* button */
.pricing-card button {
  padding: 10px 22px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  background: #c084fc;
  color: #1a0628;
  font-weight: 600;
}

.pricing-card.featured button {
  background: #1a0628;
  color: #fff;
}

/* responsive */
@media (max-width: 900px) {
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }
}


/* ===============================
   TESTIMONIAL SECTION – THEME
================================ */

.testimonial-section {
  padding: 120px 20px;
  background: radial-gradient(circle at top, #1a0628, #070014);
  text-align: center;
}

.testimonial-title {
  font-size: 42px;
  color: #ffffff;
  font-weight: 700;
}

.testimonial-title span {
  color: #c084fc;
}

.testimonial-sub {
  margin-top: 10px;
  color: #d8b4fe;
}

/* layout */
.testimonial-wrapper {
  max-width: 1200px;
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* card */
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(192,132,252,0.25);
  border-radius: 22px;
  padding: 30px;
  color: #ffffff;
  transition: 0.4s;
  text-align: left;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 35px rgba(192,132,252,0.5);
}

/* text */
.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  color: #e9d5ff;
  margin-bottom: 25px;
}

/* user */
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.user-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c084fc, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #1a0628;
}

.testimonial-user h4 {
  font-size: 15px;
}

.testimonial-user span {
  font-size: 13px;
  color: #c4b5fd;
}

/* responsive */
@media (max-width: 900px) {
  .testimonial-wrapper {
    grid-template-columns: 1fr;
  }
}


/* ================= CONTACT SECTION ================= */

.contact-modern{
  padding:120px 20px;
  background:radial-gradient(circle at top,#1a0628,#070014);
  text-align:center;
}

.contact-heading{
  font-size:44px;
  color:#fff;
  font-weight:700;
}
.contact-heading span{color:#ec4899;}
.contact-sub{color:#c4b5fd;margin-top:10px;}

.contact-grid{
  max-width:1200px;
  margin:70px auto 0;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:40px;
}

/* FORM */
.contact-form-modern{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(192,132,252,.3);
  padding:35px;
  border-radius:22px;
  text-align:left;
}
.contact-form-modern h3{color:#fff;margin-bottom:20px;}
.contact-form-modern input,
.contact-form-modern select,
.contact-form-modern textarea{
  width:100%;
  margin-bottom:14px;
  padding:14px 18px;
  border-radius:12px;
  background:#0b0f1c;
  border:1px solid rgba(255,255,255,.15);
  color:#fff;
}
.contact-form-modern textarea{min-height:120px;resize:none;}
.contact-form-modern button{
  width:100%;
  padding:14px;
  border-radius:30px;
  border:none;
  font-weight:600;
  background:linear-gradient(90deg,#8b5cf6,#ec4899);
  color:#fff;
}

/* RIGHT SIDE */
.contact-right{display:flex;flex-direction:column;gap:30px;}

.contact-info-modern{display:flex;flex-direction:column;gap:20px;}
.info-box{
  position:relative;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.1);
  padding:26px 26px 26px 80px;
  border-radius:20px;
  text-align:left;
}
.info-box h4{color:#fff;}
.info-box p{color:#a5b4fc;font-size:14px;}
.info-box a{color:#22c55e;text-decoration:none;}

.info-icon{
  position:absolute;
  left:22px;top:26px;
  width:44px;height:44px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}
.info-icon svg{width:20px;height:20px;}
.info-icon.email{background:linear-gradient(135deg,#a855f7,#ec4899);}
.info-icon.call{background:linear-gradient(135deg,#8b5cf6,#6366f1);}
.info-icon.whatsapp{background:linear-gradient(135deg,#22c55e,#16a34a);}

/* SOCIAL ICONS */
.contact-social-right{
  display:flex;
  gap:16px;
}
.social-icon{
  width:48px;height:48px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}
.social-icon svg{width:20px;height:20px;}
.social-icon.fb{background:linear-gradient(135deg,#8b5cf6,#6366f1);}
.social-icon.ig{background:linear-gradient(135deg,#ec4899,#f97316);}
.social-icon.in{background:linear-gradient(135deg,#0ea5e9,#2563eb);}

@media(max-width:900px){
  .contact-grid{grid-template-columns:1fr;}
  .contact-social-right{justify-content:center;}
}

/* ================= FOOTER ================= */

.footer-main{
  background:radial-gradient(circle at top,#0b0116,#000);
  padding:80px 20px 0;
  color:#d1c4e9;
}

.footer-wrapper{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1.2fr;
  gap:40px;
}

/* BRAND */
.footer-logo{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:20px;
}
.footer-logo img{
  width:72px;
}
.footer-logo span{
  font-weight:700;
  color:#fff;
}
.footer-logo small{
  color:#a855f7;
  font-size:12px;
}

.footer-col p{
  font-size:14px;
  line-height:1.7;
  color:#b39ddb;
}

/* HEADINGS */
.footer-col h4{
  color:#fff;
  margin-bottom:16px;
}

/* LINKS */
.footer-col ul{
  list-style:none;
  padding:0;
}
.footer-col ul li{
  margin-bottom:10px;
}
.footer-col ul li a{
  color:#b39ddb;
  text-decoration:none;
  transition:.3s;
}
.footer-col ul li a:hover{
  color:#ec4899;
}

/* CONTACT */
.contact-item{
  display:flex;
  gap:10px;
  margin-bottom:12px;
  font-size:14px;
}
.contact-item a{
  color:#b39ddb;
  text-decoration:none;
}

/* SOCIAL */
.footer-social{
  display:flex;
  gap:14px;
  margin-top:20px;
}
.social{
  width:42px;
  height:42px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}
.social svg{width:18px;height:18px;}
.social.fb{background:#7c3aed;}
.social.ig{background:linear-gradient(135deg,#ec4899,#f97316);}
.social.in{background:#2563eb;}

/* BOTTOM */
.footer-bottom{
  margin-top:60px;
  padding:20px;
  text-align:center;
  font-size:13px;
  color:#a78bfa;
  border-top:1px solid rgba(255,255,255,.1);
}

/* RESPONSIVE */
@media(max-width:900px){
  .footer-wrapper{
    grid-template-columns:1fr;
    text-align:center;
  }
  .footer-social{justify-content:center;}
}



/* WHATSAPP WIDGET */

.wa-widget{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:9999;
}


/* WhatsApp button */
.wa-btn{
  width:60px;
  height:60px;
  background:#25D366;
  border-radius:30%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  animation:waGlow 1.8s infinite;
}

.wa-btn i{
  color:#ffffff;
  font-size:32px;
}

/* Glow animation */
@keyframes waGlow{
  0%{box-shadow:0 0 0 0 rgba(37,211,102,.6);}
  70%{box-shadow:0 0 0 20px rgba(37,211,102,0);}
  100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
}

/* Popup */
.wa-popup{
  position:absolute;
  bottom:80px;
  right:0;
  width:260px;
  background:#fff;
  border-radius:16px;
  display:none;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,.3);
}

.wa-head{
  background:#25D366;
  color:#fff;
  padding:12px;
  display:flex;
  justify-content:space-between;
}

.wa-head button{
  background:none;
  border:none;
  color:#fff;
  font-size:18px;
  cursor:pointer;
}

.wa-body{
  padding:16px;
  font-size:14px;
  color:#333;
}

.wa-open{
  display:block;
  background:#25D366;
  color:#fff;
  text-align:center;
  padding:14px;
  text-decoration:none;
  font-weight:600;
   border-radius:999px;
}

/* FORCE SHOW "CHAT WITH US" */
.wa-text{
  position:absolute;
  right:75px;
  bottom:14px;
  background:#ffffff;
  color:#000000;
  padding:10px 16px;
  border-radius:20px;
  font-size:14px;
  font-weight:500;
  white-space:nowrap;
  opacity:1 !important;
  visibility:visible !important;
  z-index:10000;
  box-shadow:0 4px 12px rgba(0,0,0,.25);
}


/* Mobile */
@media(max-width:600px){
  .wa-text{display:none;}
}



@media (max-width: 768px){

  h1{
    font-size:32px !important;
    line-height:1.2;
  }

  h2{
    font-size:22px;
  }

  p{
    font-size:15px;
  }

}

/* ===============================
   NAVBAR MOBILE FIX ONLY
=============================== */
@media (max-width: 768px){

  .navbar{
    padding: 8px 0;
  }

  .nav-container{
    padding: 0 12px;
    flex-wrap: wrap;
  }

  /* LOGO SIZE FIX */
  .nav-logo img{
    height: 42px;   /* 👈 pehle 88px tha */
  }

  .logo-text{
    font-size: 11px;
    line-height: 1.1;
  }

  /* ICONS SIZE FIX */
  .icon-btn{
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  /* WHATSAPP BUTTON SIZE FIX (HIDE NAHI) */
  .whatsapp-btn{
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 999px;
  }
}

/* ===============================
   PERFECT RIGHT SIDE HAMBURGER
=============================== */

/* hamburger base */
.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  margin-left:auto;   /* 👈 RIGHT SIDE PUSH */
}

.hamburger span{
  width:24px;
  height:2px;
  background:#ffffff;
  border-radius:2px;
}

/* MOBILE ONLY */
@media (max-width: 992px){

  .hamburger{
    display:flex;
  }

  /* menu hidden by default */
  .nav-menu{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:rgba(0,0,0,0.9);
    backdrop-filter:blur(12px);
    flex-direction:column;
    align-items:center;
    gap:20px;
    padding:25px 0;
    display:none;
  }

  /* open state */
  .nav-menu.active{
    display:flex;
  }

}

@media (max-width: 992px){
  .hamburger{
    position:absolute;
    right:14px;
    top:50%;
    transform:translateY(-50%);
  }
}


