:root {
            --primary-orange: #250429;
            --accent-orange: rgb(158, 136, 12);
            --dark-overlay: rgba(0, 0, 0, 0.3);
            /* Color Palette Sampled from Mindchamps Logo */
            --mc-gold-light: #eecb8c;  /* Brightest reflection */
            --mc-gold-mid: #c5a059;    /* Core gold tone */
            --mc-gold-dark: #8b6b2e;   /* Deep shadow */
        }

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    overflow-x: hidden;
}
/* ===== MINDCHAMPS ORBITAL PRELOADER STYLES ===== */
#preloader-orbit {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white; /* Deep "Void" Background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader-orbit.fade-out {
    opacity: 0;
    visibility: hidden;
}

.logo-orbit-container {
    position: relative;
    width: 200px; /* Outer orbital boundary */
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-logo {
    width: 130px; /* Small logo as requested */
    height: auto;
    position: absolute;
    z-index: 5; /* Stays above the rings */
}

/* Base style for both rings */
.logo-orbit-container::before,
.logo-orbit-container::after {
    content: "";
    position: absolute;
    border: 1px solid transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* RING 1: Inner, Fast, Green, Clockwise */
.logo-orbit-container::before {
    width: 150px;
    height: 150px;
    border-top-color: #c5a059; /* Original Bright Green from source */
    animation: orbit-clockwise 2s linear infinite;
    z-index: 2;
}

/* RING 2: Outer, Slower, Purple/Maroon, Counter-Clockwise */
.logo-orbit-container::after {
    width: 200px;
    height: 200px;
    border-bottom-color: var(--primary-orange); /* Your Brand Purple */
    animation: orbit-counter-clockwise 3s linear infinite;
    z-index: 1;
}

/* Update this specific part of your preloader CSS */
.loader-branding {
    color: var(--primary-orange);
    font-family: 'Inter', sans-serif; /* Keep "MINDCHAMPS" clean and modern */
    font-weight: 900;
    letter-spacing: 4px;
    line-height: 1.1;
    margin-top: 15px;
    text-transform: uppercase;
}

.loader-branding span {
    display: block; /* Moves it to a new line */
    font-family: 'Great Vibes', cursive; /* The Calligraphy Font */
    color: #c5a059; /* Metallic Gold from Logo */
    font-size: 1.6rem; /* Increased for readability */
    font-weight: 400;
    letter-spacing: 0; /* Script fonts should not have spacing */
    text-transform: none; /* Keep it in sentence case like the logo */
    margin-top: 5px;
    /* Subtle glow to match the metallic feel */
    text-shadow: 0 0 10px rgba(197, 160, 89, 0.3);
}

/* KEYFRAMES */
@keyframes orbit-clockwise {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes orbit-counter-clockwise {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); } /* Notice the negative sign */
}
/* ===== NAVIGATION ===== */
.navbar {
    padding: 1rem 2rem;
    background: transparent; /* Semi-transparent by default */
    transition: transform 0.4s ease-in-out, background 0.3s ease;
    z-index: 1000;
}

/* The class that hides the navbar */
.nav-up {
    transform: translateY(-100%);
}

.navbar-brand img {
    height: 70px;
    width: auto;
}
.logo-text {
    display: inline-block;
    vertical-align: middle;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1;
    color: white !important;
    text-transform: uppercase;
}

.logo-text span {
    display: block;
    font-size: 10px;
    letter-spacing: 4px;
    font-weight: 400;
}
.nav-link {
    font-family: 'Inter', sans-serif; /* ensure correct font */
    color: white !important;
    font-weight: 900; /* boldest weight */
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    margin: 0 5px;
    transition: color 0.3s;
}
.nav-link:hover {
    color: var(--accent-orange) !important;
}

.nav-btn {
    background: var(--primary-orange);
    color: white !important;
    border-radius: 4px;
}

/* ===== HERO SECTION (FIXED VERSION) ===== */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #000; /* Fallback black instead of grey */
}

.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center; /* Ensures horizontal centering */
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

/* Dark overlay using your variable */
.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(var(--dark-overlay, rgba(0,0,0,0.5), rgba(0,0,0,0.7)));
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
    /* Zooming from 110% to 100% can cause gaps on some mobile ratios, 
       so we use a safer scale */
    animation: zoomOutEffect 10s ease-out forwards;
}

/* Content Container */
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    opacity: 0;
    transform: translateY(30px); /* Changed to Y for a smoother rise-up effect */
}

.slide.active .hero-content {
    animation: fadeInUp 1.2s forwards ease-out 0.4s;
}

/* Keyframes */
@keyframes zoomOutEffect {
    from { transform: scale(1.15); }
    to { transform: scale(1.05); } /* Ending slightly above 1 to prevent edge gaps */
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typography Fixes */
.hero h1 {
    font-size: clamp(1.8rem, 8vw, 4.5rem); /* Slightly smaller start for mobile */
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: center; /* Centered for mobile */
    
    background: linear-gradient(165deg, #d4af37, #f9f1c0, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.5));
}

.hero p {
    font-size: clamp(0.95rem, 4vw, 1.25rem);
    color: #f8f9fa;
    max-width: 600px;
    margin: 0 auto 2rem; /* Center the paragraph */
    text-align: center;
    border-left: none; /* Removed side border for cleaner mobile centering */
    padding: 10px 0;
}

.hero-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Specific Adjustments */
@media (max-width: 768px) {
    .hero {
        height: 100dvh; /* Use dynamic viewport height for mobile browsers */
    }
    .hero h1 {
        line-height: 1.1;
    }
}
/* ========================= */
/* NAVBAR DROPDOWN FIX */
/* ========================= */

@media (min-width:992px){

.nav-item.dropdown:hover .dropdown-menu{
    display:block;
    margin-top:0;
    animation:fadeIn .3s;
}

.nav-item.dropdown .nav-link{
    padding-bottom:15px;
}

}

/* Dropdown animation */
@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ========================= */
/* MOBILE HERO FIX */
/* ========================= */

@media (max-width:991px){

.hero{
    height:85vh;
}

.hero-content{
    text-align:center;
    margin:auto;
}

.hero h1{
    font-size:1.9rem;
}

.hero p{
    margin:25px auto;

    border-left:none;
    border-top:2px solid var(--primary-orange);

    padding-top:15px;
    padding-left:0;
}

}
/* ===== INTRO SECTION (REMAINS SAME) ===== */
.intro-section {
    padding: 100px 0;
    background-color: var(--primary-orange);
    position: relative;
    z-index: 5; /* Ensures it stays above hero shadows */
}

.intro-text {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--mc-gold-dark);
    line-height: 1.3;
}

.btn-read-more {
    background-color: var(--mc-gold-dark);
    color: white;
    padding: 15px 45px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    text-transform: capitalize;
    transition: background 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-read-more:hover {
    background-color: var(--accent-orange);
    color: var(--primary-orange);
}

@media (max-width: 991px) {
    .intro-section {
        padding: 60px 0;
        text-align: center;
    }
    .intro-text {
        margin-bottom: 30px;
    }
}
/* ===== TRACK RECORD SECTION ===== */
.meet-waridi-section {
    padding: 40px 0; /* reduced for single-screen fit */
    background: 
        linear-gradient(var(--dark-overlay)), 
        url("../images/prepared-wedding-hall.webp") center/cover fixed;
    display: flex;
    align-items: center;
    min-height: 110vh; /* ensure section fills screen */
}
/* Make the column wider */
.col-lg-9.col-xl-8 {
    flex: 0 0 100%;
    max-width: 100%;
}
/* The Glass Card */
.glass-card {
    background: rgba(0, 0, 0, 0.3); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    
    /* Reduced height by reducing padding */
    padding: 20px 50px; /* top/bottom 20px, left/right 50px */
    
    /* Make it wider */
    width: 100%;       /* use full column width */
    max-width: 950px;  /* adjust max width as needed */
    
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    margin: 0 auto; /* center horizontally */
}

/* Section Title */
.meet-waridi-title {
    background: linear-gradient(135deg, #eecb8c 0%, #c5a059 50%, #8b6b2e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 2rem;
    text-align: center;
}

.sub-line {
    width: 60px;
    height: 3px;
    background: #eecb8c;
    margin: 0 auto 20px;
    border-radius: 2px;
}

/* Records Grid */
.record-list {
    margin-top: 20px;
}

.record-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.record-item:hover {
    background: rgba(197, 160, 89, 0.1);
    padding-left: 10px;
    border-radius: 8px;
}

/* Stat Numbers */
.stat-number {
    color: #eecb8c !important;
    font-weight: 900;
    font-size: 2.2rem;
    min-width: 90px;
    text-align: center;
}

/* Record Text */
.record-details {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1.2rem;
}

/* Years of Experience */
.years-experience {
    text-align: center;
    margin-top: 30px;
}

.years-experience .stat-number {
    font-size: 3rem;
}

.years-experience .record-details {
    font-size: 1.2rem;
    margin-top: 5px;
}

/* Button */
.btn-read-more {
    background: linear-gradient(135deg,#c5a059,#8b6b2e);
    color: white;
    border: none;
    font-weight: 600;
    padding: 12px 35px;
    margin-top: 20px;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .record-list .col-md-6 {
        margin-bottom: 20px;
    }

    .record-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 6px 0;
    }

    .stat-number {
        min-width: auto;
        font-size: 1.8rem;
        margin-bottom: 5px;
        text-align: left;
    }

    .record-details {
        font-size: 1rem;
    }

    .years-experience .stat-number {
        font-size: 2.5rem;
    }

    .years-experience .record-details {
        font-size: 1rem;
    }
}
/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

/* ===== IMPROVED SERVICE CARD WITH FOOTER BUTTONS ===== */
.service-card {
    position: relative;
    /* Increased Height via Padding & Min-Height */
    min-height: 500px; 
    padding: 80px 40px; 
    
    border-radius: 0 40px;
    text-align: center;
    border: none;
    overflow: hidden;
    transition: var(--transition);
    
    /* Flexbox settings to push button to bottom */
    display: flex;
    flex-direction: column;
    z-index: 1;
}

/* Background Image Layer with Zoom Effect */
.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    /* Darker gradient for high contrast */
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.95)), var(--card-img);
    transition: transform 0.8s ease;
    z-index: -1;
}

.service-card:hover::before {
    transform: scale(1.15);
}

/* Card Content Area */
.service-card-body {
    flex-grow: 1; /* Takes up all available space to push footer down */
}

/* ===== SERVICE ICON ===== */
.service-icon{
    width:80px;
    height:80px;
    margin:0 auto 30px;
    display:flex;
    align-items:center;
    justify-content:center;
    
    font-size:32px;
    color:var(--mc-gold-dark);

    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(2px);

    border-radius:50%;
    border:2px solid rgba(255,255,255,0.2);

    transition: var(--transition);
}
.service-card h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Footer Area for Button */
.service-card-footer {
    margin-top: auto; /* This is the magic line that anchors the button */
    padding-top: 30px;
}

.btn-service {
    display: inline-block;
    width: 100%; /* Makes button feel more structural */
    background: transparent;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 2px;
}

.service-card:hover .btn-service {
    color: var(--primary-orange);
}
/* ===== RESPONSIVE FIXES ===== */
@media (max-width: 991px) {
    .navbar { background: rgba(0,0,0,0.95); }
    
    .record-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .stat-number { min-width: auto; }
    
    .intro-section, .meet-waridi-section, .services-section {
        padding: 60px 0;
    }
}
/* ===== PREMIUM FOOTER ===== */
.footer-main {
    background-color: var(--primary-orange);
    color: #ffffff;
    padding: 80px 0 30px;
    border-top: 5px solid var(--accent-orange);
}

.footer-logo {
    font-weight: 900;
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 25px;
    display: block;
    text-decoration: none;
    color: white !important;
}
.footer-logo img{
    height:100px;
    width:150px;
}

.footer-logo span {
    font-size: 10px;
    letter-spacing: 5px;
    font-weight: 400;
}

.footer-description {
    display: block; /* Moves it to a new line */
    font-family: 'Great Vibes', cursive; /* The Calligraphy Font */
    color: #c5a059; /* Metallic Gold from Logo */
    font-size: 1.4rem; /* Increased for readability */
    font-weight: 300;
    letter-spacing: 0; /* Script fonts should not have spacing */
    text-transform: none; /* Keep it in sentence case like the logo */
    margin-top: 5px;
    /* Subtle glow to match the metallic feel */
    text-shadow: 0 0 10px rgba(197, 160, 89, 0.3);
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-orange);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-orange);
    padding-left: 10px;
}

.contact-info-item {
    display: flex;
    margin-bottom: 20px;
    color: #a0a0a0;
}

.contact-info-item i {
    color: var(--accent-orange);
    margin-right: 15px;
    margin-top: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--accent-orange);
    transform: translateY(-5px);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #666;
    font-size: 0.9rem;
}

/* ABOUT SPECIFIC STYLES */
.about-hero {
    padding: 150px 0 100px;
    text-align: center;
    height: 60vh;
}

.hero-title-gold {
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(165deg, #8b6b2e 0%, #eecb8c 25%, #c5a059 50%, #eecb8c 75%, #8b6b2e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.5));
}

.text-gold { color: #c5a059; }
.text-purple { color: #3a1c5d; }
.border-gold { border-left: 3px solid #c5a059 !important; }

.meet-section {
    background: var(--primary-orange); /* Deep dark background */
}
/* Section Title */
.values-section-title {
    background: var(--primary-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 2rem;
    text-align: center;
}

.values-sub-line {
    width: 60px;
    height: 3px;
    background: #eecb8c;
    margin: 0 auto 20px;
    border-radius: 2px;
}
/* Increased Heights and Sizes */
.custom-height {
    min-height: 350px; /* Forces all cards to be taller */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.icon-circle {
    width: 130px;  /* Increased from 100px */
    height: 130px; /* Increased from 100px */
    border: 1px solid var(--mc-gold-mid); /* Thicker maroon border */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: white;
    transition: transform 0.3s ease;
}

/* New Icon Color */
.icon-circle i {
    color: var(--primary-orange); /* Vibrant Gold */
}

/* Hover effect for extra "pop" */
.pillar-card:hover .icon-circle {
    transform: scale(1.1);
    background-color: #fdfdfd;
}

/* Animation Refinements */
.animate-left, .animate-right {
    opacity: 0;
    animation-duration: 5s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Snappy bounce effect */
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}

.animate-left { animation-name: fadeInLeft; }
.animate-right { animation-name: fadeInRight; }

/* Delay sequence for 6 pillars */
.delay-1 { animation-delay: 0.5s; }
.delay-2 { animation-delay: 1.5s; }
.delay-3 { animation-delay: 2.5s; }
.delay-4 { animation-delay: 3.5s; }
.delay-5 { animation-delay: 4.5s; }

/* Text color */
.text-purple { color: #4b0082; }
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

/* =========================================
   3. STRENGTHS SECTION (Glassmorphism)
   ========================================= */
.strengths-section {
    background-image: linear-gradient(rgba(45, 0, 82, 0.85), rgba(0, 0, 0, 0.9)), 
                      url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    padding: 100px 0;
    overflow: hidden;
}

.text-white-shadow {
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 35px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    color: white;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
}

.glass-title {
    color: var(--brand-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Strength Card Staggered Fade In from Left */
.animate-card {
    opacity: 0;
    transform: translateX(-100px);
    animation: slideInLeft 0.8s forwards ease-out;
}

@keyframes slideInLeft {
    to { opacity: 1; transform: translateX(0); }
}

/* =========================================
   4. SVG ANIMATION ENGINE
   ========================================= */
.svg-icon-container {
    width: 70px;
    height: 70px;
    margin: 0 auto;
}

.animated-svg {
    width: 100%;
    height: 100%;
    stroke: var(--brand-gold, #eecb8c); /* fallback gold color */
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Strength 1: Growing Bars */
.bar-1, .bar-2, .bar-3 {
    transform-origin: center bottom;
    animation: barGrow 1.5s infinite ease-in-out;
}
.bar-2 { animation-delay: 0.3s; }
.bar-3 { animation-delay: 0.6s; }

/* Strength 2: Rotating Path */
.rotating-path {
    transform-origin: 50% 50%;
    animation: slowRotate 8s infinite linear;
}

/* Strength 3: Floating Node */
.float-node {
    animation: float 3s infinite ease-in-out alternate;
}

/* Strength 4: Drawing Check */
.draw-infinite {
    stroke-dasharray: 25;
    stroke-dashoffset: 25;
    animation: drawLoop 2s infinite ease-in-out;
}

/* ====================
   KEYFRAMES
   ==================== */
@keyframes barGrow {
    0%, 100% { transform: scaleY(0.2); }
    50% { transform: scaleY(1); }
}

@keyframes slowRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

@keyframes drawLoop {
    0% { stroke-dashoffset: 25; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 25; }
}

/* =========================================
   5. STAGGERED DELAYS (Used by both sections)
   ========================================= */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1.0s; }

/* Wedding Services Section Styling */
.my-services {
    background-color: #fcfcfc; /* Subtle off-white background */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Sidebar Cards */
.my-services .card {
    border: 1px solid #eeeeee;
    border-radius: 4px; /* Matches the slightly sharp corners in the image */
    background-color: #ffffff;
}

.my-services h3, 
.my-services h4, 
.my-services h2 {
    color: #333333;
    letter-spacing: -0.5px;
}

/* Typography from Image */
.my-services p {
    line-height: 1.6;
    font-size: 0.95rem;
    color: #555555;
    margin-bottom: 1.2rem;
}

/* Icon colors */
.my-services .fa-solid {
    width: 20px;
    color: #222;
}

/* Image Grid Styling */
.my-services img {
    width: 100%;
    height: 200px; /* Fixed height for a uniform grid look */
    object-fit: cover; /* Ensures images don't stretch */
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.my-services img:hover {
    transform: scale(1.02); /* Subtle pop effect on hover */
}

/* Target the icons within the contact card */
.my-services .fa-solid, 
.my-services .fa-brands {
    color: var(--mc-gold-dark);           /* Dark gray/black like the image */
    font-size: 1.5rem;      /* Slightly larger than text */
    width: 25px;            /* Fixed width so text aligns perfectly */
    text-align: center;
    margin-right: 15px;     /* Gap between icon and text */
}
/* Button Styling to match image exactly */
.btn-success {
    background-color: var(--mc-gold-dark) !important; /* Bright Neon Green */
    border-color: var(--mc-gold-dark) !important;
    color: #000 !important; /* Black text for visibility on neon green */
    font-weight: 700;
    text-transform: none;
    padding: 12px;
}

.btn-danger {
    background-color:var(--primary-orange) !important; /* Deep Maroon/Burgundy */
    border-color: var(--primary-orange) !important;
    color: #ffffff !important;
    font-weight: 700;
    text-transform: none;
    padding: 12px;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .my-services .col-lg-4 {
        margin-bottom: 30px;
    }
    
    .my-services img {
        height: 150px; /* Shorter images on mobile */
    }
}

/* Contact Page Specifics */
.ls-2 { letter-spacing: 2px; }
.text-gold { color: #D4AF37; }

.contact-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    background: #fff;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.border-gold {
    border-top: 5px solid #D4AF37 !important;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: #f8f1ff; /* Very light brand purple */
    color: #3a1c5d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
}

.bg-gold-icon {
    background-color: #fff9e6;
    color: #D4AF37;
}

.contact-link {
    font-weight: 700;
    color: #3a1c5d;
    font-size: 1.1rem;
    position: relative;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #D4AF37;
}

/* Map Section Adjustment */
.map-placeholder {
    transition: filter 0.3s;
}
.map-placeholder:hover {
    filter: brightness(90%);
}

.greeting-animation-container {
        position: relative;
        overflow: hidden;
        background-color: #1a1a1a; /* Matching bg-dark */
    }

    .hand-scene {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hand-wrapper {
        font-size: 7rem;
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* LEFT HAND: The "Fist" / Inner Grip */
    .left-arm {
        color: var(--gold);
        left: -20%;
        transform: rotate(90deg); /* Points hand to the right */
        animation: 
            slideInLeft var(--anim-speed) forwards cubic-bezier(0.175, 0.885, 0.32, 1.1),
            handshake 0.6s var(--anim-speed) ease-in-out infinite;
    }

    /* RIGHT HAND: The "Open Palm" / Outer Grip */
    .right-arm {
        color: var(--white);
        right: -20%;
        /* Rotate to point left + Flip so thumb is on top */
        transform: rotate(-90deg) scaleY(-1); 
        animation: 
            slideInRight var(--anim-speed) forwards cubic-bezier(0.175, 0.885, 0.32, 1.1),
            handshakeRight 0.6s var(--anim-speed) ease-in-out infinite;
    }

    /* Sliding Animations */
    @keyframes slideInLeft {
        0% { left: -20%; opacity: 0; }
        100% { left: calc(50% - 95px); opacity: 1; }
    }

    @keyframes slideInRight {
        0% { right: -20%; opacity: 0; }
        100% { right: calc(50% - 95px); opacity: 1; }
    }

    /* Realistic Handshake Motion (Up and Down) */
    @keyframes handshake {
        0%, 100% { transform: rotate(90deg) translateY(0); }
        50% { transform: rotate(88deg) translateY(-20px); }
    }

    @keyframes handshakeRight {
        0%, 100% { transform: rotate(-90deg) scaleY(-1) translateY(0); }
        50% { transform: rotate(-88deg) scaleY(-1) translateY(-20px); }
    }

/* Gallery Layout */
.gallery-img-container {
    overflow: hidden;
    border-radius: 8px;
    height: 300px; /* Forces all images to the same height */
    background-color: #f0f0f0;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crops images perfectly to fill the 300px height */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

/* Zoom effect since we have no captions */
.gallery-img-container:hover .gallery-img {
    transform: scale(1.1);
}

/* Filter Button Styling */
.filter-btn {
    border: 1px solid #eee;
    background: transparent;
    color: #666;
    padding: 10px 25px;
    margin: 5px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background-color: #3a1c5d;
    color: #fff;
    border-color: #3a1c5d;
}

/* Mobile Tweak: 2 columns on small screens */
@media (max-width: 576px) {
    .gallery-img-container {
        height: 180px;
    }
}

/* Section Styling */
.event-enquiry {
    background: #f8f9fa;
    padding: 80px 0;
}

/* The Premium Card Container */
.premium-form-wrapper {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(197, 160, 89, 0.2); /* Using mc-gold-mid */
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    position: relative;
}

/* Form Section Headers */
.premium-section-title {
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.step-number {
    background: var(--mc-gold-mid);
    color: white;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
    margin-right: 15px;
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.3);
}

/* Input Group Logic */
.input-group-custom {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.input-group-custom label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

/* TARGETING DJANGO WIDGETS */
/* We target the tags directly to ensure they pick up styles regardless of classes */
.input-group-custom input, 
.input-group-custom select, 
.input-group-custom textarea {
    border: none !important;
    border-bottom: 2px solid #e0e0e0 !important;
    background: transparent !important;
    padding: 10px 0 !important;
    transition: all 0.3s ease;
    border-radius: 0 !important;
    outline: none !important;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.input-group-custom input:focus, 
.input-group-custom select:focus, 
.input-group-custom textarea:focus {
    border-bottom-color: var(--mc-gold-mid) !important;
    padding-left: 10px !important;
    background: rgba(197, 160, 89, 0.02) !important;
}

/* Submit Button */
.btn-premium-submit {
    background: var(--primary-orange);
    color: white;
    padding: 18px 45px;
    border: none;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.btn-premium-submit:hover {
    background: var(--mc-gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 107, 46, 0.3);
}
/* Container for the vertical options */
.premium-radio-group, 
.premium-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

/* Individual Item Layout */
.radio-item, 
.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Hide default Django UL/LI styling if it leaks in */
.premium-radio-group ul, 
.premium-checkbox-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Label Styling (Matches your image's grey, all-caps sub-labels) */
.radio-item label, 
.checkbox-item label {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    cursor: pointer;
    margin: 0; /* Remove default bootstrap margins */
}

/* Custom Radio/Checkbox Appearance */
.radio-item input[type="radio"], 
.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-orange); /* Deep Purple from your brand */
    cursor: pointer;
}

/* Ensure the Section Label is uppercase and small as per image */
.input-group-custom label:first-child {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}
/* Success Animation Styles */
    .success-animation { margin: 10px auto 30px; }

    .checkmark {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        display: block;
        stroke-width: 2;
        stroke: #4B0082; /* Your Signature Purple */
        stroke-miterlimit: 10;
        box-shadow: inset 0px 0px 0px #4B0082;
        animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
        position: relative;
        top: 5px;
        right: 5px;
        margin: 0 auto;
    }

    .checkmark__circle {
        stroke-dasharray: 166;
        stroke-dashoffset: 166;
        stroke-width: 2;
        stroke-miterlimit: 10;
        stroke: #4B0082;
        fill: none;
        animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
    }

    .checkmark__check {
        transform-origin: 50% 50%;
        stroke-dasharray: 48;
        stroke-dashoffset: 48;
        animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
    }

    @keyframes stroke {
        100% { stroke-dashoffset: 0; }
    }

    @keyframes scale {
        0%, 100% { transform: none; }
        50% { transform: scale3d(1.1, 1.1, 1); }
    }

    @keyframes fill {
        100% { box-shadow: inset 0px 0px 0px 30px #f3effb; }
    }

    /* Button Styling */
    .btn-gold {
        background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
        color: white;
        border: none;
        transition: all 0.3s ease;
        letter-spacing: 1px;
    }

    .btn-gold:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(184, 134, 11, 0.3);
        color: white;
    }
    .whatsapp-float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 40px;
        right: 40px;
        background-color: #4B0082; /* Deep Purple Background */
        color: #D4AF37; /* Gold Icon Color */
        border-radius: 50px;
        text-align: center;
        font-size: 30px;
        box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.3s ease-in-out;
        border: 2px solid #D4AF37; /* Gold Border */
    }

    .whatsapp-float:hover {
        transform: scale(1.1) translateY(-5px);
        color: #fff;
        background-color: #D4AF37; /* Flips to Gold on hover */
        border-color: #4B0082;
        box-shadow: 0px 15px 30px rgba(212, 175, 55, 0.4);
    }

    /* Subtle pulse effect to draw attention */
    .whatsapp-float::after {
        content: '';
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background-color: #D4AF37;
        position: absolute;
        z-index: -1;
        animation: whatsapp-ripple 2s infinite;
        opacity: 0.3;
    }

    @keyframes whatsapp-ripple {
        0% { transform: scale(1); opacity: 0.3; }
        100% { transform: scale(1.5); opacity: 0; }
    }

    /* Mobile adjustments */
    @media screen and (max-width: 768px) {
        .whatsapp-float {
            width: 50px;
            height: 50px;
            bottom: 20px;
            right: 20px;
            font-size: 25px;
        }
    }