* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

input,
button,
select,
textarea {
    font-family: 'Poppins', sans-serif;
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
    background: #f5f7fa; /* Original theme restored */
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(to right, #ff3333, #ffcc00);
    z-index: 9999;
    transition: width 0.1s ease-out;
}

/* Back to Top Button */
.back-to-top {
    position: fixed !important;
    bottom: 25px !important;
    right: 25px !important;
    top: auto !important; /* Ensure it's not pinned to top */
    width: 48px;
    height: 48px;
    background: #0f172a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #1e73be;
    transform: scale(1.1);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0 !important;
    width: 100%;
    padding: 16px 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95) !important; /* Premium black theme always */
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    transition: all 0.4s ease;
}

.navbar .container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
}

/* Logo */
.logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo-box img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    text-align: center;
}

.logo-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.rs-red {
    color: #ff3333;
}

.logo-text p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
}

/* Desktop Navigation Layout */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-grow: 1;
    /* Allow it to fill space between logo and auth */
    justify-content: flex-end;
    /* Push auth buttons to right */
}

/* Navigation Links - Centered */
.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 32px;
    align-items: center;
}

/* ===== MOBILE NAVIGATION ===== */
.hamburger {
    display: none;
    cursor: pointer;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px;
    transition: all 0.3s ease;
    z-index: 1005;
}

.hamburger i {
    font-size: 20px;
    color: white;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.section-padding {
    padding: clamp(60px, 8vw, 100px) 0;
}

section[data-cms-section-container] {
    opacity: 0;
    transform: translateY(30px);
    transition: none; /* Handled by GSAP */
}

/* Mobile Menu - Matches your navbar theme */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 100px 20px 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 9999;
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    overflow-y: auto; /* Enable scroll */
    -webkit-overflow-scrolling: touch; /* Smooth scroll for iOS */
}

/* Custom scrollbar for mobile menu */
.mobile-menu::-webkit-scrollbar {
    width: 4px;
}
.mobile-menu::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    padding: 14px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(20px);
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu a i {
    width: 20px;
    text-align: center;
    font-size: 14px;
}

.mobile-menu a:not(.mobile-contact) {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a:not(.mobile-contact):hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

/* Auth links specific styling */
.mobile-menu a[href="login.php"],
.mobile-menu a[href="signup.php"] {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 5px;
}

.mobile-menu a[href="signup.php"] {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Contact button in mobile menu */
.mobile-menu .mobile-contact {
    margin-top: 20px;
    padding: 14px 24px;
    border: 2px solid white;
    border-radius: 8px;
    background: transparent;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.mobile-menu .mobile-contact:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Underline effect - matches your nav links */
.mobile-menu a::after {
    content: "";
    position: absolute;
    left: 20px;
    bottom: 8px;
    width: 0%;
    height: 2px;
    background: white;
    border-radius: 20px;
    transition: width 0.35s ease;
}

.mobile-menu a:hover::after {
    width: calc(100% - 40px);
}

.mobile-menu a.active::after {
    width: calc(100% - 40px);
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

/* Staggered animation */
.mobile-menu.show a {
    animation: slideInRight 0.4s forwards cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.show a:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile-menu.show a:nth-child(2) {
    animation-delay: 0.15s;
}

.mobile-menu.show a:nth-child(3) {
    animation-delay: 0.2s;
}

.mobile-menu.show a:nth-child(4) {
    animation-delay: 0.25s;
}

.mobile-menu.show a:nth-child(5) {
    animation-delay: 0.3s;
}

.mobile-menu.show a:nth-child(6) {
    animation-delay: 0.35s;
}

.mobile-menu.show a:nth-child(7) {
    animation-delay: 0.4s;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 🔥 SAFETY FALLBACK — ensure links are visible */
.mobile-menu.show a {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile Contact Button - Matches your hero-btn exactly */
.mobile-contact {
    margin-top: 30px;
    padding: 12px 30px;
    border: 2px solid white;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

/* Hover style - matches hero-btn */
.mobile-contact:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);
}

/* Shine effect - matches hero-btn */
.mobile-contact::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    transform: skewX(-20deg);
    transition: 0.6s ease;
}

.mobile-contact:hover::after {
    left: 130%;
}

.mobile-menu.show .mobile-contact {
    animation: slideUp 0.5s 0.35s forwards cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu.show {
    right: 0;
}

/* Close button - matches theme */
.close-menu {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1002;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.close-menu i {
    font-size: 20px;
    color: white;
}

.close-menu:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.close-menu:active {
    transform: rotate(90deg) scale(0.95);
}

/* Overlay - matches your theme */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 999;
}

.menu-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

/* Scrolled state for mobile menu */
.navbar.scrolled .hamburger {
    background: rgba(255, 255, 255, 0.15);
}

/* Navigation Links */
.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

/* Underline Effect */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Nav Dropdown Desktop */
.nav-item-dropdown {
    position: relative;
    padding: 10px 0;
}

.dropdown-content {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.95);
    min-width: 220px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    padding: 12px 0;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    margin-top: 5px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-content {
    display: block !important;
    opacity: 1;
    pointer-events: all;
    animation: fadeInDown 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown-content a {
    color: white !important;
    padding: 12px 24px !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

.dropdown-content a::after {
    display: none !important;
}

.dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    padding-left: 28px !important;
    color: white !important;
}

.dropdown-content i {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translate(-50%, -10px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

/* Mobile */
@media (max-width: 900px) {
    .navbar {
        padding: 10px 0 !important;
        background: rgba(0, 0, 0, 0.98) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        top: 0 !important;
    }

    /* Hide desktop navigation */
    .desktop-nav {
        display: none !important;
    }

    /* Show hamburger */
    .hamburger {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    /* Standardized Hero adjustments for mobile */
    .hero-content {
        width: 90% !important;
        padding: 0 !important;
    }

    .hero-content h1 {
        font-size: clamp(1.4rem, 6vw, 2.0rem) !important;
        line-height: 1.1 !important;
        letter-spacing: -0.5px !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 10px !important;
    }
    
    .hero-content p {
        font-size: 0.9rem !important;
        margin-top: 12px !important;
        opacity: 0.9;
        line-height: 1.4 !important;
    }

    .hero-cards {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin-top: 25px !important;
        padding: 0 !important;
    }

    .hero-card {
        padding: 15px 20px !important;
        flex-direction: row !important;
        align-items: center !important;
        text-align: left !important;
        gap: 15px !important;
        min-height: auto !important;
    }

    .hero-card .icon {
        margin: 0 !important;
        font-size: 20px !important;
        width: 40px !important;
        height: 40px !important;
    }

    .hero-card h3 {
        font-size: 15px !important;
        margin: 0 !important;
        font-weight: 700 !important;
    }

    .hero-card p {
        display: block !important;
        font-size: 12px !important;
        opacity: 0.8 !important;
        margin: 4px 0 0 0 !important;
        line-height: 1.2 !important;
    }
}

/* Responsive Navbar - UPDATED */
@media (max-width: 900px) {
    nav.nav-links {
        display: none;
    }

    .contact-btn.desktop-only {
        display: none;
    }

    .hamburger {
        display: block;
    }

    /* Standardized Hero adjustments for mobile */
    .hero-content h1 {
        font-size: clamp(2rem, 8vw, 3.5rem) !important;
        line-height: 1.1 !important;
    }
    
    .hero-content p {
        font-size: 1rem !important;
        margin-top: 15px !important;
    }

    .hero-cards {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        margin-top: 40px !important;
        padding: 0 10px;
    }

    .hero-card {
        padding: 15px 20px !important;
        flex-direction: row !important;
        align-items: center !important;
        text-align: left !important;
        gap: 15px !important;
    }

    .hero-card .icon {
        margin: 0 !important;
        font-size: 24px !important;
    }

    .hero-card h3 {
        font-size: 16px !important;
        margin: 0 !important;
    }

    .hero-card p {
        display: none; /* Hide descriptions to save vertical space on mobile */
    }

    /* Section Headings */
    h2 {
        font-size: 1.8rem !important;
    }
}

/* General Mobile Refinements */
@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0 !important;
    }

    .container, .about-section, .services, .why-choose-us, .certifications, .packages-section, .reforestation-preview, .photoshoot-preview, .gallery-section, .blog-section, .testimonials {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* Carousel Dot Hygiene */
    .owl-dots {
        margin-top: 20px !important;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        max-width: 100%;
        gap: 5px;
    }

    /* Hide dots if there are too many to prevent clutter */
    .owl-dots .owl-dot:nth-child(n+6) {
        display: none !important;
    }

    /* Services Grid */
    .services-cards {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    /* About Section */
    .about-section {
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center !important;
        margin: 50px auto !important;
    }

    .about-text h2 {
        font-size: 1.8rem !important;
    }

    .about-stats {
        flex-direction: row !important;
        justify-content: center !important;
        gap: 30px !important;
    }

    .stat-item h3 {
        font-size: 24px !important;
    }

    /* Footer Spacing */
    .f-contact-info {
        gap: 10px !important;
    }

    .f-contact-info li {
        margin-bottom: 8px !important;
    }

    .f-contact-info a {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        font-size: 14px !important;
    }

    .f-social {
        margin-top: 30px !important;
    }
}

nav a {
    margin: 0 18px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.25s ease;
    position: relative;
    padding-bottom: 4px;
}

/* Underline (hidden by default) */
nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background: white;
    border-radius: 20px;
    transition: width 0.35s ease;
}

/* Hover underline */
nav a:hover::after {
    width: 100%;
}

/* Active page underline */
nav a.active::after {
    width: 100%;
}

/* MATCH HERO BUTTON EFFECT */
.contact-btn {
    padding: 10px 28px;
    border: 2px solid white;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

/* Hover style (same as hero-btn) */
.contact-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.contact-btn:hover::after {
    left: 130%;
}

/* LOGIN + SIGNUP BUTTON STYLES */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Shine Effect for All Buttons */
.nav-btn::after,
.contact-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: left 0.7s ease;
}

.nav-btn:hover::after,
.contact-btn:hover::after {
    left: 100%;
}

/* Button Hover Effects */
.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Login button - transparent with border */
.login-btn {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.4);
}

/* Signup button - solid with gradient */
.signup-btn {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Hover effects */
.login-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.8);
}

.signup-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
}

/* ===== HERO RESET ===== */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.nav-btn {
    padding: 10px 24px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    color: white;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.nav-btn:hover::after {
    left: 130%;
}

/* Differentiate Signup Button Slightly */
.signup-btn {
    border-color: #ffcc00;
}

.signup-btn:hover {
    box-shadow: 0 8px 20px rgba(255, 204, 0, 0.35);
}

/* Tablet */
@media (max-width: 1100px) {
    .desktop-nav {
        gap: 30px;
    }

    .nav-links {
        gap: 24px;
    }

    .nav-btn,
    .contact-btn {
        padding: 9px 20px;
        font-size: 12px;
    }

    .auth-buttons {
        gap: 10px;
    }
}

/* ===== LOGIN/SIGNUP BUTTONS STYLING ===== */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Button Icons */
.nav-btn i,
.contact-btn i {
    font-size: 12px;
}

/* Static background only */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/BG.jpg');
    /* Temporary static */
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-bg-list {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
}

/* Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.45));
    z-index: 2;
}

/* Content */
.hero-content {
    position: absolute;
    z-index: 3;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -48%);
    text-align: center;
    color: white;
    width: 100%;
    max-width: 950px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 55px;
    font-weight: 800;
    margin-bottom: 10px;
}

.hero-content p {
    margin: 15px 0 35px;
    font-size: 17px;
    margin-bottom: 20px;
}

.hero-btn {
    padding: 12px 30px;
    border: 2px solid white;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
}

/* Button glow on hover */
.hero-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px) scale(1.05);
}

/* Arrow animation */
.hero-btn .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.hero-btn:hover .arrow {
    transform: translateX(6px);
}

.hero-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    transform: skewX(-20deg);
    transition: 0.6s ease;
}

.hero-btn:hover::after {
    left: 130%;
}

.hero-btn:hover {
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 12px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: 0.3s ease;
}

.slider-dots .dot.active {
    background: white;
    transform: scale(1.3);
}

/* CARD CONTAINER */
.hero-cards {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}


/* INDIVIDUAL CARD */
.hero-card {
    width: 260px;
    padding: 28px 25px;
    text-align: center;
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);

    text-decoration: none;
    color: white;
    transition: 0.35s ease;
    cursor: pointer;
}

/* Hover Animation */
.hero-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

/* Icon */
.hero-card .icon {
    font-size: 40px;
    margin-bottom: 12px;
    opacity: 0.9;
}

/* Title */
.hero-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

/* Description */
.hero-card p {
    font-size: 14px;
    opacity: 0.85;
}

@media (max-width: 900px) {

    /* Increase hero height so cards fit nicely */
    .hero {
        height: 125vh;
    }

    /* Pull content DOWN */
    .hero-content {
        top: 52%;
        transform: translate(-50%, -50%);
        max-width: 750px;
    }

    .hero-content h1 {
        font-size: 45px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .hero-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    /* Cards layout for tablet */
    .hero-cards {
        gap: 20px;
        margin-top: 15px;
    }

    .hero-card {
        width: 46%;
        padding: 26px 20px;
    }
}

@media (max-width: 600px) {

    .hero {
        height: 155vh;
        /* extra room */
    }

    .hero-content {
        top: 40%;
        transform: translate(-50%, -38%);
    }

    .hero-content h1 {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    /* Cards stack nicely 1 per row */
    .hero-cards {
        flex-direction: column;
        gap: 22px;
        align-items: center;
        margin-top: 10px;
        /* reduce spacing */
    }

    .hero-card {
        width: 92%;
        padding: 20px 18px;
    }
}



/* SERVICES SECTION */
.services {
    padding: 120px 0;
    width: 90%;
    margin: auto;
    text-align: center;
}

.services h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1d1d1f;
    margin-bottom: 12px;
}

.services-subtitle {
    font-size: 15px;
    color: #5f6368;
    max-width: 650px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
}

/* Cards container */
.services-cards {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

/* Individual card */
.service-card {
    width: 300px;
    padding: 35px;
    background: white;
    border-radius: 18px;
    text-align: left;
    box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.06);
    transition: 0.35s ease;
    position: relative;
}

/* Hover lift */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 25px 60px rgba(0, 0, 0, 0.10);
}

/* Icon box */
.icon-box {
    width: 60px;
    height: 60px;
    background: #eef5ff;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 22px;
}

.icon-box img {
    width: 32px;
}

/* Card text */
.service-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1d1d1f;
}

.service-card p {
    font-size: 14px;
    color: #5f6368;
    line-height: 1.6;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #eef5ff;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 22px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.05);
}

.icon-box svg {
    width: 32px;
    height: 32px;
}

/* ABOUT SECTION */
.about-section {
    width: 85%;
    max-width: 1200px;
    margin: 120px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.about-text .small-title {
    color: #4A61DD;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.3;
    color: #1d1d1d;
    margin-bottom: 20px;
}

.about-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 450px;
}

/* Stats */
.about-stats {
    display: flex;
    gap: 60px;
    margin-bottom: 0;
}

.about-stats h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1d1d1d;
}

.about-stats p {
    color: #777;
    margin-top: 5px;
}



/* IMAGES */
.about-images {
    position: relative;
    width: 550px;
}

.img-main {
    position: relative;
    right: -3rem;
    width: 500px;
    height: 380px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.img-small {
    position: absolute;
    bottom: -20px;
    left: -12rem;
    width: 480px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ===========================
   MOBILE RESPONSIVE ABOUT SECTION
   =========================== */
@media (max-width: 900px) {
    .about-section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        margin: 80px auto;
        padding: 0 20px;
    }

    /* IMAGES CONTAINER - Top position */
    .about-images {
        position: relative;
        width: 100%;
        height: 350px;
        margin-bottom: 0;
        order: 1;
    }

    .img-main {
        position: absolute;
        top: 0;
        right: 0;
        width: 70%;
        height: 80%;
        right: 5%;
        left: auto;
        border-radius: 15px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

    .img-small {
        position: absolute;
        bottom: 0;
        left: 5%;
        width: 60%;
        height: 70%;
        border-radius: 12px;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
        border: 4px solid white;
    }

    /* TEXT CONTENT - Middle position */
    .about-text {
        order: 2;
        width: 100%;
        margin-top: 20px;
    }

    .about-text .small-title {
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .about-text h2 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 20px;
        background: none;
        -webkit-text-fill-color: #1d1d1d;
        color: #1d1d1d;
    }

    .about-text p {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.7;
        color: #555;
        margin-bottom: 30px;
    }

    /* BOTTOM CONTAINER - Stats & Button */
    .about-bottom-container {
        order: 3;
        display: flex;
        flex-direction: column;
        gap: 30px;
        width: 100%;
        margin-top: 20px;
    }

    /* STATS */
    .about-stats {
        order: 1;
        display: flex;
        justify-content: center;
        gap: 50px;
        margin: 20px 0;
        padding: 20px 0;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
    }

    .stat-item h3 {
        font-size: 36px;
        margin-bottom: 5px;
    }

    .stat-item h3::after {
        font-size: 20px;
        right: -12px;
    }

    .stat-item p {
        font-size: 14px;
        margin-top: 5px;
        color: #777;
    }


}

/* EXTRA SMALL DEVICES (Phones below 600px) */
@media (max-width: 600px) {
    .about-section {
        margin: 60px auto;
        gap: 30px;
    }

    /* IMAGES */
    .about-images {
        height: 280px;
    }

    .img-main {
        width: 75%;
        height: 75%;
        right: 2%;
    }

    .img-small {
        width: 65%;
        height: 65%;
        left: 2%;
        border-width: 3px;
    }

    /* TEXT */
    .about-text h2 {
        font-size: 24px;
    }

    .about-text p {
        font-size: 14px;
        padding: 0 10px;
    }

    /* STATS */
    .about-stats {
        flex-direction: column;
        gap: 25px;
        padding: 15px 0;
    }

    .stat-item h3 {
        font-size: 32px;
    }


}

/* SMALL PHONES (below 400px) */
@media (max-width: 400px) {
    .about-images {
        height: 220px;
    }

    .img-main {
        width: 80%;
        height: 70%;
    }

    .img-small {
        width: 70%;
        height: 60%;
    }

    .about-text h2 {
        font-size: 22px;
    }

    .about-text p {
        font-size: 13px;
        line-height: 1.6;
    }

    .stat-item h3 {
        font-size: 28px;
    }

    .stat-item p {
        font-size: 12px;
    }
}


/* WHY CHOOSE US SECTION */
.why-choose-us {
    width: 85%;
    margin: 100px auto;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-choose-us .subtext {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.7;
    margin-bottom: 25px;
}

.why-choose-us .desc {
    width: 60%;
    margin: 0 auto 50px;
    font-size: 15px;
    opacity: 0.8;
}


/* MAIN CONTAINER */
.wc-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}


/* EACH ROW */
.wc-row {
    display: flex;
    gap: 25px;
    width: 100%;
}


/* SQUARE IMAGE */
.wc-square {
    width: 32%;
    aspect-ratio: 1 / 1;
    /* PERFECT SQUARE */
    overflow: hidden;
    border-radius: 15px;
}


/* RECTANGLE IMAGE */
.wc-rect {
    width: 68%;
    aspect-ratio: 2 / 1;
    /* WIDE RECTANGLE */
    overflow: hidden;
    border-radius: 15px;
}


/* IMAGE STYLE */
.wc-row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* BOTTOM TEXT SECTION */
.wc-bottom {
    margin-top: 40px;
}

.wc-bottom p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 20px;
}


/* BUTTON */
.wc-btn {
    padding: 10px 30px;
    border: 2px solid black;
    border-radius: 25px;
    color: black;
    text-decoration: none;
    transition: 0.3s ease;
}

.wc-btn:hover {
    background: black;
    color: white;
    transform: translateY(-2px);
}

/* === CERTIFICATIONS SECTION === */
.certifications {
    width: 85%;
    margin: 120px auto;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1e3a8a;
}

.section-header p {
    margin-top: 12px;
    font-size: 16px;
    color: #64748b;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* === CERTIFICATIONS SECTION — MATCHING THE WHOLE SITE THEME === */
.certifications {
    width: 85%;
    margin: 120px auto;
}

.certifications .section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1d1d1d;
}

.certifications .section-header p {
    margin-top: 12px;
    font-size: 15px;
    color: #5f6368;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* GRID */
.cert-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
}

/* CARD */
.cert-item {
    background: white;
    padding: 30px;
    border-radius: 18px;
    border: 1px solid #e5e5e5;
    transition: 0.35s ease;
    cursor: pointer;
    box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.06);
}

/* Hover lift */
.cert-item:hover {
    transform: translateY(-6px);
    box-shadow: 0px 25px 60px rgba(0, 0, 0, 0.10);
}

/* ICON */
.cert-visual {
    margin-bottom: 20px;
}

.cert-icon {
    font-size: 40px;
    color: #1d1d1d;
    transition: 0.35s ease;
}

.cert-item:hover .cert-icon {
    transform: scale(1.1);
    color: #111;
}

/* TEXT */
.cert-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1d1d1d;
    margin-bottom: 10px;
}

.cert-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* BUTTON (MATCH OTHER SECTIONS) */
.btn-download {
    padding: 10px 30px;
    border: 2px solid black;
    border-radius: 25px;
    color: black;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
}

.btn-download:hover {
    background: black;
    color: white;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .cert-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- PACKAGES (carousel) ---------- */
.packages-section {
    width: 85%;
    margin: 120px auto;
    max-width: 1400px;
    color: #111;
}

.packages-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.packages-title h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 8px;
}

.packages-sub {
    color: #6b7280;
    font-size: 15px;
}

/* arrows */
.packages-controls {
    display: flex;
    gap: 12px;
    align-items: center;
}

.pkg-arrow {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 0;
    box-shadow: 0 18px 40px rgba(21, 24, 27, 0.08);
    display: inline-grid;
    place-items: center;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
}

.pkg-arrow span {
    font-size: 18px;
    color: #1f2937;
}

.pkg-arrow:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(21, 24, 27, 0.12);
}

/* viewport / track */
.packages-viewport {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.packages-track {
    display: flex;
    gap: 28px;
    transition: transform 0.6s cubic-bezier(.2, .9, .2, 1);
    will-change: transform;
    padding-bottom: 18px;
}

/* card layout - we show 3 cards in desktop */
.pkg-card {
    min-width: calc((100% - 56px) / 3);
    /* 3 cards visible; gap accounted by 2*28px ~ 56px */
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: transform .35s ease, box-shadow .35s ease;
}

.pkg-card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 15; /* Covers everything */
}

/* hover subtle lift */
.pkg-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.10);
}

/* media background */
.pkg-media {
    width: 100%;
    height: 420px;
    background-size: cover;
    background-position: center;
    filter: saturate(1);
    transition: filter .45s ease, transform .45s ease;
}

/* label pill (always visible) */
.pkg-label {
    position: absolute;
    left: 20px;
    top: 20px;
    background: rgba(255, 255, 255, 0.85);
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 600;
    color: #1f2937;
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    z-index: 4;
}

/* overlay (hidden by default) */
.pkg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 10%, rgba(0, 0, 0, 0.52) 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 36px 28px;
    transition: opacity .35s ease;
    z-index: 3;
}

/* description content inside overlay */
.pkg-desc {
    color: white;
    text-align: center;
    max-width: 88%;
}

.pkg-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 18px;
}

/* CTA inside overlay - reuses theme style */
.pkg-btn {
    padding: 10px 20px;
    border-radius: 28px;
    border: 2px solid rgba(255, 255, 255, 0.85);
    color: white;
    text-decoration: none;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.06);
    transition: transform .25s ease, background .25s ease;
}

.pkg-btn:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.14);
}

/* Show overlay on hover (applies to whichever card is hovered) */
.pkg-card:hover .pkg-overlay {
    opacity: 1;
}

/* Dim the media slightly on hover for better contrast */
.pkg-card:hover .pkg-media {
    transform: scale(1.02);
    filter: brightness(.62);
}

/* If you want the default (A and C) to show only label — that's already handled: overlay hidden by default */

/* responsive: show 2 cards on medium screens, 1 on small */
@media (max-width: 1024px) {
    .pkg-media {
        height: 380px;
    }

    .pkg-card {
        min-width: calc((100% - 28px) / 2);
    }

    /* 2 visible */
}

@media (max-width: 640px) {
    .packages-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .packages-controls {
        order: 2;
    }

    .pkg-media {
        height: 340px;
    }

    .pkg-card {
        min-width: 100%;
    }

    .packages-track {
        gap: 18px;
    }
}

/* === GALLERY SECTION REPLACED WITH gallery-masonry.css === */

/* TESTIMONIALS SECTION */
.testimonials {
    width: 90%;
    max-width: 1300px;
    margin: 120px auto;
    text-align: center;
    padding-bottom: 80px;
}

.t-head {
    margin-bottom: 50px;
}

.t-sub {
    font-size: 13px;
    letter-spacing: 2px;
    color: #4A61DD;
    margin-bottom: 10px;
}

.testimonials h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1d1d1f;
    margin-bottom: 10px;
}

.t-desc {
    font-size: 15px;
    color: #5f6368;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.t-widget-container {
    margin-top: 40px;
}

/* ============================================================
   PREMIUM STANDALONE FOOTER (WOW DESIGN)
   ============================================================ */
.site-footer {
    background: #0f0f0f !important;
    background: linear-gradient(180deg, #161616 0%, #0a0a0a 100%) !important;
    color: #ffffff;
    padding: 0;
    position: relative;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

/* 1. Animated Waves */
.footer-wave-wrap {
    background: transparent;
    margin-top: -1px;
}

.waves {
    position: relative;
    width: 100%;
    height: 100px;
    min-height: 80px;
    max-height: 120px;
    display: block;
}

.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax > use:nth-child(1) { animation-delay: -2s; animation-duration: 7s; }
.parallax > use:nth-child(2) { animation-delay: -3s; animation-duration: 10s; }
.parallax > use:nth-child(3) { animation-delay: -4s; animation-duration: 13s; }
.parallax > use:nth-child(4) { animation-delay: -5s; animation-duration: 20s; }

@keyframes move-forever {
    0% { transform: translate3d(-90px,0,0); }
    100% { transform: translate3d(85px,0,0); }
}

/* 2. Main Layout */
.footer-inner-wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 20px 0;
    position: relative;
    z-index: 5;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 60px;
}

/* 3. Brand Section */
.footer-brand {
    flex: 1.3;
}

.f-logo-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
}

.f-logo {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.f-brand-text {
    text-align: center;
}

.f-brand-text h3 {
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.5px;
}

.f-brand-text p {
    font-size: 11px;
    color: #e53935;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 600;
    margin-top: 6px;
}

.f-tagline {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14.5px;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 400px;
}

/* 4. Social Icons (Glassmorphism) */
.f-social {
    display: flex;
    gap: 15px;
}

.s-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.s-icon:hover {
    background: #e53935;
    color: white;
    transform: translateY(-10px) rotate(5deg);
    box-shadow: 0 20px 40px rgba(229, 57, 53, 0.45);
    border-color: #e53935;
}

/* 5. Navigation Grid */
.footer-grid {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.f-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    padding-left: 15px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.f-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3.5px;
    height: 18px;
    background: #e53935;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(229, 57, 53, 0.6);
}

.f-links {
    list-style: none;
    padding: 0;
}

.f-links li {
    margin-bottom: 14px;
}

.f-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.f-links a:hover {
    color: #fff;
    transform: translateX(8px);
}

/* 6. Contact Section */
.f-contact-info {
    list-style: none;
    padding: 0;
}

.f-contact-info li {
    margin-bottom: 25px;
}

.c-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.c-item i {
    font-size: 18px;
    color: #e53935;
    margin-top: 4px;
    width: 25px;
    text-align: center;
}

.c-item span, .c-item a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14.5px;
    line-height: 1.6;
    text-decoration: none;
    transition: 0.3s;
}

.c-item a:hover {
    color: #fff;
}

/* 7. Footer Bottom */
.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 35px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 40px;
}

.f-bottom-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.f-bottom-content p {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
}

.f-legal {
    display: flex;
    gap: 30px;
    list-style: none;
}

.f-legal a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.f-legal a:hover {
    color: #fff;
}

/* 9. Payment Icons Section */
.footer-payments {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    justify-content: center;
    padding-top: 35px;
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.payment-icon {
    font-size: 34px;
    opacity: 0.95;
    transition: all 0.4s ease;
    cursor: default;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.08));
}

.payment-icon:hover {
    opacity: 1;
    transform: translateY(-5px);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.2));
}

/* Brightened Brand Colors for Dark Themes */
.payment-icon.visa { color: #4b6fff; }
.payment-icon.mastercard { color: #ff3c3c; }
.payment-icon.amex { color: #00a2ff; }
.payment-icon.discover { color: #ffa033; }
.payment-icon.stripe { color: #8a84ff; }

.payment-divider {
    width: 2px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 10px;
}

.stripe-badge {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.stripe-brand {
    font-size: 28px;
    color: #8a84ff;
    opacity: 1;
    filter: drop-shadow(0 0 5px rgba(138, 132, 255, 0.3));
}

@media (max-width: 600px) {
    .payment-icons { gap: 15px; }
    .payment-icon { font-size: 28px; }
    .stripe-brand { font-size: 22px; }
    .payment-divider { display: none; }
}

/* 8. Responsive Design */
@media (max-width: 1100px) {
    .footer-top {
        flex-direction: column;
        gap: 60px;
        text-align: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .f-logo-wrap { justify-content: center; }
    .f-tagline { margin-left: auto; margin-right: auto; }
    .f-social { justify-content: center; }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
}

@media (max-width: 850px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .f-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .f-title {
        padding-left: 0;
        text-align: center;
    }

    .f-title::before {
        display: none;
    }

    .f-links a {
        justify-content: center;
    }

    .c-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}



/* Mobile Gallery */
@media (max-width: 900px) {
    .gallery-stage {
        grid-template-columns: 1fr;
        min-width: 0;
    }

    .g-l2, .g-l1, .g-r1, .g-r2 {
        display: none;
    }

    .g-center {
        height: 300px;
        transform: none;
    }
}



/* ===== USER MENU ===== */
.user-menu {
    position: relative;
}

/* Button (avatar + name) */
.user-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
    padding: 6px 10px;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.user-name {
    white-space: nowrap;
}

/* ===== DROPDOWN ===== */
.user-dropdown {
    position: absolute;
    right: 0;
    top: 130%;
    width: 210px;
    background: white;
    backdrop-filter: blur(8px);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    display: none;
    overflow: hidden;
    z-index: 100;
}

/* Remove blue link look */
.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: background 0.25s ease;
}

.user-dropdown a:hover {
    background: #f2f2f2;
}

/* Divider */
.dropdown-divider {
    height: 1px;
    background: #e5e5e5;
    margin: 6px 0;
}

/* Logout styling */
.user-dropdown a.logout {
    color: #c0392b;
}

.user-dropdown a.logout:hover {
    background: #fdecea;
}

/* Show dropdown */
.user-dropdown.show {
    display: block;
}

/* ===== TESTIMONIALS SECTION (WALL OF LOVE MASONRY) ===== */
.testimonials {
    padding: 80px 20px;
    background: #f8f9fa; /* slightly off-white for contrast */
    text-align: center;
    overflow: hidden;
}

.t-head {
    margin-bottom: 50px;
}

.t-head h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.t-desc {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* Masonry Grid Layout */
.t-masonry {
    max-width: 1200px;
    margin: 0 auto;
    column-count: 3;
    column-gap: 25px;
    padding: 20px;
}

/* 
 * The items inside .t-masonry need break-inside: avoid;
 * so they don't break across columns.
 */
.t-card {
    break-inside: avoid;
    margin-bottom: 25px; /* Spacing between rows */
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.t-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.t-stars {
    color: #fbbc04;
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.t-review {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 0;
}

.t-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.t-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    background: #1e73be; /* Default fallback color */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
}

.t-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.t-user-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin-bottom: 2px;
}

.t-user-info p {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 0;
}

.t-verified {
    color: #1e73be;
    font-size: 12px;
    font-weight: 500;
}

.t-google-logo {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .t-masonry {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .t-masonry {
        column-count: 1;
        padding: 10px;
    }
}

/* ===== CONTACT PAGE PREMIUM REDESIGN ===== */

/* Contact Hero */
.contact-hero {
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), url('../images/BG-2.jpg');
    background-size: cover;
    background-position: center 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    margin-top: 0;
    /* Navbar is fixed, hero goes under it */
    padding-top: 80px;
    /* Offset for navbar */
}

.contact-hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
    animation: fadeInDown 1s ease;
}

.contact-hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.contact-hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

/* Main Contact Section */
.contact-main {
    padding: 80px 20px;
    background: #fdfdfd;
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 40px auto 0;
    /* Changed from -120px to perfectly sit below the hero banner */
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    position: relative;
    z-index: 5;
}

/* Contact Info Cards (Left Side) */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.c-info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.c-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.c-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1e73be 0%, #0d47a1 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(30, 115, 190, 0.3);
}

.c-info-content h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.c-info-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Contact Form (Right Side) */
.contact-form-wrapper {
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-form-wrapper>p {
    color: #666;
    margin-bottom: 30px;
}

.c-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.c-form-group {
    position: relative;
    margin-bottom: 20px;
}

.c-form-group input,
.c-form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: #f8f9fa;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
    font-family: inherit;
}

.c-form-group textarea {
    height: 160px;
    resize: vertical;
}

.c-form-group input:focus,
.c-form-group textarea:focus {
    outline: none;
    background: #fff;
    border-color: #1e73be;
    box-shadow: 0 0 0 4px rgba(30, 115, 190, 0.1);
}

.c-form-group input::placeholder,
.c-form-group textarea::placeholder {
    color: #aaa;
}

.c-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #1e73be 0%, #0d47a1 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.c-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 115, 190, 0.4);
}

.c-submit-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    transform: skewX(-20deg);
}

.c-submit-btn:hover::after {
    left: 150%;
}

/* Map Section */
.map-section {
    width: 100%;
    height: 450px;
    background: #eee;
    margin-top: 40px;
    position: relative;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%) contrast(1.1);
    /* Slight filter for aesthetic */
}

/* Responsive */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        margin-top: 40px;
        /* Don't overlap hero on mobile */
    }

    .contact-hero {
        height: 40vh;
        min-height: 350px;
    }

    .contact-hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 600px) {
    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .c-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-hero-content h1 {
        font-size: 2.5rem;
    }

    .c-info-card {
        padding: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ============================================================ 
   ABOUT US PAGE STYLES
   ============================================================ */

/* About Hero */
.about-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.about-hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
}

.about-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Section Common Styling */
.section-padding {
    padding: 100px 0;
}

.section-title-box {
    text-align: center;
    margin-bottom: 60px;
    width: 90%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title-box h5 {
    color: #ff3333;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 14px;
}

.section-title-box h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1d1d1d;
    margin-bottom: 20px;
}

.section-title-box p {
    color: #666;
    line-height: 1.8;
}

/* Education Section */
.education-section {
    background: #fff;
}

.school-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

.school-card {
    background: #f9f9f9;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.school-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.school-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #1d1d1d;
    border-bottom: 2px solid #ff3333;
    display: inline-block;
    padding-bottom: 5px;
}

.school-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.school-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 120px;
}

.school-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.school-gallery-item:hover img {
    transform: scale(1.1);
}

/* Photoshoot Section */
.photoshoot-section {
    background: #f5f7fa;
}

.photoshoot-grid {
    column-count: 4;
    column-gap: 20px;
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

.photoshoot-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    cursor: pointer;
}

.photoshoot-item img {
    width: 100%;
    display: block;
    transition: 0.5s ease;
}

.photoshoot-item:hover img {
    transform: scale(1.05);
}

.photoshoot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s ease;
}

.photoshoot-item:hover .photoshoot-overlay {
    opacity: 1;
}

/* Responsive for About Page */
@media (max-width: 1024px) {
    .photoshoot-grid { column-count: 3; }
}

@media (max-width: 768px) {
    .about-hero-content h1 { font-size: 2.5rem; }
    .school-grid { grid-template-columns: 1fr; }
    .photoshoot-grid { column-count: 2; }
}

@media (max-width: 480px) {
    .photoshoot-grid { column-count: 1; }
    .about-hero { height: 50vh; }
    .section-title-box h2 { font-size: 28px; }
}

/* ==========================================================================
   BLOG / TRAVEL TIPS SECTION
   ========================================================================== */
.blog-section {
    padding: 120px 0;
    background: #fff;
    overflow: hidden;
}

.blog-head {
    text-align: center;
    margin-bottom: 60px;
}

.blog-head h5 {
    color: #e53935;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 15px;
}

.blog-head h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1d1d1d;
    line-height: 1.2;
    margin-bottom: 20px;
}

.blog-head p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    width: 85%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Blog Card */
.blog-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    position: relative; /* Make it a relative parent for stretched link */
}

/* Stretched Link to make whole card clickable */
.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 70px rgba(0,0,0,0.12);
    border-color: rgba(0,0,0,0.08);
}

.blog-img-wrap {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.blog-card:hover img {
    transform: scale(1.1);
}

.blog-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 18px;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.blog-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: 13px;
    color: #999;
    font-weight: 500;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-date i {
    color: #e53935;
    font-size: 12px;
}

.blog-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1d1d1d;
    margin-bottom: 15px;
    line-height: 1.5;
    transition: color 0.3s;
}

.blog-content h3 i {
    margin-right: 12px;
    color: #e53935;
    font-size: 0.9em;
}

.blog-card:hover h3 {
    color: #e53935;
}

.blog-content p {
    font-size: 14.5px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-footer {
    margin-top: auto;
    padding-top: 25px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.read-more {
    color: #1d1d1d;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 15px;
    color: #e53935;
}

.read-more i {
    font-size: 12px;
}

/* Blog Footer Buttons */
.blog-more-wrap {
    text-align: center;
    margin-top: 60px;
}

.blog-extra {
    display: none;
}

.blog-show-more-btn {
    padding: 16px 36px;
    background: #e53935;
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 20px rgba(229, 57, 53, 0.2);
}

.blog-show-more-btn:hover {
    background: #c62828;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(229, 57, 53, 0.3);
}

.blog-show-more-btn.active {
    display: none;
}

.blog-explore-btn {
    padding: 16px 36px;
    background: transparent;
    border: 2px solid #e53935;
    border-radius: 50px;
    color: #e53935;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.blog-explore-btn:hover {
    background: #e53935;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(229, 57, 53, 0.2);
}

/* Responsive Blog */
@media (max-width: 1100px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 80px 0;
    }
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    .blog-head h2 {
        font-size: 32px;
    }
}