/* static/css/index.css */
/* ===== Base Styles ===== */
:root {
    --primary: #0e5a5f;
    --secondary: #57C5B6;
    --accent: #FEA82F;
    --light: #f8f9fa;
    --dark: #1a2e35;
    --text: #495057;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
        Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h4 {
    font-family: 'Montserrat', sans-serif;
    color: whitesmoke;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.5px;
}

h1 {
    font-weight: 700;
    letter-spacing: -1px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    color: var(--dark);
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 15px auto 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent);
    color: white;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* ===== Navigation ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(14, 90, 95, 0.7);
    backdrop-filter: blur(10px);
}

nav.scrolled {
    padding: 15px 0;
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 50px;
    width: auto;
    transition: var(--transition);
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: white;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover:after,
.nav-links a.active::after {
    width: 100%;
}

.burger {
    display: none;
    cursor: pointer;
    color: white;
    font-size: 24px;
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(rgba(14, 90, 95, 0.3), rgba(14, 90, 95, 0.3)),
        url('../images/pexels-swastikarora-19743480.jpg') no-repeat center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    height: 100vh;
    min-height: 700px;
}

.hero h1 {
    background: linear-gradient(45deg, #ffffff, #c2f5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--light), transparent);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* .hero h1 {
    font-size: 3.5rem;
    letter-spacing: -1.5px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
} */

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ===== About Section ===== */
.about-section {
    background-color: white;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    color: var(--primary);
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text);
}

.read-more {
    display: inline-block;
    color: var(--accent);
    font-weight: 500;
    margin-top: 15px;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary);
}

.contact-info {
    margin-top: 30px;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-info h4 {
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-item i {
    color: var(--accent);
    width: 30px;
    font-size: 18px;
}

/* ===== Why Choose Us Section ===== */
.why-choose-section {
    background-color: #f5f5f5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--accent);
    transform: rotateY(180deg);
}

.feature-card h3 {
    font-size: 1.4rem;
    letter-spacing: -0.3px;
    margin-bottom: 1rem;
}

/* ===== What We Offer Section ===== */
.offer-section {
    background-color: white;
}

.offer-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.offer-video {
    flex: 1.2;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 500px;
}

.offer-video video {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

.video-controls {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 12px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    transition: opacity 0.3s ease;
}

.control-btn {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background 0.3s ease;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.control-btn.muted i.fa-volume-high {
    display: inline-block;
}

.control-btn.muted i.fa-volume-xmark {
    display: none;
}

.control-btn.unmuted i.fa-volume-high {
    display: none;
}

.control-btn.unmuted i.fa-volume-xmark {
    display: inline-block;
}

.offer-content {
    flex: 1;
}

.offer-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary);
}

.offer-content p {
    margin-bottom: 20px;
    color: var(--text);
}

.tour-plan {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-top: 30px;
}

.tour-plan h4 {
    margin-bottom: 15px;
    color: var(--primary);
}

.tour-plan ul {
    list-style-type: none;
}

.tour-plan li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.tour-plan li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent);
    position: absolute;
    left: 0;
}

/* ===== Featured Services ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transform: translateZ(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    z-index: -1;
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
}

.service-card-content {
    padding: 25px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.service-card p {
    margin-bottom: 15px;
    color: var(--text);
}

/* ===== Gallery Section ===== */
.gallery-section {
    background-color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;

}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 1/1;
    transition: transform 0.4s ease;
    grid-row: span 1;
}




.gallery-item:hover {
    transform: scale(1.05);
    z-index: 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border: 3px solid white;
    border-radius: 5px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--accent);
}

/* ===== Testimonials Carousel ===== */
.testimonials {
    background: linear-gradient(rgba(14, 90, 95, 0.9), rgba(14, 90, 95, 0.9)),
        url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center/cover;
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;

}

.testimonials .section-title {
    color: white;
    margin-bottom: 60px;
}

.testimonial-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonial-slide {
    transform-style: preserve-3d;
    perspective: 1000px;
    display: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    padding: 50px;
    position: relative;
    animation: fade 0.6s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: rotateY(5deg);
    transition: transform 0.6s ease;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-slide p {
    font-family: 'Open Sans', sans-serif;
    font-style: italic;
    font-weight: 500;
    font-size: 1.2rem;
}

.testimonial-slide p:before,
.testimonial-slide p:after {
    content: '"';
    font-size: 60px;
    color: var(--accent);
    opacity: 0.3;
    position: absolute;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-slide p:before {
    top: -20px;
    left: -15px;
}

.testimonial-slide p:after {
    bottom: -40px;
    right: -15px;
}

.testimonial-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.testimonial-author {
    font-weight: 600;
    color: white;
    font-size: 20px;
    display: flex;
    align-items: center;
}

.testimonial-author:before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--accent);
    margin-right: 15px;
}

.testimonial-rating {
    color: var(--accent);
    font-size: 20px;
    letter-spacing: 3px;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    width: calc(100% + 40px);
    left: -20px;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: var(--accent);
    transform: scale(1.1) translateY(-50%);
    box-shadow: 0 8px 25px rgba(254, 168, 47, 0.3);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 10px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-indicator.active {
    background: var(--accent);
    transform: scale(1.2);
}

/* Animation */
@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Footer ===== */
footer {
    background: var(--primary);
    color: white;
    padding: 60px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo span {
    color: var(--accent);
}

.footer-about p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3:after,
.footer-contact h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    opacity: 0.8;
    transition: var(--transition);
    position: relative;
    padding-left: 15px;
}

.footer-links a:before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent);
    padding-left: 20px;
}

.footer-contact-item {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
}

.footer-contact-item i {
    color: var(--accent);
    margin-right: 15px;
    margin-top: 5px;
}

.footer-contact-item div {
    opacity: 0.8;
}

.footer-contact-item a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    opacity: 0.7;
    font-size: 14px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 18px;
    }

    .about-container,
    .offer-container {
        flex-direction: column;
        gap: 30px;
    }

    .about-image,
    .about-content,
    .offer-video,
    .offer-content {
        width: 100%;
    }

    .offer-video {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .burger {
        display: block;
    }

    .hero h1 {
        font-size: 36px;
    }

    .section {
        padding: 60px 0;
    }

    .testimonial-carousel {
        padding: 0 30px;
    }

    .testimonial-slide {
        padding: 30px;
    }

    .testimonial-slide p {
        font-size: 18px;
    }

    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .service-card img {
        height: 300px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offer-video {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .btn {
        padding: 10px 25px;
    }

    .testimonial-carousel {
        padding: 0 15px;
    }

    .testimonial-slide {
        padding: 25px 20px;
    }

    .testimonial-slide p {
        font-size: 16px;
    }

    .testimonial-slide p:before,
    .testimonial-slide p:after {
        font-size: 40px;
    }

    .testimonial-slide p:before {
        top: -10px;
        left: -5px;
    }

    .testimonial-slide p:after {
        bottom: -25px;
        right: -5px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .testimonial-author {
        font-size: 16px;
    }

    .testimonial-rating {
        font-size: 16px;
    }

    .service-card img {
        height: 250px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .offer-video {
        height: 300px;
    }
}

.map-container {
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 50px;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: translateY(-5px);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: var(--transition);
}

/* index.css */
/* Video controls */
.video-controls .fa-pause,
.video-controls .fa-volume-xmark {
    display: none;
}

/* Service card images */
.services-grid .service-card:first-child img {
    object-position: center top;
}

/* Map section */
.map-container iframe {
    border: 0;
}

/* Footer heart icon */
.footer-bottom .fa-heart {
    color: var(--accent);
}

/* WhatsApp float */
.whatsapp-float a {
    color: white;
}


.feature-card,
.service-card,
.gallery-item {
    animation: float 6s ease-in-out infinite;
}

.feature-card:nth-child(2) {
    animation-delay: 0.5s;
}

.feature-card:nth-child(3) {
    animation-delay: 1s;
}

.feature-card:nth-child(4) {
    animation-delay: 1.5s;
}

.feature-card,
.testimonial-slide {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}