  :root {
            --brand-cyan: #40C4FF;
            --brand-orange: #FF8A00;
            --brand-dark: #1a1d20;
        }

        body { font-family: 'Montserrat', sans-serif; overflow-x: hidden; }

        /* Custom Colors */
        .text-cyan { color: var(--brand-cyan) !important; }
        .text-orange { color: var(--brand-orange) !important; }
        .bg-cyan { background-color: var(--brand-cyan) !important; }
        .bg-orange { background-color: var(--brand-orange) !important; }
        .btn-orange { background-color: var(--brand-orange); color: white; border: none; font-weight: bold; }
        .btn-orange:hover { background-color: #e67c00; color: white; }
        .btn-outline-cyan { border: 2px solid var(--brand-cyan); color: var(--brand-cyan); font-weight: bold; }
        .btn-outline-cyan:hover { background-color: var(--brand-cyan); color: white; }

        /* Navbar Customization */
        .navbar-brand span:first-child { color: var(--brand-cyan); font-weight: 800; }
        .navbar-brand span:last-child { color: var(--brand-orange); font-weight: 800; }

        /* Hero Section */
 .text-justify {
  text-align: justify !important;
}
header{
    margin-top: 60px !important;
}
section{
    overflow: hidden;
}
.hero-v2 {
    /* Updated to a reliable high-quality detailing image */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), 
                url('../images/hero-banner.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-glass-card {
    background: rgba(0, 0, 0, 0.4); /* Darker glass for better text contrast */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-brand-orange { color: #FF8A00 !important; }
.bg-brand-orange { background-color: #FF8A00 !important; }
.text-brand-cyan { color: #40C4FF !important; }
.bg-brand-cyan { background-color: #40C4FF !important; }

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-v2 { background-attachment: scroll; } /* Better performance on mobile */
    .hero-glass-card { padding: 2rem 1.5rem; text-align: center; }
}
        /* Pricing Cards */
        .card-service {
            border: none;
            border-radius: 15px;
            transition: transform 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .card-service:hover { transform: translateY(-10px); }
        .card-featured { border: 3px solid var(--brand-orange); }
        
     

        a{
            text-decoration: none;
        }
    /* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('https://images.unsplash.com/photo-1607860108855-64acf2078ed9?q=80&w=2071&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect for a premium feel */
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: white;
}
        /* Service Cards */
        .service-card {
            border: none;
            transition: all 0.3s ease;
            height: 100%;
            border-bottom: 4px solid var(--brand-cyan);
            border-radius: 12px;
        }
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            border-bottom: 4px solid var(--brand-orange);
        }
        .icon-box {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--brand-cyan);
        }

        .btn-booking {
            background-color: var(--brand-orange);
            color: white;
            border: none;
            padding: 12px 30px;
            font-weight: bold;
            border-radius: 50px;
        }
        .btn-booking:hover {
            background-color: #e67c00;
            color: white;
        }

        /* About Hero specific height and background */
.about-hero {
    /* Use a slightly different dark overlay or a different background image */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), 
                url('../images/about-hero.png'); 
    background-size: cover;
 
    min-height: 65vh; /* Shorter than the index hero */
 
    display: flex;
    align-items: center;
}
.contact-hero {
    /* Use a slightly different dark overlay or a different background image */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), 
                url('../images/contact-header.png'); 
    background-size: cover;
 
    min-height: 65vh; /* Shorter than the index hero */
 
    display: flex;
    align-items: center;
}
@media (min-width:768px){
.about-hero {
    /* Use a slightly different dark overlay or a different background image */
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8)), 
                url('../images/about-hero.png'); 
    background-size: cover;
}
.contact-hero{
        background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8)), 
                url('../images/contact-header.png'); 
    background-size: cover;
}
}


.tracking-widest {
    letter-spacing: 0.2rem;
}

/* Glass effect for the box */
.hero-content-box {
    background: rgba(255, 255, 255, 0.05); 
     backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 2rem;
    border-radius: 2rem;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}
.border-orange{
    border: 1px solid var(--brand-orange) !important;
}
.border-cyan{
    border: 1px solid var(--brand-cyan) !important;

}
.b-left-orange{
    border-left: 5px solid var(--brand-orange);
}
.b-left-cyan{
    border-left: 5px solid var(--brand-cyan);
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #1a1a1a; /* Dark theme to match your branding */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-content {
    text-align: center;
}

.loader-gif {
    width: 150px; /* Adjust size as needed */
    height: auto;
}

.loader-text {
    color: #ff8c00; /* Matching your orange brand color */
    letter-spacing: 2px;
}

/* Class to hide the preloader */
.loader-hide {
    opacity: 0;
    visibility: hidden;
}