/* Importing Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Playfair+Display:wght@700&display=swap');

/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #FFFFFF;
}

/* Navbar */
.navbar {
    width: 100%;
    background-color: rgba(0, 51, 160, 0.404);
    padding: 15px 40px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease-in-out; /* Smooth transition */
    /* height: 80px; */
} 

/* Scrolled navbar background (solid color) */
.navbar.scrolled {
    background-color: #0033A0;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo img {
    width: 70px;
}

/* Desktop Menu */
.desktop-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.desktop-menu li a {
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.desktop-menu li a:hover {
    color: #FFD700; /* Gold */
}

/* Mobile Menu Icon */
.mobile-menu-icon {
    display: none;
    font-size: 24px;
    color: #FFFFFF;
    cursor: pointer;
}

/* Mobile Menu */
/* Mobile Menu */
.mobile-menu {
    display: flex;
    flex-direction: column;
    list-style: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: #0033A0;
    padding-top: 60px;
    padding-left: 20px;
    gap: 20px;
    transition: right 0.5s ease-in-out;
    z-index: 999;
}

.mobile-menu ul {
    margin-top: 100px;
}

.mobile-menu li a {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
}

.mobile-menu li a:hover {
    color: #FFD700;
}

/* Show Mobile Menu */
.mobile-menu.active {
    right: 0; /* Slide into view */
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .mobile-menu-icon {
        display: block;
    }
    .logo img {
        width: 50px;
    }
    
    .navbar {
        width: 100%;
        background-color: rgba(0, 51, 160, 0.438);
        padding: 15px 40px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        height: 80px;
    }
    
}


/* Close Button (X) Styling */
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #FFFFFF;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #FFD700; /* Gold on hover */
}

/* Menu Icons Styling */
.nav-menu li a i {
    margin-right: 8px; /* Space between icon and text */
    color: #FFD700;    /* Gold color for icons */
    font-size: 18px;
    transition: color 0.3s ease;
}

/* Icon Hover Effect */
.nav-menu li a:hover i {
    color: #FFFFFF;    /* Change to white on hover */
}


/* Desktop Menu - Account Styling */
.nav-menu.desktop-menu .account {
    margin-left: auto; /* Pushes it to the right */
    padding-left: 20px; /* Space from the last menu item */
}

.nav-menu.desktop-menu .account a {
    color: #FFD700; /* Gold color */
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center; /* Align icon and text */
    transition: color 0.3s ease;
}

.nav-menu.desktop-menu .account a i {
    margin-right: 8px; /* Space between icon and text */
}

/* Hover Effect for Desktop Account */
.nav-menu.desktop-menu .account a:hover {
    color: #FFFFFF; /* White on hover */
}

.nav-menu.desktop-menu li  {
    margin-right: -40px; /* Reduces the space between menu items */
}
/* Desktop Menu - Hover Effect */
.nav-menu.desktop-menu li a {
    padding: 10px 15px; /* Add padding around the text */
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 4px; /* Rounded corners */
}

.nav-menu.desktop-menu li a:hover {
    background-color: #FFD700; /* Gold background on hover */
    color: #0033A0; /* Text color changes to Royal Blue */
}

/* Mobile Menu - Hover Effect */
.nav-menu.mobile-menu li a {
    padding: 10px 15px; /* Add padding around the text */
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 4px; /* Rounded corners */
    margin-bottom: 10px; /* Ensure there's some space between items */
}

.nav-menu.mobile-menu li a:hover {
    background-color: #FFD700; /* Gold background on hover */
    color: #0033A0; /* Text color changes to Royal Blue */
}

/* Mobile Menu Spacing */
.nav-menu.mobile-menu li {
    margin-bottom: 10px; /* Reduces space between the menu items */
}

/* Account Menu - Hover Effect (Desktop & Mobile) */
.nav-menu.desktop-menu .account a:hover,
.nav-menu.mobile-menu .account-mobile a:hover {
    background-color: #FFD700; /* Gold background on hover */
    color: #0033A0; /* Text color changes to Royal Blue */
}


/* Mobile Menu - Account Styling */
.nav-menu.mobile-menu .account-mobile {
    position: absolute;
    top: 15px;
    right: 40px; /* Close to the X button */
    font-size: 16px;
    font-weight: bold;
    color: #FFD700; /* Gold color */
    display: flex;
    align-items: center; /* Align icon and text */
}

.nav-menu.mobile-menu .account-mobile a {
    color: inherit;
    text-decoration: none;
}

.nav-menu.mobile-menu .account-mobile i {
    margin-right: 8px; /* Space between icon and text */
}

/* Hover Effect for Mobile Account */
.nav-menu.mobile-menu .account-mobile a:hover {
    color: #FFFFFF; /* White on hover */
}

/* Mobile Login */
.mobile-login {
    display: none;
    font-size: 16px;
    font-weight: bold;
    color: #FFD700; /* Gold color */
    margin-right: 20px;
}

.mobile-login a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.mobile-login i {
    margin-right: 5px;
    font-size: 18px;
}

/* Show Login on Mobile */
@media (max-width: 768px) {
    .mobile-login {
        display: flex;
    }

    .container {
        justify-content: space-between;
        align-items: center;
    }

    .mobile-menu-icon {
        display: block;
    }
}


/* Hero style */

/* General Hero Section Styling */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 8s ease-in-out;
    transform: scale(1);
    z-index: 0;
}

/* Active Slide with Zoom Effect */
.slide.active {
    opacity: 1;
    transform: scale(1.1);
}

/* Blue Overlay */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 160, 0.5); /* Blue overlay with 50% opacity */
    z-index: 1;
}

/* Centering Slide Content */
.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the text horizontally and vertically */
    text-align: center;
    color: #fff;
    z-index: 2; /* Above the overlay */
    max-width: 80%; /* Ensures text stays within bounds */
}

.slide-content h1,
.slide-content p,
.slide-content .hero-btn {
    opacity: 0;
    position: relative;
}

/* Animations for Heading, Paragraph, and Button */
.slide.active .slide-content h1 {
    animation: slideInFromLeft 1s ease forwards;
}

.slide.active .slide-content p {
    animation: slideInFromRight 1s ease 0.3s forwards; /* Delayed for smooth effect */
}

.slide.active .slide-content .hero-btn {
    animation: slideInFromBottom 1s ease 0.6s forwards; /* Delayed for smooth effect */
}

/* Keyframes for Animations */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Styling for Slide Content */
.slide-content h1 {
    font-size: 40px; /* Large font size for desktop */
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slide-content p {
    font-size: 20px; /* Readable size for desktop */
    margin-bottom: 30px;
    line-height: 1.5;
}

.slide-content .hero-btn {
    font-size: 18px;
    padding: 12px 30px;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.slide-content .hero-btn:hover {
    background-color: #0056b3;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .slide-content h1 {
        font-size: 38px;
    }

    .slide-content p {
        font-size: 18px;
    }

    .hero-btn {
        font-size: 16px;
        padding: 10px 25px;
    }
}

@media (max-width: 768px) {
    .slide-content {
        max-width: 90%; /* Allow text to fit within the screen */
    }

    .slide-content h1 {
        font-size: 18px; /* Smaller heading size for mobile */
    }

    .slide-content p {
        font-size: 14px; /* Smaller paragraph size for mobile */
    }

    .hero-btn {
        font-size: 14px;
        padding: 8px 20px;
    }
    .hero-section {
    position: relative;
    width: 100%;
    height: 80vh; /* Full viewport height */
    overflow: hidden;
}

}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 24px; /* Larger heading size for mobile */
    }

    .slide-content p {
        font-size: 16px; /* Larger paragraph size for mobile */
    }

    .hero-btn {
        font-size: 12px;
        padding: 6px 15px;
    }
}

/* Scroll arrows for the slider (plain white arrows) */
.hero-scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    border: none;
    font-size: 30px; /* Increase size for visibility */
    cursor: pointer;
    z-index: 5;
    background: none; /* Remove background color */
    padding: 0; /* Remove padding for a clean arrow look */
    transition: transform 0.3s ease;
}

/* Hover effect for arrows */
.hero-scroll-arrow:hover {
    background: none; /* Remove background color */
}

/* Left arrow */
.hero-scroll-left {
    left: 20px;
}

/* Right arrow */
.hero-scroll-right {
    right: 20px;
}



/* Dots Container */
.dots-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3; /* Ensure dots are above overlay */
}

/* Individual Dots */
.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Active Dot */
.dot.active {
    background-color: #007BFF; /* Highlight active dot */
    transform: scale(1.2); /* Slightly larger active dot */
}

.dot:hover {
    background-color: #0056b3; /* Hover effect */
}

/* Responsive Dots Styling */
@media (max-width: 768px) {
    .dots-container {
        gap: 8px; /* Adjust spacing for smaller screens */
    }
    .dot {
        width: 10px;
        height: 10px;
    }
    
    
    .hero-scroll-arrow {
   display:none;
}

}


/* 🌟 Hotel Reservations Section */
.hotel-reservations {
    padding: 60px 20px;
    background: linear-gradient(to right, #0033A0, #001F5B);
    color: #fff;
    text-align: center;
}

.hotel-reservations .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

/* 📑 Reservation Info */
.reservation-info {
    flex: 1;
    min-width: 300px;
}

.reservation-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #FFD700; /* Gold */
}

.reservation-info p {
    font-size: 18px;
    line-height: 1.6;
}

/* 📋 Reservation Form */
.reservation-form {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: #333;
}

.reservation-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #0033A0;
    box-shadow: 0 0 8px rgba(0, 51, 160, 0.3);
    outline: none;
}

/* 🚀 Submit Button */
.submit-btn {
    background: #FFD700;
    color: #333;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background: #FFA500; /* Darker gold */
    color: #fff;
}

/* 📱 Responsive Design */
@media (max-width: 768px) {
    .hotel-reservations .container {
        flex-direction: column;
        align-items: center;
    }

    .reservation-form {
        width: 100%;
    }
}

/* 🗓 Flatpickr Custom Styles */
.flatpickr-calendar {
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.flatpickr-month {
    background: #0033A0;
    color: #fff;
    padding: 10px;
    font-size: 16px;
    text-align: center;
    border-bottom: 1px solid #ccc;
}

.flatpickr-month .flatpickr-prev-month,
.flatpickr-month .flatpickr-next-month {
    color: #FFD700; /* Gold */
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
}

.flatpickr-weekdays {
    background: #001F5B; /* Dark Blue */
    color: #FFD700;
    padding: 5px 0;
    font-size: 14px;
}

.flatpickr-days {
    padding: 10px;
}

.flatpickr-day {
    font-size: 14px;
    width: 2.5em;
    height: 2.5em;
    line-height: 2.5em;
    text-align: center;
    margin: 2px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.flatpickr-day:hover {
    background: #0033A0;
    color: #fff;
}

.flatpickr-day.today {
    background: #FFD700;
    color: #0033A0;
    font-weight: bold;
}

.flatpickr-day.selected {
    background: #0033A0;
    color: #fff;
    font-weight: bold;
    border: 2px solid #FFD700;
}

.flatpickr-day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

/* 🚀 Reset and Apply Buttons */
.flatpickr-footer {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: #f9f9f9;
    border-top: 1px solid #ccc;
}

.flatpickr-footer button {
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.flatpickr-footer .reset-btn {
    background: #FF6347; /* Tomato */
    color: #fff;
}

.flatpickr-footer .apply-btn {
    background: #0033A0;
    color: #fff;
}

.flatpickr-footer .reset-btn:hover {
    background: #FF4500; /* Darker Tomato */
}

.flatpickr-footer .apply-btn:hover {
    background: #001F5B;
}


/* 🌟 Sticky Buttons */
.sticky-buttons {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}
/* 🔘 Side Button Styling */
.side-button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 50px; /* Initial collapsed width */
    height: 50px;
    background: linear-gradient(to bottom, #0033A0, #001F5B);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    border-radius: 0 8px 8px 0;
    transition: width 0.5s ease, background-color 0.5s ease, box-shadow 0.5s ease;
    overflow: hidden; /* Hide text initially */
    position: relative;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.4); /* Subtle shadow for depth */
}

/* 🖼 Icon Styling */
.side-button i {
    font-size: 24px;
    margin: 0 auto;
    transition: margin 0.3s ease;
    margin-left: 10px;
}

/* 📋 Text Styling */
.button-text {
    white-space: nowrap;
    margin-right: 30px;
    opacity: 0;
    transition: opacity 0.5s ease, margin-left 0.5s ease;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

/* 🚀 Expand Button on Hover */
.side-button:hover {
    width: 350px; /* Expand more for emphasis */
    background: #FFD700; /* Gold */
    color: #0033A0;
    box-shadow: 0 0 15px #FFD700; /* Glow effect on hover */
    position: relative;
    overflow: visible;
}

/* 🖌 Slide Border Effect */
.side-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 8px; /* Thicker border */
    background: linear-gradient(to bottom, #FFD700, #0033A0); /* Vibrant gradient */
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s ease-in-out;
}

.side-button:hover::before {
    transform: scaleY(1); /* Expand line on hover */
}

.side-button:hover i {
    margin-left: 15px; /* Shift icon to make space for text */
}

.side-button:hover .button-text {
    opacity: 1; /* Show text */
    margin-left: 5px;
}

/* 💡 Additional Animated Line Feature */
.side-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 5px; /* Thicker line */
    width: 100%;
    background: linear-gradient(to right, #0033A0, #FFD700);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease-in-out;
}

.side-button:hover::after {
    transform: scaleX(1); /* Expand line on hover */
}

/* 📱 Mobile Adjustments */
@media (max-width: 768px) {
    .side-button {
        height: 70px;
        width: 40px;
        font-size: 12px;
    }
    .side-button i {
        font-size: 18px;
    }
    .side-button:hover {
        width: 200px; /* Adjust width for mobile */
    }
}



/* Custom Modal Background */
.custom-modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
    z-index: 2000;
    overflow: auto;
}

/* Custom Modal Content */
.custom-modal-content {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 10% auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Close Button */
.custom-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

.custom-close:hover {
    color: red;
}

/* Form Styling */
form input {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

form button {
    padding: 12px 30px;
    background-color: #0033A0;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #0056b3;
}

/* Pointer Container */
.pointer-container {
    margin-top: 15px;
    position: absolute;
    top: 0;
    left: 55px;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    animation: fadeIn 1s ease 3s forwards;
    z-index: 10;
}

.pointer-icon {
    font-size: 25px;
    color: #ffffff; /* Bright orange for visibility */
    animation: float 2s infinite ease-in-out; /* Float left and right */
}

.tooltip {
    font-size: 18px;
    background-color: #FFD700;
    color: #0033A0;
    padding: 8px 15px;
    border-radius: 8px;
    white-space: nowrap;
    font-weight: bold;
    transform: translateY(-50%);
    animation: fadeIn 1s ease 3s forwards;
    -webkit-animation: fadeIn 1s ease 3s forwards;
}

/* Keyframes */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateX(-15px);
    }
    50% {
        transform: translateX(15px);
    }
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.side-button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 50px; /* Collapsed width */
    height: 50px;
    background: linear-gradient(to bottom, #0033A0, #001F5B);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    border-radius: 0 8px 8px 0;
    transition: width 0.5s ease, background-color 0.5s ease, box-shadow 0.5s ease;
    overflow: hidden; /* Hide text initially */
    position: relative;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

.side-button i {
    font-size: 24px;
    margin-left: 10px;
    transition: margin 0.3s ease;
}

.button-text {
    white-space: nowrap;
    margin-right: 30px;
    opacity: 0;
    transition: opacity 0.5s ease, margin-left 0.5s ease;
    font-size: 16px;
    font-weight: bold;
}

.side-button:hover {
    width: 250px; /* Expanded width */
    background: #FFD700;
    color: #0033A0;
    box-shadow: 0 0 15px #FFD700;
    overflow: visible;
}

.side-button:hover i {
    margin-left: 15px;
}

.side-button:hover .button-text {
    opacity: 1; /* Show text */
    margin-left: 10px;
}

/* Custom Modal Styling */
.custom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    overflow: auto;
}

.custom-modal-content {
    position: relative;
    margin: 5% auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    background: #fff;
    border-radius: 10px;
    text-align: center;
}

.custom-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}


/* Services Section Styles */
.services-section {
    background-color: white;
    padding: 50px 50px;
    /*width: 1200px;*/
    align-items: center;
     /*margin-left: 70px;*/
}

/* Section Title Styling */
/* Enhanced Section Title Styling */
.section-title {
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    color: #0033A0; /* Brand blue color */
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 20px;
    background: linear-gradient(90deg, #FFD700, #0033A0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Underline Effect */
.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold underline */
    margin: 10px auto;
    border-radius: 2px;
}


.section-title::before {
    content: "";
    position: absolute;
    height: 3px;
    width: 60px;
    background-color: #FFD700; /* Brand gold color */
    top: 50%;
    transform: translateY(-50%);
}

.section-title::before {
    left: -70px;
}

.section-title::after {
    right: -70px;
}

/* Service Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid for any screen size */
    gap: 30px; /* More space between cards */
    justify-content: center; /* Center align the grid items */
}

/* Card Sizing */
.service-item {
    width: 100%;
    max-width: 350px; /* Larger card width */
    padding: 30px; /* Increased padding for better spacing */
    border-radius: 15px; /* Smooth rounded corners */
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Slightly deeper shadow */
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Blue and Gold Backgrounds */
.blue-background {
    background-color: #0033A0; /* Brand blue color */
 
}

.gold-background {
    background-color: #FFD700; /* Brand gold color */
}

.blue-background p{
    color: white;
}

.blue-background h3{
    color: white;
}

.blue-background i {
   
    color: white; /* Blue icon color */
    
}

.gold-background i {
   
    color: black; /* Gold icon color */
}


/* Service Icons */
.service-item i {
    font-size: 25px; /* Bigger icons */
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 50%; /* Circular icon background */
}

/* Service Item Title */
.service-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

/* Service Item Description */
.service-item p {
    font-size: 14px;
    margin-bottom: 15px;
}

.service-button {
    background-color: white !important; /* White background */
    color: black; /* Dark text for contrast */
    border: 1px solid #ccc; /* Light border */
    padding: 12px 18px; /* Adjusted padding */
    font-size: 16px; /* Readable font */
    border-radius: 6px; /* Smooth edges */
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Hover effect */
.service-button:hover {
    background-color: #f8f8f8; /* Light grey hover effect */
    border-color: #aaa;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .service-button {
        font-size: 14px;
        padding: 10px 14px;
    }
}

/* Desktop adjustments */
@media (min-width: 1024px) {
    .service-button {
        font-size: 18px;
        padding: 14px 20px;
    }
}

/* Zoom-In Hover Effect */
.service-item:hover {
    transform: translateY(-8px); /* Lift effect */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
}


@media (max-width: 768px) {
    .service-item {
        max-width: none; /* Allow full width on small screens */
        padding: 25px; 
        min-height: 400px; /* Set a minimum height for mobile cards */
        width: 100%;
        align-items: center;
    }

    .service-item i {
        margin-top: 30px;
        font-size: 35px; /* Bigger icons for mobile */
    }

    .service-item h3 {
        font-size: 28px; /* Bigger titles for mobile */
        /*margin-bottom:30px;*/
    }

    .service-item p {
        font-size: 20px; /* Larger text for mobile */
        margin-bottom:50px;
       
        text-align: center;
    }

    .service-button {
        font-size: 14px; /* Bigger button text */
    }
}


/* Popup Forms */
.popup-form {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Popup form animation */
@keyframes slideInFromTop {
    from {
        transform: translate(-50%, -100%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

@keyframes slideOutToTop {
    from {
        transform: translate(-50%, 0);
        opacity: 1;
    }
    to {
        transform: translate(-50%, -100%);
        opacity: 0;
    }
}

/* Popup form container */
.form-container {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%, -100%); /* Initial position (off the screen) */
    width: 200px; /* Full width */
    height: auto; /* Adjust height as needed */
    max-height: 80vh;
    background-color: white;
    border-radius: 0; /* Remove border-radius for full width */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    padding: 20px;
    overflow-y: auto;
    z-index: 0;
    animation: slideInFromTop 0.5s ease forwards; /* Add animation */
    opacity: 0; /* Ensure it's hidden initially */
}

/* Responsive styling for smaller screens */
@media (max-width: 768px) {
    .form-container {
        width: 90%; /* Slightly smaller width on mobile */
        border-radius: 10px; /* Add rounded corners for mobile */
    }
}

.form-container.hide {
    animation: slideOutToTop 0.5s ease forwards; /* Add slide-out animation */
}


    /* Optional: Add a background overlay to dim the rest of the page */
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
        z-index: 9998; /* Below the form */
    }


/* Optional: You can set a max-width for the form */
.form-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto; /* Center the form horizontally */
}

/* For smoother scrolling */
.form-container {
    -webkit-overflow-scrolling: touch; /* For smooth scrolling on iOS devices */
}


.form-container h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

textarea {
    resize: vertical;
    height: 120px;
}

button[type="submit"] {
    background-color: #0033A0;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    width: 100%;
}

button[type="submit"]:hover {
    background-color: #002276;
}

.close-button {
    margin-top: 20px;
    background-color: #ff5c5c;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.close-button:hover {
    background-color: #cc4b4b;
}

/* Add Responsive Design */
@media (max-width: 768px) {
    .services-section {
        padding: 40px 20px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); 
        /* Adjust columns for small screens */
    }

    .form-container {
        width: 100%; /* Full width for smaller screens */
    }
}

input[type="date"] {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

input[type="date"]:focus {
    border-color: #0033A0; /* Adjust for visual feedback */
}

/* General Form Container Styling */
.popup-form {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.form-container h2 {
    text-align: center;
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
}

/* Label and Input Styling */
.input-container {
    position: relative;
    margin-bottom: 20px;
}

input, select, textarea {
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    border-color: #007BFF;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Title Styling */
.form-container h2 {
    text-align: center;
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
}

/* Label and Input Styling */
.input-container {
    position: relative;
    margin-bottom: 20px;
}

input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    background-color: #fff;
    color: #333;
}

/* Remove focus effect or floating */
input:focus, select:focus, textarea:focus {
    border-color: #ff6f61;
    outline: none;
}

/* Number of Passengers Section */
.number-of-passengers {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.number-of-passengers .passenger-type {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.number-of-passengers .passenger-type label {
    margin-bottom: 5px;
    font-weight: bold;
}

.number-of-passengers select, .number-of-passengers input {
    width: 80px;
}

/* Trip Type Dropdown */
.trip-type {
    width: 100%;
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

/* Styling for the Submit Button */
button {
    background-color: #ff6f61;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #e55c4a;
}

/* Close Button Styling */
.popup-form .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: transparent;
    border: none;
    font-size: 30px;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
}

.popup-form .close-btn:hover {
    color: #ff5c5c; /* Change color on hover */
}

/* Close Button Styling */
.popup-form .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: transparent;
    border: none;
    font-size: 30px;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000; /* Ensuring it's on top */
}

.popup-form .close-btn:hover {
    color: #ff5c5c; /* Change color on hover */
}


/* Overlay Styling */
/* Overlay Styling */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black background */
    z-index: 100; /* Place it below the form but above other content */
    display: none; /* Initially hidden */
}

/* General Form Container Styling */
.popup-form {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    z-index: 9999; /* Ensuring the form is on top */
    position: relative;
}

/* Close Button Styling */
.popup-form .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: transparent;
    border: none;
    font-size: 30px;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000; /* Ensuring it's on top */
}

.popup-form .close-btn:hover {
    color: #ff5c5c; /* Change color on hover */
}

/* Other form and input styling (same as previous) */




/*Servie buttons*/

.service-buttons-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    position: relative;
    z-index: 10;
    
}

.service-buttons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 buttons per row */
    gap: 15px; /* Space between buttons */
    justify-content: center;
    text-align: center;
}

.service-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    width: 120px; /* Wider button */
    height: 90px;
    border: 2px solid #555; /* Visible border */
    border-radius: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #333; /* Dark text */
    cursor: pointer;
    background: white;
    transition: 0.3s ease;
}

.service-btn i {
    font-size: 24px;
    margin-bottom: 5px;
    color: #007BFF; /* Icon color */
}

.service-btn:hover {
    border-color: #007BFF;
    color: #007BFF;
    background-color: #FFD700;
}

/* Move buttons higher on mobile */
@media (max-width: 768px) {
    .service-buttons-section {
        margin-top: -200px; /* Moves buttons up */
    }
}

/* Adjust for larger screens */
@media (min-width: 1024px) {
    .service-buttons-section {
        margin-top: -100px; /* Less overlap for desktop */
    }
}
/* Mobile Screen */
@media (max-width: 768px) {
    .service-buttons-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 buttons per row for mobile */
        gap: 10px;
    }

    .service-btn {
        width: 110px;
        height: 100px;
        font-size: 16px;
    }

    .service-btn i {
        font-size: 28px;
    }
}

/* Desktop Screen */
@media (min-width: 1024px) {
    .service-buttons-grid {
        grid-template-columns: repeat(7, 1fr); /* 4 buttons per row for large screens */
        gap: 20px;
    }

    .service-btn {
        width: 140px; /* Wider buttons for desktop */
        height: 120px;
        font-size: 18px;
    }

    .service-btn i {
        font-size: 32px;
    }
}


/* News Carousel */

.news-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1200px; /* Restrict the section width */
    margin: 0 auto; /* Center the section */
    background: #f7f7f7;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.carousel-container {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.news-item {
    flex: 1 0 90%; /* Default for mobile */
    max-width: 90%; /* Default for mobile */
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    height: 300px; /* Restrict height for uniform size */
}

.news-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure images fill the space proportionally */
    position: relative;
}

.news-info {
    position: absolute;
    bottom: 20px; /* Place it slightly above the bottom edge */
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    color: white;
    padding: 10px 15px;
    text-align: left;
}

.news-info h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.news-info p {
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Read More Button */ 
.news-info .read-more-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #007BFF;
    color: white;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.news-info .read-more-btn:hover {
    background-color: #0056b3;
}

/* Carousel Controls */
.carousel-prev, 
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 50%;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 1000;
    font-size: 18px;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* Responsive Design */
@media (min-width: 768px) {
    .news-item {
        flex: 1 0 48%; /* Display two items side-by-side on desktop */
        max-width: 48%;
        height: 250px; /* Adjust height for desktop */
    }

    .news-carousel {
        padding: 30px 10px;
    }
}



/* Basic modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

/* Form spacing */
form {
    margin-top: 20px;
}

form label {
    display: block;
    margin-bottom: 8px;
    text-align: left;
}

form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

form button {
    width: 100%;
    padding: 10px;
    background: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

form button:hover {
    background: #0056b3;
}

/* Links */
.modal-content a {
    color: #007BFF;
    cursor: pointer;
    text-decoration: none;
}

.modal-content a:hover {
    text-decoration: underline;
}

/* Feedback Modal */
.feedback-modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.feedback-modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease-in-out;
}

.success-message {
    color: #28a745;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.error-message {
    color: #dc3545;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Modal fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


.swal2-container {
    z-index: 5000 !important; /* Ensures it appears above everything */
}


/* Ensure modal is hidden initially */
#flight-ticket-form {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    justify-content: center;
    align-items: center;
}

/* For the modal content */
#flight-ticket-form .form-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
}
/* Monitor Bookings Section */
.monitor-bookings {
    background: url('/assets/images/monitor_background.jpg') center/cover no-repeat;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    height: 500px;
}

/* Blue overlay for better readability */
.monitor-bookings::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 85, 185, 0.6); /* Blue overlay */
}

/* Decorative Lines at the Top */
.monitor-bookings::after {
    content: "";
    position: absolute;
    top: 100px; /* Adjust spacing from top */
    left: 50%;
    width: 80%;
    height: 3px;
    background: linear-gradient(to right, transparent, white, transparent);
    transform: translateX(-50%);
    opacity: 0.7;
}

.monitor-bookings .decor-lines {
    position: absolute;
    top: 60px; /* Adjust distance from top */
    left: 50%;
    width: 90%;
    display: flex;
    justify-content: space-between;
    transform: translateX(-50%);
}

.monitor-bookings .decor-lines span {
    width: 30px;
    height: 2px;
    background: white;
    opacity: 0.7;
}

/* Ensure content is above the overlay */
.monitor-bookings .container {
    position: relative;
    max-width: 900px;
    margin: auto;
    z-index: 2;
}

.monitor-bookings .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(255, 255, 255, 0.3); /* Semi-transparent white */
    padding: 40px;
    border-radius: 10px;
    margin-top: 100px;
}

/* Text Styling */
.monitor-bookings .text {
    flex: 1;
    text-align: left;
}

/* Enhanced Heading Styling */
.monitor-bookings h2 {
    font-size: 32px; /* Increased size for impact */
    font-weight: 800; /* Extra bold */
    color: #fff; /* White text */
    text-transform: uppercase;
    letter-spacing: 2px; /* Spacing for elegance */
    font-family: 'Poppins', sans-serif; /* Modern and clean font */
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 30px;
}

/* Adding an underline effect */
.monitor-bookings h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 60%;
    height: 3px;
    background: #ffcc00; /* Highlight color */
    transform: translateX(-50%);
    border-radius: 2px;
    transition: width 0.3s ease-in-out;
}

/* Subtle hover effect */
.monitor-bookings h2:hover::after {
    width: 80%;
}

.monitor-bookings p {
    font-size: 16px;
    color: #000;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Button Styling */
.monitor-bookings .btn {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: #fff; /* White text */
    transition: 0.3s;
}

.monitor-bookings .btn i {
    margin-left: 8px;
    font-size: 18px;
    transition: 0.3s;
}

.monitor-bookings .btn:hover i {
    transform: translateX(5px); /* Slight arrow movement on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .monitor-bookings .content {
        flex-direction: column;
        text-align: center;
        margin-top: 120px;
    }

    .monitor-bookings .text {
        text-align: center;
    }
    
    /* Decorative Lines at the Top */
.monitor-bookings::after {
    content: "";
    
    top: 200px; /* Adjust spacing from top */
 
}

.monitor-bookings h2 {
        font-size: 24px;
        letter-spacing: 1px;
        font-family: 'Montserrat', sans-serif; /* Alternative font for mobile */
        margin-bottom: 20px;
    }
}

/*chat box*/

/* Chat Container */
.chat-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    background: white;
    padding: 8px 12px;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: 0.3s;
}

.chat-container:hover {
    background: #f0f0f0;
}

/* Chat Label */
.chat-label {
    font-size: 16px;
    color: black;
    margin-right: 10px;
    font-weight: bold;
}

/* Chat Icon */
.chat-icon {
    background-color: #007BFF;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
}

/* Chat Box */
.chat-box {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 1000;
    overflow: hidden;
    border: 1px solid #ddd;
}

/* Chat Header */
.chat-header {
    background: #007BFF;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-weight: bold;
}

.chat-header button {
    background: transparent;
    color: white;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

/* Chat Content */
.chat-content {
    padding: 15px;
    font-size: 14px;
    height: 200px;
    overflow-y: auto;
    background: #f9f9f9;
}

/* Chat Input */
.chat-input {
    display: flex;
    padding: 10px;
    background: white;
    border-top: 1px solid #ddd;
}

.chat-input input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

.chat-input button {
    margin-left: 5px;
    background: #007BFF;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
}

.chat-input button:hover {
    background: #0056b3;
}


/*Testimonials*/

/* Testimonial Section */
.testimonial-video-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: transparent;
}

/* Video Container */
.video-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap; /* Responsive */
    justify-content: center;
}

/* Video Thumbnail */
.video-thumbnail {
    position: relative;
    width: 300px; /* Fixed width */
    height: 180px; /* Fixed height */
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000; /* Ensures uniformity */
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures all images fit properly */
    border-radius: 10px;
    display: block;
}

/* Play Button Overlay */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    border: 3px solid white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: white;
    color: black;
}

/* Testimonial Title */
.testimonial-title {
    margin-top: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    text-align: center;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Modal Content */
.modal-content {
    position: relative;
    width: 90%;
    max-width: 600px;
    text-align: center;
}

.modal-content video {
    width: 100%;
    border-radius: 10px;
}

/* Close Button */
.close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 600px) {
    .video-container {
        flex-direction: column;
        align-items: center;
    }
    .video-thumbnail {
        width: 100%;
        max-width: 300px;
    }
}
 


/* Footer Styles */
.site-footer {
    background: #111;
    color: #fff;
    padding: 40px 0;
    font-size: 14px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.footer-logo img {
    width: 150px;
}

.footer-links, .footer-contact, .footer-social {
    flex: 1;
    min-width: 200px;
    margin: 20px 0;
}

.footer-links h4, .footer-contact h4, .footer-social h4 {
    font-size: 16px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin: 5px 0;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #fff;
}

.footer-contact p {
    margin: 5px 0;
}

.footer-contact i, .footer-social a {
    color: #ccc;
    margin-right: 8px;
}

.footer-social a {
    font-size: 18px;
    margin-right: 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    padding: 15px;
    background: #000;
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 20px;
    }
}

