/* ================= GENERAL & RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizin/* ================= GENERAL & RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #fafafa;
    overflow-x: hidden;
}

.section-container {
    padding: 50px 6%;
}

h2 {
    text-align: center;
    font-size: 1.8rem;
    color: #1a2332;
    margin-bottom: 25px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ================= NAVIGATION ================= */
header {
    background: #57491c;
    padding: 12px 6%;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

/* Desktop Navigation */
nav ul.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #f4e006;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

nav a:hover {
    color: #ffffff;
}

.arrow {
    font-size: 0.65rem;
    margin-left: 3px;
    display: inline-block;
    transition: transform 0.2s ease;
}

/* Dropdown Base Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #463a16;
    min-width: 200px;
    list-style: none;
    padding: 8px 0;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    display: none;
    z-index: 1001;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    color: #f4e006;
    font-size: 0.9rem;
}

.dropdown-menu li a:hover {
    background-color: #57491c;
    color: #ffffff;
}

@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    .dropdown:hover .arrow {
        transform: rotate(180deg);
    }
    .mobile-menu-btn {
        display: none;
    }
}

/* ================= MOBILE NAVIGATION ================= */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #f4e006;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    nav ul.nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #57491c;
        padding: 15px 6% 25px;
        gap: 12px;
        align-items: flex-start;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
        max-height: 80vh;
        overflow-y: auto;
    }

    nav ul.nav-links.active {
        display: flex;
    }

    nav ul.nav-links li {
        width: 100%;
    }

    nav a {
        display: block;
        padding: 8px 0;
        font-size: 1rem;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background-color: #3c3213;
        padding-left: 15px;
        margin-top: 5px;
        border-radius: 4px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown.active .arrow {
        transform: rotate(180deg);
    }
}

/* ================= HERO SECTION ================= */
.hero {
    width: 100%;
    min-height: 55vh;
    padding: 60px 6%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-image 0.8s ease-in-out;
}

.hero-content {
    max-width: 750px;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.2rem;
    color: #f4e006;
    margin-bottom: 15px;
    line-height: 1.25;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.hero-content p {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 20px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.85);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: #f4e006;
    color: #1a2332;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    transition: background 0.25s, transform 0.2s;
}

.btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

/* ================= CARDS & GRIDS ================= */
.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Touch-Friendly Swipe Grid for Mobile */
.scroll-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 15px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e8ecf1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.scroll-grid .card {
    min-width: 280px;
    max-width: 320px;
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.card h3 {
    font-size: 1.15rem;
    color: #1a2332;
    margin-bottom: 10px;
}

.card p {
    color: #555555;
    font-size: 0.92rem;
    margin-bottom: 15px;
    flex-grow: 1;
}

.card-link {
    color: #57491c;
    font-weight: 700;
    text-decoration: none;
    margin-top: auto;
}

.card-link:hover {
    color: #c8963e;
}

/* Coaching Specific Cards */
.coaching-card {
    transition: transform 0.25s, box-shadow 0.25s;
}

.coaching-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: #c8963e;
}

.card-icon {
    color: #c8963e;
    margin-bottom: 12px;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: #1a2332;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: background 0.25s;
    align-self: flex-start;
    margin-top: auto;
}

.view-more-btn:hover {
    background: #c8963e;
}

/* ================= FOOTER ================= */
.footer {
    background: #111111;
    color: #ffffff;
    padding: 50px 6% 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column h3 {
    color: #f4e006;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-column p,
.footer-column ul li,
.footer-column a {
    color: #cccccc;
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.whatsapp-btn {
    display: inline-block;
    margin-top: 15px;
    background: #25D366;
    color: #ffffff !important;
    padding: 10px 18px;
    border-radius: 20px;
    font-weight: 700;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333333;
    margin-top: 40px;
    padding-top: 20px;
    color: #888888;
    font-size: 0.85rem;
}

/* ================= RESPONSIVE BREAKPOINTS ================= */
@media (max-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-content p {
        font-size: 0.92rem;
    }

    .card-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 15px;
    }

    .card-grid .card {
        min-width: 270px;
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}g: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden; /* Prevents horizontal scrollbar */
}

section {
    padding: 60px 8%;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
}

img {
    width: 100%;
    border-radius: 8px;
}

/* ================= NAVIGATION ================= */
header {
    background: rgb(87, 73, 28);
    padding: 12px 5%;             /* Compact vertical header spacing */
    position: sticky;
    top: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
}

/* Desktop Navigation List */
nav ul.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: #f4e006;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
    display: block;
}

nav a:hover {
    color: #ebe4e1;
}

/* Arrow Styling */
.arrow {
    font-size: 0.65rem;
    margin-left: 3px;
    display: inline-block;
    transition: transform 0.2s ease;
}

/* Dropdown Base Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgb(70, 58, 22);
    min-width: 180px;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    display: none;                /* Hidden by default */
    z-index: 1000;
}

.dropdown-menu li a {
    padding: 8px 16px;
    color: #f4e006;
    font-size: 0.9rem;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background-color: rgb(87, 73, 28);
    color: #ffffff;
}

/* Desktop Hover Interaction */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    .dropdown:hover .arrow {
        transform: rotate(180deg);
    }
    .mobile-menu-btn {
        display: none;
    }
}

/* ================= MOBILE NAVIGATION (PORTRAIT FIX) ================= */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #f4e006;
    font-size: 1.6rem;
    cursor: pointer;
    padding: 0 5px;
}

@media (max-width: 768px) {
    header {
        padding: 10px 5%;
    }

    nav {
        position: relative;
    }

    .mobile-menu-btn {
        display: block !important;
    }

    /* Force hide the menu links on mobile screens until button is clicked */
    nav ul.nav-links {
        display: none !important;  
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgb(87, 73, 28);
        padding: 20px 5%;
        gap: 15px;
        box-sizing: border-box;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }

    /* Revealed ONLY when JavaScript toggles the '.active' class */
    nav ul.nav-links.active {
        display: flex !important;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background-color: rgb(60, 50, 19);
        padding-left: 15px;
        margin-top: 5px;
    }

    .dropdown.active .dropdown-menu {
        display: block !important;
    }

    .dropdown.active .arrow {
        transform: rotate(180deg);
    }
}

/* ================= HERO SECTION ================= */
.hero {
    width: 100vw;
    max-width: 100%;
    min-height: 50vh;             /* Takes about half screen height */
    padding: 60px 8%;
    margin: 0;
    
    /* Background configuration */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    transition: background-image 0.8s ease-in-out;
}

.hero-content {
    width: 100%;
    max-width: 800px;
    text-align: center;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}

.hero-content h1 {
    font-size: 2.2rem;
    color: #f4e006;
    margin-bottom: 12px;
    line-height: 1.25;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-content p {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.5;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .hero {
        min-height: 40vh;          /* Compact on portrait screens */
        padding: 40px 5%;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #1a2332;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.25s;
}

.btn:hover {
    background: #2d3b4e;
}

/* ================= GRID SYSTEM & CARDS ================= */
.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.scroll-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.card {
    min-width: 280px;
    padding: 25px;
    border-radius: 10px;
    background: #f5f5f5;
}

/* ================= COACHING CARDS ================= */
.coaching-card {
    background: #fff;
    border: 1px solid #e8ecf1;
    border-radius: 12px;
    padding: 30px 25px 25px;
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
}

.coaching-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(26, 35, 50, 0.10);
    border-color: #c8963e;
}

.card-icon {
    color: #c8963e;
    margin-bottom: 15px;
}

.coaching-card h3 {
    font-size: 1.1rem;
    color: #1a2332;
    margin-bottom: 10px;
    line-height: 1.3;
}

.coaching-card p {
    color: #666;
    font-size: 0.92rem;
    line-height: 1.55;
    flex-grow: 1;
    margin-bottom: 18px;
}

/* View More Button */
.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: #1a2332;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.25s, gap 0.25s;
    align-self: flex-start;
    cursor: pointer;
}

.view-more-btn:hover {
    background: #c8963e;
    gap: 10px;
}

.view-more-btn svg {
    transition: transform 0.25s;
}

.view-more-btn:hover svg {
    transform: translateX(3px);
}

#coaching h2 {
    font-size: 1.8rem;
    color: #1a2332;
    margin-bottom: 40px;
}

/* ================= FOOTER ================= */
.footer {
    background: #111;
    color: white;
    padding: 60px 8% 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h3 {
    margin-bottom: 20px;
}

.footer-column p,
.footer-column ul li,
.footer-column a {
    color: #ddd;
    text-decoration: none;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.whatsapp-btn {
    display: inline-block;
    margin-top: 20px;
    background: #25D366;
    color: white !important;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: bold;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    margin-top: 40px;
    padding-top: 20px;
    color: #aaa;
}

/* ================= RESPONSIVE BREAKPOINTS ================= */
@media (max-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-grid,
    .card-grid,
    .footer-container {
        grid-template-columns: 1fr;
    }
}




