/* --- Fonts & Variables --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;700;800&display=swap');

:root {
    /* Bodhika Brand Colors (Extracted from Logo) */
    --bodhika-green: #5cab2f;  /* Top leaves */
    --bodhika-teal: #008c99;   /* Bottom leaves */
    --bodhika-gradient: linear-gradient(135deg, var(--bodhika-green) 0%, var(--bodhika-teal) 100%);
    
    /* Skillsoft/Corporate Tones */
    --navy-dark: #0b1c33;      /* Deep Navy for Text/Headings */
    --navy-light: #1c2e4a;     /* Lighter Navy for Footers */
    --bg-light: #f8fafc;       /* Ultra light blue-grey background */
    --bg-white: #ffffff;
    
    /* Functional */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(11, 28, 51, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(11, 28, 51, 0.1);
    --radius: 12px;
    --transition: all 0.3s ease;
}

/* --- Global Reset --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--navy-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--navy-dark);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; margin-bottom: 1rem; }
p { color: #475569; margin-bottom: 1.5rem; font-size: 1.05rem; }

/* --- Interactive Elements --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

/* The Bodhika Gradient Button */
.btn-primary {
    background: var(--bodhika-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 140, 153, 0.3);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 140, 153, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--bodhika-teal);
    color: var(--bodhika-teal);
}

.btn-outline:hover {
    background: var(--bg-light);
    color: var(--navy-dark);
}

/* --- Navigation (Glass Effect) --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area { display: flex; align-items: center; gap: 20px; }
header .nav-container .logo-area img:first-child, 
div#partner-modal .modal-container .modal-content .modal-logos img:first-child{ height: 70px !important; }
footer .footer-inner-container .footer-grid-layout .footer-brand-block .footer-logo-row .footer-logo-img:first-child{
    height: 80px !important;
}
.logo-area img { height: 45px; object-fit: contain; }

.nav-menu { display: flex; gap: 30px; align-items: center; }
.nav-link { font-weight: 600; color: var(--navy-dark); font-size: 0.95rem; }
.nav-link:hover { color: var(--bodhika-teal); }

.mobile-toggle { display: none; font-size: 1.5rem; cursor: pointer; }

/* --- Hero Section --- */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-tag {
    display: inline-block;
    background: #e0f2f1;
    color: var(--bodhika-teal);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content h1 span {
    background: var(--bodhika-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Decorative blobs behind image */
.hero-image { position: relative; }
.hero-image img { 
    width: 100%; 
    border-radius: 20px; 
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}
.hero-image::before {
    content: '';
    position: absolute;
    top: -20px; right: -20px;
    width: 200px; height: 200px;
    background: var(--bodhika-green);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 1;
}
.hero-image::after {
    content: '';
    position: absolute;
    bottom: -20px; left: -20px;
    width: 150px; height: 150px;
    background: var(--bodhika-teal);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 1;
}

/* --- LIT Method (Process) --- */
.lit-section { padding: 100px 0; background: white; }
.section-header { text-align: center; max-width: 800px; margin: 0 auto 60px; }

.lit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.lit-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.lit-card:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
    border-bottom-color: var(--bodhika-green);
}

.lit-icon {
    width: 70px; height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--bodhika-teal);
    box-shadow: var(--shadow-sm);
}

/* --- Solutions (Bento Grid Style) --- */
.solutions-section { padding: 100px 0; background: var(--bg-light); }
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.solution-card {
    background: white;
    padding: 35px;
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.solution-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--bodhika-green);
}

.solution-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.card-link { color: var(--bodhika-teal); font-weight: 700; margin-top: 20px; display: block; }
.card-link i { margin-left: 5px; transition: 0.2s; }
.card-link:hover i { margin-left: 10px; }

/* --- Contact Form (Floating) --- */
.contact-section {
    padding: 100px 0;
    background: var(--navy-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

/* Abstract background elements for professional feel */
.contact-section::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, #1c2e4a 0%, transparent 40%);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    position: relative;
    z-index: 10;
}

.form-wrapper h2 { color: var(--navy-dark); text-align: center; }
.form-wrapper p { text-align: center; color: #666; }

.input-group { margin-bottom: 20px; text-align: left; }
.input-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 8px; color: var(--navy-dark); }
.input-group input, .input-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition);
}
.input-group input:focus, .input-group textarea:focus {
    outline: none;
    border-color: var(--bodhika-teal);
    box-shadow: 0 0 0 3px rgba(0, 140, 153, 0.1);
}

/* --- Footer --- */
footer { background: var(--navy-dark); color: #94a3b8; padding: 80px 0 30px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col h4 { color: white; margin-bottom: 20px; font-size: 1.1rem; }
.footer-col a { display: block; margin-bottom: 12px; font-size: 0.95rem; }
.footer-col a:hover { color: var(--bodhika-green); }

/* --- Scroll Animation Classes --- */
.hidden { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.show { opacity: 1; transform: translateY(0); }

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .hero-grid, .lit-grid { grid-template-columns: 1fr; }
    .hero { padding-top: 120px; text-align: center; }
    .hero-image { display: none; } /* Hide heavy image on mobile or stack it */
    .nav-menu { display: none; position: absolute; top: 70px; left: 0; width: 100%; background: white; flex-direction: column; padding: 20px; box-shadow: var(--shadow-md); }
    .nav-menu.active { display: flex; }
    .mobile-toggle { display: block; }
    .footer-grid { grid-template-columns: 1fr; }
    h1 { font-size: 2.5rem; }
}

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 6px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    display: none;
    z-index: 1000;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background: #f4f6f9;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

@media (max-width: 992px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        margin-top: 8px;
    }
    
    .nav-dropdown {
        text-align: center;
    }
}
