/* 
  ==================================================
  AL JADEED ONLINE QURAN ACADEMY - OFFICIAL STYLES
  ==================================================
  Theme Palette:
  - Cream / Ivory (Main Background): #FAF7F2 / #FFFDFA
  - Deep Emerald Green (Primary): #0A382C / #0E4D3C
  - Luxury Gold (Secondary / Highlights): #D4AF37 / #C59B27 / #F3CF65
  - Warm Brown (Supporting): #4A2E1F / #5C3A28
  - Golden Orange (Accent / CTA): #E67E22 / #D97706
  - Dark Brown / Deep Text: #2C1810 / #122B23
*/

@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400&family=Cinzel:wght@500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg-cream: #FAF7F2;
  --bg-cream-light: #FFFDF9;
  --bg-cream-dark: #F2EADF;
  --emerald-dark: #0A382C;
  --emerald-main: #0E4D3C;
  --emerald-light: #166B54;
  --emerald-soft: #E8F2EF;
  --gold-main: #D4AF37;
  --gold-light: #F3CF65;
  --gold-dark: #A68212;
  --brown-dark: #361F14;
  --brown-main: #4A2E1F;
  --brown-light: #7A533E;
  --orange-accent: #E67E22;
  --orange-hover: #D97706;
  --text-dark: #22150F;
  --text-muted: #5C524B;
  --font-heading: 'Cinzel', serif;
  --font-title: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-arabic: 'Amiri', serif;
  --shadow-sm: 0 4px 12px rgba(10, 56, 44, 0.05);
  --shadow-md: 0 8px 24px rgba(10, 56, 44, 0.08);
  --shadow-lg: 0 16px 36px rgba(10, 56, 44, 0.12);
  --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.25);
  --border-radius-sm: 8px;
  --border-radius-md: 14px;
  --border-radius-lg: 20px;
}

/* Base Reset & Global Styles */
*, ::before, ::after {
  box-sizing: border-box;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-cream);
  color: var(--text-dark);
  font-family: var(--font-body);
  line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--emerald-dark);
  font-weight: 700;
  letter-spacing: 0.3px;
  overflow-wrap: break-word;
}

p, span, a, li, label, div {
  overflow-wrap: break-word;
}

/* Media Elements */
img, video, iframe {
  max-width: 100%;
  height: auto;
}

.font-serif-title {
  font-family: var(--font-title);
}

.font-arabic {
  font-family: var(--font-arabic);
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-cream-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--emerald-main);
  border-radius: 5px;
  border: 2px solid var(--bg-cream-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-main);
}

/* Islamic Background Pattern Overlay */
.islamic-pattern {
  background-image: radial-gradient(var(--gold-main) 0.75px, transparent 0.75px), radial-gradient(var(--gold-main) 0.75px, var(--bg-cream) 0.75px);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
  opacity: 0.95;
}

.bg-emerald-dark {
  background-color: var(--emerald-dark) !important;
}

.bg-emerald-main {
  background-color: var(--emerald-main) !important;
}

.bg-brown-dark {
  background-color: var(--brown-dark) !important;
}

.bg-cream-light {
  background-color: var(--bg-cream-light) !important;
}

.bg-cream-card {
  background-color: #FAF4EB !important;
}

.text-gold {
  color: var(--gold-main) !important;
}

.text-gold-light {
  color: var(--gold-light) !important;
}

.text-emerald {
  color: var(--emerald-main) !important;
}

.text-emerald-dark {
  color: var(--emerald-dark) !important;
}

.text-brown {
  color: var(--brown-main) !important;
}

/* Gold Gradient Borders & Buttons */
.gold-border {
  border: 2px solid var(--gold-main) !important;
}

.gold-border-bottom {
  border-bottom: 3px solid var(--gold-main) !important;
}

.gold-glow {
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Custom Buttons - ALWAYS VISIBLE DEFAULT STATE */
.btn-gold,
.btn-emerald,
.btn-outline-gold {
  opacity: 1 !important;
  visibility: visible !important;
}

.btn-gold {
  background: linear-gradient(135deg, #D4AF37 0%, #E67E22 100%);
  color: #FFFFFF !important;
  font-family: var(--font-body);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 50px;
  border: 1px solid var(--gold-light);
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none !important;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #E67E22 0%, #D4AF37 100%);
  color: #FFFFFF !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(230, 126, 34, 0.4);
}

.btn-gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: all 0.6s ease;
}

.btn-gold:hover::after {
  left: 100%;
}

.btn-emerald {
  background: var(--emerald-dark);
  color: var(--gold-light) !important;
  font-family: var(--font-body);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 50px;
  border: 1.5px solid var(--gold-main);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none !important;
}

.btn-emerald:hover {
  background: var(--emerald-main);
  color: #FFFFFF !important;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}

.btn-outline-gold {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light) !important;
  border: 2px solid var(--gold-main);
  font-family: var(--font-body);
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none !important;
}

.btn-outline-gold:hover {
  background: var(--gold-main);
  color: #FFFFFF !important;
  border-color: var(--gold-main);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Specific Card Buttons visible styling */
.card-custom .btn-outline-gold {
  background: var(--bg-cream-card);
  color: var(--emerald-dark) !important;
  border: 2px solid var(--gold-main);
}

.card-custom .btn-outline-gold:hover {
  background: var(--gold-main);
  color: #FFFFFF !important;
  border-color: var(--gold-main);
}

/* TOP HEADER BAR */
.top-header {
  background-color: var(--brown-dark);
  color: var(--bg-cream);
  font-size: 0.88rem;
  padding: 8px 0;
  border-bottom: 2px solid var(--gold-main);
}

.top-header a {
  color: var(--gold-light);
}

.top-header a:hover {
  color: #FFFFFF;
}

/* =========================
   NAVBAR - FIXED & RESPONSIVE
   ========================= */

.navbar-custom {
  background-color: var(--emerald-dark) !important;

  /* Thora compact size */
  padding: 8px 0;
  min-height: 66px;

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-bottom: 2px solid var(--gold-main);

  /* IMPORTANT: Fixed navbar */
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;

  width: 100% !important;

  /* Sab elements ke upar */
  z-index: 99999 !important;

  transition: all 0.3s ease;
}


/* Navbar Brand */
.navbar-brand-custom {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 !important;
  margin: 0 !important;
}


/* Logo */
.logo-circle {
  width: 48px;
  height: 48px;

  min-width: 48px;
  min-height: 48px;

  border-radius: 50%;
  border: 2px solid var(--gold-main);

  object-fit: contain;
  object-position: center;

  box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);

  background-color: var(--bg-cream-light);
  padding: 1px;

  display: block;
}


/* Brand Text */
.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.brand-title {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: 0.4px;

  white-space: nowrap;
}


.brand-subtitle {
  font-size: 0.68rem;
  color: var(--gold-light);
  letter-spacing: 0.8px;
  text-transform: uppercase;

  white-space: nowrap;
}


/* Navigation Links */
.nav-link-custom {
  color: #E2ECE8 !important;

  font-weight: 600;
  font-size: 0.88rem;

  padding: 7px 11px !important;

  border-radius: 6px;

  transition: all 0.3s ease;

  position: relative;

  white-space: nowrap;
}


.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--gold-light) !important;
  background-color: rgba(212, 175, 55, 0.12);
}


/* Active Link Gold Line */
.nav-link-custom.active::after {
  content: '';

  position: absolute;

  bottom: 2px;
  left: 11px;
  right: 11px;

  height: 2px;

  background-color: var(--gold-main);

  border-radius: 2px;
}


/* Mobile Navbar Button */
.navbar-toggler-custom {
  border: 2px solid var(--gold-main) !important;

  color: var(--gold-light) !important;

  padding: 5px 9px;

  border-radius: 7px;

  outline: none !important;

  box-shadow: none !important;

  position: relative;

  z-index: 100000 !important;
}


/* Navbar collapse */
.navbar-custom .navbar-collapse {
  z-index: 99998 !important;
}


/* =========================
   BODY SPACE FOR FIXED NAVBAR
   ========================= */

body {
  padding-top: 66px;
}


/* =========================
   TABLET
   ========================= */

@media (max-width: 991.98px) {

  .navbar-custom {
    padding: 7px 0;
    min-height: 62px;
  }

  .logo-circle {
    width: 44px;
    height: 44px;

    min-width: 44px;
    min-height: 44px;
  }

  .brand-title {
    font-size: 0.96rem;
  }

  .brand-subtitle {
    font-size: 0.61rem;
  }

  /* Mobile menu */
  .navbar-custom .navbar-collapse {
    margin-top: 7px;

    padding: 8px;

    background-color: var(--emerald-dark);

    border-top: 1px solid rgba(212, 175, 55, 0.25);

    border-radius: 0 0 10px 10px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  }

  .nav-link-custom {
    display: block;

    padding: 10px 12px !important;

    font-size: 0.88rem;
  }

}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 575.98px) {

  .navbar-custom {
    padding: 6px 0;

    min-height: 58px;
  }

  body {
    padding-top: 58px;
  }

  .navbar-brand-custom {
    gap: 7px;

    max-width: calc(100% - 55px);
  }

  .logo-circle {
    width: 40px;
    height: 40px;

    min-width: 40px;
    min-height: 40px;
  }

  .brand-title {
    font-size: 0.84rem;

    letter-spacing: 0.2px;
  }

  .brand-subtitle {
    font-size: 0.52rem;

    letter-spacing: 0.4px;
  }

  .navbar-toggler-custom {
    padding: 4px 8px !important;

    font-size: 0.88rem;
  }

  .navbar-custom .navbar-collapse {
    margin-top: 5px;

    padding: 7px;
  }

  .nav-link-custom {
    font-size: 0.84rem;

    padding: 9px 10px !important;
  }

}
/* HERO BANNER */
.hero-section {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background-color: var(--emerald-dark);
  color: #FFFFFF;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
  opacity: 0.35;
}

.hero-img-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.38;
  filter: brightness(0.85) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 56, 44, 0.92) 0%, rgba(54, 31, 20, 0.85) 60%, rgba(10, 56, 44, 0.92) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-main);
  color: var(--gold-light);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(1.65rem, 5vw, 2.8rem);
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 20px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: clamp(0.92rem, 3.2vw, 1.15rem);
  color: #D8ECE5;
  margin-bottom: 30px;
  max-width: 650px;
  font-weight: 400;
}

/* INNER PAGE HERO BANNER */
.inner-hero {
  background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--brown-dark) 100%);
  position: relative;
  padding: 65px 0;
  color: #FFFFFF;
  border-bottom: 4px solid var(--gold-main);
  overflow: hidden;
}

.inner-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/banner.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.inner-hero-title {
  font-size: clamp(1.5rem, 4.5vw, 2.4rem);
  color: #FFFFFF;
  margin-bottom: 12px;
}

.breadcrumb-custom {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  background: rgba(0,0,0,0.25);
  padding: 6px 20px;
  border-radius: 30px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  font-size: 0.9rem;
}

.breadcrumb-custom a {
  color: var(--gold-light);
}

.breadcrumb-custom span {
  color: #FFFFFF;
}

/* SECTION TITLES */
.section-title-wrap {
  text-align: center;
  margin-bottom: 45px;
  position: relative;
}

.section-subtitle {
  color: var(--orange-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.88rem;
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  color: var(--emerald-dark);
  margin-bottom: 15px;
}

.title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.title-divider .line {
  width: 50px;
  height: 2px;
  background-color: var(--gold-main);
}

.title-divider i {
  color: var(--gold-main);
  font-size: 1rem;
}

/* CARDS COMMON */
.card-custom {
  background-color: #FFFFFF;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.card-custom:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-main);
}

/* FEATURE CARD */
.feature-card {
  padding: 30px 24px;
  text-align: center;
}

.icon-box-gold {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald-main));
  border: 2px solid var(--gold-main);
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  box-shadow: 0 6px 16px rgba(10, 56, 44, 0.2);
  transition: all 0.3s ease;
}

.card-custom:hover .icon-box-gold {
  background: linear-gradient(135deg, var(--gold-main), var(--orange-accent));
  color: #FFFFFF;
  transform: scale(1.1) rotate(5deg);
}

/* COURSE CARD */
.course-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 24px;
  background: #FFFDF9;
  border-top: 4px solid var(--emerald-main);
}

.course-card:hover {
  border-top-color: var(--gold-main);
}

.course-icon-badge {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  background: var(--emerald-soft);
  color: var(--emerald-dark);
  border: 1px solid rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.course-card:hover .course-icon-badge {
  background: var(--gold-main);
  color: #FFFFFF;
}

.course-title {
  font-size: 1.35rem;
  color: var(--emerald-dark);
  margin-bottom: 10px;
}

.course-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.course-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
}

.course-features li {
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.course-features li i {
  color: var(--emerald-main);
  font-size: 0.85rem;
}

/* PRICING CARD */
.pricing-card {
  padding: 32px 26px;
  background: #FFFFFF;
  border: 2px solid rgba(212, 175, 55, 0.3);
  text-align: center;
  position: relative;
}

.pricing-card.featured {
  border: 3px solid var(--gold-main);
  background: #FFFDF8;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2);
  transform: scale(1.03);
}

.pricing-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--orange-accent);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-country {
  font-size: 1.35rem;
  color: var(--emerald-dark);
  margin-bottom: 12px;
}

.pricing-amount {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--brown-main);
  font-family: var(--font-heading);
  margin-bottom: 5px;
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: block;
}

/* PDF CARD */
.pdf-card {
  padding: 26px;
  background: #FFFFFF;
  border-left: 5px solid var(--emerald-dark);
}

.pdf-card:hover {
  border-left-color: var(--gold-main);
}

/* CONTACT & ADMISSION CARDS */
.contact-info-card {
  background: var(--emerald-dark);
  color: #FFFFFF;
  padding: 36px 30px;
  border-radius: var(--border-radius-md);
  border: 2px solid var(--gold-main);
  height: 100%;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid var(--gold-main);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-details h6 {
  color: var(--gold-light);
  margin-bottom: 3px;
  font-size: 1rem;
}

.contact-details p, .contact-details a {
  color: #E2ECE8;
  font-size: 0.95rem;
  margin: 0;
  word-break: break-all;
}

.contact-details a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

/* FORM CONTROL STYLING */
.form-card {
  background: #FFFFFF;
  padding: 36px 32px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-md);
}

.form-label-custom {
  font-weight: 600;
  color: var(--emerald-dark);
  font-size: 0.92rem;
  margin-bottom: 6px;
}

.form-control-custom, .form-select-custom {
  background-color: var(--bg-cream-light);
  border: 1.5px solid #E0D6C8;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.form-control-custom:focus, .form-select-custom:focus {
  background-color: #FFFFFF;
  border-color: var(--emerald-main);
  box-shadow: 0 0 0 0.25rem rgba(14, 77, 60, 0.15);
  outline: none;
}

/* FOOTER */
.footer-custom {
  background-color: var(--emerald-dark);
  color: #E2ECE8;
  padding-top: 65px;
  padding-bottom: 25px;
  border-top: 4px solid var(--gold-main);
  position: relative;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-title {
  color: #FFFFFF;
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--gold-main);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #D2E3DC;
  font-size: 0.92rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--gold-light);
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  padding-top: 22px;
  margin-top: 45px;
  font-size: 0.88rem;
  color: #B2CDC3;
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFFFFF !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ANIMATION UTILITIES */
.animate-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-fade-left.active {
  opacity: 1;
  transform: translateX(0);
}

.animate-fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-fade-right.active {
  opacity: 1;
  transform: translateX(0);
}

.animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* RESPONSIVE DESIGN ADJUSTMENTS ACROSS ALL BREAKPOINTS */
@media (max-width: 991.98px) {
  .pricing-card.featured {
    transform: none !important;
    margin-top: 0;
  }
  .navbar-collapse {
    background-color: var(--emerald-dark);
    padding: 18px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--gold-main);
    margin-top: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    min-height: auto;
    padding: 45px 0;
  }
  .hero-content {
    padding: 25px 0;
  }
  .inner-hero {
    padding: 45px 0;
  }
  .position-relative .position-absolute.bottom-0.end-0 {
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
    margin: 15px 0 0 0 !important;
    width: 100%;
  }
  .breadcrumb-custom {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.82rem;
    padding: 6px 14px;
  }
}

@media (max-width: 575.98px) {
  .top-header {
    font-size: 0.82rem;
    padding: 6px 0;
  }
  .top-header span {
    display: inline-block;
    margin-right: 8px !important;
    margin-bottom: 4px;
  }
  .navbar-custom {
    padding: 10px 0;
  }
  .navbar-brand-custom {
    gap: 8px;
  }
  .logo-circle {
    width: 44px;
    height: 44px;
  }
  .brand-title {
    font-size: 0.98rem;
  }
  .brand-subtitle {
    font-size: 0.65rem;
  }
  .navbar-toggler-custom {
    padding: 5px 10px;
    font-size: 0.9rem;
  }
  .hero-badge {
    font-size: 0.78rem;
    padding: 5px 12px;
    margin-bottom: 12px;
  }
  .hero-content .d-flex.gap-3,
  .inner-hero-content .d-flex.gap-3,
  section .d-flex.flex-wrap.gap-3 {
    flex-direction: column;
    width: 100%;
  }
  .btn-gold, .btn-emerald, .btn-outline-gold {
    width: 100%;
    justify-content: center;
  }
  .form-card, .contact-info-card {
    padding: 22px 16px;
  }
  .contact-item {
    gap: 12px;
  }
  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  .bg-brown-dark .col-6 {
    padding-left: 6px;
    padding-right: 6px;
  }
  .bg-brown-dark .d-flex.align-items-center {
    flex-direction: column;
    text-align: center !important;
  }
  .bg-brown-dark .d-flex.align-items-center .text-start {
    text-align: center !important;
  }
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 1.7rem;
    bottom: 18px;
    right: 18px;
  }
}

/* newlogo */
.logo-wrapper {
    width: 72px;
    height: 72px;
    min-width: 72px;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0;
    margin: 0;
    border-radius: 50%;
}

.logo-circle {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 50%;
    padding: 0;
    margin: 0;
}

@media (max-width: 576px) {

    .logo-wrapper {
        width: 58px;
        height: 58px;
        min-width: 58px;
        min-height: 58px;
    }

    .brand-title {
        font-size: 14px;
        white-space: nowrap;
    }

    .brand-subtitle {
        font-size: 8px;
        white-space: nowrap;
    }
}

/* footer logo */

.footer-logo-wrapper {
    width: 58px;
    height: 58px;
    min-width: 58px;
    min-height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;

    padding: 0;
    margin: 0;
    border-radius: 50%;
}

.footer-logo {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: contain;
    object-position: center;

    border: none !important;
    outline: none !important;
    box-shadow: none !important;

    border-radius: 50%;
    padding: 0;
    margin: 0;
}

@media (max-width: 576px) {
    .footer-logo-wrapper {
        width: 52px;
        height: 52px;
        min-width: 52px;
        min-height: 52px;
    }
}

/* bannervedio */

.vip-hero {
    position: relative;
    min-height: 680px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    isolation: isolate;
    background: #1f120b;
}

/* Background Video */
.vip-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -3;
}

/* Luxury Overlay */
.vip-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;

    background:
        linear-gradient(
            90deg,
            rgba(31, 18, 11, 0.94) 0%,
            rgba(44, 26, 17, 0.78) 45%,
            rgba(31, 18, 11, 0.88) 100%
        );
}

/* Golden cinematic glow */
.vip-hero-glow {
    position: absolute;
    width: 550px;
    height: 550px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.20) 0%,
        rgba(212, 175, 55, 0.08) 35%,
        transparent 70%
    );

    z-index: -1;
    pointer-events: none;
    animation: heroGlow 6s ease-in-out infinite;
}

/* Content */
.vip-hero .hero-content {
    z-index: 5;
    padding-top: 100px;
    padding-bottom: 100px;
}

/* Badge */
.vip-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 10px 20px;
    margin-bottom: 24px;

    border: 1px solid rgba(212, 175, 55, 0.65);
    border-radius: 50px;

    background: rgba(44, 26, 17, 0.72);
    color: #f3d36a;

    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;

    backdrop-filter: blur(8px);
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.25),
        inset 0 0 20px rgba(212, 175, 55, 0.05);

    animation: badgeFloat 4s ease-in-out infinite;
}

/* Heading */
.vip-hero .hero-title {
    max-width: 1050px;
    margin: 0 auto 24px;

    color: #fff8e7;

    font-family: 'Playfair Display', serif;
    font-weight: 800;

    font-size: clamp(2.3rem, 5vw, 4.8rem);
    line-height: 1.08;
    letter-spacing: -1px;

    text-shadow:
        0 3px 20px rgba(0, 0, 0, 0.65),
        0 0 35px rgba(212, 175, 55, 0.10);
}

/* Subtitle */
.vip-hero .hero-subtitle {
    max-width: 820px;

    color: rgba(255, 248, 231, 0.92);

    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    line-height: 1.8;

    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);

    margin-bottom: 35px;
}

/* Buttons */
.vip-hero .hero-buttons {
    position: relative;
    z-index: 10;
}

.vip-hero .hero-buttons a {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 13px 24px;

    border-radius: 10px;

    text-decoration: none;

    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}

.vip-hero .hero-buttons a:hover {
    transform: translateY(-5px);
}

/* Bottom effect */
.hero-bottom-glow {
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(
        90deg,
        transparent,
        #b8860b,
        #f5d76e,
        #d4af37,
        transparent
    );

    box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);

    z-index: 20;
}

/* Animations */
@keyframes heroGlow {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Tablet */
@media (max-width: 991px) {

    .vip-hero {
        min-height: 620px;
    }

    .vip-hero .hero-content {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .vip-hero .hero-title {
        font-size: clamp(2.1rem, 6vw, 3.5rem);
    }
}

/* Mobile */
@media (max-width: 576px) {

    .vip-hero {
        min-height: 700px;
    }

    .vip-hero-video {
        object-position: center;
    }

    .vip-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(31, 18, 11, 0.92),
                rgba(44, 26, 17, 0.82),
                rgba(31, 18, 11, 0.95)
            );
    }

    .vip-hero .hero-content {
        padding: 75px 15px 80px;
    }

    .vip-hero .hero-badge {
        font-size: 10px;
        padding: 8px 14px;
        max-width: 100%;
        text-align: center;
    }

    .vip-hero .hero-title {
        font-size: clamp(2rem, 9vw, 2.8rem);
        line-height: 1.15;
        letter-spacing: -0.5px;
    }

    .vip-hero .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .vip-hero .hero-buttons {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 12px !important;
    }

    .vip-hero .hero-buttons a {
        width: 100%;
        min-height: 50px;
        padding: 12px 15px;
    }
}

/* aboutusbanner */

/* =========================================================
   VIP FOOTER VIDEO - FIXED RESPONSIVE VERSION
========================================================= */

.vip-footer {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #211109;
    color: #fff;
    isolation: isolate;
    padding: 75px 0 0;
}

/* ==========================================
   BACKGROUND VIDEO
========================================== */

.footer-video {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    z-index: -3;

    display: block;

    pointer-events: none;
}

/* ==========================================
   DARK LUXURY OVERLAY
========================================== */

.footer-video-overlay {
    position: absolute;
    inset: 0;

    z-index: -2;

    background:
        linear-gradient(
            90deg,
            rgba(25, 12, 6, 0.96) 0%,
            rgba(35, 18, 9, 0.90) 50%,
            rgba(25, 12, 6, 0.96) 100%
        );
}

/* ==========================================
   GOLD TOP BORDER
========================================== */

.footer-top-line {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            #8b6415,
            #d4af37,
            #f5d76e,
            #d4af37,
            #8b6415
        );

    z-index: 5;
}


/* ==========================================
   CONTAINER
========================================== */

.footer-container {
    position: relative;
    z-index: 3;
}


/* ==========================================
   BRAND
========================================== */

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-bottom: 22px;
}

.footer-logo-box {
    width: 78px;
    height: 78px;

    min-width: 78px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    overflow: hidden;

    background: rgba(0, 0, 0, 0.25);

    border: 1px solid rgba(212, 175, 55, 0.75);

    box-shadow:
        0 0 0 3px rgba(212, 175, 55, 0.08),
        0 8px 25px rgba(0, 0, 0, 0.45);
}

.footer-logo {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;
}

.footer-brand-text h3 {
    margin: 0;

    color: #ffffff;

    font-family: "Cinzel", "Playfair Display", serif;

    font-size: 23px;
    font-weight: 700;

    letter-spacing: 1.3px;

    line-height: 1.2;
}

.footer-brand-text span {
    display: block;

    margin-top: 5px;

    color: #e5c158;

    font-family: "Cinzel", serif;

    font-size: 12px;

    letter-spacing: 0.8px;
}


/* ==========================================
   DESCRIPTION
========================================== */

.footer-description {
    max-width: 420px;

    margin: 0 0 22px;

    color: rgba(255, 255, 255, 0.88);

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size: 13px;

    line-height: 1.8;
}


/* ==========================================
   TRUST BADGE
========================================== */

.footer-trust-badge {
    display: inline-flex;

    align-items: center;
    gap: 8px;

    padding: 9px 14px;

    border-radius: 25px;

    background: rgba(212, 175, 55, 0.10);

    border: 1px solid rgba(212, 175, 55, 0.40);

    color: #efd16a;

    font-size: 11px;
}


/* ==========================================
   TITLES
========================================== */

.footer-title {
    margin: 0;

    color: #f1d16a;

    font-family:
        "Cinzel",
        "Playfair Display",
        serif;

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 0.6px;
}

.footer-title-line {
    width: 42px;
    height: 2px;

    margin: 10px 0 20px;

    background:
        linear-gradient(
            90deg,
            #d4af37,
            #f5d76e
        );
}


/* ==========================================
   LINKS
========================================== */

.footer-links {
    list-style: none;

    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 11px;
}

.footer-links a {
    display: flex;

    align-items: center;

    gap: 8px;

    color: rgba(255, 255, 255, 0.86);

    text-decoration: none;

    font-size: 12px;

    line-height: 1.5;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-links a i {
    width: 12px;

    color: #d4af37;

    font-size: 9px;

    flex-shrink: 0;
}

.footer-links a:hover {
    color: #f3d36d;

    transform: translateX(4px);
}


/* ==========================================
   CONTACT
========================================== */

.footer-contact-item {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-bottom: 17px;
}

.contact-icon {
    width: 34px;
    height: 34px;

    min-width: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: rgba(212, 175, 55, 0.10);

    border: 1px solid rgba(212, 175, 55, 0.30);

    color: #e4c454;

    font-size: 14px;
}

.contact-content {
    min-width: 0;
}

.contact-content strong {
    display: block;

    margin-bottom: 3px;

    color: #e5c158;

    font-size: 11px;
}

.contact-content a {
    display: block;

    color: rgba(255, 255, 255, 0.88);

    text-decoration: none;

    font-size: 11px;

    line-height: 1.5;

    overflow-wrap: anywhere;
}

.contact-content a:hover {
    color: #f4d878;
}


/* ==========================================
   BOTTOM
========================================== */

.footer-bottom {
    margin-top: 45px;

    padding: 22px 10px 25px;

    text-align: center;
}

.footer-bottom-line {
    width: 100%;
    height: 1px;

    margin-bottom: 18px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(212, 175, 55, 0.50),
            transparent
        );
}

.footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.78);

    font-size: 11px;

    line-height: 1.7;
}

.footer-bottom strong {
    color: #e5c158;
}

.footer-bottom span {
    display: block;

    margin-top: 4px;

    color: rgba(229, 193, 88, 0.75);

    font-family: "Cinzel", serif;

    font-size: 9px;

    letter-spacing: 0.8px;
}


/* ==========================================
   WHATSAPP
========================================== */

.footer-whatsapp {
    position: fixed;

    right: 22px;
    bottom: 22px;

    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #20c76a;

    color: #fff;

    text-decoration: none;

    font-size: 26px;

    z-index: 9999;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.35);
}

.footer-whatsapp:hover {
    color: #fff;
    transform: translateY(-4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .vip-footer {
        padding-top: 65px;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-column {
        margin-bottom: 15px;
    }
}


/* =========================================================
   MOBILE - IMPORTANT VIDEO FIX
========================================================= */

@media (max-width: 767px) {

    .vip-footer {
        padding: 55px 0 0;

        /*
         IMPORTANT:
         Footer ko unnecessarily bohat lamba nahi hone dena.
        */
        min-height: auto;
    }


    /* ------------------------------
       MOBILE VIDEO
    ------------------------------ */

    .footer-video {

        /*
         Mobile par video ko full footer
         mein stretch karne ke bajaye
         controlled cover rakha gaya hai.
        */

        width: 100%;
        height: 100%;

        object-fit: cover;

        /*
         Center ki jagah thora upper
         position — Quran/video subject
         zyada achha nazar aayega.
        */

        object-position: center center;

        transform: none;
    }


    /* ------------------------------
       MOBILE OVERLAY
    ------------------------------ */

    .footer-video-overlay {

        /*
         Mobile par text ke peeche
         video ko zyada dark rakha gaya hai.
        */

        background:
            linear-gradient(
                180deg,
                rgba(25, 12, 6, 0.97) 0%,
                rgba(35, 17, 8, 0.94) 45%,
                rgba(25, 12, 6, 0.97) 100%
            );
    }


    /* ------------------------------
       BRAND
    ------------------------------ */

    .footer-brand {
        gap: 13px;

        margin-bottom: 18px;
    }

    .footer-logo-box {
        width: 64px;
        height: 64px;

        min-width: 64px;
    }

    .footer-brand-text h3 {
        font-size: 18px;

        letter-spacing: 0.8px;
    }

    .footer-brand-text span {
        font-size: 9px;

        letter-spacing: 0.5px;
    }


    /* ------------------------------
       DESCRIPTION
    ------------------------------ */

    .footer-description {
        font-size: 12px;

        line-height: 1.75;

        margin-bottom: 18px;
    }


    /* ------------------------------
       TRUST BADGE
    ------------------------------ */

    .footer-trust-badge {
        font-size: 10px;

        padding: 8px 12px;
    }


    /* ------------------------------
       COLUMNS
    ------------------------------ */

    .footer-column {
        margin-top: 25px;

        margin-bottom: 0;
    }

    .footer-title {
        font-size: 14px;
    }

    .footer-title-line {
        margin-top: 8px;
        margin-bottom: 16px;
    }


    /* ------------------------------
       LINKS
    ------------------------------ */

    .footer-links li {
        margin-bottom: 9px;
    }

    .footer-links a {
        font-size: 12px;
    }


    /* ------------------------------
       CONTACT
    ------------------------------ */

    .footer-contact-item {
        margin-bottom: 14px;
    }

    .contact-icon {
        width: 32px;
        height: 32px;

        min-width: 32px;
    }

    .contact-content strong {
        font-size: 10px;
    }

    .contact-content a {
        font-size: 10px;

        line-height: 1.5;
    }


    /* ------------------------------
       BOTTOM
    ------------------------------ */

    .footer-bottom {
        margin-top: 35px;

        padding:
            20px
            8px
            25px;
    }

    .footer-bottom p {
        font-size: 10px;
    }

    .footer-bottom span {
        font-size: 8px;
    }


    /* ------------------------------
       WHATSAPP
    ------------------------------ */

    .footer-whatsapp {
        width: 50px;
        height: 50px;

        right: 14px;
        bottom: 14px;

        font-size: 23px;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 400px) {

    .vip-footer {
        padding-top: 50px;
    }

    .footer-logo-box {
        width: 58px;
        height: 58px;

        min-width: 58px;
    }

    .footer-brand-text h3 {
        font-size: 16px;
    }

    .footer-brand-text span {
        font-size: 8px;
    }

    .footer-description {
        font-size: 11px;
    }

    .footer-title {
        font-size: 13px;
    }

    .footer-links a {
        font-size: 11px;
    }

    .contact-content a {
        font-size: 9.5px;
    }

}
@media (max-width: 767px) {
    .footer-video {
        object-position: 50% 30%;
    }
}