:root {
  --primary-plum: #3D1B40;
  --gold-accent: #B8860B;
  --soft-bg: #eee5f7;
  --card-bg: #FFFFFF;
  --text-dark: #2B2B2B;
  --text-muted: #555555;
  --bs-secondary-color: #000;
}

html { scroll-behavior: smooth; }

body {
  /*font-family: 'Plus Jakarta Sans', sans-serif;*/
  font-family: 'Poppins', sans-serif !important;
  background-color: var(--soft-bg);
  color: var(--text-dark);
  font-size: 1.05rem; /* Increased body text size */
  line-height: 1.65;
}
p {
    color: black !important; /* Ya aap hex code use kar sakte hain: #ff0000 */
}
.text-muted {
    --bs-text-opacity: 1;
    color: var(--bs-secondary-color) !important;
}
.text-secondary {
    --bs-text-opacity: 1;
    color: var(--bs-secondary-color) !important;
}
/* Up-scaled Typography Scale */
h1 { font-family: 'Poppins', sans-serif; font-size: 2.75rem; font-weight: 700; color: var(--primary-plum); }
h2 { font-family: 'Poppins', sans-serif; font-size: 2.1rem; font-weight: 700; color: var(--primary-plum); }
h3 { font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 600; color: var(--primary-plum); }
h4 { font-size: 1.3rem; font-weight: 600; color: var(--primary-plum); }

.brand-font { font-family: 'Playfair Display', serif; }

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(61, 27, 64, 0.08);
}
.nav-link { color: var(--primary-plum) !important; font-weight: 600; font-size: 1rem; margin: 0 6px; }
.nav-link:hover, .nav-link.active { color: var(--gold-accent) !important; }

/* Custom Buttons */
.btn-custom {
  background-color: var(--primary-plum);
  color: #fff;
  border-radius: 50px;
  padding: 10px 28px;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid var(--primary-plum);
  transition: all 0.3s ease;
}
.btn-custom:hover {
  background-color: var(--gold-accent);
  border-color: var(--gold-accent);
  color: #fff;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  padding: 70px 0 60px;
  background: linear-gradient(135deg, #FAF8FC 0%, #F1E9F5 100%);
}
.hero-img-frame {
  position: relative;
  max-width: 360px;
}
.hero-img-frame img {
  border-radius: 160px 160px 24px 24px;
  box-shadow: 0 20px 40px rgba(61, 27, 64, 0.15);
  border: 3px solid #fff;
}
/* Navbar */
.navbar {
    background: #fff;
    padding: 12px 0;
}

/* Logo */
.nav-logo {
    max-height: 55px;
    width: auto;
    display: block;
}

/* Mobile Toggle */
.navbar-toggler {
    margin-left: auto;
    border: 1px solid #ddd;
    padding: 7px 10px;
    box-shadow: none !important;
    margin-top: -88px;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

/* Mobile */
@media (max-width: 991px) {

    .navbar > .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-brand {
        margin-right: 0;
    }

    .nav-logo {
        max-height: 48px;
    }

    .navbar-toggler {
        margin-left: auto;
    }

    .navbar-collapse {
        margin-top: 15px;
    }

    .navbar-nav {
        align-items: flex-start !important;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 10px 0 !important;
    }

    .btn-custom {
        margin-top: 10px;
    }
}
/* Compact Stats */
.stat-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.03);
  border-left: 4px solid var(--gold-accent);
}
.stat-card h2 { font-size: 2.2rem; margin-bottom: 2px; }

/* Service & Highlight Cards */
.modern-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.modern-card p {
  font-size: 0.98rem; /* Clear card text */
}
.modern-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(61, 27, 64, 0.08);
}
.card-img-wrapper {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.modern-card:hover .card-img-wrapper img {
  transform: scale(1.05);
}

/* Sleek Badge/Checklist Items */
.gold-badge-item {
  background-color: rgba(184, 134, 11, 0.08);
  color: var(--primary-plum);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.98rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.gold-badge-item i { color: var(--gold-accent); font-size: 1.1rem; }

/* Accordion Modernization */
.accordion-button { font-size: 1.05rem; font-weight: 600; }
.accordion-button:not(.collapsed) {
  background-color: #F4EFF7;
  color: var(--primary-plum);
}
.accordion-body { font-size: 1rem; }
.accordion-button:focus { box-shadow: none; }

/* Footer Styles */
.site-footer {
  background-color: var(--primary-plum);
  color: #E2D6E4;
  font-size: 0.95rem;
}

.site-footer .border-light-subtle {
  border-color: rgba(255, 255, 255, 0.12) !important;
}

.footer-heading {
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-location {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.92rem;
  transition: all 0.25s ease;
}

.footer-links a:hover {
  color: var(--gold-accent);
  padding-left: 4px;
}

/* Social Icon Buttons */
.social-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--gold-accent);
  color: #FFFFFF;
  transform: translateY(-3px);
}

/* Bottom Links */
.copyright-text, .footer-bottom-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: var(--gold-accent);
}

/* Service Card Single Grid Layout */
.service-detail-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 30px;
  border: 1px solid rgba(61, 27, 64, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.service-detail-card:hover {
  box-shadow: 0 15px 35px rgba(61, 27, 64, 0.09);
  border-color: rgba(184, 134, 11, 0.3);
}

.service-img-container {
  height: 280px;
  border-radius: 18px;
  overflow: hidden;
}

.service-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-detail-card:hover .service-img-container img {
  transform: scale(1.04);
}


/* About Page Specific Styles */
.about-info-card {
  background: #FFFFFF;
  transition: all 0.3s ease;
}

.about-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(61, 27, 64, 0.07);
  border-color: rgba(184, 134, 11, 0.4) !important;
}



/* Achievements Styling */
.achievement-card {
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.achievement-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(61, 27, 64, 0.08);
  border-color: rgba(184, 134, 11, 0.3) !important;
}

.timeline-item h4 {
  font-size: 1.25rem;
  color: var(--primary-plum);
}

/* Contact Page Specific Styles */
.contact-icon-box {
  width: 44px;
  height: 44px;
  background-color: rgba(184, 134, 11, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.custom-input {
  border-radius: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 0.95rem;
}

.custom-input:focus {
  border-color: var(--primary-plum);
  box-shadow: 0 0 0 0.25rem rgba(61, 27, 64, 0.15);
}

/* Navbar Logo Styling */
.nav-logo {
  width: 22% !important;
      max-height: 100% !important;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.03);
}

/* Mobile Devices Fix */
@media (max-width: 576px) {
  .nav-logo {
    max-height: 38px;
  }
}
/* Floating WhatsApp Button Styling */
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #FFF !important;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  color: #FFF !important;
}

/* Subtle Pulse Animation */
@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Mobile Friendly Adjustment */
@media (max-width: 576px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 26px;
  }
}

/* Floating Action Group Wrapper */
.floating-btn-group {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

/* Base Floating Button Style */
.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.float-btn:hover {
  transform: scale(1.1);
  color: #ffffff !important;
}

/* Individual Brand Colors */
.float-call {
  background-color: #3D1B40; /* Theme Primary Plum */
}

.float-call:hover {
  background-color: #B8860B; /* Theme Gold Accent */
}

.float-insta {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.float-whatsapp {
  background-color: #25d366;
  animation: whatsapp-pulse 2s infinite;
}

/* Subtle Pulse for WhatsApp */
@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Mobile Screen Adjustment */
@media (max-width: 576px) {
  .floating-btn-group {
    bottom: 15px;
    right: 15px;
    gap: 10px;
  }
  
  .float-btn {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}


























