:root {
    --bg: #050505;
    --navy: #001f3f;
    --gold: #d4af37;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg); color: var(--white); font-family: 'Inter', sans-serif; overflow-x: hidden; }

/* Nav */
nav {
    position: fixed; width: 100%; height: 100px; display: flex; 
    justify-content: space-between; align-items: center; padding: 0 5%;
    z-index: 1000; transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
nav.active { background: rgba(0,0,0,0.9); height: 80px; backdrop-filter: blur(15px); }

.nav-logo { height: 130px; filter: drop-shadow(0 0 10px rgba(255,255,255,0.2)); }
.nav-links a { color: var(--white); text-decoration: none; margin-left: 30px; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
.nav-cta { border: 1px solid var(--gold); padding: 10px 20px; transition: 0.3s; }
.nav-cta:hover { background: var(--gold); color: var(--bg); }

/* Hero */
.main-hero {
    height: 100vh; display: flex; align-items: center; justify-content: center;
    background: radial-gradient(circle at center, var(--navy) 0%, var(--bg) 100%);
    position: relative; text-align: center;
}
.hero-inner { z-index: 10; transform: translateY(20px); opacity: 0; animation: fadeInUp 1s forwards 0.5s; }
.glitch-text { font-family: 'Syncopate', sans-serif; font-weight: 700; font-size: 3.5rem; letter-spacing: 15px; color: var(--white); margin-bottom: 10px; }
.divider { width: 100px; height: 2px; background: var(--gold); margin: 20px auto; }
h1 { font-size: 1.1rem; letter-spacing: 6px; font-weight: 300; line-height: 2; margin-bottom: 30px; }
h1 span { color: var(--gold); font-weight: 600; }
.hero-subtext { max-width: 600px; margin: 0 auto; opacity: 0.6; font-size: 0.9rem; }

/* Scroll Indicator */
.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); letter-spacing: 3px; font-size: 0.7rem; opacity: 0.5; }
.scroll-indicator .line { width: 1px; height: 50px; background: var(--gold); margin: 10px auto; animation: scrollAnim 2s infinite; }

/* Philosophy Section */
.philosophy-section { padding: 100px 5%; min-height: 80vh; display: flex; align-items: center; justify-content: center; position: relative; }
.floating-circle { position: absolute; width: 400px; height: 400px; background: var(--navy); filter: blur(150px); opacity: 0.3; z-index: -1; }
.label { color: var(--gold); letter-spacing: 5px; font-size: 0.7rem; margin-bottom: 20px; display: block; }
.text-block h2 { font-family: 'Syncopate'; font-size: 2.5rem; margin-bottom: 30px; font-weight: 700; }
.text-block p { max-width: 700px; line-height: 1.8; opacity: 0.8; }

/* Programs Section Styling */
.expertise-section { padding: 100px 5%; background: var(--bg); }
.expertise-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 60px; }
.program-card { 
    background: var(--glass); padding: 40px; border: 1px solid rgba(255,255,255,0.05); 
    transition: 0.4s ease; border-bottom: 2px solid transparent; 
}
.program-card:hover { background: rgba(255,255,255,0.08); border-bottom-color: var(--gold); transform: translateY(-10px); }
.card-header { display: flex; justify-content: space-between; color: var(--gold); margin-bottom: 25px; align-items: center; }
.card-header span { font-family: 'Syncopate'; font-size: 0.7rem; opacity: 0.4; }
.program-card h3 { font-family: 'Syncopate'; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 15px; }
.program-card p { font-size: 0.9rem; line-height: 1.6; opacity: 0.6; }

/* Footer */
footer { padding: 80px 5%; background: #000; border-top: 1px solid var(--glass); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 50px; }
.footer-left h2 { font-family: 'Syncopate'; font-size: 1rem; letter-spacing: 5px; margin-bottom: 20px; }
.social-icons a { color: var(--white); font-size: 1.3rem; margin-right: 25px; transition: 0.3s; }
.social-icons a:hover { color: var(--gold); }
.copyright { margin-top: 20px; font-size: 0.7rem; opacity: 0.4; }

/* Animations */
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
@keyframes scrollAnim { 0%, 100% { height: 0; } 50% { height: 50px; } }

/* Responsive adjustments */
@media (max-width: 768px) {
    .glitch-text { font-size: 2.2rem; letter-spacing: 8px; }
    .text-block h2 { font-size: 1.8rem; }
    nav { height: 70px; }
    .nav-logo { height: 80px; }
}
/* WhatsApp Button Styling */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366; /* Classic WhatsApp Green */
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: var(--gold); /* Changes to Gold on hover to match your theme */
    box-shadow: 0 0 20px var(--gold);
}

/* Tooltip - appears on hover */
.whatsapp-float .tooltip {
    position: absolute;
    right: 75px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Animation for attention */
@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
    animation: pulse-whatsapp 2s infinite;
}
/* Enhanced Social Section */
.social-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.social-btn {
    width: 50px;
    height: 50px;
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white) !important; /* Forces icon to be white */
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.social-btn:hover {
    background: var(--gold);
    color: var(--bg) !important; /* Icon turns dark on gold background */
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* Strategy Section (Vision & Mission) */
.strategy-section {
    padding: 120px 10%; /* More side padding for a cleaner look */
    background: linear-gradient(to bottom, var(--bg), #000);
}

.strategy-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.strategy-item h2 {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 25px;
    letter-spacing: 5px;
}

.vision-text {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.8;
    border-left: 2px solid var(--gold);
    padding-left: 30px;
}

.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    line-height: 1.6;
    font-size: 0.95rem;
    opacity: 0.7;
    transition: 0.3s;
}

.mission-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.mission-list li:hover {
    opacity: 1;
    transform: translateX(10px);
}

/* Responsive for Mobile */
@media (max-width: 992px) {
    .strategy-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .strategy-section {
        padding: 80px 8%;
    }
}

/* Why Us Section */
.why-section {
    padding: 100px 8%;
    background: var(--bg);
}

.intro-text {
    max-width: 700px;
    margin-bottom: 50px;
    font-size: 1.1rem;
    opacity: 0.7;
    line-height: 1.6;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.why-card {
    background: var(--glass);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.why-card i {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.why-card h3 {
    font-family: 'Syncopate', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.why-card p {
    font-size: 0.85rem;
    line-height: 1.7;
    opacity: 0.6;
}

/* Hover effect to match your premium theme */
.why-card:hover {
    background: rgba(212, 175, 55, 0.03);
    border-color: var(--gold);
    transform: translateY(-8px);
}

@media (max-width: 768px) {
    .why-section { padding: 80px 5%; }
}
/* Image Banner Styling */
.image-banner-container {
    padding: 60px 8%;
    background: var(--bg);
}

.banner-wrapper {
    position: relative;
    border: 1px solid var(--glass);
    border-radius: 4px; /* Slight rounding for a modern look */
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    margin-top: 30px;
}

.responsive-banner {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.9); /* Makes it blend better with your dark theme */
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

/* Subtle zoom effect when the user scrolls to it */
.banner-wrapper:hover .responsive-banner {
    transform: scale(1.02);
    filter: brightness(1);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.4), transparent);
    pointer-events: none;
}

@media (max-width: 768px) {
    .image-banner-container {
        padding: 40px 5%;
    }
}

/* Logo Styling */
.nav-logo {
    height: 80px; /* Adjust this to make it look right */
    width: auto;
    filter: brightness(1.1); /* Helps it stand out */
    transition: 0.3s;
}

/* Banner Styling */
.image-banner-container {
    padding: 60px 5%;
    background: var(--bg);
}

.banner-wrapper img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--glass);
}

/* WhatsApp Position Fix */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
}