 :root {
            --primary-gold: #D4A574;
            --dark-bg: #1a1a1a;
            --light-gray: #f8f9fa;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            width: 100%;
        }

/* Loader Overlay */
.loader-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none; /* Hidden initially */
    align-items: center;
    justify-content: center;
    z-index: 1000;
    cursor: pointer;
}

    /* Loader Box */
.loader-box {
    background: rgb(0, 0, 0);
    padding: 20px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    width: 400px;
}

/* Loader Logo */
.loader-logo {
    width: 200px; /* Adjust size */
    height: 65px;
    margin-bottom: 10px;
    border-radius: 5px;
    margin-left: auto;
    margin-right: auto;
}

/* Loader Text */
.loader-text {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 2px;
     color: rgb(255, 255, 255);
}

/* Countdown Text */
.countdown-text {
    font-size: 16px;
    color: rgb(32, 102, 232);
    font-weight: bold;
    margin-top: 20px;
   
}
/* HTML: <div class="loader"></div> */
.loader {
    width: 20px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: repeating-conic-gradient(rgb(8, 0, 255) 0 90deg,#eaeaea 0 180deg);
    animation: l21 1s infinite linear;
    margin-bottom: 100px;
    position: fixed;
    
    left: 49.5%;
     justify-content: center;
    align-items: center;

   
  }
  @keyframes l21 {
    100% {transform: rotate(.5turn)}
  }


        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('backimg.png');          
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 20px;
            text-align: center;
            margin-top: 110px !important;
        }

        .hero-section h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .hero-section p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 3rem;
            line-height: 1.7;
        }

        .btn-outline-gold {
            border: 2px solid var(--primary-gold);
            color: white;
            padding: 0.75rem 2rem;
            font-weight: 600;
            border-radius: 30px;
            background: transparent;
            transition: all 0.3s;
        }

        .btn-outline-gold:hover {
            background: var(--primary-gold);
            color: var(--dark-bg);
        }

        /* About Section */
        .about-section {
            background: var(--dark-bg);
            color: white;
            padding: 80px 20px;
        }

        .about-section h2 {
            font-size: 1.9rem;
            margin-bottom: 2rem;
            font-weight: 700;
        }

        .about-section p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #ddd;
        }

        .about-image {
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 500"><rect fill="%23555"/></svg>');
            background-size: cover;
            background-position: center;
            border-radius: 10px;
            height: 400px;
            background-image: url('pic.jpg');
        }

         /* / <!-- Additional Info Section -->*/
        .driver-image {
         background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),
                    url('pic2.png'); 
         background-size: cover;
         background-position: center;
         background-repeat: no-repeat;
         border-radius: 10px;
         height: 500px;
         width: 100%;
        }

         
        /* Map Section */
        .map-section {
            background: var(--light-gray);
            padding: 80px 20px;
            position: relative;
        }
        .map-container {
         background: url('pic2.jpg') no-repeat center center;
         background-size: cover;   
         height: 480px;           
         border-radius: 15px;
         position: relative;
         width: 100%;
         height: 84%;
        }


        /* Help Section */
        .help-section {
            background: rgb(243, 213, 113);
            padding: 60px 40px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            margin-top: -100px;
            position: relative;
            z-index: 10;
        }

        .help-section h3 {
            font-size: 2.9rem;
            font-weight: 700;
            color: var(--dark-bg);
            margin-bottom: 0.5rem;
        }

        .help-section p {
            font-size: 1.3rem;
            color: var(--dark-bg);
            margin-bottom: 2rem;
        }

        .btn-dark-custom {
            background: var(--dark-bg);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 30px;
            margin: 0 0.5rem;
            border: none;
            font-weight: 600;
        }

        .btn-dark-custom:hover {
            background: #000;
        }

        .phone-mockup {
            background: white;
            border-radius: 30px;
            padding: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
            max-width: 300px;
            margin: 0 auto;
        }

        #footer{
            width: 100%;
        }
