/* --- Global Variables & Reset --- */
:root {
    --primary-blue: #003399;
    --accent-purple: #6a11cb;
    --gold: #d4af37;
    --gradient: linear-gradient(135deg, #003399 0%, #6a11cb 100%);
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #555555;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding { padding: 80px 0; }
.light-bg { background-color: var(--light-bg); }

/* --- Typography --- */
h1, h2, h3 { color: var(--primary-blue); line-height: 1.2; font-weight: 700; }
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gold);
    margin: 15px auto 0;
}


/* --- Hero Section --- */
.hero-about {
    position: relative;
    background: url('https://images.unsplash.com/photo-1436491865332-7a61a109c0f2?auto=format&fit=crop&w=1600&q=80') no-repeat center/cover;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: linear-gradient(to right, rgba(0, 51, 153, 0.9), rgba(106, 17, 203, 0.7));
}

.hero-content-wrapper { position: relative; z-index: 2; max-width: 800px; }
.hero-about h1 { font-size: 4rem; color: white; margin-bottom: 20px; }
.hero-about .subtitle { font-size: 1.25rem; margin-bottom: 30px; opacity: 0.9; }

.btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--gradient);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    margin-left: 15px;
}

.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.btn-whatsapp { background: #25D366; }

/* --- Who We Are Grid --- */
.grid-two { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.rounded-img { width: 100%; border-radius: 20px; }
.shadow { box-shadow: var(--shadow); }

/* --- Mission/Vision Glassmorphism --- */
.mission-vision { padding: 40px 0; margin-top: -60px; z-index: 10; position: relative; }
.mission-card, .vision-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,0.3);
}

/* --- Values & Icon Cards --- */
.values-grid, .grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card, .card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.value-card:hover, .card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }
.value-icon { font-size: 3rem; margin-bottom: 20px; }

/* --- Countries Grid --- */
.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.country-item {
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #eee;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.country-item:hover { background: var(--primary-blue); color: white; border-color: var(--primary-blue); }

/* --- Highlights & Counters --- */
.gradient-bg { background: var(--gradient); color: white; text-align: center; }
.grid-four { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; }
.stat-item span { font-size: 3.5rem; font-weight: 700; display: block; }
.stat-item p { font-size: 1.1rem; opacity: 0.9; }

/* --- Timeline Process --- */
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    height: 100%;
    width: 2px;
    background: #eee;
}

.timeline-item { position: relative; padding-left: 60px; margin-bottom: 40px; }
.timeline-dot {
    position: absolute;
    left: 11px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: var(--primary-blue);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 2px var(--primary-blue);
}

/* --- FAQ Grid --- */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.faq-item { background: #fff; padding: 25px; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.faq-item h3 { font-size: 1.1rem; margin-bottom: 10px; }

/* --- Animations --- */
.reveal { opacity: 0; transform: translateY(30px); transition: 1s all ease; }
.reveal-active { opacity: 1; transform: translateY(0); }

/* --- Responsive --- */
@media (max-width: 992px) {
    .grid-two, .faq-grid { grid-template-columns: 1fr; }
    .hero-about h1 { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .hero-about { height: auto; padding: 100px 0; text-align: center; }
    .btn-outline { margin-left: 0; margin-top: 15px; display: block; }
    .section-title { font-size: 2rem; }
    .stat-item span { font-size: 2.5rem; }
}