
        :root {
            --primary-color: #0d6efd;
            --secondary-color: #f8f9fa;
            --accent-color: #ff6b6b;
            --dark-color: #212529;
            --light-color: #ffffff;
            --text-color: #6c757d;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-color);
            overflow-x: hidden;
        }

        /* Navbar */
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }

        .navbar-nav .nav-link {
            font-weight: 500;
            margin: 0 10px;
            color: var(--dark-color) !important;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }

        /* Hero Section with Slider */
        .hero-section {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }

        .carousel-item {
            height: 100vh;
            position: relative;
        }

        .carousel-item img {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }

        /* .carousel-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
            z-index: 1;
        } */

        .carousel-content {
            position: absolute;
            top: 55%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 45%;
            max-width: 1200px;
            z-index: 2;
            text-align: center;
            color: white;
        }

        .carousel-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            /* margin-bottom: 1.5rem; */
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            animation: fadeInDown 1s ease;
        }

        .carousel-content p {
            font-size: 1.3rem;
            /* margin-bottom: 2rem; */
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1s ease;
        }

        /* Plan Your Trip Form */
        .trip-form {
 background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(10px); /* For Safari */
    padding: 20px;
    border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            animation: fadeInUp 1.2s ease;
        }

        .trip-form h2 {
            color: #162b45;
            margin-bottom: 15px;
            font-weight: 600;
            margin-top: -20px;
        }

        .form-control, .form-select {
            border-radius: 10px;
            border: 1px solid #ced4da;
            padding: 12px 15px;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
        }

    .btn-trip {
    border: none;
    padding: 12px 23px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s 
ease;
    display: inline-block;
    margin-top: 10px;
    text-align: center;
    width: 50%;
    max-width: 166px;
    text-decoration: none;
    background-color: #ff5522;
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

/* Hover animation background */
.btn-trip::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #011a38;
    transition: 0.4s ease;
    z-index: -1;
}

.btn-trip:hover::before {
    left: 0;
}

.btn-trip:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
    color: white !important; /* text white on hover */
}



        /* Section Styles */
        .section {
            padding: 40px 0;
        }
.btn-trip {
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 10px;
    text-align: center;
    width: 50%;
    margin: 1px;
    text-decoration: none;
    color: white; /* default white */

    position: relative;
    overflow: hidden;
    z-index: 2;
}

/* Hover animation background */
.btn-trip::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #011a38;
    transition: 0.4s ease;
    z-index: -1;
}

.btn-trip:hover::before {
    left: 0;
}

.btn-trip:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
    color: white !important; /* text white on hover */
}

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-color);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1.1rem;
            color: var(--text-color);
            margin-top: 15px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* About Section */
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
                font-size: 1.9rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 20px;
    color: #ff5522;
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-color);
            margin-bottom: 20px;
        }

        .about-image {
            flex: 1;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .about-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        /* Destination Cards */
        .destination-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .destination-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .destination-image {
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .destination-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .destination-card:hover .destination-image img {
            transform: scale(1.1);
        }

        .destination-badge {
          position: absolute;
    top: 0px;
    right: -1px;
    background: #ff5522;
    color: white;
    padding: 5px 15px;
    border-radius: 0px 1px 0px 27px;
    font-weight: 600;
    font-size: 1.1rem;
        }

        .destination-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .destination-content h3 {
                justify-content: ]]];
    /* border: 2px solid #5e4545; */
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
    padding: 5px;
    box-shadow: -2px -1px 12px #dbdbdb;
    border-radius: 17px;
    text-align: center;

        }

        .destination-content p {
            color: var(--text-color);
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .destination-features {
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
            margin-bottom: 20px;
            justify-content: center;
        }

        .destination-feature {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 1.3rem;
            color: var(--text-color);
        }

        .destination-feature i {
            color:#ff5522 ;
        }

       
        /* Testimonials */
        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        /* Call Button */
.btn-call {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #FF5722;
    background: #fff;
    color: #FF5722;
    transition: 0.3s ease;
    text-decoration: none;
}

/* Hover Effect */
.btn-call:hover {
    background: #FF5722;
    color: #fff;
}

/* Call Icon */
.btn-call i {
    margin-right: 8px;
    font-size: 18px;
}


        .testimonial-text {
            font-style: italic;
            color: var(--text-color);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
        }

        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h5 {
            margin: 0;
            font-weight: 600;
            color: var(--dark-color);
        }

        .author-info p {
            margin: 0;
            color: var(--text-color);
            font-size: 0.9rem;
        }

        .rating {
            color: #ffc107;
            margin-bottom: 15px;
        }

        /* Why Choose Us */
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 15px;
            background: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
        }

        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), #0a58ca);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
        }

        .feature-box h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--dark-color);
        }

        .feature-box p {
            color: var(--text-color);
            line-height: 1.6;
        }

        /* Newsletter */
        .newsletter {
            background: #011a38;
            color: white;
            border-radius: 15px;
            padding: 50px 30px;
            text-align: center;
        }

        .newsletter h3 {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .newsletter p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 50px;
        }

        .newsletter-form button {
            padding: 12px 25px;
            background: var(--accent-color);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            background: #ff5252;
            transform: translateY(-3px);
        }

        /* Footer */
       footer {
    position: relative;
   color: white;
    padding: 70px 0 20px;
    text-align: center;
}


        .footer-content {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 50px;
        }

        .footer-column {
            flex: 1;
            min-width: 250px;
        }

        .footer-column h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 160px;
            width: 50px;
            height: 3px;
            background: var(--primary-color);
        }

        .footer-column p {
            color: #adb5bd;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
        }

        .footer-links a:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }

        .footer-links i {
            margin-right: 10px;
            font-size: 0.9rem;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--primary-color);
            transform: translateY(-5px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            text-align: center;
            color: #adb5bd;
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }

            .carousel-content h1 {
                font-size: 2.5rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .carousel-content h1 {
                font-size: 2rem;
            }

            .carousel-content p {
                font-size: 1rem;
            }

            .trip-form {
                padding: 20px;
            }

            .section {
                padding: 60px 0;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .footer-column {
                min-width: 100%;
            }
            .carousel-content {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 90%;
                max-width: 1200px;
                z-index: 2;
                text-align: center;
                color: white;
            }
            .trip-form h2 {
            color: var(--primary-color);
            margin-bottom: 10px;
            font-weight: 600;
            margin-top: -5px;
            
            }
            .btn-trip{
                background: #ff5522;
                color: white;
                border: none;
                padding: 12px 30px;
                border-radius: 50px;
                font-weight: 600;
                transition: all 0.3s ease;
                display: inline-block;
                margin-top: 10px;
                text-align: center;
                width: 66%;
                /* margin: auto; */
            }
        }
          /* --- Main Section Container --- */
        .why-book-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 40px;
            background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
            border-radius: 20px;
            box-shadow: var(--card-shadow);
            overflow: hidden;
        }

        /* --- Section Header --- */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }

        .section-header p {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 25px auto 0;
        }

        /* --- Benefits Grid --- */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        /* --- Individual Benefit Card --- */
        .benefit-card {
            background: white;
            border-radius: 15px;
            padding: 35px;
            box-shadow: var(--card-shadow);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            border: 1px solid #b0b2b4;
        }
        
        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .benefit-card:hover::before {
            transform: scaleX(1);
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--card-hover-shadow);
        }
        
        .icon-container {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: #ff5522;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: transform 0.3s ease;
        }

        .benefit-card:hover .icon-container {
            transform: rotate(10deg) scale(1.1);
        }

        .icon-container svg {
            width: 35px;
            height: 35px;
            color: white;
        }

        .benefit-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 15px;
        }

        .benefit-card p {
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .card-extra {
            font-size: 0.9rem;
            font-weight: 500;
            padding: 10px 15px;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .testimonial {
            background: var(--light-color);
            color: #555;
            font-style: italic;
        }
        
        .stats, .guarantee, .certification {
           background: #062750;
    color: #fafdff;
        }

        .cta, .contact-info {
            background: #eafaf1;
            color: var(--secondary-color);
            cursor: pointer;
            font-weight: 600;
        }
        .input-with-icon {
            overflow:hidden;
    padding-left: 40px; /* space for icon */
}
.destination-buttons {
    display: flex;
    gap: 15px;
    justify-content: center; /* optional - center alignment */
}

@media (max-width: 500px) {
    .destination-buttons{
        flex-direction: column;
    }
        .btn-trip{
            margin:auto;
        }
}

/* WhatsApp Button */
.btn-whatsapp {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #25D366;
    background: #fff;
    color: #25D366;
    transition: 0.3s ease;
    text-decoration: none;
}

/* Hover effect */
.btn-whatsapp:hover {
    background: #25D366;
    color: #fff;
}

/* WhatsApp Icon Adjustment */
.btn-whatsapp i {
    margin-right: 8px;
    font-size: 18px;
}





.input-icon {
    position: absolute;
   top: 38%;
    left: 29px;
    transform: translateY(-50%);
    color: #555;
    font-size: 16px;
    pointer-events: none; /* so icon doesn't block typing */
}

        
        .cta:hover, .contact-info:hover {
            background: #d4f4e0;
            transform: scale(1.05);
        }

        /* --- Trust Badges --- */
        .trust-badges {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .badge {
            background: white;
            border-radius: 10px;
            padding: 15px 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .badge:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        }

        .badge img {
            height: 130px;
            width: auto;
            /* filter: grayscale(100%); */
            
            transition: all 0.3s ease;
        }

        .badge:hover img {
            filter: grayscale(0%);
            opacity: 1;
        }

        /* --- Final Call to Action --- */
        .cta-section {
            text-align: center;
            padding: 50px;
            background: #011a38;
            border-radius: 15px;
            color: white;
        }

        .cta-section h3 {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .primary-cta {
            background: white;
            color: var(--primary-color);
            border: none;
            padding: 18px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .primary-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            background: var(--light-color);
        }

        /* --- Animations --- */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animated-card {
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .animated-card:nth-child(1) { animation-delay: 0.1s; }
        .animated-card:nth-child(2) { animation-delay: 0.2s; }
        .animated-card:nth-child(3) { animation-delay: 0.3s; }
        .animated-card:nth-child(4) { animation-delay: 0.4s; }
        .animated-card:nth-child(5) { animation-delay: 0.5s; }
        .animated-card:nth-child(6) { animation-delay: 0.6s; }

        /* --- Responsive Design --- */
        @media (max-width: 768px) {
            .why-book-section {
                padding: 40px 20px;
            }
            .section-header h2 {
                font-size: 2.2rem;
            }
            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            .cta-section h3 {
                font-size: 1.8rem;
            }
            .trust-badges {
                gap: 15px;
            }
        }
        
        
        /*youtube carsol css*/
        :root {
  --accent: #ff5522;
  --black: #0b0b0b;
  --bg: #f5f5f5;
}

/* ------------------- Global Reset ------------------- */
.unique-container * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ------------------- Container ------------------- */
.unique-container {
  background-color: white !important;
  width: 100%;
  padding: 30px;
}

.unique-container .inner-container {
  width: min(1200px, 95%);
}

/* ------------------- Heading & Title ------------------- */
.unique-container .heading {
  margin-bottom: 25px;
  position:absolute;
  
}

.unique-container .title {
  font-size: 32px;
  font-weight: 800;
  display: flex;
  gap: 8px;
  align-items: center;
}

.unique-container .title .tripper {
  color: #011a38;
}

.unique-container .title .hub {
  color: #ff5522;
  background: #ffe4cc;
  padding: 6px 10px;
  border-radius: 8px;
}

.unique-container .subtitle {
  font-size: 14px;
  color: #555;
  margin-top: 6px;
}

/* ------------------- YouTube Box ------------------- */
.unique-container .yt-box {
  border-radius: 14px;
    overflow: hidden;
    margin-top: 104px;
    background: #fdfdfd;
    box-shadow: 0 30px 36px rgba(0, 0, 0, 0.15), 0 0 31px rgba(0, 0, 0, 0.10), 0 0 51px rgba(0, 0, 0, 0.08);
    position: relative;
}


/* ------------------- Carousel ------------------- */
.unique-container .carousel {
  position: relative;
  overflow: hidden;
}

.unique-container .track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.unique-container .slide {
  flex: 0 0 33.333%;
  padding: 10px;
}

/* ------------------- Responsive Slides ------------------- */
@media (max-width: 900px) {
  .unique-container .slide {
    flex: 0 0 50%;
  }
  
  
}

@media (min-width: 900px){
    
    .youtube-style-flex{
      display: flex; 
      align-items: center;
      justify-content: center;
      margin:auto;
      max-width:1300px;
      padding-bottom: 100px;
      
  }
    
}



@media (max-width: 600px) {
  .unique-container .slide {
    flex: 0 0 100%;
  }
}

/* ------------------- Thumbnails ------------------- */
.unique-container .thumb {
  width: 100%;
  height: 200px;
  background: #000;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
}

/* ------------------- Play Icon ------------------- */
.unique-container .play-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  color: #000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ------------------- Captions ------------------- */
.unique-container .caption {
  margin-top: 8px;
  font-size: 14px;
  color: #222;
}

/* ------------------- Carousel Buttons ------------------- */
.unique-container .btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  cursor: pointer;
  z-index: 5;
}

.unique-container .btn.prev {
  left: 10px;
}

.unique-container .btn.next {
  right: 10px;
}

@media (max-width: 600px) {
  .unique-container .btn {
    display: none;
  }
}

/* ------------------- Fullscreen Player ------------------- */
.unique-container #fsPlayer {
  position: fixed;
  inset: 0;
  background: #000;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.unique-container #fsPlayer iframe {
  width: 100%;
  height: 100%;
}

/* ------------------- Responsive Font/Button Example ------------------- */
@media (min-width: 1200px) {
  .unique-container .btn-view-enquire {
    font-size: 14px;
    padding: 1px 1px !important;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .unique-container .col-lg-4 {
    flex: 0 0 auto;
    width: 45.333333%;
  }
}


.offers-section {
  width: 100%;
  padding: 60px 0;
  display: flex;
  justify-content: center;
}

/* Container */
.offers-container {
  width: 90%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD BASE */
.offer-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 260px;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  background-size: cover;
  background-position: center;
  color: white;
}

/* ORANGE SPREAD + DARK OVERLAY */
.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 143, -35, 28.6) 0%, rgb(248 122 0 / 147%) 25%, rgba(0, 0, 0, 0.20) 60%, rgba(0, 0, 0, 0.40) 100%);
  z-index: 1;
}

/* CONTENT TOP LAYER */
.offer-content {
  position: relative;
  z-index: 2;
}

/* TEXT STYLE */
.offer-title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.offer-discount {
  margin: 8px 0;
  font-size: 36px;
  font-weight: 700;
}

.offer-text {
  margin: 6px 0 20px 0;
  font-size: 15px;
  line-height: 1.4;
}

/* BUTTON */
.offer-btn {
    padding: 10px 22px;
    background: #ff5522;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.offer-btn:hover {
  opacity: 0.9;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .offers-container {
    grid-template-columns: 1fr;
  }

  .offer-card {
    height: 300px;
  }
}
