* { margin:0; padding:0; box-sizing:border-box; }

body {
  font-family:'Segoe UI',sans-serif;
  padding-top: 60px;
  scroll-behavior:smooth;
  background:#f8f9fa;
}

/* NAVBAR GLASS */
.navbar {
  height: 60px;              /* reduced from 80px */
  padding: 0;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.navbar.scrolled {
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.active-link {
  color:#0d6efd !important;
  font-weight:600;
}

/* HERO */
.hero {
  position: relative;
  min-height: 85vh;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('/images/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 40px 20px;
}


@media (max-width: 768px) {

  .hero {
    min-height: 65vh;
    background-position: center center;
  }

  .hero h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 15px;
    margin-top: 10px;
  }

  .hero .btn {
    margin-top: 20px;
    padding: 10px 22px;
    font-size: 14px;
  }
}

/* ===============================
   new Section */


/* ===============================
   PREMIUM WRAPPER
================================ */
.premium-wrapper {
  background: linear-gradient(135deg, #ffffff, #f8fbff);
  padding: 40px 20px;
  border-radius: 25px;
  box-shadow: 
    0 20px 60px rgba(0,0,0,0.04),
    0 0 0 1px rgba(0,0,0,0.03);
}

/* ===============================
   SECTION LINE
================================ */
.section-line {
  width: 70px;
  height: 4px;
  background: linear-gradient(to right, #198754, #0d6efd);
  margin: 0 auto 20px;
  border-radius: 10px;
  animation: glowLine 2s infinite alternate;
}

@keyframes glowLine {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

/* ===============================
   COUNTER BOX (FINAL PREMIUM)
================================ */
.counter-box {
  position: relative;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  padding: 26px 16px;
  border-radius: 18px;
  transition: all 0.4s ease;
  border: 1px solid rgba(212,175,55,0.2);

  box-shadow:
    0 15px 40px rgba(0,0,0,0.05),
    0 0 0 1px rgba(255,255,255,0.6);

  text-align: center;
}

/* HOVER BORDER EFFECT */
.counter-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, #d4af37, transparent, #0d6efd);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.4s;
}

.counter-box:hover::before {
  opacity: 1;
}

.counter-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 25px 60px rgba(0,0,0,0.08),
    0 0 20px rgba(212,175,55,0.15);
}

/* ICON */
.counter-box i {
  font-size: 22px;
  color: #d4af37;
  margin-bottom: 10px;
  display: block;
}

/* NUMBER */
.counter-box h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 5px;

  background: linear-gradient(45deg, #198754, #0d6efd);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */
.counter-box p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* ===============================
   SMALL BOX (IF USED)
================================ */
.small-box {
  background: #f8f9fa;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

.small-box:hover {
  background: #eaf3ff;
  transform: translateY(-3px);
}

/* ===============================
   BUTTON PREMIUM
================================ */
.btn-success {
  border-radius: 40px;
  padding: 12px 30px;
  background: linear-gradient(145deg, #14532d, #0f3f22);
  border: none;
  transition: 0.3s ease;
}

.btn-success:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ===============================
   TEXT MUTED FIX
================================ */
.text-muted {
  color: #666 !important;
}

/* ===============================
   FOUNDER SECTION - PREMIUM
================================ */

.founder-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fbff, #eef5ff);
  overflow: hidden;
}

/* Floating soft background shapes */

.founder-section::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(13, 110, 253, 0.06);
  border-radius: 50%;
  top: -100px;
  left: -120px;
  animation: floatFounder1 10s ease-in-out infinite;
}

.founder-section::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(25, 135, 84, 0.05);
  border-radius: 50%;
  bottom: -80px;
  right: -100px;
  animation: floatFounder2 12s ease-in-out infinite;
}

/* Floating animation */

@keyframes floatFounder1 {
  0% { transform: translateY(0px); }
  50% { transform: translateY(25px); }
  100% { transform: translateY(0px); }
}

@keyframes floatFounder2 {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-30px); }
  100% { transform: translateY(0px); }
}

/* Image Card Wrapper */

.founder-image-wrapper {
  background: #ffffff;
  padding: 20px;
  border-radius: 25px;
  box-shadow:
    0 20px 50px rgba(0,0,0,0.08),
    0 0 40px rgba(13,110,253,0.05);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  z-index: 2;
  transition: 0.4s ease;
}

/* Hover Lift */

.founder-image-wrapper:hover {
  transform: translateY(-8px);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.1),
    0 0 50px rgba(25,135,84,0.08);
}

/* Founder Image */

.founder-img {
  width: 100%;
  border-radius: 20px;
}

/* Founder Text Content */

.founder-content {
  position: relative;
  z-index: 2;
}

.founder-content h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.founder-name {
  font-size: 28px;
  font-weight: 600;
  color: #198754;
  margin-bottom: 5px;
}

/* Signature Style Name */

.founder-signature {
  font-family: 'Brush Script MT', cursive;
  font-size: 32px;
  color: #0d6efd;
  margin-bottom: 20px;
}

/* Designation */

.founder-designation {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 20px;
  color: #333;
}

/* Description Paragraph */

.founder-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Button Styling */

.founder-btn {
  padding: 12px 30px;
  border-radius: 30px;
  background: #198754;
  color: white;
  border: none;
  transition: 0.3s ease;
}

.founder-btn:hover {
  background: #146c43;
  transform: translateY(-3px);
}

/* Responsive */

@media (max-width: 768px) {

  .founder-section {
    padding: 60px 0;
  }

  .founder-content h2 {
    font-size: 28px;
  }

  .founder-name {
    font-size: 22px;
  }

  .founder-signature {
    font-size: 24px;
  }

}

/* ==================================
   LUXURY GLASS SERVICES SECTION
=================================== */

.home-services-luxury {
  background: linear-gradient(135deg, #f9fafc, #f1f4f9);
  padding: 110px 0;
}

/* Title */

.luxury-title {
  font-size: 40px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.5px;
}

.luxury-subtitle {
  color: #777;
  margin-top: 15px;
  font-size: 16px;
}

/* ===============================
   GLASS CARD STYLE
================================ */

.luxury-card {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.6);
  padding: 45px;
  border-radius: 22px;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;

  /* Subtle gold accent border */
  border: 1px solid rgba(212, 175, 55, 0.25);

  box-shadow:
    0 15px 40px rgba(0,0,0,0.04),
    0 0 0 1px rgba(255,255,255,0.5);
}

/* Gold accent line on left */

.luxury-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  height: 60px;
  width: 4px;
  background: linear-gradient(to bottom, #d4af37, #b8962e);
  border-radius: 4px;
  transition: 0.4s ease;
}

/* Hover Premium Effect */

.luxury-card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 25px 60px rgba(0,0,0,0.08),
    0 0 25px rgba(212, 175, 55, 0.2);
}

/* Icon */

.luxury-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(145deg, #14532d, #0f3f22);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Text */

.luxury-card h5 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 21px;
  color: #1a1a1a;
}

.luxury-card p {
  color: #555;
  line-height: 1.8;
  font-size: 15px;
}

/* Luxury Button */

.luxury-btn {
  padding: 14px 45px;
  border-radius: 40px;
  background: linear-gradient(145deg, #14532d, #0f3f22);
  color: white;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: none;
  transition: 0.3s ease;
}

.luxury-btn:hover {
  background: linear-gradient(145deg, #0f3f22, #0c331c);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  color: white;
}

/* Responsive */

@media (max-width: 768px) {

  .luxury-title {
    font-size: 28px;
  }

  .luxury-card {
    padding: 30px;
  }

}



/* SERVICE IMAGES */
.service-img {
  width:100%;
  border-radius:12px;
  box-shadow:0 5px 20px rgba(0,0,0,0.1);
  cursor:pointer;
}

/* FADE ANIMATION */
.fade-in {
  opacity:0;
  transform:translateY(40px);
  transition:0.8s;
}

.fade-in.show {
  opacity:1;
  transform:translateY(0);
}

/* LOADER */
#loader {
  position:fixed;
  width:100%;
  height:100%;
  background:white;
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:2000;
}

.spinner {
  width:50px;
  height:50px;
  border:5px solid #ddd;
  border-top:5px solid #198754;
  border-radius:50%;
  animation:spin 1s linear infinite;
}

@keyframes spin {
  100% { transform:rotate(360deg); }
}

/* WHATSAPP */
.whatsapp-float {
  position:fixed;
  bottom:25px;
  right:25px;
  background:#25D366;
  color:white;
  width:55px;
  height:55px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  box-shadow:0 5px 15px rgba(0,0,0,0.3);
  transition:0.3s;
}

.whatsapp-float:hover {
  transform:scale(1.1);
}

/* FOOTER */
footer {
  background:#000;
  color:#fff;
  padding:20px 0;
  text-align:center;
}


/* Service Section Blocks */
/* PREMIUM SERVICE BLOCK */
.service-block {
  background: #ffffff;
  padding: 45px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  margin-bottom: 70px;
  position: relative;
  transition: all 0.3s ease;
  border-left: 6px solid #198754; /* Accent border */
}

/* Alternate Soft Background */
.service-block.alt {
  background: #f3f8ff;
  border-left: 6px solid #0d6efd;
}

/* Hover Lift */
.service-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Service Heading Icon */
.service-title {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.service-title i {
  font-size: 22px;
  margin-right: 10px;
  color: #198754;
}
/* Alternating Soft Background */
.service-block.alt {
  background: #f3f8ff;
}

/* Bullet Icons */
.service-block ul {
  list-style: none;
  padding-left: 0;
}

.service-block ul li {
  margin-bottom: 10px;
  font-size: 15px;
}

.service-block ul li i {
  color: #198754;
  margin-right: 8px;
}

/* Fade Animation */
.fade-section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-section.show {
  opacity: 1;
  transform: translateY(0);
}

/* =================================
   WHY SECTION PREMIUM LEVEL
================================= */

.why-luxury {
  background: linear-gradient(135deg, #f9fafc, #f3f6fb);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Floating Background Shapes */

.why-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  animation: float 8s ease-in-out infinite;
}

.shape1 {
  width: 300px;
  height: 300px;
  background: #d4af37;
  top: -100px;
  left: -100px;
}

.shape2 {
  width: 250px;
  height: 250px;
  background: #0d6efd;
  bottom: -80px;
  right: -80px;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(25px); }
  100% { transform: translateY(0); }
}

/* Title */

.why-title {
  font-size: 40px;
  font-weight: 600;
}

/* Gold Underline */

.gold-underline {
  width: 0;
  height: 3px;
  background: linear-gradient(to right, #d4af37, #b8962e);
  margin: 0 auto 15px;
  border-radius: 5px;
  animation: expandLine 1.5s ease forwards;
}

@keyframes expandLine {
  to { width: 120px; }
}

/* Glass Card */

.why-card {
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.7);
  padding: 35px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
  height: 100%;
}

/* Subtle Gradient Border Animation */

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, #d4af37, transparent, #0d6efd);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.4s ease;
}

.why-card:hover::before {
  opacity: 1;
}

/* Icon */

.why-icon {
  font-size: 26px;
  color: #d4af37;
  margin-bottom: 15px;
}

/* Animated Numbers */

.why-number {
  font-size: 32px;
  font-weight: 600;
  background: linear-gradient(45deg, #d4af37, #b8962e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

/* Hover Effect */

.why-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 25px 60px rgba(0,0,0,0.08),
    0 0 20px rgba(212,175,55,0.2);
}

/* =================================
   TESTIMONIAL PREMIUM SECTION
================================= */

.testimonial-section {
  background: linear-gradient(135deg, #f9fafc, #f3f6fb);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Floating shapes */

.testimonial-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  animation: float 10s ease-in-out infinite;
}

.testimonial-shape.shape1 {
  width: 300px;
  height: 300px;
  background: #d4af37;
  top: -100px;
  right: -100px;
}

.testimonial-shape.shape2 {
  width: 250px;
  height: 250px;
  background: #0d6efd;
  bottom: -80px;
  left: -80px;
}

/* Title */

.testimonial-title {
  font-size: 38px;
  font-weight: 600;
}

/* Glass Card */

.testimonial-card {
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.7);
  border-radius: 20px;
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid rgba(212,175,55,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  transition: 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 25px 70px rgba(0,0,0,0.08),
    0 0 20px rgba(212,175,55,0.2);
}

/* Stars */

.stars {
  font-size: 20px;
  background: linear-gradient(45deg, #d4af37, #b8962e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

/* Text */

.testimonial-text {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* Parent Name */

.parent-name {
  font-weight: 600;
  color: #222;
}

/* ===============================
   HOME CONTACT SECTION
================================ */

.contact-home {
  background: linear-gradient(135deg, #f9fafc, #f3f6fb);
  padding: 120px 0;
}

.contact-title {
  font-size: 38px;
  font-weight: 600;
}

.contact-subtitle {
  color: #777;
  margin-top: 10px;
}

/* Glass Card */

.contact-card {
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.75);
  border-radius: 20px;
  padding: 35px;
  border: 1px solid rgba(212,175,55,0.2);
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: 0.4s ease;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 25px 60px rgba(0,0,0,0.08),
    0 0 20px rgba(212,175,55,0.2);
}

/* Icons */

.contact-icon {
  font-size: 28px;
  color: #d4af37;
  margin-bottom: 15px;
}

/* Links */

.contact-card a {
  text-decoration: none;
  color: #0d6efd;
  font-weight: 500;
}

.contact-card a:hover {
  text-decoration: underline;
}


/* ===============================
   LUXURY FOOTER
================================ */

.footer-luxury {
  background: #474747;
  color: #ccc;
  padding: 80px 0 30px;
  position: relative;
}

.footer-logo {
  color: #fff;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-about {
  font-size: 14px;
  line-height: 1.7;
  color: #fdfafa;
}

.footer-heading {
  color: #d4af37;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Links */

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #fcfcfc;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #d4af37;
}

/* Contact Links */

.footer-luxury a {
  color: #fffbfb;
  text-decoration: none;
}

.footer-luxury a:hover {
  color: #d4af37;
}

/* Divider */

.footer-divider {
  border-color: rgba(212,175,55,0.2);
  margin: 40px 0 20px;
}

/* Bottom */

.footer-bottom {
  font-size: 20px;
  color: #f9f8f8;
}

.legal-disclaimer {
  font-size: 12px;
  color: #faf8f8;
  margin-top: 15px;
}

/* WhatsApp Button */

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: 0.3s ease;
  z-index: 999;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}


/* MOBILE NAVBAR FIX ONLY */
@media (max-width: 991px) {

  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    padding: 20px;
    margin-top: 10px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  .navbar-nav {
    gap: 10px;
  }

  .navbar-nav .nav-link {
    padding: 12px 15px;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.3s;
  }

  .navbar-nav .nav-link:hover {
    background: #f3f8ff;
    color: #0d6efd !important;
  }

  .active-link {
    background: #eaf3ff;
    color: #0d6efd !important;
  }

  /* Make toggler cleaner */
  .navbar-toggler {
    border: none;
    outline: none;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

}



.contact-link {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

.contact-link:hover {
  color: #198754;
}

.thank-box {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


/* ===============================
   GALLERY SECTION PREMIUM
================================ */

.gallery-section {
  background: linear-gradient(135deg, #f9fafc, #f3f6fb);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.gallery-title {
  font-size: 38px;
  font-weight: 600;
}

.gallery-subtitle {
  color: #777;
  margin-top: 10px;
}

/* Floating shapes */

.gallery-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  animation: float 8s ease-in-out infinite;
}

.gallery-shape.shape1 {
  width: 300px;
  height: 300px;
  background: #d4af37;
  top: -100px;
  left: -100px;
}

.gallery-shape.shape2 {
  width: 250px;
  height: 250px;
  background: #0d6efd;
  bottom: -80px;
  right: -80px;
}

/* Card */

.gallery-card {
  overflow: hidden;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(212,175,55,0.2);
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: 0.4s ease;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 25px 60px rgba(0,0,0,0.08),
    0 0 20px rgba(212,175,55,0.2);
}

.gallery-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: 0.5s ease;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.1);
}

/* ===============================
   LIGHTBOX
================================ */

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  text-align: center;
}

.lightbox-content {
  max-width: 80%;
  max-height: 80%;
}

.close-lightbox {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}


/* ===============================
   booking
================================ */


.booking-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  padding: 45px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.05);
  border: 1px solid rgba(212,175,55,0.2);
  transition: 0.3s ease;
}

.booking-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(0,0,0,0.08);
}

/* MOBILE NAVBAR LAYOUT FIX */
@media (max-width: 576px) {

  .navbar {
    height: 60px;
    padding: 0 10px;
  }

  .navbar-brand {
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .navbar-brand img {
    height: 28px;
  }

  /* prevent brand text from pushing toggler */
  .navbar-brand span {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* push hamburger to right */
  .navbar-toggler {
    margin-left: auto;
    padding: 4px 6px;
  }

}


/* ===============================
   BLOG SECTION
================================ */

.blog-section {
  background: linear-gradient(135deg, #f9fafc, #f3f6fb);
  padding: 100px 0;
}

/* TITLE */
.blog-title {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-subtitle {
  color: #777;
  margin-bottom: 40px;
}

/* ===============================
   BLOG CARD
================================ */

.blog-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 25px;
  height: 100%;
  transition: 0.4s ease;
  border: 1px solid rgba(212,175,55,0.2);

  box-shadow:
    0 15px 40px rgba(0,0,0,0.05),
    0 0 0 1px rgba(255,255,255,0.6);
}

/* Hover Effect */
.blog-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 25px 60px rgba(0,0,0,0.08),
    0 0 20px rgba(212,175,55,0.2);
}

/* Blog Title */
.blog-card h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Description */
.blog-card p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* Button */
.blog-card .btn {
  margin-top: 10px;
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 14px;
}


/* ===============================
   SINGLE BLOG PAGE
================================ */

.blog-content {
  background: rgba(255,255,255,0.9);
  padding: 40px;
  border-radius: 20px;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.05);
}

/* Headings */
.blog-content h2 {
  margin-top: 25px;
  font-size: 26px;
}

.blog-content h3 {
  margin-top: 20px;
  font-size: 22px;
}

/* Paragraph */
.blog-content p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Lists */
.blog-content ul {
  padding-left: 20px;
}

.blog-content ul li {
  margin-bottom: 8px;
  color: #333;
}

/* CTA Button */
.blog-content .btn {
  border-radius: 30px;
  padding: 12px 25px;
  font-weight: 500;
}


/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {

  .blog-title {
    font-size: 26px;
  }

  .blog-card {
    padding: 20px;
  }

  .blog-content {
    padding: 25px;
  }

}

/* ==================================
   TESTIMONIALS SECTION - PREMIUM
==================================== */

.testimonials-luxury {
  background: linear-gradient(135deg, #f1f4f9, #ffffff);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.7);
  padding: 40px;
  border-radius: 25px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 15px 45px rgba(0,0,0,0.03);
  height: 100%;
  transition: 0.4s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  border-color: rgba(212, 175, 55, 0.4);
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  font-style: italic;
  margin-bottom: 25px;
  position: relative;
}

.testimonial-stars {
  color: #d4af37;
  font-size: 14px;
  margin-bottom: 15px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #198754, #0d6efd);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.author-info h6 {
  margin: 0;
  font-weight: 700;
  color: #1a1a1a;
  font-size: 15px;
}

.author-info span {
  font-size: 13px;
  color: #777;
}

/* CAROUSEL REFINEMENTS */
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
  background-color: #198754;
  border: 4px solid #fff;
  opacity: 0.5;
  transition: 0.3s;
}

.carousel-indicators .active {
  opacity: 1;
  transform: scale(1.2);
  background-color: #d4af37;
}

/* ==================================
   STAR RATING SYSTEM (FORM)
==================================== */
.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 5px;
}

.star-rating input {
  display: none;
}

.star-rating label {
  cursor: pointer;
  font-size: 28px;
  color: #ccc;
  transition: 0.2s;
}

/* Color all stars UNTIL the selected one */
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: #fbbf24 !important;
}