* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #0a0d1c;
}

/* HEADER */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  background: linear-gradient(90deg, #050816, #0c1028);
  position: fixed;        /* 🔥 FIXED */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* LOGO */
.logo img {
  height: 50px;
}

/* NAV */
.nav {
  display: flex;
  gap: 30px;
  transition: max-height 0.4s ease-in-out;
}

.nav a {
  color: #cfd3ff;
  text-decoration: none;
  font-size: 16px;
  padding: 8px 18px;
  border-radius: 20px;
  transition: 0.3s;
}

.nav a.active {
  background: rgba(0, 200, 255, 0.15);
  color: #00d4ff;
}

/* BUTTON */
.btn {
  background: linear-gradient(90deg, #ff3700, #7a5cff);
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

/* MOBILE MENU ICON */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 80px;          /* 🔥 fixed header ke niche */
    left: 0;
    width: 100%;
    background: #0c1028;
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    padding: 0;
  }

  .nav.show {
    max-height: 500px;
    padding: 20px 0;
  }

  .nav a {
    width: 90%;
    text-align: center;
    margin: 8px 0;
    border-radius: 10px;
  }

  .btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

/* 🔥 IMPORTANT: content header ke niche se start ho */
body {
  padding-top: 90px;
}

/* #hero section  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

.hero {
  min-height: 100vh;
  background: url("image/herobg.avif") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(2, 6, 23, 0.95),
    rgba(2, 6, 23, 0.6)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 60px;
  color: #fff;
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 183, 3, 0.15);
  color: #ffb703;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 25px;
}

.hero h1 {
  font-size: 64px;
  font-weight: 300;
  line-height: 1.1;
}

.hero h1 span {
  color: #ffb703;
  font-weight: 700;
}

.hero h3 {
  margin-top: 15px;
  letter-spacing: 3px;
  font-size: 14px;
  color: #cbd5e1;
}

.hero p {
  margin-top: 20px;
  font-size: 16px;
  color: #e5e7eb;
  line-height: 1.6;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #ffb703, #f59e0b);
  color: #000;
  padding: 14px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.hero-buttons input {
  padding: 14px;
  border-radius: 8px;
  border: none;
  min-width: 220px;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
  .hero-content {
    padding: 0 25px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons input {
    width: 100%;
  }
}
/* #about  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

.about-section {
  padding: 80px 20px;
  background: #fffaf3;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
}

/* EXPERIENCE BADGE */
.experience-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #0f172a;
  color: #ffb703;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
}

.experience-badge h2 {
  font-size: 32px;
}

.experience-badge p {
  font-size: 14px;
  color: #fff;
}

/* CONTENT */
.about-content .tag {
  display: inline-block;
  background: #fff1d6;
  color: #f59e0b;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 15px;
}

.about-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #0f172a;
}

.about-content h2 span {
  color: #f59e0b;
}

.about-content p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-list {
  list-style: none;
  margin: 20px 0;
}

.about-list li {
  margin-bottom: 10px;
  color: #334155;
}

/* INFO BOXES */
.info-boxes {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.box {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.box h4 {
  color: #0f172a;
  font-size: 18px;
}

.box p {
  font-size: 14px;
  color: #64748b;
}

/* 📱 MOBILE */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-content h2 {
    font-size: 32px;
  }
}
/* #expert section  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

.practice-section {
  padding: 100px 20px;
  background: radial-gradient(circle at top, #0f172a, #020617);
  color: #fff;
}

.practice-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 20px;
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  font-size: 14px;
  margin-bottom: 15px;
}

.practice-container h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.practice-container h2 span {
  color: #f59e0b;
}

.subtitle {
  max-width: 700px;
  margin: auto;
  color: #94a3b8;
  line-height: 1.6;
}

.practice-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.practice-card {
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.02)
  );
  padding: 35px;
  border-radius: 20px;
  text-align: left;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.practice-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
}

.practice-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(
    145deg,
    rgba(245,158,11,0.15),
    rgba(255,255,255,0.05)
  );
}

.practice-card h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 20px;
}

.practice-card p {
  color: #cbd5f5;
  font-size: 15px;
  line-height: 1.6;
}

/* ICONS */
.icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.icon.blue { background: #2563eb; }
.icon.gold { background: #f59e0b; }
.icon.green { background: #10b981; }
.icon.purple { background: #8b5cf6; }
.icon.red { background: #ef4444; }
.icon.gray { background: #64748b; }

/* 📱 Mobile */
@media (max-width: 900px) {
  .practice-grid {
    grid-template-columns: 1fr;
  }

  .practice-container h2 {
    font-size: 32px;
  }
}
/* #123 */
.stats-section {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  padding: 80px 20px;
}

.stats-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  color: #fff;
  transition: all 0.4s ease;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  position: relative;
  overflow: hidden;
}

.stat-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
  opacity: 0;
  transition: 0.4s;
}

.stat-box:hover::before {
  opacity: 1;
}

.stat-box:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0,0,0,0.35);
}

.icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.stat-box h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.stat-box p {
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}

/* Mobile */
@media (max-width: 600px) {
  .stat-box h2 {
    font-size: 34px;
  }
}

/* #contact section  */
.consultation {
  background: radial-gradient(circle at top, #111827, #020617);
  padding: 80px 20px;
  color: #fff;
}

.consultation-header {
  text-align: center;
  max-width: 700px;
  margin: auto;
}

.pill {
  display: inline-block;
  padding: 6px 14px;
  background: #1f2937;
  color: #f59e0b;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
}

.consultation-header h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.consultation-header h2 span {
  color: #f59e0b;
}

.consultation-container {
  max-width: 1200px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-info .info-box {
  background: #020617;
  padding: 18px;
  border-radius: 12px;
  margin-bottom: 15px;
}

.contact-info iframe {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  border: none;
}

.contact-form {
  background: #fff;
  color: #000;
  padding: 35px;
  border-radius: 20px;
}

.contact-form h3 {
  margin-bottom: 8px;
}

.contact-form p {
  margin-bottom: 20px;
  font-size: 14px;
}

.contact-form .row {
  display: flex;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.contact-form textarea {
  height: 120px;
}

.contact-form button {
  width: 100%;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  border: none;
  color: #fff;
  padding: 14px;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
}

.contact-form small {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 12px;
  color: #555;
}

/* 📱 Mobile */
@media (max-width: 768px) {
  .consultation-container {
    grid-template-columns: 1fr;
  }
}
/* #whychooseme  */
/* Why Choose Me Section */
.why-choose {
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #fff;
  padding: 50px 15px;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.why-choose h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #ffcc00;
}

.why-choose p {
  font-size: 15px;
  color: #ddd;
  margin-bottom: 40px;
}

/* 4 Boxes layout using grid */
.choose-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.choose-card {
  background: #222;
  border-radius: 15px;
  padding: 25px 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  text-align: center;
}

.choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  background: linear-gradient(135deg, #ffcc00, #ffaa00);
  color: #1f1f1f;
}

.choose-card .icon {
  background: #ffcc00;
  color: #1f1f1f;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  margin: 0 auto 12px auto;
  transition: all 0.3s;
}

.choose-card:hover .icon {
  background: #1f1f1f;
  color: #ffcc00;
}

.choose-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.choose-card p {
  font-size: 13px;
  line-height: 1.5;
}

/* CTA Button */
.cta-button {
  margin-top: 30px;
}

.cta-button a {
  display: inline-block;
  padding: 12px 25px;
  background: #ffcc00;
  color: #1f1f1f;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s;
}

.cta-button a:hover {
  background: #ffaa00;
  color: #fff;
  transform: scale(1.05);
}

/* Responsive Grid */
@media (max-width: 1024px) {
  .choose-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .choose-cards {
    grid-template-columns: 1fr;
  }

  .choose-card {
    width: 90%;
    margin: 0 auto;
    padding: 18px 15px;
  }

  .cta-button a {
    width: 80%;
    font-size: 14px;
    padding: 12px 0;
  }
}

@media (max-width: 480px) {
  .why-choose h2 {
    font-size: 24px;
  }

  .why-choose p {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .choose-card h3 {
    font-size: 16px;
  }

  .choose-card p {
    font-size: 12px;
  }

  .choose-card .icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .cta-button a {
    width: 90%;
    font-size: 13px;
  }
}
/* #testomonial  */
.testimonial-section {
  background: #0f172a;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.testimonial-section h2 {
  color: #ffcc00;
  font-size: 28px;
  margin-bottom: 10px;
}

.testimonial-section p {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 40px;
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  background: #222;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  transition: all 0.5s ease;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-slide p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.testimonial-slide h4 {
  font-size: 16px;
  color: #ffcc00;
}

/* Responsive */
@media(max-width:768px) {
  .testimonial-section h2 {
    font-size: 24px;
  }
  .testimonial-slide {
    padding: 25px 15px;
  }
}
/* #gallery section  */
.gallery-section {
  background: linear-gradient(135deg, #1f1f1f, #2c2c2c);
  padding: 60px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.gallery-section h2 {
  color: #ffcc00;
  font-size: 30px;
  margin-bottom: 8px;
}

.gallery-section p {
  color: #ddd;
  font-size: 15px;
  margin-bottom: 35px;
}

/* Frame */
.gallery-frame {
  max-width: 850px;
  margin: auto;
  background: #000;
  padding: 12px;
  border-radius: 18px;
  border: 2px solid #ffcc00;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  position: relative;
  overflow: hidden;
}

/* Slide */
.gallery-slide {
  display: none;
}

.gallery-slide.active {
  display: block;
  animation: zoomFade 1s ease;
}

/* Image fit */
.gallery-slide img {
  width: 100%;
  height: 460px;
  object-fit: contain;   /* 🔥 image frame me fit */
  background: #000;
  border-radius: 12px;
}

/* Animation */
@keyframes zoomFade {
  from {
    opacity: 0;
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Tablet */
@media (max-width: 768px) {
  .gallery-slide img {
    height: 300px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .gallery-section h2 {
    font-size: 24px;
  }

  .gallery-slide img {
    height: 220px;
  }

  .gallery-frame {
    padding: 8px;
    border-radius: 14px;
  }
}

/* #footer  */
.footer {
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #f1f1f1;
  padding: 50px 20px 30px 20px;
  font-family: 'Arial', sans-serif;
  border-top: 3px solid #ffcc00;
}

.footer .container {
  width: 95%;
  max-width: 1200px;
  margin: auto;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 25px;
}

.footer-col {
  flex: 1 1 220px;
  margin: 10px 0;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffcc00;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 50px;
  height: 2px;
  background-color: #ffcc00;
}

.footer-col p,
.footer-col ul,
.footer-col li,
.footer-col a {
  font-size: 14px;
  color: #f1f1f1;
  text-decoration: none;
  line-height: 1.8;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a:hover {
  color: #ffcc00;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #444;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 16px;
}

.social-links a:hover {
  background: #ffcc00;
  color: #000;
  transform: scale(1.2);
}

.footer hr {
  border: 0;
  height: 1px;
  background: #555;
  margin: 25px 0;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #aaa;
  margin-top: 10px;
}

.footer-bottom a {
  color: #ffcc00;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    text-align: center;
  }
  .footer-col {
    margin: 15px 0;
  }
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 35px 15px 20px 15px;
  }
  .footer-col h4 {
    font-size: 16px;
  }
  .footer-col p,
  .footer-col ul,
  .footer-col li,
  .footer-col a {
    font-size: 13px;
  }
  .social-links a {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  .footer-bottom {
    font-size: 12px;
  }
}
/* #whatsapp icon  */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 55px;
  height: 55px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  transition: 0.3s;
}
/* #chatbot  */
/* Chatbot Toggle Button */
#chatbot-toggle {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #0a3d62;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Chatbot Box */
#chatbot {
  position: fixed;
  bottom: 90px;
  left: 20px;
  width: 320px;
  max-width: 90%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  display: none;
  flex-direction: column;
  z-index: 9999;
}

/* Header */
.chatbot-header {
  background: #0a3d62;
  color: #fff;
  padding: 12px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Body */
.chatbot-body {
  padding: 10px;
  height: 260px;
  overflow-y: auto;
  font-size: 14px;
}

/* Messages */
.bot-msg {
  background: #f1f1f1;
  padding: 8px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.user-msg {
  background: #0a3d62;
  color: #fff;
  padding: 8px;
  border-radius: 6px;
  margin-bottom: 8px;
  text-align: right;
}
/* #instagram  */
.instagram-section {
  padding: 50px 15px;
  background: #f9f9f9;
  text-align: center;
}

.instagram-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #222;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

.instagram-media {
  width: 100% !important;
  min-width: auto !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .insta-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.chatbot-footer {
  display: flex;
  border-top: 1px solid #ddd;
}

.chatbot-footer input {
  flex: 1;
  padding: 8px;
  border: none;
  outline: none;
}

.chatbot-footer button {
  background: #0a3d62;
  color: #fff;
  border: none;
  padding: 0 15px;
  cursor: pointer;
}

/* Responsive */
@media(max-width: 480px) {
  #chatbot {
    width: 90%;
    left: 5%;
  }
}
