/* ==========================================================================
   1. RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-dark: #001220;
    --secondary-dark: #071e33;
    --accent-gold: #c3924e;
    --accent-gold-light: #dfb273;
    --text-main: #333333;
    --text-muted: #666666;
    --text-light: #ffffff;
    --bg-light: #eff7ff;
    --bg-card: #ffffff;
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --container-max-width: 1600px;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    /* Fluid typography base */
    font-size: clamp(14px, 1vw + 10px, 18px);
}


        /*==================================
        Menu
        ===================================*/
                
                
        /* ─── NAVIGATION ─── */
        nav {
        position: sticky; 
        top: 0; 
        z-index: 100;
        background: #fff;
        padding: 0 5%;
        display: flex; 
        align-items: center; 
        justify-content: space-between;
        height: 80px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        .logo img {
        max-height: 68px;
        width: auto;
        }
        .nav-links { 
        display: flex; 
        gap: 2rem; 
        list-style: none; 
        align-items: center;
        }
        .nav-links a { 
        text-decoration: none; 
        color: var(--navy); 
        font-size: 0.95rem; 
        font-weight: 500; 
        transition: color 0.2s ease; 
        position: relative; 
        }
        .nav-links a:hover { 
         color: #1a55e3;
    /*transform: translateY(-1px);*/
        }
        .has-dropdown::after { 
        /*content: ' ▾'; */
        font-size: 0.75rem; 
        color: var(--gray); 
        }
        .nav-cta {
        background: var(--blue); 
        color: var(--white) !important;
        padding: 0.7rem 1.4rem; 
        border-radius: 6px;
        white-space: nowrap;
        transition: background 0.2s ease, transform 0.2s ease !important;
        }
        .nav-cta:hover { 
        background: #0b1f4b !important; 
        transform: translateY(-1px);
        color:#fff !important;
        }
        .nav-links li.has-dropdown {
           position: relative;
        }
        
        .nav-links .submenu {
           display: none;
           position: absolute;
           top: 100%;
           left: 0;
           background: #fff;
           list-style: none;
           min-width: 180px;
           padding: 0.5rem 0;
           margin: 0;
            border-radius: 0 0 6px 6px;
           border-radius: 6px;
           box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .nav-links li.has-dropdown:hover .submenu {
           display: block;
           z-index:1000;
        }
        
        .submenu li {
           width: 100%;
        }
        
        .submenu li a {
           display: block;
           padding: 0.6rem 1.2rem;
           white-space: nowrap;
           color: var(--navy);
           font-weight: 400;
        }
        
        .submenu li a:hover {
           background: rgba(0, 0, 0, 0.04);
           color: var(--blue);
        }
	.nav-cta {
    background: #1a55e3;
    color: #fff !important;
    padding: 0.7rem 1.4rem;
    border-radius: 6px;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease !important;
}





/* ==========================================================================
   2. REUSABLE UTILITIES & LAYOUTS
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 4%;
}

.grid-2col {
    display: grid;
/*    grid-template-columns: repeat(2, 1fr);*/
    grid-template-columns: 6fr 4fr;
    gap: 4rem;
}
.grid-2col2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.items-center { align-items: center; }
.responsive-img { width: 100%; height: auto; display: block; object-fit: cover; }
.rounded-img { border-radius: 4px; }

/* Section Typography Helpers */
.section-tag {
    font-size: 1.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
}

.section-tag-light {
    @extend .section-tag;
    color: var(--accent-gold-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 700;
}

.accent-gold { color: var(--accent-gold); }
.accent-gold-dark { color: #a47432; }

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero-section {
    background: url('banner.jpg') no-repeat center center/cover;
    min-height: 85vh;
    display: flex;
    align-items: center;
    color: var(--text-light);
    padding: 100px 0;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 6.5rem);
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    letter-spacing: 1px;
    opacity: 0.9;
    border-top: 1px solid rgba(255,255,255,0.3);
    display: inline-block;
    padding-top: 0.5rem;
}

/* ==========================================================================
   4. OUR STORY & FEATURES
   ========================================================================== */
.story-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    background-image: url(story-section.jpg);
    background-repeat: no-repeat;
}

.story-quote {
    font-family: var(--font-heading);
    font-size: clamp(0.8rem);
    font-style: italic;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    background-color: #fffdf9;
    border-left: 3px solid var(--accent-gold);
    padding: 23px;
}

.quote-sub {
    display: block;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-style: normal;
    color: var(--accent-gold);
    margin-top: 0.5rem;
    font-weight: 600;
}

.story-body p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

/* Features Component */
.story-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 5rem;
}

.feature-card {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 2.5rem 2rem;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    color: var(--accent-gold-light);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: #b0c4de;
    line-height: 1.5;
}

/* ==========================================================================
   5. PHILOSOPHY SECTION
   ========================================================================== */
.philosophy-section {
    padding: 120px 0;
    background: #ffffff;
    background-image: url(philosophy-section.jpg);
    background-repeat: no-repeat;
}

.philosophy-quote {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-gold-dark);
    margin-bottom: 1.5rem;
}

.section-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Principles Cards */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin: 2rem auto;
}

.principle-card {
    background: var(--bg-light);
    padding: 1rem 2rem;
    border-radius: 4px;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.principle-card:hover {
    border-bottom-color: var(--accent-gold);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.principle-icon {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.principle-card h3 {
    font-size: 1.15rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.principle-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Callout Banner */
.callout-banner {
    background: var(--secondary-dark);
    color: var(--text-light);
    padding: 2.5rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 2rem;
    border-left: 5px solid var(--accent-gold);
}

.banner-icon {
    font-size: 2.5rem;
    color: var(--accent-gold-light);
}

.callout-banner p {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 1.8vw, 1.8rem);
}

/* ==========================================================================
   6. LEADERSHIP SECTION
   ========================================================================== */
.leadership-section {
    padding: 100px 0 0 0;
    background: var(--bg-light);
}

.founder-quote-box {
    margin: 2rem 0;
}

.founder-quote {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.5;
    margin-bottom: 1rem;
    background-color: #fff2ce;
    padding: 20px;
    border-left: 5px solid #c3924e;
}

.founder-meta h4 {
    font-size: 1.2rem;
    color: var(--primary-dark);
}

.founder-meta p {
    font-size: 0.85rem;
/*    color: var(--accent-gold-dark);*/
    font-weight: 600;
}

.founder-points {
    margin-top: 3rem;
}

.point-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.point-num {
    background: #003156;
/*    color: var(--text-light);*/
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.point-item p {
    font-size: 1.15rem;
    color: var(--text-muted);
}

.founder-img-wrapper {
/*    box-shadow: 20px 20px 0px var(--accent-gold);*/
    border-radius: 4px;
    overflow: hidden;
}

/* ==========================================================================
   7. PURPOSE BEYOND PROFIT
   ========================================================================== */
.purpose-section {
    padding: 120px 0;
}

.section-subtitle-large {
    font-size: clamp(1.2rem, 1.3vw, 1.3rem);
    color: var(--text-muted);
/*    max-width: 900px;*/
    margin-bottom: 4rem;
}

.impact-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.impact-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.row-reverse {
    grid-template-columns: 1fr 1.2fr;
}

.impact-text-box {
    padding: 2rem;
}

.impact-text-box img{
    border: 1px solid #dfb273;
    border-radius: 50%;
    padding: 8px;
    background-color: #003156;
}

.impact-icon {
    font-size: 2.5rem;
    color: var(--accent-gold-dark);
    margin-bottom: 1.5rem;
}

.impact-text-box h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.2vw, 2.5rem);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.impact-text-box p {
    color: var(--text-muted);
}

/* ==========================================================================
   8. BRAND FOOTER
   ========================================================================== */
.footer-brand {
    background: var(--primary-dark);
    color: var(--text-light);
    text-align: center;
    padding: 120px 0;
}

.footer-logo-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 400;
    margin-bottom: 2rem;
}

.footer-statement {
    font-size: clamp(1rem, 1.3vw, 1.5rem);
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}




/* --- LAPTOP TO SMALL MONITOR SCALING (Down to 1200px) --- */
@media (max-width: 1400px) {

:root { --max-width: 1330px; }
nav { height: 100px; padding: 0 3%; }
.nav-links a { font-size: .85rem; }
section { padding: 3rem 3%; }
.hero-section { min-height: 80vh; }
.hero-section h1 { font-size: 3rem; }
.hero-section p { font-size: 1rem; max-width: 500px; }
.hero-section {
position: relative;
    background: linear-gradient(135deg, #f0f7fa 0%, #ffffff 100%);
    background-image: url("banner.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    padding: 4rem 0 0;
    min-height: 435px;
    overflow: hidden;
}

.story-section {
position: relative;
    background: linear-gradient(135deg, #f0f7fa 0%, #ffffff 100%);
    background-image: url("story-section.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    padding: 4rem 0 0;
    min-height: 435px;
    overflow: hidden;
}
.philosophy-section {
position: relative;
    background: linear-gradient(135deg, #f0f7fa 0%, #ffffff 100%);
    background-image: url("philosophy-section.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    padding: 4rem 0 0;
    min-height: 435px;
    overflow: hidden;
}
.section-title{
font-size:2.5vw;
}
.founder-quote{
    font-size:1rem;
}
.point-item p{
    font-size:1rem;
}


}




/* =========================================================
   MOBILE & TABLET BREAKPOINT (1024px and below)
   ========================================================= */
@media screen and (max-width: 1024px) {

  /* 3-Line Hamburger Icon Container */
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px; /* Spacing between lines */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }

  /* The 3 Individual Horizontal Lines */
  .mobile-menu-toggle .bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333; /* Change color if your nav is dark */
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
  }

  /* Hidden Menu by default */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  /* Expanded Menu */
  .nav-links.active {
    display: flex;
  }

  /* ----------------------------------------------------
     ANIMATION: Transform 3 Lines into an "X" when open
     ---------------------------------------------------- */
  .mobile-menu-toggle.open .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .mobile-menu-toggle.open .bar:nth-child(2) {
    opacity: 0; /* Middle line fades out */
  }

  .mobile-menu-toggle.open .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* Submenu and Links formatting */
  .nav-links > li {
    width: 100%;
    margin: 0.5rem 0;
  }

  .nav-links a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .has-dropdown .submenu {
    display: none;
    padding-left: 1rem;
    background-color: #fafafa;
  }

  .has-dropdown.open .submenu {
    display: block;
  }
}






/* ==========================================================================
   9. RESPONSIVE MEDIA QUERIES (Desktop 4K down to Mobile)
   ========================================================================== */

/* --- 4K & Ultra-wide Optimization --- */
@media (min-width: 1920px) {
    .container {
        max-width: 1800px; /* Expands context elegantly on massive displays */
    }
}

/* --- Tablet View (Less than 1024px) --- */
@media (max-width: 1024px) {
    .grid-2col {
        gap: 3rem;
    }
    
    .principles-grid {
        gap: 1.5rem;
    }
    
    .impact-row, .row-reverse {
        grid-template-columns: 1fr; /* Stack visually */
        gap: 2rem;
    }
    
    /* Order preservation so layouts look correct when stacked */
    .row-reverse .impact-img-box {
        grid-row: 1; 
    }
}

/* --- Mobile / Small Tablet View (Less than 768px) --- */
@media (max-width: 768px) {
    .grid-2col, .layout-reversed {
        grid-template-columns: 1fr;
    }
    
    .layout-reversed .leadership-image {
        grid-row: 1; /* Puts image on top on mobile view */
        margin-bottom: 2rem;
    }

    .principles-grid {
        grid-template-columns: 1fr;
        margin: 3rem auto;
    }
    
    .callout-banner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .story-left, .philosophy-left {
        text-align: center;
    }
    
    .story-quote, .philosophy-quote {
        border-left: none;
        border-top: 2px solid var(--accent-gold);
        padding-left: 0;
        padding-top: 1rem;
    }
    
    .text-center-mobile {
        text-align: center;
    }
    
    .founder-img-wrapper {
        box-shadow: 10px 10px 0px var(--accent-gold);
    }
    
    .story-section, .philosophy-section, .leadership-section, .purpose-section, .footer-brand {
        padding: 60px 0;
    }
}