:root {
    --primary-color: #065e2a;
    --secondary-color: #5ea031;
    --accent-color: #8bc34a;
    --text-dark: #1f2937;
    --text-light: #f3f4f6;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo span {
    color: var(--accent-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-contact {
    font-weight: 700;
    color: var(--primary-color);
    background: #e0e7ff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.nav-contact:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    margin-top: 0;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 61, 145, 0.4), rgba(0, 0, 0, 0.7));
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--text-light);
    max-width: 900px;
    animation: fadeIn 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-taglines {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    display: inline-block;
}

.hero-taglines p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.hero-taglines p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--accent-color);
}

.primary-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    background-color: var(--accent-color);
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
    background-color: white;
}

.stats-section {
    background-color: white;
    padding: 4rem 2rem;
    margin-top: -50px;
    position: relative;
    z-index: 20;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-bottom: 4px solid var(--secondary-color);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.services-section {
    padding: 3rem 2rem;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-header p {
    color: #6b7280;
    font-size: 1.1rem;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, white, #f0f7ff);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    transition: var(--transition);
}

.service-card:hover i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.about-section {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.about-features {
    list-style: none;
}

.about-features li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-dark);
}

.about-features i {
    color: #10b981;
    font-size: 1.2rem;
}

.about-image {
    flex: 1;
    height: 400px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    width: 80%;
    color: white;
}

.glass-panel h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.glass-panel p {
    font-size: 1.1rem;
    color: #e0e7ff;
}

.contact-section {
    padding: 3rem 2rem;
    background-color: white;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info>p {
    color: #6b7280;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
}

.info-item:hover {
    transform: translateX(10px);
    background: #f0f7ff;
    box-shadow: var(--shadow-sm);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    background: white;
    padding: 1rem;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.info-item h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #4b5563;
}

.contact-map {
    flex: 1;
    min-height: 400px;
    background: #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-placeholder {
    text-align: center;
    color: #9ca3af;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

footer {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-brand h2 {
    font-size: 2rem;
    font-weight: 800;
}

.footer-brand span {
    color: var(--accent-color);
}

.footer-brand p {
    color: #cbd5e1;
    font-size: 1rem;
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .about-container,
    .contact-container {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
        min-height: 300px;
    }

    .contact-map {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 2rem;
        box-shadow: var(--shadow-md);
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-contact {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .stats-section {
        margin-top: 0;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-card h3 {
        font-size: 1.8rem;
    }

    .stat-icon {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .service-card i {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.logo-img {
    height: 85px;
    width: auto;
    transform: scale(1.1);
}
/* Mobile section padding fix */
@media (max-width: 768px) {
    .stats-section {
        padding: 2rem 1rem;
    }
    .services-section, .about-section, .contact-section {
        padding: 2.5rem 1rem;
    }
}
/* Mobile hero text and button fix */
@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        height: auto;
        min-height: 100vh;
    }
    .hero-content {
        margin-top: 2rem;
    }
    .primary-btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }
}
/* Alternating Backgrounds */
.stats-section { background: #ffffff !important; }
.services-section { background: #f3f4f6 !important; }
.about-section { background: #f3f4f6 !important; }
.contact-section { background: #ffffff !important; }
/* Contact Grid Mobile Fix */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
    }
    .contact-form-side, .contact-info-side {
        padding: 2rem !important;
    }
}
@media (max-width: 768px) {
    .nav-contact { display: none !important; }
}
/* Nav Contact Link Hover */
.nav-contact-link { color: inherit; } .nav-contact-link:hover { opacity: 0.8; }
/* Contact Mobile Fixes */
@media (max-width: 768px) {
    .contact-wrapper { padding: 2rem 1rem !important; }
    .contact-form-side, .contact-info-side { padding: 1.5rem !important; }
    .new-query-form input, .new-query-form textarea { box-sizing: border-box; }
}


@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr !important; }
    .contact-map-full { height: 300px !important; }
}

/* Mobile Hero Banner Fixes */
@media (max-width: 768px) {
    .hero { min-height: 60vh !important; padding-top: 80px !important; padding-bottom: 2rem !important; }
    .hero-title { font-size: 2rem !important; margin-bottom: 1rem !important; line-height: 1.2 !important; }
    .hero-subtitle { font-size: 1.1rem !important; margin-bottom: 1.5rem !important; }
    .hero-taglines { padding: 1rem !important; margin-bottom: 1.5rem !important; }
    .hero-taglines p { font-size: 0.95rem !important; }
}

/* Packages & Offers Section */
.packages-section {
    padding: 3rem 2rem;
    background-color: #ffffff !important;
}
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.package-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}
.package-card.featured {
    border-color: var(--secondary-color);
    border-width: 2px;
    transform: scale(1.02);
}
.package-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}
.package-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 30px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
    text-transform: uppercase;
}
.package-icon {
    width: 70px;
    height: 70px;
    background: #e0e7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.package-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}
.package-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}
.package-desc {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}
.package-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}
.package-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1;
}
.package-features li {
    margin-bottom: 0.8rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
}
.package-features li i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}
.brochure-container {
    text-align: center;
    margin-top: 4rem;
}
.brochure-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1e3a8a, var(--primary-color));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.brochure-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    color: white;
}
@media (max-width: 768px) {
    .packages-section {
        padding: 3rem 1rem;
    }
    .package-card.featured {
        transform: none;
    }
    .package-card.featured:hover {
        transform: translateY(-5px);
    }
}

/* Review Section */
.review-section { padding: 0 2rem 4rem 2rem;
    background-color: #ffffff;
    text-align: center;
}
.review-container {
    max-width: 600px;
    margin: 0 auto;
}
.review-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}
.review-link:hover .review-img {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
/* Reduce unwanted space above review section */
.contact-section { padding-bottom: 2rem !important; }
.contact-wrapper { padding-bottom: 0 !important; }
/* New Stats Banner Override */
.stats-container.new-stats-banner {
    background: var(--primary-color);
    border-radius: 16px;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 40px rgba(6, 94, 42, 0.3);
    margin-top: -60px;
    z-index: 20;
    position: relative;
}
.new-stats-banner .stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}
.new-stats-banner .stat-icon-wrapper i {
    font-size: 2.2rem;
    color: white;
}
.new-stats-banner .stat-text h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 0 4px 0;
    color: white;
    display: flex;
    align-items: center;
}
.new-stats-banner .stat-text p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: none;
    letter-spacing: normal;
}
.new-stats-banner .stat-divider {
    width: 1px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 992px) {
    .stats-container.new-stats-banner {
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
        padding: 2rem;
    }
    .new-stats-banner .stat-divider {
        display: none;
    }
    .new-stats-banner .stat-item {
        flex: 1 1 40%;
        justify-content: center;
    }
}
@media (max-width: 600px) { .stats-container.new-stats-banner { flex-wrap: nowrap; padding: 1rem 0.5rem; gap: 0.25rem; justify-content: space-between; } .new-stats-banner .stat-item { flex: 1 1 25%; justify-content: flex-start; padding: 0; white-space: normal; flex-direction: column; text-align: center; gap: 4px; } .new-stats-banner .stat-icon-wrapper i { font-size: 1.2rem; } .new-stats-banner .stat-icon-wrapper i[style*="padding: 8px"] { padding: 4px !important; border-width: 1px !important; } .new-stats-banner .stat-text h3 { justify-content: center; font-size: 0.85rem; } .new-stats-banner .stat-text h3 .stars { font-size: 0.5rem !important; margin-left: 2px !important; } .new-stats-banner .stat-text p { font-size: 0.65rem; line-height: 1.2; } .new-stats-banner .stat-divider { display: block; flex: 0 0 1px; height: 30px; margin-top: 10px; background-color: rgba(255,255,255,0.2); } }
/* Highlight Contact Query Container */
.contact-form-side {
    background: #f8fdfa !important; /* Very soft green tint */
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    margin: 1.5rem;
    padding: 2.5rem !important;
    box-shadow: 0 15px 35px rgba(6, 94, 42, 0.08);
    position: relative;
}
@media (max-width: 768px) {
    .contact-form-side {
        margin: 1rem !important;
        padding: 1.5rem !important;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 2rem 10%;
    background: #ffffff;
    overflow: hidden;
}
.gallery-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}
.gallery-marquee::before,
.gallery-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}
.gallery-marquee::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}
.gallery-marquee::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}
.gallery-track {
    display: flex;
    width: max-content;
    animation: scrollGallery 25s linear infinite;
}
.gallery-track:hover {
    animation-play-state: paused;
}
.gallery-track img {
    height: 400px;
    width: auto;
    object-fit: contain;background-color: white;
    border-radius: 15px;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-track img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
    .gallery-track img {
        height: 250px;
        width: auto;
        margin-right: 15px;
    }
}




.selectable-brochure {
    cursor: pointer;
    box-sizing: border-box;
}
.selected-brochure {
    box-shadow: 0 0 0 4px #065e2a !important;
    transform: scale(1.02) !important;
}

/* Mobile Navbar Size Reduction */
@media (max-width: 768px) {
    .logo-img {
        height: 50px !important;
        transform: scale(1) !important;
    }
    .nav-container {
        padding: 0.5rem 1rem !important;
    }
    .navbar {
        padding: 0 !important;
    }
}
