/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 30px;
    background: linear-gradient(135deg, #4e3629, #a67c00);

    color: #fff;
    font-family: Arial, sans-serif;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
    transition: background 0.3s;
}

.navbar:hover {
    background: linear-gradient(135deg, #6b4b2a, #e4c164);
}

.navbar .logo {
    font-size: 1.8em;
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style-type: none;
}

.nav-links li {
    margin-left: 25px;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 1em;
    padding: 10px 15px;
    border-radius: 8px;
    transition: background 0.3s, transform 0.3s;
}

.nav-links a:hover {
    background: #e4c164;
    color: #5a3e1b;
    transform: scale(1.1);
}

/* Remove Bullet Points */
.nav-links ul {
    list-style-type: none; /* Remove bullets from dropdown */
    padding: 0;
    margin: 0;
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, rgba(90, 62, 27, 0.9), rgba(212, 175, 55, 0.9));
    color: #fff;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    min-width: 250px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
    z-index: 999;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0); /* Bring to original position on hover */
}

/* Dropdown Menu Items */
.dropdown-menu li {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.3s, transform 0.3s;
}

/* Remove the last border */
.dropdown-menu li:last-child {
    border-bottom: none;
}

/* Links inside dropdown */
.dropdown-menu li a {
    color: #fff;
    display: block;
    text-decoration: none;
    font-size: 1.1em;
    padding: 10px 15px;
    border-radius: 8px; /* Add rounded corners to the items */
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

/* Hover effect for dropdown items */
.dropdown-menu li a:hover {
    background-color: #cdaa7d;
    color: #5a3e1b;
    transform: scale(1.05); /* Slight zoom effect */
}

/* Advanced Animation for Dropdown */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply animation to dropdown menu */
.dropdown-menu {
    animation: slideDown 0.3s ease forwards;
}

/* Adding a subtle glassmorphism effect */
.dropdown-menu {
    backdrop-filter: blur(10px); /* Applies the blur effect */
    background: rgba(0, 0, 0, 0.2); /* Semi-transparent background for glass effect */
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
}
/* Slider Section */
.slider {
    margin-top: 5px; /* Space for fixed navbar */
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    background-color: #000000;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.6s ease-in-out;
    width: 300%; /* Adjust according to number of videos */
}

/* Individual Video Container for Overlay Text */
.slider-video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Video Styling */
.slider-video {
    width: 100vw;      /* Full width of the viewport */
    height: 100vh;     /* Full height of the viewport */
    object-fit: cover; /* Ensures the video covers the entire frame */
}

/* Text Overlay */
.slider-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5em;
    font-weight: bold;
    color: #f9f4e0;
    background: linear-gradient(45deg, #c89e65, #f4d19a);
    background-clip: text;
    -webkit-background-clip: text;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4);
    text-align: center;
    z-index: 5;
}
/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 30px;
    z-index: 10;
}

.slider-controls button {
    background: rgba(0, 0, 0, 0.1);
    border: none;
    color: #fff;
    font-size: 2.5em;
    cursor: pointer;
    padding: 5px 15px;
    border-radius: 50%;
    transition: background 0.3s, transform 0.3s;
}

.slider-controls button:hover {
    background: rgba(30, 30, 30, 0.2);
    transform: scale(1.1);
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-indicators .indicator {
    width: 10px;
    height: 10px;
    background: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-indicators .indicator.active {
    background: #fff;
}

/* Add an animation effect to slide transitions */
@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Packages Section */
.packages-section {
    padding: 80px 30px;
    background-color: #f9f4e0;
    text-align: center;
    position: relative;
}

/* Section Heading */
.packages-section h2 {
    font-size: 3em;
    color: #333;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    letter-spacing: 2px;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.packages-section h2::after {
    content: "";
    display: block;
    width: 120px;
    height: 4px;
    background-color: #85e7ff;
    margin: 20px auto;
    border-radius: 5px;
}

/* Cards Container */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
    margin-top: 20px;
}

/* Card Styling */
.card {
    position: relative;
    padding: 25px;
    background: rgba(255, 255, 255, 0.2); /* Semi-transparent white background */
    color: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 250px;
    text-align: left;
    background-size: cover; /* Ensure the image covers the entire card */
    background-position: center; /* Center the background image */
    overflow: hidden;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
    backdrop-filter: blur(8px); /* Apply the blur for glassmorphism */
}

.card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay to enhance readability */
    z-index: 1;
}

/* Card Titles */
.card h3 {
    position: relative;
    z-index: 2;
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

/* Card Descriptions */
.card p {
    position: relative;
    z-index: 2;
    font-size: 1.1em;
    margin-bottom: 25px;
    line-height: 1.6;
    font-weight: 400;
}

/* Card Button */
.card .btn {
    position: relative;
    z-index: 2;
    background-color: #ffe100c4;
    color: #333;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
    width: fit-content;
    margin-top: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card .btn:hover {
    background-color: #615200;
    color: #222;
    transform: scale(1.05);
}

/* Uneven Card Sizes */
.card.large {
    grid-row: span 2;
    grid-column: span 2;
    height: 320px;
    width: 600px;
}

.card.medium {
    grid-column: span 1;
    grid-row: span 1;
    height: 270px;
}

.card.small {
    grid-row: span 1;
    grid-column: span 1;
    height: 230px;
}

/* Hover Effects */
.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .card.large {
        grid-column: span 1;
        grid-row: span 1;
        height: 280px;
    }

    .card.medium, .card.small {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .card.large, .card.medium, .card.small {
        height: auto;
    }

    .cards-container {
        grid-template-columns: 1fr 1fr; /* Two cards per row */
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 60px 20px; /* Reduced padding for a smaller section */
    background: linear-gradient(135deg, #004594, #b6feec); /* Gradient background */
    text-align: center;
    color: white;
    font-family: 'Arial', sans-serif;
    position: relative;
    overflow: hidden;
    margin-bottom: 5px; /* Added margin-bottom to separate from the next section */
}

/* Heading Style */
.why-choose-us h2 {
    color: rgb(255, 255, 255);
    font-size: 3em; /* Reduced font size */
    margin-bottom: 40px; /* Reduced margin */
    font-weight: bold;
    letter-spacing: 4px; /* Reduced letter spacing */
    text-transform: uppercase;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.why-choose-us h2::after {
    content: "";
    display: block;
    width: 120px;
    height: 4px;
    background-color: #85e7ff; /* This is the yellow color */
    margin: 20px auto;
    border-radius: 5px;
}

/* Reason Container - Grid Layout */
.reasons-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Adjusted column size */
    gap: 30px; /* Reduced gap between items */
    justify-items: center;
    position: relative;
    z-index: 1;
}

/* Individual Reason Box with Advanced Styling */
.reason {
    background: rgba(255, 255, 255, 0.1); /* Light opacity for background */
    padding: 40px 30px; /* Reduced padding */
    border-radius: 15px; /* Slightly smaller border radius */
    backdrop-filter: blur(8px); /* Glassmorphism effect */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1); /* Slightly smaller shadow */
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.3s ease, background 0.4s ease, border-color 0.3s ease;
    border: 2px solid transparent; /* Initial border */
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(52, 152, 219, 0.2)); /* Subtle gradient */
}

.reason:hover {
    transform: translateY(-8px); /* Smaller hover effect */
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
    background: rgba(52, 152, 219, 0.15); /* Hover background change */
    border: 2px solid #3498db; /* Border color on hover */
}

/* Icon Styling */
.reason i {
    font-size: 3em; /* Reduced icon size */
    margin-bottom: 15px; /* Reduced margin */
    color: #3498db;
    transition: transform 0.3s ease, color 0.3s ease;
}

.reason:hover i {
    color: #0037ff; /* Icon color change on hover */
    transform: scale(1.1); /* Slightly reduced scaling effect */
}

/* Heading Styling within Reason Box */
.reason h3 {
    font-size: 1.8em; /* Reduced font size */
    font-weight: 700;
    margin-bottom: 12px; /* Reduced margin */
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.reason:hover h3 {
    color: #3478ff; /* Heading color change on hover */
}

/* Paragraph Text inside Reason Box */
.reason p {
    font-size: 1em; /* Reduced font size */
    color: #f1f1f1;
    line-height: 1.6; /* Slightly reduced line height */
    font-weight: 400;
    margin-bottom: 20px; /* Reduced margin */
}

/* Advanced Border on Hover for the Reason Box */
.reason::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.2), rgba(41, 128, 185, 0.3));
    z-index: -1;
    border-radius: 15px; /* Smaller radius for borders */
    transform: scale(0.95);
    transition: transform 0.4s ease;
}

.reason:hover::before {
    transform: scale(1);
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .reason {
        padding: 30px 25px; /* Adjust padding for smaller screens */
    }
}

@media (max-width: 768px) {
    .reason {
        padding: 20px 15px; /* Even smaller padding */
    }
    .why-choose-us h2 {
        font-size: 2.5em; /* Smaller heading */
    }
}

/* Client Logos Section */
.client-logos {
    padding: 60px 0;
    background: linear-gradient(135deg, #f3ecff, #e1e8ff);
    text-align: center;
}

.client-logos h2 {
    font-size: 2.5em;
    color: black;
    margin-bottom: 40px;
    position: relative;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.client-logos h2::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: #85e7ff;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Logo Card Container */
.logo-container {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    justify-content: center;
    padding: 20px;
}

/* Logo Card Styling */
.logo-card {
    width: 140px;
    height: 150px;
    perspective: 1200px;
}

.logo-card-inner {
    position: relative;
    width: 170%;
    height: 160%;
    transition: transform 0.8s cubic-bezier(0.6, 0.2, 0.2, 1);
    transform-style: preserve-3d;
    border-radius: 0;
}

.logo-card:hover .logo-card-inner {
    transform: rotateY(180deg);
}

/* Front of the Card */
.logo-card-front, .logo-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 40%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.logo-card-front {
    background: linear-gradient(135deg, #ffaa00, #ffb347);

    border: 4px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.5s ease-in-out;
}

.logo-card-front img {
    width: 65%;
    height: 65%;
    border-radius: 50%;
    transition: transform 0.6s ease;
}

.logo-card:hover .logo-card-front img {
    transform: scale(1.2);
}

/* Back of the Card */
.logo-card-back {
    background: linear-gradient(135deg, #ffaa00, #ffb347);
    color: #f3ecff;
    font-size: 0.9em;
    padding: 15px;
    text-align: center;
    transform: rotateY(180deg);
    border: 4px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    line-height: 1.4;
}

/* Hover Effects for Smooth Transition */
.logo-card:hover .logo-card-back,
.logo-card:hover .logo-card-front {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}



/* Contact Us Section */
.contact-us {
    background: linear-gradient(135deg,  #796a40, #4e3629); /* Sunset Orange to Dark Gray */
    padding: 50px 20px;
    text-align: center;
    color: #fff;
    font-family: 'Arial', sans-serif;
    margin-top: 0; /* Remove any margin or padding to avoid gap between sections */
}

.contact-us h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.contact-us p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.contact-btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2em;
    color: #fff;
    background: linear-gradient(135deg, #4c3700, #ff6a00); /* Gradient button */
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.contact-btn:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
    background: linear-gradient(135deg, #6a2c00, #f0ab00); /* Reverse gradient on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Footer Section Styling */
.footer {
    background: linear-gradient(135deg,  #4e3629, #796a40); /* Gradient blue background */
    color: #fff;
    padding: 50px 20px;
    font-family: 'Arial', sans-serif;
    text-align: center;
    margin-top: 5px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left, .footer-middle, .footer-right {
    flex: 1;
    padding: 20px;
    margin: 10px;
    text-align: left;
}

.footer-left h3 {
    font-size: 1.8em;
    font-weight: bold;
}

.footer-left p {
    font-size: 1.1em;
    color: #ddd;
}

.footer-middle h4, .footer-right h4 {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.footer-middle ul {
    list-style: none;
    padding: 0;
}

.footer-middle li {
    margin: 8px 0;
}

.footer-middle a {
    text-decoration: none;
    color: #fff;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.footer-middle a:hover {
    color: #ffd700;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    font-size: 1.6em;
    color: #fff;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #ffd700;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 1em;
    color: #ddd;
}

.footer-bottom p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    .footer-left, .footer-middle, .footer-right {
        text-align: center;
        padding: 10px;
    }
    .social-icons {
        justify-content: center;
    }
}

.welcome-message {
    text-align: center;
    margin-top: 10px;  /* Adds space between navbar and the moving text */
    margin-bottom: 5px;
    padding: 20px 0;
    background-color: #f0f8ff;  /* Light background color */
    border-radius: 5px;
}

marquee {
    font-size: 18px;  /* Set font size */
    color: #90c6ff;   /* Set text color */
    font-weight: bold; /* Make the text bold */
    background-color: transparent; /* Remove background for the marquee */
    padding: 10px; /* Add padding */
}

