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

body {
    background-image: url("../Assest/bg.jpg");
    background-size: contain;
    color: black;
    overflow-x: hidden;
    font-family: "Orbitron", sans-serif;
    font-style: normal;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background-color: transparent;
    transition: background 0.3s;
}

header.scrolled {
    /* background-color: rgba(0, 0, 0, 0.8); */
}

.menu-toggle {
    width: 15%;
    font-size: 30px;
    cursor: pointer;
    color: #eb5b25;
    z-index: 1001;
    /* right: 0px; */
}

.logo img {
    height: 100px;
}

.header-btn {
    background-color: #eb5b25;
    color: white;
    padding: 8px;
    border: none;
    position: relative;
    /* display: none; */
    /* z-index: 1000; */
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 24px;
}

.header-btn:hover {
    background: white;
    color: black;
}

.mobile-menu {
    position: fixed;
    text-align: center;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: #111;
    z-index: 999;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    padding-top: 0px;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-logo {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #333;
}

.mobile-menu-logo img {
    height: 120px;
}

.mobile-menu-items {
    padding: 20px;
    flex-grow: 1;
    overflow-y: auto;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 25px;
}

.mobile-menu a {
    color: #ebd8b4;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    display: block;
    padding: 5px 0;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: #eb5b25;
}

.mobile-menu i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}


/* Responsive */
@media (max-width: 768px) {
    .header-btn {
        font-size: 10px;
    }

    .logo img {
        height: 40px;
    }
}

/* header close */

/* .main-bg {
    background-image: url("Assest/bg.jpg");
    background-size: contain;
    color: black;
} */
.video-hero {
    position: relative;
    height: 77vh;
    width: 100vw;
    overflow: hidden;
}

.video-hero iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    border: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 20px;
    z-index: 10;
}

.typing-text {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
    min-height: 80px;
    color: white;
}

.hero-btn {
    background-color: #eb5b25;
    color: white;
    border: none;
    text-transform: uppercase;
    text-align: center;
    padding: 12px;
    border-radius: 5px;
    font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-btn:hover {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .typing-text {
        font-size: 1.8rem;
    }

    .logo img {
        height: 32px;
    }
}

@media (max-width: 480px) {
    .typing-text {
        font-size: 2rem;
        font-weight: bold;
        min-height: 60px;
        text-align: center;
    }

    .hero-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .mobile-menu {
        width: 85%;
    }
}

/* timing */

.timing-boxes {
    background-image: url('Assest/timing-bg.avif');
    background-repeat: no-repeat;
    /* width: 82%; */
    background-size: cover;
}

.info-boxes {

    display: flex;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
    justify-content: center;
    padding: 15px 0;
    gap: 20px;
}

.box {
    background-color: #121212;
    border-radius: 10px;
    padding: 10px;
    flex: 1 1 300px;
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.icon {
    font-size: 50px;
    color: #fbe5c4;
    width: 68px;
    text-align: center;
    flex-shrink: 0;
}

.content {
    flex: 1;
}

.content h3 {
    margin: 0 0 5px;
    color: #ff4a00;
    font-size: 24px;
}

.content p {
    color: white;
    font-size: 12px;
}

.content span {
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.arrow {
    font-size: 20px;
    color: #ff4a00;
}

@media (max-width: 768px) {
    .info-boxes {
        flex-direction: column;
        align-items: center;
    }

    .content h3 {
        font-size: 1.3rem;
    }

    .box {
        flex: 1 1 100px;
        width: 100%;
    }

    .content p {
        font-size: 12px;
    }

    .content span {
        color: white;
        font-size: 12px;
        font-weight: bold;
    }
}

/* activities */

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-top: 30px;
    margin-bottom: 30px;
}

/* BOOK NOW Ribbon */
.ribbon {
    position: absolute;
    top: 20px;
    left: -60px;
    transform: rotate(-45deg);
    background-color: #f16226;
    color: white;
    width: 200px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px 0;
    margin: 10px;
    z-index: 3;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.activities-section {
    /* background-image: url("Assest/bg.jpg");
    background-size: contain;
    color: black; */
}

.activities-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}


.activity-link {
    text-decoration: none;
    color: inherit;
    display: block;
    flex: 1 1 300px;
    max-width: 400px;
}


.activity-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.activity-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
	opacity:.5;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.4s ease;
}

.activity-box:hover .activity-image {
    transform: scale(1.2);
}

.activity-content {
    position: relative;
    z-index: 2;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    color: #fff;
    transition: transform 0.4s ease;
}

.activity-box:hover .activity-content {
    transform: scale(0.8);
}

.activity-content h3 {
    margin-bottom: 10px;
    font-size: 2rem;
    color: #EBD8B4;
}

.activity-content p {

    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1em;
    text-transform: uppercase;
}

.activity-content button {
    background: #f16226;
    color: #fff;
    padding: 12px 24px;
    border: none;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}

.activity-content button:hover {
    background: #c94914;
}

/* Responsive */
@media (max-width: 768px) {
    .activity-content h3 {
        font-size: 1.5rem;
    }

    .activity-content p {
        font-size: 1.1rem;
    }

    .activity-content button {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .activity-box {
        height: 400px;
    }

    .ribbon {
        font-size: 12px;
        width: 150px;
        left: -50px;
    }
}

/* overlay modal */
.location-modal-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.location-modal {
    background: #000000;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 90%;
    width: 400px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.location-modal h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #f16226;
}

.location-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.location-option {
    padding: 12px 24px;
    background-color: #ffb347;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.location-option:hover {
    background-color: #ffa733;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

@media (max-width: 480px) {
    .location-modal {
        width: 90%;
        padding: 20px;
    }

    .location-buttons {
        flex-direction: column;
    }

    .location-option {
        width: 100%;
        text-align: center;
    }
}

/* overlay modal */

/* testomonial */

.testimonial-container {
    max-width: 90%;
    margin: 0 auto;
    /* padding: 20px; */
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial {
    min-width: 100%;
    padding: 30px;
    box-sizing: border-box;
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.quote-icon {
    font-size: 80px;
    line-height: 0.7;
    color: #493926;
    margin-right: 10px;
    margin-top: -5px;
}

.author-name {
    margin: 0;
    font-size: 2rem;
    color: #493926;
    line-height: 1.2;
}

.testimonial-text {
    font-size: 1.5rem;
    line-height: 1.3;
    color: #493926;
    font-family: 'Rajdhani';
    margin: 0;
    padding-left: 10px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 0px;
    padding-bottom: 12px;
}

.slider-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #493926;
    transform: scale(1.2);
}

/* Animation Classes */
.slide-left {
    animation: slideLeft 0.5s ease;
}

.slide-right {
    animation: slideRight 0.5s ease;
}

@keyframes slideLeft {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideRight {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial {
        padding: 20px;
    }

    .quote-icon {
        font-size: 40px;
        margin-top: -3px;
    }

    .author-name {
        font-size: 2.5rem;
    }

    .testimonial-text {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .testimonial {
        /* padding: 15px; */
    }

    .quote-icon {
        font-size: 35px;
        margin-right: 8px;
    }
}

/* our offer */
/* Group Offers Section Styles */
.group-offers-section {
    padding: 20px 0;
}

.group-offers-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-top: 30px;
    margin-bottom: 30px;
    color: #333;
}

/* Ribbon Styling */
.offer-ribbon {
    position: absolute;
    top: 20px;
    left: -60px;
    transform: rotate(-45deg);
    background-color: #c10044;
    color: white;
    width: 200px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px 0;
    margin: 10px;
    z-index: 3;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

/* Container Styling */
.group-offers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;

}

/* Card Styling */
.group-offer-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    transition: transform 0.3s ease;
}

.group-offer-link:hover {
    transform: translateY(-5px);
}

.group-offer-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 400px;
    display: grid;
    align-items: end;
    background: #000;
    padding: 15px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

}

.group-offer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.4s ease;
    opacity: 0.5;

}

.group-offer-card:hover .group-offer-image {
    transform: scale(1.1);
}

.group-offer-details {
    position: relative;
    z-index: 2;
    padding: 20px;
    text-align: center;
    color: #fff;
    transition: all 0.4s ease;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%); */
}

.group-offer-card:hover .group-offer-details {
    transform: scale(0.95);
}

.group-offer-title {
    margin-bottom: 15px;
    font-size: 1.8rem;
    color: #EBD8B4;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.group-offer-button {
    background: #f16226;
    color: #fff;
    padding: 12px 24px;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
    display: inline-block;
    min-width: 160px;
}

.group-offer-button:hover {
    background: #c94914;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .group-offers-container {
        grid-template-columns: repeat(2, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .group-offers-heading {
        font-size: 2rem;
    }

    .group-offer-title {
        font-size: 1.5rem;
    }

    .group-offer-button {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .offer-ribbon {
        font-size: 1rem;
        width: 150px;
        left: -50px;
    }
}

@media (max-width: 600px) {
    .group-offers-container {
        grid-template-columns: 1fr;
    }

    .group-offer-card {
        height: 350px;
    }

    .group-offer-details {
        padding: 15px;
    }
}

/* Footer Styles */
.footer {
    background-color: #222;
    color: #fff;
    margin-top: 50px;
    padding: 30px 0 0px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

/* Logo Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-logo {
    width: 200px;
    /* margin-bottom: 20px; */
}

.footer-description {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 16px;
    font-family: 'Rajdhani';
}

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

.social-links a {
    background-color: #eb5b25;
    color: #ffffff;
    font-size: 24px;
    border-radius: 5px;
    width: 50px;
    height: 50px;
    text-align: center;
    padding: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #fff;
    background: #000;
    transform: translateY (-3px);
}

/* Links Sections */
.footer-section h3 {
    color: #ebd8b4;
    font-size: 24px;
    padding-bottom: 10px;
    position: relative;
    font-weight: 600;
}

/* .footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #ff6b6b;
} */

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

.footer-links li {
    margin-bottom: 8px;
    font-family: 'Rajdhani';
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-links a:hover {
    color: #eb5b25;
    padding-left: 5px;
}

.footer-links li:not(a) {
    color: #ffffff;
    font-size: 16px;
}

/* Contact Info */
.contact-info {
    color: #bbb;
    padding: 8px;
}

.contact-info i {
    font-size: 20px;
}


.contact-info span {
    margin-bottom: 10px;
    font-size: 18px;
    font-family: 'Rajdhani';
}

/* Copyright */
/* Copyright */
.copyright {
    background-color: #eb5a25;
    height: 32px;
    display: flex;
    font-family: 'Rajdhani';
    justify-content: space-between;
    text-align: center;
    border-top: 1px solid #444;
    color: white;
    padding: 3px;
    font-size: 18px;
	position: static;
}

.copyright a {
    color: #ff6b6b;
    margin-top: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.copyright a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-container {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 0 0px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        text-align: left;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a:hover {
        padding-left: 0;
        color: #ff6b6b;
    }
}

/* FLOT ICON */

.float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 12px;
    left: 16px;
    background-color: #eb5a25;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    /* box-shadow: 2px 2px 3px #999; */
    z-index: 100;
}

.float1 {
    position: fixed;
    bottom: 34px;
    left: 96px;
    background-color: #222222;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    /* box-shadow: 2px 2px 3px #999; */
    z-index: 100;
    text-decoration: none;
    font-family: 'Orbitron';
    font-size: 1rem;
    line-height: 1.4em;
}

 /* By default, hide the element */
    .mobile-only-call {
        display: none;
    }

    /* Show on mobile only (max-width: 768px for tablets and smaller) */
    @media (max-width: 768px) {
        .mobile-only-call{
            display: block;
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }
    }
  
	
.my-float {
    margin-top: 16px;
}



.btn {
    display: inline-block;
   
    background-color: #ff5722;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn:hover {
    background-color: #e64a19;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.btn-primary {
    color: #000;
    background-color:#f16226;
    border-color: #f16226;
}





/* custom location with map */

.custom-location-wrapper {
    width: 100%;
    padding: 50px 30px;
    color: #fff;
    text-align: center;
    position: relative;
}

.custom-location-wrapper h2 {
    font-size: 2.5rem;
    color: #eb5b25;
    margin-bottom: 40px;
    display: inline-block;
    border-bottom: 3px solid #eb5b25;
    padding-bottom: 8px;
}

.custom-location-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    text-align: left;
}

.custom-map-box {
    flex: 1 1 65%;
    min-width: 300px;
    border: 3px solid #eb5b25;
    padding: 5px;
    /*height: 100%;*/
}

.custom-map-box iframe {
    width: 100%;
    height: 100%;
    border: none;
    min-height: 400px;
}

.custom-contact-box {
    flex: 1 1 30%;
    min-width: 280px;
    background-color: #000;
    padding: 25px;
    border: 1px solid #eb5b25;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.custom-contact-item {
    border: 1px solid #eb5b25;
    padding: 15px;
    transition: all 0.3s ease;
    background-color: #000;
}

.custom-contact-item strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fff;
    transition: color 0.3s ease;
}

.custom-contact-item span {
    color: #ccc;
    transition: color 0.3s ease;
    display: inline-block;
}

.custom-contact-item:hover {
    background-color: #eb5b25;
}

.custom-contact-item:hover strong,
.custom-contact-item:hover span {
    color: #000;
}

.custom-send-button {
    background-color: #eb5b25;
    color: #000;
    text-align: center;
    padding: 15px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px #eb5b25;
    transition: box-shadow 0.3s ease;
}

.custom-send-button:hover {
    box-shadow: 0 0 20px #eb5b25, 0 0 30px #eb5b25;
}

@media (max-width: 768px) {
    .custom-location-wrapper {
        padding: 30px 20px;
    }

    .custom-location-wrapper h2 {
        font-size: 2rem;
    }

    .custom-location-section {
        flex-direction: column;
    }

    .custom-map-box iframe {
        height: 500px;
    }
}
