/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

button,
input,
textarea,
select {
    font: inherit;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #fff;
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
}

.footer-col ul{
    list-style: none;
}
/* ==========================================================================
   COMMON CONTAINER GRID (Standard Alignment)
   ========================================================================== */
.hero-section,
.cta-section {
    width: 100%;
    max-width: 1444px;
    margin: 0 auto;
    padding-left: 80px;
    padding-right: 80px;
}

/* ==========================================================================
   NAVBAR WRAPPER
   ========================================================================== */
.navbar-wrapper {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #DBDBDB;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 10px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    background: #fff;
}

.logo img {
    width: 200px;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-size: 16px;
    font-weight: 510;
    line-height: 1;
    color: #000;
    transition: color 0.3s ease;
    white-space: nowrap;
    padding: 12px 8px; /* Added for better touch target */
}

.nav-links a:hover {
    color: #457405;
}

.nav-links a.Active,
.nav-links a.active {
    color: #457405 !important;
    font-weight: 590 !important;
}

.nav-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    background: #457405;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.4s ease;
    color: #fff !important;
    font-size: 16px;
    font-weight: 590;
    line-height: 1;
    white-space: nowrap;
}

.nav-btn:hover {
    background: #5f8c20;
    transform: scale(1.04);
}

.nav-btn img {
    width: 16px;
    height: auto;
    flex-shrink: 0;
}

/* ================= MOBILE MENU BUTTONS ================= */
.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 2000;
    border: 0;
    background: transparent;
    padding: 0;
    position: relative;
}

.menu-toggle img {
    width: 32px;
    height: 32px;
    filter: brightness(0) hue-rotate(48deg) brightness(95%) contrast(95%);
    object-fit: contain;
}

/* Hide close icon by default, show menu icon */
.menu-toggle .menu-icon {
    display: inline-block !important;
}

.menu-toggle .close-icon {
    display: none !important;
    position: absolute;
    top: 0;
    left: 0;
}

/* When menu is open, hide menu icon and show close (X) icon */
.menu-toggle[aria-expanded="true"] .menu-icon {
    display: none !important;
}

.menu-toggle[aria-expanded="true"] .close-icon {
    display: inline-block !important;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer-section {
    background: #101904;
    color: #FFFFFF;
    padding-top: 100px;
    padding-bottom: 40px;
}

.footer-container {
    display: flex;
    margin: 0 auto;
    max-width: 1450px; /* 1290px content area + 160px horizontal padding */
    padding-left: 80px;
    padding-right: 80px;
    gap: 130px;
    padding-bottom: 40px;
    box-sizing: border-box;
}

.footer-col {
    flex: 1;
}

.footer-col:first-child {
    flex: 0 0 375px;
}

.footer-logo {
    width: 181.47px;
    margin-bottom: 31px;
}

.about-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #FFFFFF;
    width: 100%;
    max-width: 500px;
    margin-bottom: 24px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 32px;
}

.social-icons a {
    width: 49px;
    height: 49px;
    border: 1px solid #555555;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.social-icons a:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.social-img {
    width: 18px;          
    height: 18px;         
    object-fit: contain;  
    opacity: 1;
    transition: opacity 0.3s;
    filter: brightness(0) invert(1);
}

.footer-col h3 {
    font-size: 16px;
    font-weight: 590;
    line-height: 1;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.links-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.links-col ul li a {
    display: flex;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    transition: color 0.3s;
    padding: 4px 0;
}

.links-col ul li a:hover {
    color: #457405;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
}

.phone-links {
    display: flex;
    flex-direction: column;
}

.phone-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    display: inline-block;
}

.phone-links a:hover {
    color: #457405;
    cursor: pointer;
}

.contact-icon {
    width: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-list span:hover{
    color: #457405;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}

.footer-divider {
    width: 100%;
    max-width: 1290px;
    margin: 0 auto;
    border: none;
}

.footer-bottom p {
    border-top: 1px solid #65616180;
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    font-size: 12px;
    font-weight: 400;
    color: #FFFFFF;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
    width: 100%;
    max-width: 1444px;
    margin: 0 auto;
    background: #457405;
    box-shadow: 0 0 0 100vmax #457405;
    clip-path: inset(0 -100vmax);
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 80px;
    padding-right: 80px;
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 790;
    line-height: 1;
    margin-bottom: 24px;
    color: #FFFFFF;
}

.cta-section p {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
    width: 100%;
    max-width: 880px;
    margin: 0 auto 32px auto;
    opacity: 0.9;
    color: #FFFFFF;   
}

.cta-btn {
    padding: 14px 30px;
    border-radius: 6px;
    background: #fff;
    color: #457405;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 590;
    line-height: 1;
    transition: transform 0.3s ease;
}

.cta-btn:hover {
    transform: scale(1.04);
}



/* Unified card/image hover effect for the whole page */
:root {
    --card-hover-transform-y: -6px;
    --card-hover-scale: 1.035;
    --card-hover-shadow: 0 18px 42px rgba(16,25,4,0.12);
    --card-hover-duration: 0.28s;
}

[class*="card"],
.milestone-item,
.card-hover,
.journey-image img {
    transition: transform var(--card-hover-duration) cubic-bezier(.2,.9,.2,1), box-shadow var(--card-hover-duration) ease;
    transform-origin: center center;
}

.milestone-item:hover,
.card-hover:hover {
    transform: translateY(var(--card-hover-transform-y));
    box-shadow: var(--card-hover-shadow);
}


/* Accessibility: visible focus state */
.card-hover:focus,
.card-hover:focus-visible,
[class*="card"]:focus-visible,
.milestone-item:focus-visible {
    outline: 3px solid rgba(69,116,5,0.12);
    outline-offset: 4px;
}

/* Dedicated Explore Courses Button Component */
.explore-courses-btn {
    padding: 12px 30px !important;
    border: 1px solid #457405 !important;
    border-radius: 6px !important;
    background: #457405 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 590 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    cursor: pointer !important;
    transition: all 0.4s ease !important;
    text-decoration: none !important;
    transform: none !important;
}

.explore-courses-btn:hover {
    background: #5f8c20 !important;
    border-color: #5f8c20 !important;
    color: #fff !important;
    transform: scale(1.04) !important;
}

.explore-courses-btn img {
    width: 17px !important;
    height: 17px !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
}

/* Navbar mobile override layout wrapper */
@media (max-width: 991px) {
    .navbar .explore-courses-btn {
        width: 100% !important;
        margin-top: 8px !important;
        padding: 14px !important;
        border-radius: 8px !important;
    }
}

