@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ================= ROOT ================= */
:root {
  --bg: #fff1f8;                       /* soft pink background */
  --card: #fde8f3;                     /* glassy pink card */
  --card-strong: #fbcfe8;              /* stronger pink */
  --accent: #ec4899;                   /* PINK (main accent) */
  --accent-2: #6d28d9;                 /* PURPLE */
  --text: #000000;                     /* BLACK text (logo clear) */
  --muted: #444444;
  --gradient: linear-gradient(120deg, #ec4899, #6d28d9);
}


* { scroll-behavior: smooth; }

.bg-accent{
  background: linear-gradient(135deg, #ec4899, #6d28d9);
  box-shadow: 0 0 8px rgba(236,72,153,0.6);
}


body {
  background: linear-gradient(
    180deg,
    #fff1f8 0%,      /* soft pink top */
    #f5edff 100%     /* soft purple bottom */
  ) !important;

  color: #000000 !important;   /* keeps logo & text clear */

  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  padding-top: 80px;
}


/* ================= GLOBAL TEXT ================= */
p{
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 720px;
  color:#000;
}

@media (min-width: 768px){
  p{ text-align: justify; }
}
@media (max-width: 767px){
  p{ text-align: left; }
}

/* ================= HEADINGS ================= */
h1, h2, h3, h4, h5, h6{
  text-align: left;
  line-height: 1.3;

  /* purple glassy look */
  color: #6d28d9;
  text-shadow: 0 2px 12px rgba(109,40,217,0.25);

}


/* Center hero & highlight titles */
.home-section h2,
.services-hero h1,
.services-cta h2{
  text-align: center;
}

/* ================= CENTER SECTIONS ================= */
.home-section,
.services-hero,
.services-cta{ text-align: center; }

.home-section p,
.services-hero p,
.services-cta p{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ================= CARDS & GLASS ================= */
.service-card p,
.glass p{
  text-align: left;
  max-width: none;
  color:#000;
}

/* ================= LISTS ================= */
ul{ padding-left: 18px; }
ul li{
  text-align: left;
  line-height: 1.6;
  color:#000;
}

/* Center lists only in special sections */
.home-section ul,
.services-cta ul{
  list-style: none;
  padding-left: 0;
}
.home-section ul li,
.services-cta ul li{ text-align: center; }

/* ================= GALLERY / LIGHTBOX ================= */
.lightbox p{
  text-align: center;
  max-width: 600px;
  margin: 10px auto 0;
  color:#fff; /* keep readable on dark overlay */
}

/* ================= FOOTER ================= */
.footer-left p,
.footer-col p{ text-align: left; color:#000; }

.footer-bottom{
  text-align: center;
  color:#000;
}

/* ================= MOBILE SPACING FIX ================= */
@media (max-width: 767px){
  .home-section,
  .services-hero,
  .services-cta{
    padding-left: 16px;
    padding-right: 16px;
  }
  .service-card{ text-align: left; }
  .service-card h2{ text-align: left; }
}

/*-------- make all main content boxes neat------- */
.about-box,
.services-box,
.glass,
.section-box,
.card,
.content-box{
  padding: 32px 34px;   /* space inside */
}

/* mobile spacing */
@media (max-width: 768px){
  .about-box,
  .services-box,
  .glass,
  .section-box,
  .card,
  .content-box{
    padding: 22px 20px;
  }
}

/* ================= HERO CAROUSEL ================= */

.hero-carousel{
  width:100%;
  margin-bottom:60px;
  height: 100% !important;
}

/* ===== CONTAINER ===== */
.carousel-container{
  position:relative;
  height:500px;          /* perfect hero height */
  border-radius:20px;
  overflow:hidden;
  background:#000;
  height: 500px !important;      /* prevents white flash */
}

/* ===== SLIDES ===== */
.carousel-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity .8s ease;
  z-index:1;
}

.carousel-slide.active{
  opacity:1;
  z-index:2;
}

/* ===== IMAGE ===== */
.carousel-slide img{
  width:100%;
  height:100%;
  object-fit:cover;     /* fills area nicely */
  object-position:center;
  display:block;
  height: 100% !important;
}

/* ===== CAPTION ===== */
.carousel-caption{
  position:absolute;
  bottom:18%;
  left:50%;
  transform:translateX(-50%);
  text-align:center;
  color:#fff;
  padding:20px 30px;
  border-radius:8px;
  z-index:10;
  max-width:70%;
  background:rgba(0,0,0,0.35);   /* soft overlay for clarity */
}

/* Heading */
.carousel-caption h2{
  font-size:40px;       /* big like your example */
  margin:0 0 10px;
  font-weight:700;
  text-align:center;
}

/* Paragraph */
.carousel-caption p{
  font-size:18px;
  line-height:1.6;
  margin:0;
  color: #ddd;
}

/* ===== BUTTONS ===== */
.carousel-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(0,0,0,.5);
  color:#fff;
  font-size:32px;
  width:48px;
  height:48px;
  border-radius:50%;
  cursor:pointer;
  border:none;
  z-index:20;
}

.carousel-btn.left{ left:20px; }
.carousel-btn.right{ right:20px; }



/* ================= HOME SECTIONS ================= */
.home-section{
  max-width:1100px;
  margin:0 auto 80px;
  text-align:center;
}
.home-section h2{
  font-size:32px;
  margin-bottom:12px;
}
.home-section p{
  max-width:650px;
  margin:0 auto 20px;
  color:#000;
}

.services-list{
  list-style:none;
  padding:0;
  margin:20px 0;
}
.services-list li{
  margin:6px 0;
  color:#000;
}

/* ================= BUTTON ================= */
.read-more-btn{
  display:inline-block;
  padding:10px 22px;
  border:1px solid #000;
  border-radius:25px;
  color:#000;
  transition:.3s;
}
.read-more-btn:hover{
  background:#000;
  color:#fff;
}

/* ================= MOBILE BUTTON ================= */
.menu-btn{
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  color: #000;          /* BLACK for light navbar */
}

/* ================= MOBILE MENU ================= */
.mobile-menu{
  display: none;
  background:#ffffff;
  padding: 18px 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  border-top: 1px solid #ddd;
}

/* LINKS */
.mobile-menu a{
  display: block;
  padding: 12px 0;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: color .2s ease;
}
.mobile-menu a:hover{ color:#8b5cf6; }

/* ENROLL BUTTON */
.mobile-btn{
  margin-top: 14px;
  display: block;
  background:#f5eeee;
  color:#fff;
  padding: 11px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease;
}
.mobile-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px){
  .menu-btn{ display: block; }
  .nav-right{ display: none; }
  .mobile-menu.show{ display: block; }
}

/* ================= ABOUT ================= */
.about-title{
  font-size:32px;
  font-weight:700;
  margin-bottom:14px;
  color: #8b5cf6;
}

.info-text{
  color:#000;
  font-size:15px;
  line-height:1.7;
  margin-bottom:12px;
}
.seo-text{ color:#000; }

.about-highlights{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:8px;
  margin:16px 0 20px;
  font-size:14px;
  color:#000;
}
.about-highlights span{
  background: linear-gradient(
    135deg,
    rgba(168,85,247,0.18),  /* purple */
    rgba(236,72,153,0.18)   /* pink */
  );
  padding: 6px 10px;
  border-radius: 10px;
  color: #4c1d95;
  backdrop-filter: blur(4px);
}


.about-box{
  background:#f7f7f7;
  padding:26px;
  border-radius:22px;
  border:1px solid #e0e0e0;
}
.about-box h3{
  color: #8b5cf6;
  font-size:20px;
  margin-bottom:12px;
}
.about-box ul{ padding-left:18px; }
.about-box li{
  color:#000;
  margin-bottom:8px;
  line-height:1.6;
}

/* ================= SERVICES ================= */
.services-title{
  font-size:32px;
  font-weight:700;
  margin-bottom:14px;
  color:#8b5cf6;
}
.info-list{
  margin:14px 0 18px;
  padding-left:18px;
}
.info-list li{
  color:#000;
  margin-bottom:8px;
  line-height:1.6;
}
.service-highlights{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:8px;
  margin:16px 0 20px;
  font-size:14px;
  color:#000;
}
.service-highlights span{
  background:#e9fdf3;
  padding:6px 10px;
  border-radius:10px;
}
.services-box{
  background:#f7f7f7;
  padding:26px;
  border-radius:22px;
  border:1px solid #e0e0e0;
}
.services-box h3{
  color:#8b5cf6;
  font-size:22px;
  margin-bottom:10px;
}
.services-box p{
  color:#000;
  margin-bottom:10px;
  line-height:1.6;
}
.services-box ul{ padding-left:18px; }
.services-box li{
  color:#000;
  margin-bottom:8px;
  line-height:1.6;
}

/* gaps for sections */
.max-w-6xl{
  margin-bottom:10px;   /* adds gap between sections */
}
 

/* =====================================================
   GLOBAL GALAXY BORDER FOR ALL SECTIONS
   Applies to About, Services, Home, Contact, etc.
===================================================== */

/* target every main section wrapper */
.max-w-6xl > .grid,
.max-w-6xl > .glass,
.max-w-6xl > .grid.hero-gradient{
  position: relative;
  border-radius: 26px;
  background: #ffffff;      /* inner background */
  z-index: 1;
  overflow: hidden;
}

/* -------- GLOWING BORDER LAYER -------- */
.max-w-6xl > .grid::before,
.max-w-6xl > .glass::before,
.max-w-6xl > .grid.hero-gradient::before{
  content:"";
  position:absolute;
  inset:-3px;

 
  background-size:500% 500%;
  animation: galaxyBorder 14s linear infinite;

  z-index:-2;
}

/* -------- MASK TO SHOW ONLY BORDER -------- */
.max-w-6xl > .grid::after,
.max-w-6xl > .glass::after,
.max-w-6xl > .grid.hero-gradient::after{
  content:"";
  position:absolute;
  inset:3px;
  border-radius:24px;
  background: rgba(255,255,255,0.92); /* glass effect */
  backdrop-filter: blur(8px);
  z-index:-1;
}

/* -------- SOFT PINK–PURPLE GLOW -------- */
.max-w-6xl > .grid,
.max-w-6xl > .glass,
.max-w-6xl > .grid.hero-gradient{
  box-shadow:
    0 0 18px rgba(168,85,247,0.45),  /* purple glow */
    0 0 34px rgba(236,72,153,0.35);  /* pink glow */
}

/* -------- ANIMATION -------- */
@keyframes galaxyBorder{
  0%   { background-position:0% 50%; }
  50%  { background-position:100% 50%; }
  100% { background-position:0% 50%; }
}

/* =====================================================
   MOBILE TUNING
===================================================== */
@media(max-width:768px){
  section.max-w-6xl{
    margin-bottom: 50px;
  }

  .max-w-6xl > .grid,
  .max-w-6xl > .glass,
  .max-w-6xl > .grid.hero-gradient{
    border-radius: 20px;
  }

  .max-w-6xl > .grid::after,
  .max-w-6xl > .glass::after,
  .max-w-6xl > .grid.hero-gradient::after{
    inset:2px;
    border-radius:18px;
  }
}

/* animation */
@keyframes galaxyBorder{
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}

/* mobile tuning */
@media(max-width:768px){
  .max-w-6xl{
    margin-bottom:20px;
  }
}



/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;                      /* LIGHT */
  box-shadow: 0 2px 15px rgba(0,0,0,0.15);
  z-index: 9999;
}
.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 18px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-left{ display:flex; align-items:center; gap:12px; }

/* LOGO TEXT (keep gradient) */
.logo-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: linear-gradient(
  90deg,
  #f9a8d4,
  #ec4899,
  #6d28d9
);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* RIGHT MENU */
.nav-right a {
  margin-left: 26px;
  text-decoration: none;
  color: #000;                      /* BLACK */
  font-weight: 500;
  transition: .3s;
}
.nav-right a:hover { color:#6d28d9; }

/* CTA BUTTON */
.nav-btn {
 background: linear-gradient(
  90deg,
  #f9a8d4,
  #ec4899,
  #6d28d9
);

  color: #000 !important;
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 600;
  margin-left: 26px;
}

/* LOGO IMAGE */
.nav-logo{
  height:75px;
  width:auto;
  object-fit:contain;
  filter:none;                       /* ensure visible on light */
}

/* ================= UI ELEMENTS ================= */
.neon-text { color: var(--accent); }

.btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border-radius: 9999px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #020617;
  background: var(--gradient);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 15px 40px rgba(20, 241, 149, 0.3);
}
.btn:hover{
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 20px 50px rgba(109, 40, 217, 0.3);
}
.btn-outline{
  background: transparent;
  color:#000;
  border: 1.5px solid #ccc;
  box-shadow: none;
}
.btn-outline:hover{
  color:#020617;
  background:#f0f0f0;
}

.chip{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  padding:.45rem .9rem;
  border-radius:999px;
  background:#f0f0f0;
  color:#000;
  border:1px solid #ddd;
}

.glass{
  background: var(--card);
  border: 1px solid #e0e0e0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* ================= FOOTER ================= */
.dance-footer{
  background:#ffffff;
  color:#000;
  margin-top: 80px;
}
.footer-container{
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px 40px;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.footer-left{ max-width: 360px; }

.footer-logo{
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg,#14f195,#6d28d9);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-size:18px;
  color:#05070d;
  margin-bottom:14px;
}
.footer-left h3{
  font-size: 20px;
  margin-bottom: 10px;
  color: linear-gradient(90deg,#14f195,#6d28d9);;
}
.footer-left p{
  font-size: 14px;
  color:#000;
  line-height: 1.6;
}

/* RIGHT */
.footer-right{ display:flex; gap:70px; }
.footer-col h4{
  font-size: 15px;
  margin-bottom: 14px;
  color:#8b5cf6;;
}
.footer-col a,
.footer-col p{
  display:block;
  font-size:14px;
  color:#000;
  text-decoration:none;
  margin-bottom:10px;
  transition:.3s;
}
.footer-col a:hover{ color:#8b5cf6; }

.dance-footer{
  background:#ffffff;
  color:#000;
  margin-top: 0;                 /* remove extra gap */
  padding-top: 40px;
}

/* MAIN CONTAINER */
.footer-container{
  max-width: 1200px;
  margin: 0 auto;                /* remove top margin gap */
  padding: 30px 20px 20px;       /* tighter spacing */
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT */
.footer-left p,
.footer-col p{
  text-align: left;
  color:#000;
  margin: 6px 0;                 /* reduce vertical gap */
}

/* RIGHT */
.footer-right{
  display: flex;
  gap: 60px;
}

/* HEADINGS */
.footer-col h4{
  margin-bottom: 10px;           /* remove big gap */
  color:#8b5cf6;;
}

/* LINKS */
.footer-col a{
  margin-bottom: 6px;
}

/* BOTTOM BAR */
.footer-bottom{
  text-align: center;
  color:#000;
  margin-top: 20px;              /* smaller gap */
  padding: 14px 10px 18px;
  border-top: 1px solid #ddd;
}


/* BOTTOM */
.footer-bottom{
  text-align:center;
  font-size:13px;
  color:#000;
  padding:18px 10px 30px;
  border-top:1px solid #ddd;
}

/* ================= LIGHTBOX ================= */
.lightbox{
  position: fixed;
  inset:0;
  background: rgba(0,0,0,0.85);
  display:none;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  z-index:9999;
}
.lightbox img{
  max-width: 90%;
  max-height: 80%;
  border-radius: 12px;
}

/* CLOSE BUTTON */
.close-btn{
  position:absolute;
  top:20px;
  right:30px;
  font-size:32px;
  color:#000;
  cursor:pointer;
}

/* ================= HERO ================= */
.section-heading{
  text-align:center;
  font-size:30px;
  margin-bottom:30px;
  color:#8b5cf6;;
}

/* ================= SECTION GALAXY BORDER ================= */

.services-section{
  margin:90px 0;
}

.services-section .grid{
  position:relative;
  border-radius:30px;
  padding:22px;
  background:#fff;
  overflow:hidden;
}

/* ===== GALAXY ANIMATED BORDER ===== */
.services-section .grid::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:32px;
  padding:3px;

  background:
    linear-gradient(
      120deg,
      #a855f7,   /* purple */
      #ec4899,   /* pink */
      #d946ef,   /* magenta */
      #8b5cf6,   /* violet */
      #a855f7
    );
  background-size:500% 500%;
  animation: galaxyBorder 10s linear infinite;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;

  pointer-events:none;
}

/* ===== SOFT PINK–PURPLE COSMIC GLOW ===== */
.services-section .grid{
  box-shadow:
    0 0 26px rgba(168,85,247,0.35), /* purple glow */
    0 0 46px rgba(236,72,153,0.28); /* pink glow */
}

/* ===== ANIMATION ===== */
@keyframes galaxyBorder{
  0%{ background-position:0% 50%; }
  50%{ background-position:100% 50%; }
  100%{ background-position:0% 50%; }
}

/* ================= SERVICES GRID ================= */

.services-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 768px){
  .services-grid{ 
    grid-template-columns: 1fr; 
  }
}

/* ================= SERVICE CARD ================= */

.service-card{
  background:#ffffff;
  padding:24px 22px;
  border-radius:18px;
  cursor:pointer;
  position:relative;
  overflow:hidden;

  /* gradient border effect */
  border:1.5px solid transparent;
  background-clip:padding-box;
  box-shadow:0 6px 16px rgba(0,0,0,0.05);

  /* fake gradient border */
  box-shadow:
    0 6px 16px rgba(0,0,0,0.05),
    0 0 0 1.5px #e5e7eb;
  transition:all .3s ease;
}

/* subtle top accent */
.service-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background: linear-gradient(
  90deg,
  #f9a8d4,
  #ec4899,
  #6d28d9
);
  opacity:.9;
}


.service-card:hover::before{
  opacity:1;
}

.service-card:hover{
  transform: translateY(-8px);
  box-shadow:
    0 14px 30px rgba(0,0,0,0.08),
    0 0 0 2px rgba(168,85,247,0.65),  /* purple ring */
    0 0 22px rgba(236,72,153,0.35);  /* pink glow */
}

/* ================= TEXT ================= */

.service-card h3{
  color:#8b5cf6;
  font-size:27px;
  margin-bottom:10px;
  font-weight:600;
}

.service-card p{
  font-size:14.5px;
  color:#111827;
  line-height:1.7;
}

/* ================= DETAILS VIEW ================= */

.service-details{
  margin-top:40px;
  background:#ffffff;
  padding:32px;
  border-radius:22px;
  border:1.5px solid #d6d6d6;
  box-shadow:0 10px 24px rgba(0,0,0,0.06);
}

.service-details h2{
  color:#8b5cf6;
  margin-bottom:12px;
  font-size:26px;
}

.service-details p{
  color:#111827;
  line-height:1.8;
}

.service-details ul{
  margin-top:12px;
  padding-left:22px;
}

.service-details li{
  color:#111827;
  margin-bottom:8px;
}

/* ================= CLOSE BUTTON ================= */

#closeDetails{
  background:#ffffff;
  border:1.5px solid #ec4899;   /* pink border */
  color:#ec4899;                /* pink text */
  padding:8px 18px;
  border-radius:12px;
  margin-bottom:18px;
  cursor:pointer;
  transition:all .25s ease;
  font-weight:600;
}

#closeDetails:hover{
  background:#ec4899;           /* pink fill */
  color:#ffffff;
  box-shadow:0 6px 14px rgba(236,72,153,0.35); /* pink glow */
}


/* ================= UTIL ================= */

.hidden{ 
  display:none; 
}



/* ============================= */
/* contact FORM – STABLE FOCUS STYLE    */
/* ============================= */

.input-group label{
  display:block;
  font-size:14px;
  color:#9ca3af;
  margin-bottom:4px;
}

.input-group input,
.input-group textarea{
  width:100%;
  padding:10px 12px;
  border-radius:6px;
  border:1px solid #374151;
  background:#eff0f4;
  color:#555;              /* default text */
  outline:none;
  font-size:14px;
  transition:all .2s ease;
}

/* ON FOCUS – only border changes */
.input-group input:focus,
.input-group textarea:focus{
  border:2px solid  #8b5cf6 ;   /* clean green border */
  background:#fff;
  color:#000;                /* text turns black */
}

/* BUTTON */
.send-btn{
  padding:10px 24px;
  border-radius:9999px;
  background: linear-gradient(
  90deg,
  #f9a8d4,
  #ec4899,
  #6d28d9
);
  color:#000;
  font-weight:600;
  border:none;
  cursor:pointer;
}

/* ================= MODAL ================= */
.modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.7);
  z-index:999;
  align-items:center;
  justify-content:center;
}
.modal-content{
  background:#ffffff;
  max-width:700px;
  width:90%;
  padding:30px;
  border-radius:20px;
  position:relative;
  animation: pop .3s ease;
  color:#000;
}
@keyframes pop{
  from{transform:scale(.7);opacity:0}
  to{transform:scale(1);opacity:1}
}
.modal-content h2{ color: #8b5cf6; margin-bottom:10px; }
.modal-content p{ line-height:1.7; margin-bottom:12px; color:#000; }

/* ================= TIMINGS ================= */
.fancy-heading{
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 50px;
  background: linear-gradient(
  90deg,
  #f9a8d4,
  #ec4899,
  #6d28d9
);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.timings-wrapper,
.days-wrapper{
  padding: 60px 50px;
  border-radius: 30px;
  background:#f5f5f5;                 /* light */
}

.timings-grid,
.days-grid{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 40px;
}

.fancy-card{
  background:#f7f7f7;
  border-radius: 22px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all .4s ease;
  box-shadow: 0 15px 40px rgba(0,0,0,.15);
}
.fancy-card::before{
  content:"";
  position:absolute;
  inset:0;
  padding:1px;
  border-radius:22px;
  background: linear-gradient(
  90deg,
  #f9a8d4,
  #ec4899,
  #6d28d9
);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  opacity:.25;
}
.fancy-card:hover{
  transform: translateY(-10px) scale(1.03);
  box-shadow:
    0 25px 60px rgba(168,85,247,0.35),  /* purple glow */
    0 0 30px rgba(236,72,153,0.30);     /* pink glow */
}


.card-header{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  color:  #8b5cf6;
  display:flex;
  align-items:center;
  gap:10px;
}

.time-list{
  list-style:none;
  padding:0;
  margin:0;
}
.time-list li{
  padding:10px 0;
  font-size:15px;
  color:#000;
  border-bottom:1px dashed #ccc;
}
.time-list li:last-child{ border-bottom:none; }

.highlight-text{
  font-size: 18px;
  font-weight: 600;
  color: #4c1d95; /* deep purple text */
  background: linear-gradient(
    135deg,
    rgba(168,85,247,0.18),  /* purple */
    rgba(236,72,153,0.18)   /* pink */
  );
  padding: 14px 16px;
  border-radius: 14px;
  text-align: center;
  backdrop-filter: blur(6px);
}


@media(max-width:768px){
  .timings-grid,
  .days-grid{ grid-template-columns:1fr; }
  .timings-wrapper,
  .days-wrapper{ padding:40px 25px; }
  .fancy-heading{ font-size:26px; }
}

/* ================= GALLERY ROW ================= */
.gallery-row{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

/* IMAGE STYLE */
.gallery-row img{
  width: 100%;
  height: 220px;

  /* IMPORTANT FIX */
  object-fit: contain;     /* shows full image */
  background: #f5f5f5;     /* light background behind image */

  border-radius: 16px;
  cursor: pointer;
  display: block;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* HOVER */
.gallery-row img:hover{
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* ================= MOBILE ================= */
@media(max-width:768px){
  .gallery-row{
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-row img{
    height: 180px;
  }
}



/* =================================================
   MOBILE RESPONSIVE – ALL PAGES
   ================================================= */
@media (max-width: 768px){

  /* ---------- GLOBAL FIX ---------- */
  html, body{
    max-width: 100%;
    overflow-x: hidden;
  }

  *{
    box-sizing: border-box;
  }

  img, video, iframe{
    max-width: 100%;
    height: auto;
  }

  /* ---------- NAVBAR ---------- */
  body{
    padding-top: 70px;
  }

  .nav-container{
    padding-left: 14px;
    padding-right: 14px;
  }

  .logo-text{
    font-size: 18px;
  }

  .menu-btn{
    display: block;
  }

  .nav-right{
    display: none;
  }

  /* ---------- SECTIONS ---------- */
  .home-section,
  .services-hero,
  .services-cta,
  .about-box,
  .services-box,
  .footer-container{
    padding-left: 16px;
    padding-right: 16px;
  }

  h1{ font-size: 26px; }
  h2{ font-size: 22px; }
  h3{ font-size: 18px; }

  p{
    font-size: 14px;
    text-align: left;
  }

  /* ---------- BUTTONS ---------- */
  .btn,
  .nav-btn,
  .read-more-btn{
    max-width: 100%;
    font-size: 14px;
    padding: 10px 16px;
  }

  /* ---------- CARDS ---------- */
  .service-card{
    padding: 18px;
  }

  /* ---------- MODAL ---------- */
  .modal-content{
    width: 92%;
    padding: 20px;
    border-radius: 16px;
  }

  .modal-content h2{
    font-size: 20px;
  }

  /* ---------- GALLERY ---------- */
  .gallery-row{
    grid-template-columns: repeat(2, 1fr);   /* 2 images per row */
    gap: 12px;
  }

  .gallery-row img{
    height: 180px;
    object-fit: contain;
    background: #f5f5f5;
  }

  /* ---------- FOOTER ---------- */
  .footer-container{
    flex-direction: column;
    gap: 20px;                   /* reduce mobile space */
    padding: 20px 16px 16px;
  }

  .footer-right{
    flex-direction: column;
    gap: 14px;                   /* tighter */
  }

  .footer-col h4{
    font-size: 14px;
    margin-bottom: 6px;
  }

  .footer-col a,
  .footer-col p{
    font-size: 13px;
    margin-bottom: 4px;
  }

  .footer-bottom{
    margin-top: 12px;
    padding: 12px 10px;
  }
}

  /* ---------- CAROUSEL ---------- */
/* ===== CAROUSEL MOBILE FIX ===== */
  .carousel-container{
    height: 280px;              /* better height for mobile */
    border-radius: 14px;
  }

  .carousel-caption{
    bottom: 12%;
    max-width: 90%;
    padding: 12px 16px;
  }

  .carousel-caption h2{
    font-size: 22px;            /* green heading smaller */
  }

  .carousel-caption p{
    font-size: 13px;
    line-height: 1.4;
  }

  .carousel-btn{
    width: 36px;
    height: 36px;
    font-size: 22px;
  }

  /* reduce first content gap */
  .home-section:first-of-type,
  .services-hero:first-of-type,
  .hero-carousel{
    margin-top: 10px !important;
  }

  /* tighten headings spacing */
  h1, h2{
    margin-top: 10px !important;
  }


/* =================================================
   EXTRA SMALL PHONES
   ================================================= */
@media (max-width: 480px){

  /* Gallery → 1 image per row */
  .gallery-row{
    grid-template-columns: 1fr;
  }

  .gallery-row img{
    height: 200px;
  }

  /* Buttons full width */
  .btn,
  .nav-btn{
    width: 100%;
    text-align: center;
  }
}

/* ============================= */
/* FIX NAVBAR ONLY FOR MOBILE    */
/* ============================= */
@media (max-width: 768px){

  .logo{
    display:flex;
    align-items:center;
    gap:6px;
  }

  .logo img{
    width:26px;
    height:26px;
    object-fit:contain;
  }

  .logo-text{
    font-size:13px;
    line-height:1.2;
    max-width:140px;
    white-space:normal;
  }

  .navbar{
    padding:6px 10px;
  }
}




