:root {
    --navy: #003D66;
    --navy-dark: #002b49;
    --orange: #F28C28;
    --orange-glow: rgba(242, 140, 40, 0.3);
    --white: #ffffff;
    --light-bg: #f8fafc;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Hero Section --- */
.about-hero-large {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 120px 0 80px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Lightbulb Glow Effect in Background */
.about-hero-large::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
}

.eyebrow-large {
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.mega-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    font-weight: 800;
    max-width: 900px;
}

.text-orange {
    color: var(--orange);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-top: 1.5rem;
}

/* --- Purpose Cards --- */
.section-padding { padding: 100px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.purpose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: -60px; /* Overlap into hero */
}

.purpose-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-bottom: 5px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.purpose-card:hover {
    transform: translateY(-15px);
    border-color: var(--orange);
}

.card-header i {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 20px;
}

.purpose-card h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--navy);
}

/* --- Detailed Story (Navy Section) --- */
.bg-navy { background-color: var(--navy); color: var(--white); }

.grid-2-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-image { position: relative; }

.story-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 20px 20px 0px var(--orange);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--orange);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    animation: pulse 2s infinite;
}

.experience-badge .number { font-size: 2.5rem; font-weight: 800; display: block; }

/* --- Approach Section --- */
.section-title { font-size: 4rem; color: var(--navy); margin-bottom: 50px; text-align: center;}

.approach-step {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    transition: 0.3s;

}

.approach-step:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.step-num {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 61, 102, 0.1);
    transition: 0.3s;
}


.approach-step:hover .step-num {
    color: var(--orange);
    transform: scale(1.1);
}

.certification-flex {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.cert-item { text-align: center; font-size: 0.8rem; font-weight: 600; }
.cert-item img { height: 60px; filter: grayscale(1) invert(1); opacity: 0.7; transition: 0.3s;}
.cert-item:hover img { filter: grayscale(0) invert(0); opacity: 1; }

/* --- Animations --- */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .grid-2-large { grid-template-columns: 1fr; gap: 40px; }
    .mega-title { font-size: 2rem; }
    .experience-badge { position: static; margin-top: 20px; }
}

/* --- Expertise Section Styles --- */
.expertise-section { background: #fff; position: relative; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.eyebrow { color: var(--orange); font-weight: 800; letter-spacing: 2px; text-transform: uppercase; font-size: 0.85rem; }
.expertise-checklist { margin: 30px 0; }

.check-item { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.check-icon { 
    width: 40px; height: 40px; background: rgba(242, 140, 40, 0.1); 
    color: var(--orange); display: flex; align-items: center; 
    justify-content: center; border-radius: 10px; font-size: 1.1rem;
}

/* Image & Badge Styling */
.image-wrapper { position: relative; padding: 20px; }
.image-wrapper img { width: 100%; border-radius: 30px; box-shadow: 20px 20px 0px var(--navy); }

.badge-float { 
    position: absolute; bottom: -20px; left: -40px; 
    display: flex; flex-direction: column; gap: 15px; 
}

/* --- THE CIRCULAR BADGES (LIGHT TO COLOR) --- */
.cert-item-circle { display: flex; align-items: center; gap: 10px; cursor: pointer; }

.circle-bg {
    width: 70px; height: 70px; background: rgba(255, 255, 255, 0.9);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); transition: all 0.4s ease;
    border: 1px solid rgba(0, 61, 102, 0.1);
}

.circle-bg img {
    width: 45px; height: 45px !important; box-shadow: none !important;
    filter: grayscale(1) opacity(0.4); transition: all 0.4s ease;
}

.cert-item-circle span { 
    background: var(--navy); color: #fff; padding: 5px 15px; 
    border-radius: 20px; font-size: 0.8rem; font-weight: 600; 
    opacity: 0; transform: translateX(-10px); transition: 0.3s;
}

.cert-item-circle:hover .circle-bg { background: #fff; transform: scale(1.1) rotate(5deg); }
.cert-item-circle:hover .circle-bg img { filter: grayscale(0) opacity(1); }
.cert-item-circle:hover span { opacity: 1; transform: translateX(0); }

/* --- Why Choose Us Section --- */
.bg-navy { background-color: var(--navy); color: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 50px; }

.why-card {
    background: rgba(255, 255, 255, 0.05); padding: 40px; border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1); transition: 0.4s; position: relative; overflow: hidden;
}

.why-card i { font-size: 2.5rem; color: var(--orange); margin-bottom: 20px; }
.why-card h3 { font-size: 1.3rem; margin-bottom: 15px; color: #fff; }
.why-card p { font-size: 0.95rem; opacity: 0.8; }

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    border-color: var(--orange);
}

/* Glow Effect on Hover */
.card-glow {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(242, 140, 40, 0.2) 0%, transparent 70%);
    opacity: 0; transition: 0.5s;
}
.why-card:hover .card-glow { opacity: 1; }

/* --- CTA Box --- */
.cta-box {
    margin-top: 80px; text-align: center; background: var(--orange);
    padding: 50px; border-radius: 30px; color: #fff;
}
.cta-box h3 { font-size: 2rem; margin-bottom: 25px; }
.btn-main {
    background: var(--navy); color: #fff; padding: 18px 40px;
    border-radius: 50px; text-decoration: none; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; display: inline-block;
}
.btn-main:hover { background: #fff; color: var(--navy); transform: scale(1.05); }


.faq-wrapper {
    max-width: 1000px;
    margin: 50px auto;
}

.faq-card {
    background: #ffffff;
    border: 2px solid #eef2f6;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden; /* Crucial for hiding content */
}

.faq-card:hover {
    border-color: #F28C28;
    box-shadow: 0 10px 30px rgba(0, 61, 102, 0.08);
}

.faq-trigger {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-trigger h3 {
    margin: 0;
    font-size: 1.4rem;
    color: #003D66;
    font-weight: 700;
}

/* The Animated Plus Icon */
.plus-minus {
    width: 24px;
    height: 24px;
    position: relative;
}

.plus-minus::before, .plus-minus::after {
    content: '';
    position: absolute;
    background: #F28C28;
    transition: 0.3s transform ease;
}

/* Horizontal line */
.plus-minus::before {
    width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%);
}
/* Vertical line */
.plus-minus::after {
    width: 2px; height: 100%; left: 50%; top: 0; transform: translateX(-50%);
}

/* HIDDEN STATE FOR ANSWERS */
.faq-content {
    max-height: 0;
    opacity: 0;
    padding: 0 30px;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1); /* Smooth Slide Effect */
}

.faq-content p {
    padding-bottom: 30px;
    color: #445668;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* OPEN STATE (Applied via JavaScript) */
.faq-card.is-open .faq-content {
    max-height: 500px; /* Big enough to fit the text */
    opacity: 1;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-card.is-open .plus-minus::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0; /* Vertical line disappears to show a minus '-' */
}

.faq-card.is-open {
    border-color: #F28C28;
}