
            :root {
                --primary-gold: #c68a24;
                --primary-dark: #1e3a56;
				 --bg-light: #fdfaf5;
                --white: #ffffff;
                --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                --fancy-timing: cubic-bezier(0.77, 0, 0.175, 1);
            }
            body {
                font-family: "Quicksand", sans-serif;
                overflow-x: hidden;
            }

            /* --- 1. Professional Loader --- */
            #loader-wrapper {
                position: fixed;
                inset: 0;
                background: #fff;
                display: flex;
                justify-content: center;
                align-items: center;
                z-index: 10000;
                transition: opacity 0.8s ease;
            }
            .loader-box {
                text-align: center;
            }
            .loader-logo {
                width: 100px;
                margin-bottom: 20px;
                animation: pulse 2s infinite ease-in-out;
            }
            .progress-bar-container {
                width: 150px;
                height: 3px;
                background: #eee;
                margin: 0 auto;
                position: relative;
                overflow: hidden;
                border-radius: 10px;
            }
            .progress-line {
                width: 100%;
                height: 100%;
                background: var(--primary-gold);
                position: absolute;
                left: -100%;
                animation: load 1.5s infinite;
            }
            @keyframes load { 0% { left: -100%; } 100% { left: 100%; } }
            @keyframes pulse { 0%, 100% { opacity: 0.6; transform: scale(0.95); } 50% { opacity: 1; transform: scale(1); } }

            /* --- Header --- */
            header {
                position: fixed;
                top: 0;
                width: 100%;
                padding: 20px 0;
                z-index: 1000;
                transition: var(--transition);
                background: linear-gradient(180deg, rgba(0,0,0,0.5), transparent);
            }
            header.scrolled {
                background: rgba(30, 58, 86, 0.88);
                padding: 10px 0;
                box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            }
            .header-container {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 0 1%;
            }
            .logo-wrap { display: flex; align-items: center; gap: 15px; }
            .logo img { width: 120px; transition: 0.3s; }
            
            .nav-links { display: flex; list-style: none; margin: 0;margin-left: -60px; }
            .nav-links li { margin: 0 12px; }
            .nav-links a { color: #fff; font-weight: 500; text-decoration: none; font-size: 1.1rem; transition: 0.3s; }
            .nav-links a:hover, .nav-links a.active { color: var(--primary-gold); }
			
			

            /* --- Button Themes Restored --- */
            @keyframes arrowMove {
                0%, 100% { transform: translateX(0); }
                50% { transform: translateX(8px); }
            }
            .btn-appointment {
                background: var(--primary-gold);
                color: white !important;
                padding: 12px 25px;
                border-radius: 50px;
                text-decoration: none;
                font-weight: 600;
                display: flex;
                align-items: center;
                gap: 10px;
                font-size: 0.9rem;
                border: none;
                transition: 0.3s;
            }
            .btn-appointment i {
                animation: arrowMove 1.5s infinite ease-in-out;
            }
            .btn-appointment:hover {
                background: #b07a1f;
                box-shadow: 0 4px 15px rgba(198, 138, 36, 0.4);
            }

            .btn-recovery { 
                background: transparent; 
                color: white !important; 
                padding: 10px 35px; 
                border-radius: 50px; 
                border: 2px solid var(--primary-gold); 
                text-decoration: none; 
                font-weight: 600; 
                display: inline-flex; 
                align-items: center; 
                gap: 10px; 
                position: relative; 
                z-index: 1; 
                overflow: hidden; 
                transition: 0.4s;
            }
            .btn-recovery::before { 
                content: ""; 
                position: absolute; 
                top: 0; 
                left: -100%; 
                width: 100%; 
                height: 100%; 
                background: var(--primary-gold); 
                transition: 0.4s; 
                z-index: -1; 
            }
            .btn-recovery:hover::before { left: 0; }

            /* --- Sidebar Icons --- */
            .sidebar-icons {
                position: fixed;
                right: 20px;
                top: 50%;
                transform: translateY(-50%);
                z-index: 999;
                display: flex;
                flex-direction: column;
                gap: 15px;
            }
            .side-btn {
                width: 50px;
                height: 50px;
                background: #fff;
                border-radius: 50%;
                display: flex;
                justify-content: center;
                align-items: center;
                box-shadow: 0 4px 15px rgba(0,0,0,0.15);
                text-decoration: none;
                transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            }
            .side-btn i { font-size: 1.4rem; }
            .side-btn.wa i { color: #25d366; }
            .side-btn.ph i { color: var(--primary-gold); }
            .side-btn:hover { transform: scale(1.1); background: var(--primary-gold); }
            .side-btn:hover i { color: #fff !important; }

            /* --- Slider --- */
            .slider-container { position: relative; width: 100%; height: 100vh; background: #000; overflow: hidden; }
            .slide {
                position: absolute; inset: 0; z-index: 1;
                display: flex; align-items: center;
                clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
                transition: clip-path 1.2s var(--fancy-timing);
            }
            .slide.active { z-index: 2; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
            .slide.incoming { z-index: 3; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
            
            .slide-bg {
                position: absolute; inset: 0; background-size: cover; background-position: center; z-index: -1;
                /* Fixed the "push backward" issue by removing the static transform transition */
                transform: scale(1); 
            }
            .slide.active .slide-bg, .slide.incoming .slide-bg { 
                animation: kenBurns 12s linear forwards; 
            }
            @keyframes kenBurns { 
                from { transform: scale(1); } 
                to { transform: scale(1.15); } 
            }
            .slide::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.45); }

            .content { position: relative; z-index: 20; padding: 0 8%; color: #fff; text-align:left;}
            .content h1 { font-family: "Playfair Display", serif; font-size: 3.5rem; font-weight: 700; margin: 20px 0; max-width: 800px; }
            
            .slider-arrows {
                position: absolute; bottom: 50px; right: 8%; display: flex; gap: 20px; z-index: 100;
            }
            .arrow {
                width: 60px; height: 60px; border: 1px solid rgba(255,255,255,0.3); border-radius: 50%;
                color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: 0.3s;
            }
            .arrow:hover { background: var(--primary-gold); border-color: var(--primary-gold); }

            /* --- Responsive Mobile Panel --- */
            .hamburger { display: none; cursor: pointer; color: white; font-size: 1.8rem; }
            .mobile-panel {
                position: fixed; top: 0; right: -100%; width: 300px; height: 100%;
                background: rgba(5,44,85, 0.9) ;			
				
				z-index: 3000; padding: 100px 0 40px 0;
                transition: 0.5s var(--fancy-timing);
                box-shadow: -10px 0 30px rgba(0,0,0,0.2);
            }
            .mobile-panel.active { right: 0; }
            .mobile-panel a {
                color: #fff; text-decoration: none; padding: 15px 40px;
                display: block; font-size: 1.1rem; font-weight: 600; border-left: 4px solid transparent;
            }
            .mobile-panel a.active { color: #000; background: var(--primary-gold); border-left-color: #fff; }
            
            .close-panel {
                position: absolute; top: 25px; right: 25px; font-size: 1.8rem; color: #fff; cursor: pointer;
            }

           /* --- Fancy Bouncing Scroll Top (Fixed to Right) --- */
#scrollTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-gold); /* Solid visibility */
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 9999; /* Stay above all content */
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    
    /* Visibility Logic */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s, background 0.3s;
    
    /* THE CONTINUOUS MOVEMENT */
    animation: fancyBounce 2s infinite ease-in-out;
}

/* Show button when scrolled */
#scrollTop.show {
    opacity: 1;
    visibility: visible;
}

/* Continuous Bottom-to-Top Animation */
@keyframes fancyBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px); /* Moves up 15px */
    }
}

/* Stop movement and change color on hover for better UX */
#scrollTop:hover {
    background: var(--primary-dark);
    animation-play-state: paused;
    transform: scale(1.1); /* Slightly enlarge on hover */
}

#scrollTop i {
    font-size: 1.5rem;
}

            /* Tablet/Mobile Adjustments */
            @media (max-width: 992px) {
                .desktop-nav, .nav-right .phone-link { display: none; }
                .hamburger { display: block; order: 1; }
                .logo-wrap { order: 2; gap: 10px; } 
                .nav-right { order: 3; }
                /* Hamburger left, Logo center-ish, Button Right */
                .header-container { justify-content: space-between; }
                .content h1 { font-size: 2.5rem; }
                header { padding: 15px 0; }
                .btn-appointment { padding: 10px 18px; font-size: 0.8rem; gap: 5px;}
            }

            section {  padding-top: 100px; text-align: center; background: #f9f9f9; }
			
			
			
			
			/* --- About Us Section Styles --- */
#about {
    padding: 80px 0;
    background-color: #fdfaf5; /* Cream background from image */
    text-align: left;
    height: auto; /* Overriding your section height: 100vh */
}

.about-img-wrapper {
    position: relative;
    padding-right: 40px;
}


/* --- 2. Button Arrow Animation --- */
.btn-recovery i {
    transition: transform 0.3s ease; /* Transition for the icon */
}

.btn-recovery:hover i {
    transform: translateX(8px); /* Moves arrow slightly right on hover */
}

/* --- 3. About Image Initial State (for animation) --- */
.about-img-main {
    width: 100%;
    border-radius: 120px 20px 120px 20px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    
    /* Animation start properties */
    opacity: 0;
    transform: translateX(-100px); 
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}

/* State when the image is in view */
.about-img-main.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.decorative-circle {
    position: absolute;
    top: -30px;
    right: 0;
    width: 110px;
    height: 110px;
    /*background: var(--primary-gold);*/
	background:linear-gradient(45deg, #fba511, #a36700);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.decorative-circle::after {
    content: "";
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
}

.about-content h6 {
    color: var(--primary-gold);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-content h2 {
    font-family: "Playfair Display", serif;
    color: var(--primary-dark);
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-content p {
    color: #666;
    line-height: 1.8;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #444;
	text-align: left;
}

.about-features i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-top: 4px;
}

.certified-card {
    background: #e9f2ee; /* Soft green from image */
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.certified-card i {
    background: var(--primary-gold);
    color: white;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.4rem;
}

.certified-card span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
}
			
			
			
			
			
	/* --- Services Section Styles --- */
#services {
    padding: 80px 0;
    background-color: #eef5ed;
    height: auto;
}

.section-subtitle {
    color: var(--primary-gold);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-family: "Playfair Display", serif;
    color: var(--primary-dark);
    font-size: 2.62rem;
    margin-bottom: 50px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    height: 100%;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-gold);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 25px;
    display: inline-block;
}

.service-card h4 {
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;text-align: left;
}

.know-more {
    color: var(--primary-gold);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.know-more i { transition: transform 0.3s ease; }
.know-more:hover i { transform: translateX(5px); }


.service-card a{color: var(--primary-gold) !important; text-decoration:none;}
.service-card a:hover{color: var(--primary-gold) !important; text-decoration:none;}

/* --- Why Choose Us Section --- */
#why-choose {
    padding: 50px 0;
    background-color: #fdfaf5;
    height: auto;
}

/* --- Shared Animation for Why Choose Image --- */
.why-choose-img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    
    /* Animation start properties (matches About Us logic) */
    opacity: 0;
    transform: translateX(-100px); 
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}

/* State when triggered via Scroll */
.why-choose-img.animate-in {
    opacity: 1;
    transform: translateX(0);
}



.feature-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    height: calc(100% - 30px);
    transition: 0.3s;
}

.feature-box:hover { background: #fffdf9; transform: scale(1.02); }

.feature-box i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: block;
}

.feature-box h5 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-box p {
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* --- Stats Bar --- */
.stats-bar {
    padding: 0px 0;
    background: #fdfaf5;
	padding-bottom: 50px;

}

.stat-item { text-align: center; }
.stat-icon {
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    display: block;
}



/* --- Stats counter styling --- */
.stat-number {
    display: inline-block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-dark);
}
.stat-suffix {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
}



.stat-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}		
		


.stats_grid {display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    border-top: 1px solid #ddd;
    padding-top: 50px;}

		
		

/* --- What We Do Section --- */
#what-we-do { padding: 80px 0; background: #fff; height: auto; text-align: left; }
.wwd-img-grid { display: flex; gap: 15px; }
.wwd-img-left { width: 55%; }
.wwd-img-right { width: 45%; display: flex; flex-direction: column; gap: 15px; }

.wwd-img { 
    width: 100%; border-radius: 20px; object-fit: cover; 
    opacity: 0; transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
}
.wwd-img.main { height: 450px; transform: translateX(-80px); } /* From Left */
.wwd-img.top { height: 217px; transform: translateY(-80px); } /* From Top */
.wwd-img.bottom { height: 217px; transform: translateY(80px); } /* From Bottom */

.wwd-img.animate-in { opacity: 1; transform: translate(0) !important; }

.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 25px 0; }
.check-item { display: flex; align-items: center; gap: 8px; font-weight: 600; color: #444; }
.check-item i { color: var(--primary-gold); font-size: 0.9rem; }

/* --- Appointment Section --- */
#appointment { 
    padding: 80px 0; height: auto;
    background: linear-gradient(rgba(30, 58, 86, 0.85), rgba(30, 58, 86, 0.85)), url('../img/Why_c.jpg');
    background-size: cover; background-position: center; background-attachment: fixed;
    color: #fff; text-align: left;
}
.appointment-info h6 { color: var(--primary-gold); font-weight: 700; letter-spacing: 2px; }
.appointment-info h2 { font-family: "Playfair Display", serif; font-size: 3rem; margin: 20px 0; }
.contact-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; }
.meta-item { display: flex; gap: 15px; align-items: flex-start; }
.meta-item i { color: var(--primary-gold); font-size: 1.5rem; margin-top: 5px; }
.meta-item h5 { font-size: 1.1rem; font-weight: 700; margin-bottom: 5px; }
.meta-item p { font-size: 0.9rem; opacity: 0.8; }

.booking-card { 
    background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); 
    padding: 40px; border-radius: 30px; border: 1px solid rgba(255, 255, 255, 0.2); 
}
.booking-card .form-control { 
    background: transparent; border: 1px solid rgba(255, 255, 255, 0.3); 
    color: #fff; border-radius: 50px; padding: 12px 25px; height: auto; 
}
.booking-card .form-control::placeholder { color: rgba(255, 255, 255, 0.6); }
.booking-card select.form-control { color: rgba(255, 255, 255, 0.6); }

/* --- FAQ Section --- */
#faq { padding: 80px 0; background: #fdfaf5; height: auto; text-align: left; }
.faq-contact-card { 
    background: #fff; padding: 30px; border-radius: 20px; margin-top: 30px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.faq-accordion .card { border: none; background: #fff; border-radius: 15px !important; margin-bottom: 15px; overflow: hidden; }
.faq-accordion .card-header { background: #fff; border: none; padding: 20px 25px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-accordion .card-header.active { background: #eef5ed; }
.faq-accordion h5 { font-size: 1.1rem; font-weight: 600; color: #1e3a56; margin: 0; }
.faq-accordion i { color: var(--primary-dark); transition: 0.3s; }
.faq-accordion .active i { transform: rotate(180deg); }
.faq-body { padding: 0 25px 25px 25px; color: #666; font-size: 0.95rem; }


.faq-contact-card a {color: #000 !important; text-decoration: none;}
.faq-contact-card a:hover {text-decoration:none; color: var(--primary-gold) !important;}


/* --- Testimonials (Smooth Auto-Scroll) --- */
#testimonials { padding: 80px 0; background-color: #eef5ed; overflow: hidden; }
.testimonial-track { 
    display: flex; 
    gap: 30px; 
    width: max-content; 
    animation: marqueeScroll 30s linear infinite; 
}
.testimonial-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.testi-card { 
    width: 450px; background: #fff; padding: 40px; border-radius: 20px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); text-align: left;
}
.testi-card p { font-style: italic; color: #555; margin-bottom: 25px; }

/* --- Latest Videos --- */
#video { padding: 80px 0; background: #fff; text-align: center; height: auto; }
.video-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); margin-bottom: 30px; }
.video-thumb { position: relative; height: 200px; overflow: hidden; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.play-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #fff; font-size: 3rem; opacity: 0.9; cursor: pointer; }

/* --- Contact Us (Entry Animations) --- */
#contact { padding: 80px 0; background: var(--bg-light); text-align: left; height: auto;}
.contact-img-main { 
    width: 100%; border-radius: 30px; opacity: 0; transform: translateX(-100px); 
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
}
.contact-info-card { 
    background: #fff; padding: 25px; border-radius: 20px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); height: 100%; opacity: 0;
    transition: all 1s ease-out;font-size: .92rem;
}
.contact-info-card i { color: var(--primary-gold); font-size: 1.5rem; margin-bottom: 15px; }

.contact-info-card a{color:#000; text-decoration:none;}
.contact-info-card a:hover{color:#000; text-decoration:none;}



.contact-info-card h5{color: var(--primary-dark);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;}

/* Directional entry classes */
.from-top { transform: translateY(-80px); }
.from-bottom { transform: translateY(80px); }
.from-left { transform: translateX(-80px); }
.from-right { transform: translateX(80px); }
.revealed { opacity: 1 !important; transform: translate(0, 0) !important; }

/* Form & Map */
.contact-form-section { padding: 100px 0; background: #fdf2e9; border-radius: 40px; margin-bottom: 50px; }
.contact-form .form-control { border-radius: 50px; padding: 25px; border: 1px solid #eee; margin-bottom: 20px; }
.map-container { border-radius: 20px; overflow: hidden; height: 100%; min-height: 400px; }


.form-control:focus {
    color: #fff;
    /*background-color: #fff;*/
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(198, 138, 36, .25);
}


/* Fix text visibility in the "Have Any Questions?" Contact Form */
.contact-form .form-control {
    color: #1e3a56; /* Dark navy for contrast */
    background-color: #ffffff; /* Solid white background */
}

/* Ensure visibility when clicking/typing */
.contact-form .form-control:focus {
    color: #1e3a56;
    background-color: #ffffff;
    border-color: var(--primary-gold);
}

/* Ensure placeholder text is legible but distinct */
.contact-form .form-control::placeholder {
    color: #777;
}



/* Fix visibility of text inside the Select dropdown */
.form-control option {
    color: #1e3a56; /* Dark navy color */
    background-color: #ffffff; /* Ensures white background for the list */
}

/* Specifically for the Appointment section select box */
.booking-card select.form-control {
    color: #ffffff; /* Text color of the box itself */
}

/* Ensures the text turns dark when the dropdown is opened */
.booking-card select.form-control option {
    color: #333333; 
    background-color: #ffffff;
}



/* --- Footer Section Styles --- */
footer {
    background-color: var(--primary-dark);
    color: #fff;
    padding: 80px 0 10px 0;
    text-align: left;
}

.footer-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 50px;
}

.footer-description {
    max-width: 400px;
    font-size: 1.1rem;
    opacity: 0.8;
    margin: 0 20px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: var(--primary-gold);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.3s;
    text-decoration: none;
}

.footer-socials a:hover {
    background: #fff;
    color: var(--primary-gold);
    transform: translateY(-5px);
}

.footer-col h5 {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    display: flex;
    align-items: flex-start; /* Aligns icon to the top of the first line */
    gap: 12px;
    margin-bottom: 15px;
}

.footer-links li a {
    display: inline-block;
    padding-left: 0 !important; /* Removes the hover padding to maintain alignment */
    line-height: 1.5;
    margin: 0;
}

.footer-links li i {
    flex-shrink: 0; /* Prevents the icon from shrinking */
    margin-top: 5px; /* Perfectly centers icon with the first line of text */
    width: 18px; /* Consistent spacing for all icons */
    text-align: center;
}

.footer-links a {
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}



.footer-links a:hover {
    opacity: 1;
    color: var(--primary-gold);
    padding-left: 5px;
}

/* Newsletter Input Style */
.footer-newsletter h2 {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    margin-bottom: 25px;
}

.newsletter-wrap {
    position: relative;
    max-width: 350px;
}

.newsletter-wrap input {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 15px 60px 15px 25px;
    color: #fff;
    outline: none;
}

.newsletter-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 45px;
    height: 45px;
    background: var(--primary-gold);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-btn:hover {
    background: #fff;
    color: var(--primary-gold);
}

.footer-bottom {
    margin-top: 10px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    opacity: 0.6;
}


.footer-bottom a {color:#fff;}
.footer-bottom a:hover {color:var(--primary-gold);}

/* Responsive adjustments */
@media (max-width: 991px) {
    .footer-top-bar {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .footer-description { margin: 20px 0; }
    .footer-col { margin-bottom: 40px; }
}



.footer-links i {color: var(--primary-gold);
    font-size: 0.9rem;}



/* --- Video Modal Customization --- */
#videoModal .close {
    text-shadow: none;
    font-size: 2rem;
    font-weight: 300;
}

.video-card:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.2);
    color: var(--white);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    transition: 0.3s;
}

.video-card:hover .video-thumb::after {
    background: rgba(0,0,0,0.4);
}





/* Initial state: Hidden and shifted down */
.reveal-section {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}

/* Visible state: Faded in and moved to original position */
.reveal-section.active {
    opacity: 1;
    transform: translateY(0);
}


.meta-item a {text-decoration: none !important; color:#fff;}
.meta-item a:hover {text-decoration:none !important; color:#fff;}


a {text-decoration: none !important;}
a:hover {text-decoration:none !important;}




/* Tablet/Mobile Adjustments Fixes */
@media (max-width: 992px) {
    .header-container {
        padding: 0 15px;
    }
    .logo img {
        width: 80px; /* Smaller logo for mobile */
    }
    .hamburger {
        margin-right: 10px;
    }
    /* Fix banner text sizing for small devices */
    .content h1 {
        font-size: 1.8rem !important;
        line-height: 1.2;
        max-width: 100%;
    }
    .content {
        padding: 0 20px;
        text-align: center; /* Better look for mobile */
    }
    .btn-appointment {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
}

/* Fix the Location space in Appointment section */
.contact-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

/* Make Location span full width to fill empty space */
.meta-item.full-width {
    grid-column: span 2;
}

@media (max-width: 576px) {
    .contact-meta {
        grid-template-columns: 1fr; /* Stack on very small phones */
    }
    .meta-item.full-width {
        grid-column: span 1;
    }
}



/* Fix for Contact Us Responsive Layout */
#contact {
    overflow-x: hidden; /* Prevents animations from creating horizontal scrollbars */
}

@media (max-width: 991px) {
    /* Adjust the form section container padding for mobile */
    .contact-form-section {
        padding: 40px 20px !important; 
        margin-bottom: 30px;
        border-radius: 20px; /* Softer corners for mobile */
    }

    /* Fix image sizing and spacing */
    .contact-img-main {
        margin-top: 20px;
        transform: translateX(0); /* Disable large shift on mobile if still causing issues */
    }

    /* Adjust the map container to stack properly */
    .map-container {
        min-height: 300px;
        margin-top: 30px;
    }
    
    /* Ensure info cards don't have excessive padding */
    .contact-info-card {
        padding: 20px;
        margin-bottom: 15px;
    }
}

/* Ensure animation start positions don't break the container width */
.contact-info-card.from-right {
    transform: translateX(40px); /* Reduced from 80px for safer mobile entry */
}
.contact-info-card.from-left {
    transform: translateX(-40px);
}


 
 
 

	

/* New Certified Badge */
.certified-badge-new {
    background: #e9f0f0;
    padding: 10px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.badge-icon {
    color: var(--primary-gold);
    font-size: 1.5rem;
}
.badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.2;
}
.badge-text span { color: var(--primary-dark); }

/* Responsive Adjustments */
@media (max-width: 991px) {
    .about-main-title { font-size: 2.2rem; }
    .about-img-main { border-radius: 100px 20px 100px 20px; }
    .about-content { padding-left: 15px !important; margin-top: 40px; }
}
	

	
	/* Fix for FAQ Contact Card on Mobile */
.faq-contact-card {
    padding: 25px !important;
    height: auto;
}

.faq-contact-card a {
    font-size: 0.9rem;
    white-space: nowrap; /* Prevents phone numbers from breaking into two lines */
    text-decoration: none !important;
    transition: 0.3s;
}

@media (max-width: 576px) {
    .faq-contact-card a {
        font-size: 0.85rem; /* Slightly smaller font for very narrow phones */
    }
    .faq-contact-card .row > div {
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }
    .faq-contact-card .row > div:last-child {
        border-bottom: none;
        padding-top: 10px;
    }
}
	

	
	
	

	
	/* --- Professional Stat Box Base --- */
.stat-box-prof {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 0 10px 25px;
    border-left: 3px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.stat-icon-wrap {
    flex-shrink: 0; /* Prevents icon from squishing on narrow screens */
    width: 60px;
    height: 60px;
    background: rgba(198, 138, 36, 0.1);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-gold);
    font-size: 1.6rem;
}

.stat-number-main {
    font-family: "Playfair Display", serif;
    color: #ffffff; /* Use #1e3a56 if placing on a light background */
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
    margin: 0;
}

.stat-suffix-gold {
    color: var(--primary-gold);
    font-size: 1.8rem;
    font-weight: 700;
    margin-left: 4px;
}

.stat-label-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 4px 0 0 0;
}

/* --- Responsive Media Queries --- */

/* For Tablets (Tablets and small laptops) */
@media (max-width: 991px) {
    .stat-number-main {
        font-size: 2.2rem;
    }
    .stat-icon-wrap {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* For Mobile Phones */
@media (max-width: 576px) {
    .stat-box-prof {
        padding-left: 15px;
        gap: 15px;
    }
    .stat-number-main {
        font-size: 1.8rem; /* Scaled down for mobile */
    }
    .stat-suffix-gold {
        font-size: 1.4rem;
    }
    .stat-label-text {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }
    .stat-icon-wrap {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    /* Optional: Adds a bit of breathing room when stacked */
    .mb-4 {
        margin-bottom: 2rem !important;
    }
}
	


	/* Base style for the new button to match the others */
.btn-submit-form {
    background: var(--primary-gold);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    border: 2px solid var(--primary-gold);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    outline: none;
}

/* Make the icon move forward on hover */
.btn-submit-form i {
    margin-left: 8px;
    transition: transform 0.3s ease; /* This controls the speed of the movement */
    display: inline-block; /* Required for transform to work */
}

.btn-submit-form:hover i {
    transform: translateX(8px);  /* This moves it forward by 8 pixels */
}

/* Background hover effect */
.btn-submit-form:hover {
    background: var(--primary-gold); /* Changes to outline on hover */
   color: #fff;
}


/* Animation Initial States */
.map-animate-box {
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.map-animate-box.from-left {
    transform: translateX(-100px);
}

.map-animate-box.from-right {
    transform: translateX(100px);
}

/* When revealed by Scroll (JS) */
.map-animate-box.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Inner card styling */
.map-inner-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
}






	
	.nav-separator {
   color:#ffc107!important; padding-right:10px;
}
	@media (max-width: 992px) {
			.nav-separator {
		   display:none;
		}
		
		
/* 2. Contain the rows so children don't push outside */
#services, #appointment {
    overflow: hidden;
}
		
		
	}
	
	
	/* Smooth Show More animation */
.extra-service {
    
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(30px);
	
}

/* When visible */
.extra-service.show {
    opacity: 1;
    transform: translateY(0);
	padding-top: 10px;
    margin-top: -10px;
	box-shadow: 0px 11px 28px #eee;

	
}

/* Optional button hover polish */
#toggleServicesBtn i {
    transition: transform 0.3s ease;
}
#toggleServicesBtn.active i {
    transform: rotate(180deg);
}



/* 1. Remove the background color that appears during Autofill */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px transparent inset !important;
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: #fff !important; /* Set this to your preferred text color */
}

/* 2. Ensure Email and Phone fields match the styling of your other fields */
#appointmentForm .form-control {
    background-color: rgba(255, 255, 255, 0.1) !important; /* Adjust transparency to match your design */
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

/* Fix placeholder color for better visibility */
#appointmentForm .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}




/* --- Scroll Animation Styles --- */
.scroll-reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}

/* Directional starting points */
.reveal-top { transform: translateY(-60px); }
.reveal-bottom { transform: translateY(60px); }
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }

/* The class that triggers the animation */
.reveal-visible {
    opacity: 1;
    transform: translate(0, 0) !important;
}

/* Staggering delays so they don't all pop in at once */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
	
	
	
	
	



/* 3. Optimized Scroll Animation */
.scroll-reveal {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: transform, opacity;
}

/* 4. Use smaller offsets for Mobile (important!) */
.reveal-top { transform: translateY(-30px); }
.reveal-bottom { transform: translateY(30px); }
.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }

@media (min-width: 992px) {
    /* Larger offsets only for Desktop */
    .reveal-top { transform: translateY(-60px); }
    .reveal-bottom { transform: translateY(60px); }
    .reveal-left { transform: translateX(-60px); }
    .reveal-right { transform: translateX(60px); }
}

/* 5. The Active Class */
.reveal-visible {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}



/* Fix for Header Breaking */

#mainHeader .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%; 
    width: 100%;
}


.phone-link, .btn-appointment, .nav-item {
    white-space: nowrap !important;
}


@media (max-width: 1300px) {
    .nav-links {
        gap: 15px; 
    }
    .nav-item {
        font-size: 14px;
    }
    .phone-link {
        font-size: 13px;
    }
    .btn-appointment {
        padding: 10px 15px;
        font-size: 13px;
    }
}


.btn-appointment {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: fit-content;
}

/* Logo Spacing */
.logo-wrap {
    margin-right: 0px;
}	
	
/* --- Vision Section Redesign Styles --- */
.vision-intro-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.vision-mission-statement {
    font-style: italic;
    border-left: 3px solid var(--primary-gold);
    padding-left: 20px;
    color: #666;
    font-size: 0.95rem;
    margin-top: 25px;
}

.condition-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.condition-tags span {
    background: #f0f4f8;
    color: var(--primary-dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.condition-tags span:hover {
    background: var(--primary-gold);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(198, 138, 36, 0.2);
}

@media (max-width: 991px) {
    .vision-intro-text p {
        font-size: 1rem;
    }
    .condition-tags {
        justify-content: center; /* Center tags on mobile */
    }
}


/* --- Vision Alignment & Text Fixes --- */

/* Reduces the top gap of the section */
#what-we-do {
    padding: 40px 0 80px 0 !important; /* Reduced top padding from 80px to 40px */
}

/* Ensures the images start exactly at the top of the container */
#what-we-do .row.align-items-start {
    align-items: flex-start !important;
}

.vision-body p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.vision-highlight {
    background: #fdfaf5;
    padding: 20px;
    border-left: 4px solid var(--primary-gold);
    border-radius: 0 15px 15px 0;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.5;
}

@media (max-width: 991px) {
    #what-we-do {
        padding: 40px 0 !important;
    }
    .vision-highlight {
        font-size: 0.95rem;
    }
}







/* --- What We Do Refined Design --- */
#what-we-do { text-align: left; padding: 60px 0; background: #fff; }

.expertise-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.condition-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.condition-tags span {
    background: #f1f6f9;
    color: #5a7d85;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.btn-book-vision {
    background: #c68a24;
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

.clinical-excellence { line-height: 1.2; color: #555; font-size: 0.9rem; }
.clinical-excellence strong { color: var(--primary-dark); font-size: 1.1rem; }

.intro-p { color: #777; line-height: 1.7; font-size: 0.95rem; }

/* Toggle Content Styling */
.vision-more-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease-out;
}
.vision-more-collapse.active {
    max-height: 600px; /* Adjust as needed */
}

.vision-quote-block {
    margin-top: 20px;
    padding-left: 20px;
    border-left: 3px solid #c68a24;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
    font-style: italic;
}

.btn-vision-toggle {
    background: #c68a24;
    color: #fff;
    border: none;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-vision-toggle i { transition: transform 0.3s; }
.btn-vision-toggle.active i { transform: rotate(180deg); }

@media (max-width: 991px) {
    .section-title { font-size: 2.2rem !important; }
}
	
	
	
	
