/* Custom Styles */
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f8f9fa;
        }

        :root {
            --brand-yellow: #ffc107;
            --brand-dark: #212529;
            --brand-red: #dc3545;
        }

        .navbar {
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
        }

        .navbar-brand img {
            height: 40px;
        }
        
        .navbar-brand, .nav-link {
            font-weight: 600;
        }

        .hero-section {
            background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/1 (9).jpeg');
            background-size: cover;
            background-position: center;
            height: 90vh;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .hero-section .logo-text {
            font-family: Arial, sans-serif; /* A font similar to your logo */
            font-weight: bold;
            font-size: 5rem;
            color: var(--brand-yellow);
        }

        .hero-section p {
            font-size: 1.25rem;
            max-width: 600px;
            margin: 1rem auto;
        }
        
        .btn-brand {
            background-color: var(--brand-yellow);
            border-color: var(--brand-yellow);
            color: var(--brand-dark);
            font-weight: 600;
            padding: 10px 30px;
            transition: all 0.3s ease;
        }

        .btn-brand:hover {
            background-color: #e0a800;
            border-color: #e0a800;
            color: var(--brand-dark);
            transform: translateY(-3px);
        }
        
        .section-title {
            font-weight: 700;
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--brand-yellow);
        }

        .service-card, .testimonial-card {
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }
        
        .service-icon {
            font-size: 3rem;
            color: var(--brand-yellow);
        }
        
        .about-video {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .gallery-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        
        .gallery-img:hover {
            transform: scale(1.05);
        }
        
        .testimonial-card img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--brand-yellow);
        }
        
        .stars {
            color: var(--brand-yellow);
        }
        
        .contact-info i {
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            background-color: var(--brand-yellow);
            color: var(--brand-dark);
            border-radius: 50%;
        }

        footer {
            background-color: var(--brand-dark);
            color: white;
        }
        
        footer a {
            color: var(--brand-yellow);
            text-decoration: none;
        }
        
        footer a:hover {
            color: white;
        }

        /* =================================== */
        /* NEW OFFER STYLES           */
        /* =================================== */

        /* Styles for the new "Hot Deal" badge */
        .badge-offer {
            background-color: var(--brand-red);
            color: white;
            font-size: 0.9rem;
            padding: 5px 10px;
            border-radius: 5px;
            font-weight: 600;
        }

        /* Styles for the new offer carousel */
        .offer-carousel-item img {
            max-height: 500px; /* Set a max height for all carousel images */
            object-fit: contain; /* Prevents stretching */
            margin: 0 auto;
            border-radius: 10px;
            background-color: #fdfdfd; /* Light background for 'contain' images */
        }