/* ================= ROOT VARIABLES ================= */
:root {
    --primary: #0B2E59;
    --orange: #F58220;
    --orange-glow: rgba(245, 130, 32, 0.4);
    --blue-glow: rgba(11, 46, 89, 0.3);
    --bg-light: #f8fafc;
    --white: #ffffff;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f4f7f6;
    color: var(--text-dark);
    overflow-x: hidden;
    position: relative;
}

/* ================= BACKGROUND CANVAS & AMBIENT GLOW ================= */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

.cursor-glow {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--orange-glow) 0%, rgba(255,255,255,0) 70%);
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9998;
    transition: width 0.3s, height 0.3s;
}

.ambient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.25;
}

.orb1 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation: orbFloat1 14s infinite ease-in-out alternate;
}

.orb2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation: orbFloat2 18s infinite ease-in-out alternate;
}

/* ================= NAVIGATION & TOP LEFT LOGO 1 ================= */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 8%;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Top left logo 1 image styling */
.nav-logo-img {
    height: 58px;
    width: auto;
    display: block;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 2px 4px rgba(11, 46, 89, 0.15));
    transition: var(--transition);
}

.nav-logo-img:hover {
    transform: scale(1.05);
}

.hotel-affiliation {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--orange);
    margin-top: -2px;
    letter-spacing: 0.3px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--primary);
    cursor: pointer;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 28px;
}

.nav-link-anim {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-link-anim::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--orange);
    box-shadow: 0 0 8px var(--orange-glow);
    transition: var(--transition);
}

.nav-link-anim:hover::after {
    width: 100%;
}

.nav-link-anim:hover {
    color: var(--orange);
}

.nav-btn {
    background: var(--orange);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    box-shadow: 0 4px 15px var(--orange-glow);
}

.nav-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--blue-glow);
}

/* ================= HERO SECTION ================= */
.hero {
    position: relative;
    min-height: 88vh;
    background: #051428; /* Fallback solid color */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 60px 20px;
    overflow: hidden;
}/* Fullscreen background video styling */
#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Ensure dark overlay sits on top of video but under text */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 46, 89, 0.75), rgba(5, 20, 40, 0.85));
    z-index: 1;
}

.hero-content {
    max-width: 850px;
    z-index: 2;
}

.badge-group {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.badge {
    background: rgba(245, 130, 32, 0.2);
    color: #ffc28d;
    border: 1px solid var(--orange);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 0 15px var(--orange-glow);
}

.badge-hotel {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(45deg, #F58220, #ffd0a3, #F58220);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerText 4s infinite linear;
}

.hero-p {
    font-size: 1.2rem;
    max-width: 750px;
    margin: 0 auto 40px;
    line-height: 1.7;
    color: #e2e8f0;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--orange);
    color: var(--white);
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--orange);
    cursor: pointer;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* ================= SECTION HEADERS ================= */
.sub-heading {
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.3rem;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.3rem;
    color: var(--primary);
}

/* ================= ABOUT SECTION ================= */
.about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 100px 10%;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-list {
    list-style: none;
    margin-bottom: 30px;
}

.perk-item {
    margin-bottom: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: var(--transition);
}

.perk-item:hover {
    transform: translateX(8px);
    color: var(--orange);
}

.perk-item i {
    color: var(--orange);
}

/* ================= COURSES SECTION ================= */
.courses {
    padding: 100px 10%;
    background: var(--bg-light);
    text-align: center;
    position: relative;
    z-index: 2;
}

.course-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.course-card {
    width: 310px;
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    border: 1px solid #e2e8f0;
}

.card-img-holder {
    height: 210px;
    overflow: hidden;
}

.card-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.course-card:hover .card-img-holder img {
    transform: scale(1.1);
}

.course-body {
    padding: 20px 22px 28px;
}

.course-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.course-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ================= GALLERY SECTION ================= */
.gallery {
    padding: 100px 10%;
    background: var(--white);
    text-align: center;
    position: relative;
    z-index: 2;
}

.gallery-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.gallery-item {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.gallery-grid img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    cursor: pointer;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* ================= WHY CHOOSE US ================= */
.why-us {
    padding: 100px 10%;
    background: var(--bg-light);
    text-align: center;
    position: relative;
    z-index: 2;
}

.why-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.why-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #e2e8f0;
}

.card-icon {
    font-size: 42px;
    color: var(--orange);
    margin-bottom: 15px;
    transition: var(--transition);
}

.why-card:hover .card-icon {
    transform: scale(1.15) rotate(5deg);
}

.why-card h4 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.why-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ================= CONTACT SECTION & EMAIL LAUNCHER ================= */
.contact {
    padding: 100px 10%;
    background: var(--white);
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    align-items: stretch;
}

.contact-card {
    background: var(--bg-light);
    padding: 28px 16px;
    border-radius: 18px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.contact-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.contact-card h3 i {
    color: var(--orange);
    margin-right: 8px;
}

.contact-card p {
    width: 100%;
    margin: 0;
}

.contact-card a {
    text-decoration: none;
    color: var(--orange);
    font-weight: 600;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--primary);
}

/* Email Pill Container - Clean Single Line Fit */
.email-direct-link {
    display: inline-block;
    max-width: 100%;
    padding: 6px 10px;
    border-radius: 8px;
    background: rgba(245, 130, 32, 0.08);
    color: var(--orange) !important;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(245, 130, 32, 0.2);
    white-space: nowrap;
}

.email-direct-link:hover {
    background: var(--orange);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--orange-glow);
}

/* Social Media Dark-Blue Pill Buttons */
.social-links {
    margin-top: 60px;
    text-align: center;
}

.social-links h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: var(--primary);
    color: var(--white) !important;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px var(--blue-glow);
}

.social-buttons a i {
    font-size: 1.1rem;
}

.social-buttons a:hover {
    background: var(--orange);
    color: var(--white) !important;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px var(--orange-glow);
}

/* ================= MAP SECTION ================= */
.map-container {
    padding: 0 10% 80px;
    text-align: center;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.map-container h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.map-container iframe {
    width: 100%;
    max-width: 1000px;
    height: 420px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* ================= WHATSAPP FLOATING BUTTON ================= */
.whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 9999;
}

.whatsapp:hover {
    transform: scale(1.15);
}

/* ================= KEYFRAME ANIMATIONS ================= */
@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.float-anim {
    animation: floatAnim 4s infinite ease-in-out;
}

@keyframes shimmerText {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

@keyframes orbFloat1 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 60px); }
}

@keyframes orbFloat2 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-80px, -100px); }
}

@keyframes buttonPulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--orange-glow); }
    50% { box-shadow: 0 0 20px 6px var(--orange-glow); }
}

.glow-pulse {
    animation: buttonPulse 3s infinite;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ================= FOOTER & BOTTOM LEFT LOGO 2 ================= */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 10% 20px;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* Conversion of footer logo 2 to pure white without background */
.footer-logo-img {
    width: 130px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    mix-blend-mode: screen;
}

.footer-info {
    text-align: right;
}

.footer-info h3 {
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.operating-note {
    color: var(--orange) !important;
    font-weight: 600;
    font-size: 0.92rem !important;
    margin-bottom: 8px !important;
}

.footer-info p {
    color: #cbd5e1;
    margin: 6px 0;
    font-size: 0.95rem;
}

.footer-email-link {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
}

.footer-email-link:hover {
    color: var(--orange);
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.88rem;
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 768px) {
    nav {
        padding: 12px 20px;
    }

    .nav-logo-img {
        height: 46px;
    }

    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .about {
        flex-direction: column;
        padding: 60px 6%;
    }

    .courses, .gallery, .why-us, .contact, .map-container {
        padding: 60px 6%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }
}
