body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #ffffff; /* Pure White Background */
    color: #1e293b; /* Dark text for readability on white */
    overflow-x: hidden;
    width: 100%;
}

/* Hide scrollbar for nav but allow scrolling */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Welcome Screen Styles */
#welcome-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.8s ease-out, visibility 0.8s;
}

#welcome-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1; /* Original color fix */
    z-index: 1;
}

#flying-obj {
    position: absolute;
    width: 180px; /* Increased size */
    z-index: 5;
    bottom: -200px;
    left: -200px;
    pointer-events: none;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.2));
}

@media (min-width: 768px) {
    #flying-obj { width: 350px; } /* Large flight size */
}

@keyframes flyToCenterAndOut {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    45% { transform: translate(calc(50vw + 100px), calc(-50vh - 100px)) rotate(15deg) scale(1.2); }
    100% { transform: translate(calc(100vw + 400px), calc(-100vh - 400px)) rotate(30deg) scale(1); }
}

.animate-fly {
    animation: flyToCenterAndOut 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Gold/Red subtle glow for atmosphere - adapted for white background */
.hero-bg-circle {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(255, 0, 0, 0.03) 50%, rgba(255,255,255,0) 80%);
    border-radius: 50%;
    top: 50%;
    right: -180px; 
    transform: translateY(-50%);
    z-index: 0;
    transition: all 0.5s ease;
}

/* Full Circular Rotational Container - Shifted for Mobile Visibility */
.rotation-wrapper {
    position: absolute;
    width: 500px; 
    height: 500px;
    top: 50%;
    right: -400px; 
    transform: translateY(-50%) rotate(0deg);
    z-index: 10;
    transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1), right 0.5s ease;
    display: block; 
}

@media (min-width: 768px) {
    .hero-bg-circle { width: 1100px; height: 1100px; right: -600px; }
    .rotation-wrapper { 
        width: 1400px; 
        height: 1400px; 
        right: -1000px; 
    }
}

/* Dashed line track - Soft Gold */
.curved-line {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    pointer-events: none;
    box-sizing: border-box;
    filter: none !important;
}

.thumb-container {
    position: absolute;
    width: 65px; 
    height: 65px;
    cursor: pointer;
    transition: all 0.4s ease;
    transform-origin: center;
    z-index: 15;
    filter: none !important;
}

@media (min-width: 768px) {
    .thumb-container { width: 240px; height: 240px; } 
}

.thumb-container img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #d4af37; 
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
    background: #f8fafc; /* Very light slate background for image placeholders */
    filter: none !important; 
}

@media (min-width: 768px) {
    .thumb-container img { border-width: 6px; }
}

/* 12 Items Spread perfectly for a circular wheel */
.thumb-0  { top: 50.0%; left: 0.0%;   transform: translate(-50%, -50%); }
.thumb-1  { top: 25.0%; left: 6.7%;   transform: translate(-50%, -50%); }
.thumb-2  { top: 6.7%;  left: 25.0%;  transform: translate(-50%, -50%); }
.thumb-3  { top: 0.0%;  left: 50.0%;  transform: translate(-50%, -50%); }
.thumb-4  { top: 6.7%;  left: 75.0%;  transform: translate(-50%, -50%); }
.thumb-5  { top: 25.0%; left: 93.3%;  transform: translate(-50%, -50%); }
.thumb-6  { top: 50.0%; left: 100.0%; transform: translate(-50%, -50%); }
.thumb-7  { top: 75.0%; left: 93.3%;  transform: translate(-50%, -50%); }
.thumb-8  { top: 93.3%; left: 75.0%;  transform: translate(-50%, -50%); }
.thumb-9  { top: 100.0%;left: 50.0%;  transform: translate(-50%, -50%); }
.thumb-10 { top: 93.3%; left: 25.0%;  transform: translate(-50%, -50%); }
.thumb-11 { top: 75.0%; left: 6.7%;   transform: translate(-50%, -50%); }

/* Main Round Image Container */
.plate-container {
    position: relative;
    width: 170px; 
    height: 170px; 
    z-index: 20;
    filter: none !important;
}

@media (min-width: 768px) {
    .plate-container { width: 500px; height: 500px; }
}

.main-plate-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ff0000; /* Brand Red Border */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    background: #ffffff;
    filter: none !important;
}

@media (min-width: 768px) {
    .main-plate-img { border-width: 15px; border-color: #d4af37; box-shadow: 0 40px 80px rgba(212, 175, 55, 0.15); }
}

/* Core Transitions */
.slide-out-right { animation: slideOutRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
.slide-in-right { animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards; }

@keyframes slideOutRight {
    0% { transform: translateX(120%) rotate(45deg) scale(0.7); opacity: 0; }
    100% { transform: translateX(120%) rotate(45deg) scale(0.7); opacity: 0; }
}

@keyframes slideInRight {
    0% { transform: translateX(120%) rotate(45deg) scale(0.7); opacity: 0; }
    100% { transform: translateX(0) rotate(0deg) scale(1); opacity: 1; }
}

/* Updated animations for cleaner mobile feel */
@keyframes slideOutToRight {
    0% { transform: translateX(0) scale(1); opacity: 1; }
    100% { transform: translateX(50%) scale(0.8); opacity: 0; }
}

.floating { animation: floating 4s ease-in-out infinite; }
@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

.text-fade { animation: textFade 0.6s ease-out forwards; }
@keyframes textFade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Logo Colors Styling */
.text-gold { color: #b8860b; } /* Darker gold for better contrast on white */
.text-red-brand { color: #e11d48; }
.bg-red-brand { background-color: #ff0000; }
.border-gold { border-color: #d4af37; }

/* Parallax specific smoothing */
.service-logo-parallax {
    will-change: transform;
    transition: transform 0.1s ease-out;
    pointer-events: none;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 3px solid #ffffff;
}

@media (min-width: 768px) {
    .service-logo-parallax { border-radius: 2rem; border-width: 4px; box-shadow: 0 30px 60px rgba(0,0,0,0.15); }
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Legal Content Styling */
.legal-condition-card {
    border-left: 4px solid #d4af37;
    padding-left: 24px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}
.legal-condition-card:hover {
    border-left-color: #ff0000;
    transform: translateX(10px);
}

/* Close Button for Legal Pages */
.close-legal-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    background: white;
    border: 2px solid #f1f5f9;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    z-index: 60;
}
.close-legal-btn:hover {
    border-color: #ff0000;
    color: #ff0000;
    transform: rotate(90deg) scale(1.1);
}
@media (min-width: 768px) {
    .close-legal-btn {
        top: 4rem;
        right: 4rem;
        width: 4.5rem;
        height: 4.5rem;
        border-radius: 1.5rem;
    }
}

/* New Strengths Card Styling */
.feature-card {
    background: #f8fafc;
    border-radius: 2.5rem;
    padding: 3rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.03);
}
.feature-card:hover {
    background: #ffffff;
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

/* Custom Sticky Scroll Styles for About Page */
.about-img {
    will-change: opacity;
}

/* Mobile Menu Transitions */
#mobile-menu-overlay {
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
#mobile-menu-overlay.active {
    transform: translateY(0);
}

/* Overlap Cards Style - Fixed Golden Border */
.overlap-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #d4af37; /* Fixed Golden Border */
}
.overlap-card:hover {
    transform: translateY(-5px);
    border-color: #ff0000; /* Subtle hover transition to brand red */
}

/* Pre-footer Info Strip Style */
.contact-strip {
    background: white;
    border-radius: 2rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid #f1f5f9;
}
@media (min-width: 768px) {
    .contact-strip {
        flex-direction: row;
    }
}

/* Side Navigation Arrows for Testimonials */
.testi-nav-side {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3.5rem;
    height: 3.5rem;
    background: white;
    border: 2px solid #f1f5f9;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    z-index: 40;
}
.testi-nav-side:hover {
    border-color: #b8860b;
    color: #b8860b;
    background: #fff;
    box-shadow: 0 8px 24px rgba(184,134,11,0.15);
}
@media (max-width: 767px) {
    .testi-nav-side {
        width: 2.8rem;
        height: 2.8rem;
        border-radius: 0.8rem;
    }
}

/* Hero Banner Slider Styles */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 10;
}
.hero-slide.active {
    opacity: 1;
    z-index: 20;
}
.hero-dot.active {
    background-color: #d4af37;
    width: 2rem;
}
