* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* .featurette-divider {
    visibility: hidden;
} */

.hero {
    position: relative;
    height: 96vh;
    /* Full viewport height */
    background-image: url('images/mainImage2.jpg');
    /* Your background image */
    background-size: cover;
    background-position: center;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Dark transparent overlay */
    color: rgb(255, 255, 255);
    /* White text for readability */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    color: white;
}

.logo-carousel {
    width: 150px;
    height: auto;
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

.carousel-item {
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

@media (max-width: 768px) {
    .logo-carousel {
        width: 100px;
    }
}

nav {
    background: transparent;
    transition: background-color 0.3s;
    padding: 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

.navbar-nav {
    color: rgb(252, 231, 231);
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #f39c12;
}

.nav-link ul li a:hover {
    color: #00bcd4;
}

nav.scrolled {
    background: #1a237e;
}

.dropdown-menu.scrolled {
    background: #1a237e;
}

nav.scrolled ul li a {
    color: white;
}

.navbar-toggler {
    border-color: white;
    /* Change the outline color to white */
}

.navbar-toggler:focus,
.navbar-toggler:active {
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    /* Optional: Add a white glow effect when clicked */
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background-color: #FFD700;
    /* Gold color */
    color: white;
    border: none;
    padding: 12px 18px;
    font-size: 23px;
    border-radius: 50%;
    width: 50px;
    height: 57px;
    /* 10% border-radius */
    cursor: pointer;
    display: none;
    /* Initially hidden */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    /* Smooth transition effect */
    z-index: 1000;
}

/* Hover effect: transform and change background */
.back-to-top:hover {
    background-color: #FFC107;
    /* Lighter gold */
    transform: scale(1.1) rotate(10deg);
    /* Slight rotation and size increase */
    border-radius: 20%;
    /* Change shape slightly on hover */
}
.whatsapp-button {
    position: fixed;
    bottom: 30px; /* above the Back to Top button */
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 24px; /* slightly smaller for sharper look */
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-button i {
    line-height: 1;
    font-size: 26px;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: scale(1.1) rotate(10deg);
}




.gallery {
    margin: 10px 20px 20px 20px;
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

#gallery {
    margin: 13px;
    display: flex;
    justify-content: center;
}


.about-us {
    padding: 50px 20px;
    background: #f4f1ea;
    text-align: left;
}



.about-us h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.about-us p {
    max-width: 900px;
    margin: auto;
    font-size: 16px;
    color: #555;
}

.about-us ul {
    max-width: 900px;
    margin: auto;
    text-align: left;
    padding-left: 0;
    list-style: none;
}

.about-us ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}


.about-us ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.card:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}

.col {
    margin-bottom: 8px;
}

.contact-us {
    padding: 50px 20px;
    text-align: center;

}

.contact-us h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.contact-us form {

    max-width: 500px;
    margin: auto;
}

.contact-us input,
.contact-us textarea,
.contact-us button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-us button {
    background: #333;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
}

.contact-us button:hover {
    background: #FFD700;
}

.col button {
    background-color: #FFD700;
    color: white;
}

.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* footer {
    text-align: center;
    padding: 20px;
    background: #5a3d3d;
    color: white;
} */
/* Footer Styling */
footer {
    background-color: #5a3d3d;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fffdd0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f39c12;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    color: white;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #f39c12;
}

/* Newsletter Form - Full Width Button */
.footer-section form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.footer-section input {
    width: 100%;
    /* Full width */
    max-width: 300px;
    /* Limit max width */
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
}

.footer-section button {
    width: 100%;
    /* Match input width */
    max-width: 300px;
    /* Limit max width */
    background-color: #f39c12;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    /* transition: background 0.3s ease; */
}

.footer-section button:hover {
    background-color: #e67e22;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid #ffffff;
    font-size: 14px;
}


/* Default styles for h1 and p */
.hero h1 {
    font-size: 3rem;
    /* Default size for larger screens */
}

.hero p {
    font-size: 1.5rem;
    /* Default size for larger screens */
}

/* Styles for mobile screens (max-width: 768px) */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
        /* Smaller size for mobile screens */
    }

    .hero p {
        font-size: 1rem;
        /* Smaller size for mobile screens */
    }
}

@media (max-width: 991px) {

    /* Bootstrap's breakpoint for collapsing navbar */
    .navbar-toggler {
        border-color: white;
        /* Ensure the button outline is white */
    }

    .navbar-toggler-icon {
        filter: brightness(0) invert(1);
        /* Make the icon white */
    }

    .navbar-collapse.show {
        background-color: #333;
        /* Change navbar background when menu is expanded */
        padding: 10px;
        /* Add some padding to make it look better */
    }
}



@media (max-width: 768px) {
    .about-us {
        padding: 30px 15px;
    }

    .about-us h2 {
        font-size: 2rem;
    }

    .about-us p,
    .about-us ul {
        font-size: 1rem;
    }
}

@media (max-width: 376px) {
    .about-us {
        margin: 10px auto;
        padding: 20px;
    }

    .card {
        margin: 10px;
    }
}







.scroll-container {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 80%;
    height: 300px;
    /* Fixed height */
    margin: auto;
}

.box1 {
    display: flex;
    gap: 1;
    animation: scrollInfinite 10s linear infinite;
}

.box1 img {
    flex-shrink: 0;
    width: 90%;
    /* Default width */
    height: 100%;
    /* Ensures images fit the container */
    /* border-radius: 10px; */
    margin: 2px;
    object-fit: cover;
    /* Ensures images maintain aspect ratio */
}

/* Make images full width on smaller screens */
@media (max-width: 768px) {
    .scroll-container {
        width: 100%;
    }
}

/* Smooth Infinite Scrolling Effect */
@keyframes scrollInfinite {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.scroll-left,
.scroll-right {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.scroll-left {
    left: 0;
}

.scroll-right {
    right: 0;
}

/* Main dropdown opens on hover */
.nav-item.dropdown:hover>.dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Disable clicking on "Packages" */
.nav-item.dropdown>.btn {
    pointer-events: none;
}

/* Ensure all dropdowns appear below instead of to the side */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    /* Ensures it stays aligned */
    top: 100%;
    /* Makes it appear below */
    margin-top: 5px;
    /* Small gap for better visibility */
}

/* Show dropdown when parent is clicked */
.dropdown-submenu.show .dropdown-menu {
    display: block;
}



/* .about-us-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.about-us-logos img {
    width: 100px;
    height: auto;
    object-fit: contain;
} */

/* About Us Logos - Responsive */
.about-us-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    /* Allows wrapping for smaller screens */
    gap: 20px;
    margin-top: 30px;
}

.about-us-logos img {
    width: 120px;
    /* Default size */
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.about-us-logos img:hover {
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-us-logos img {
        width: 100px;
        /* Slightly smaller for tablets */
    }
}

@media (max-width: 480px) {
    .about-us-logos {
        gap: 10px;
        /* Reduce spacing */
    }

    .about-us-logos img {
        width: 80px;
        /* Smaller logos for mobile */
    }
}

.video {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
}

.video video {
    width: 200px;
    height: 400px;
    max-width: 100%;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-item {
    flex: 0 0 calc(100% / 3);
    padding: 0 4px;
    box-sizing: border-box;
}

.slider-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    /* border-radius: 8px; */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-nav button {
    background: rgba(255, 255, 255, 0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-nav button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #4f46e5;
    transform: scale(1.2);
}

.galleryDiv {
    margin: 2.5rem;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .slider-item {
        flex: 0 0 100%;
    }
    .galleryDiv {
        margin:0px;
    }
}

.glowing-header {
    background: linear-gradient(45deg, #0d6efd, #6610f2, #6f42c1, #0d6efd);
    background-size: 300% 300%;
    color: white;
    animation: glowAnimation 6s ease infinite;
    box-shadow: 0 0 15px rgba(13, 110, 253, 0.6);
    text-align: center;
}

@keyframes glowAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.glowing-header:hover {
    color: white !important;
    background: linear-gradient(45deg, #6f42c1, #0d6efd, #0d6efd, #6610f2);
}

.btn-warning {
    color: white !important;
}

/* On larger screens, make diamond card bigger */
@media (min-width: 992px) {
    .diamond-card {
        transform: scale(1.05);
        z-index: 1;
    }
}

/* On smaller screens, reset scale */
@media (max-width: 991px) {
    .diamond-card {
        order: 3;
        transform: none;
    }
}
