@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&family=Material+Icons&display=swap');
/* --- PREMIUM ABOUT US MASTER STYLES --- */
.about-premium-hero {
    padding: 120px 0;
    background: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Typography Gradient */
.about-text-gradient {
    background: linear-gradient(90deg, #0047ab, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-premium-pill {
    background: #f0f4f9;
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0047ab;
    border: 1px solid #e0e8f0;
}

.about-premium-h1 {
    font-size: clamp(40px, 6vw, 75px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -4px;
    margin: 30px 0;
    color: #111;
}

.about-premium-main-grid {
    display: flex;
    align-items: center;
    gap: 100px;
    margin-bottom: 150px;
}

.about-premium-text-side { flex: 1.2; }
.about-premium-visual-side { flex: 1; }

.about-premium-intro {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 50px;
}

/* Identity Box (Glassmorphism) */
.about-premium-identity-box {
    display: flex;
    gap: 25px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 35px;
    border: 1px solid #eee;
    transition: 0.4s;
}

.about-premium-identity-box:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

.about-premium-id-icon span {
    font-size: 50px;
    color: #0047ab;
    font-variation-settings: 'FILL' 1;
}

/* THE LAYERED IMAGE VISUAL */
.about-visual-canvas {
    position: relative;
    height: 600px;
}

.about-img-frame-lg {
    width: 90%;
    height: 100%;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
}

.about-img-frame-sm {
    position: absolute;
    bottom: -30px;
    right: -40px;
    width: 60%;
    height: 350px;
    border-radius: 40px;
    overflow: hidden;
    border: 12px solid #fff;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.about-img-frame-lg img, .about-img-frame-sm img {
    width: 100%; height: 100%; object-fit: cover;
}

.about-glass-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 20px;
    text-align: center;
}

/* ECOSYSTEM SECTION */
/* Ecosystem Section Alignment */
.about-ecosystem-wrapper {
    padding: 80px 0;
    background: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
}

.about-eco-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-eco-header h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 15px;
}

.about-text-gradient {
    color: var(--red); /* Matches your .red class theme */
}

.about-eco-line {
    width: 60px;
    height: 4px;
    background: var(--red);
    margin: 0 auto;
    border-radius: 2px;
}

/* Grid Layout */
.about-eco-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns to match the 3 cards */
    gap: 25px;
    padding: 0 20px;
}

/* Card Styling - Inheriting from .b-card style */
.about-eco-card {
    background: #fdfdfd;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #f1f1f1;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Professional left-alignment */
}

.about-eco-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: var(--red);
}

/* Icon Styling - Inheriting from .b-icon style */
.about-eco-card .material-symbols-rounded {
    width: 54px;
    height: 54px;
    background: #fff5f5; /* Light red tint */
    color: var(--red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
}

.about-eco-card h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--dark);
}

.about-eco-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280; /* Muted text from your theme */
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .about-eco-grid {
        grid-template-columns: 1fr; /* Stack on mobile */
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-eco-header h2 {
        font-size: 32px;
    }
}

/* --- MOBILE IMAGE FIXES --- */

@media (max-width: 992px) {
    /* 1. Fix the main grid to stack so the image has space */
    .about-premium-main-grid {
        flex-direction: column;
        gap: 50px;
        margin-bottom: 80px;
    }

    /* 2. Adjust the canvas height so it doesn't disappear */
    .about-visual-canvas {
        height: auto;
        min-height: 400px; /* Gives it a base height on mobile */
        display: flex;
        justify-content: center;
        padding: 20px;
    }

    /* 3. Scale the frames so they don't overflow the screen width */
    .about-img-frame-lg {
        width: 100%;
        height: 350px; /* Reduced for mobile */
        border-radius: 30px;
    }

    .about-img-frame-sm {
        width: 50%;
        height: 200px;
        bottom: -20px;
        right: 0; /* Align to edge instead of negative offset */
        border-width: 6px; /* Thinner border for smaller screens */
        border-radius: 20px;
    }

    /* 4. Ensure the actual images fill the frames */
    .about-img-frame-lg img, 
    .about-img-frame-sm img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* --- ADD THIS TO YOUR MAIN STYLE TO PREVENT LOADING ISSUES --- */
img {
    max-width: 100%;
    height: auto;
}



/* --- PREMIUM MISSION & VISION MASTER STYLES --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&family=Material+Icons&display=swap');

:root {
    --primary-blue: #0047ab;
    --light-blue: #00c6ff;
    --text-dark: #111111;
    --text-muted: #555555;
    --bg-light: #f8f9fa;
    --glass-white: rgba(255, 255, 255, 0.9);
}

.about-premium-hero {
    padding: 100px 0;
    background: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* --- SECTION HEADER --- */
.about-eco-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.about-premium-pill {
    display: inline-block;
    background: #f0f4f9;
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-blue);
    border: 1px solid #e0e8f0;
    margin-bottom: 20px;
}

.about-premium-h1 {
    font-size: clamp(32px, 5vw, 55px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin: 20px 0;
    color: var(--text-dark);
}

.about-text-gradient {
    background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-eco-line {
    width: 60px;
    height: 4px;
    background: var(--primary-blue);
    margin: 20px auto;
    border-radius: 2px;
}

/* --- GRID LAYOUT --- */
.about-eco-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- PREMIUM IDENTITY BOXES --- */
.about-premium-identity-box {
    display: flex;
    flex-direction: column; /* Stacked for a clean vertical look */
    gap: 20px;
    padding: 50px 40px;
    background: var(--bg-light);
    border-radius: 35px;
    border: 1px solid #eee;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.about-premium-identity-box:hover {
    transform: translateY(-12px);
    background: #ffffff;
    box-shadow: 0 40px 80px rgba(0, 71, 171, 0.08);
    border-color: rgba(0, 71, 171, 0.1);
}

/* Icon Container */
.about-premium-id-icon {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.about-premium-id-icon span {
    font-size: 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Content Typography */
.about-id-content h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.about-id-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .about-eco-grid {
        grid-template-columns: 1fr;
    }
    
    .about-premium-identity-box {
        padding: 40px 30px;
    }
}


/* --- WHO WE SERVE PREMIUM STYLES --- */

.serve-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.serve-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: #f8f9fa;
    border-radius: 25px;
    border: 1px solid #eee;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.serve-item:hover {
    transform: translateX(15px);
    background: #ffffff;
    border-color: #0047ab;
    box-shadow: 0 15px 30px rgba(0, 71, 171, 0.05);
}

.serve-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(90deg, #0047ab, #00c6ff);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(0, 71, 171, 0.3);
}

.serve-item h4 {
    font-size: 18px;
    font-weight: 800;
    color: #111;
    margin: 0 0 5px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.serve-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Hover effect for the text */
.serve-item:hover h4 {
    color: #0047ab;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .about-premium-main-grid {
        flex-direction: column;
        gap: 50px;
    }
    
    .serve-item:hover {
        transform: translateY(-5px); /* Upward lift on mobile instead of sideways */
    }
}

/* --- OUR COMMITMENT PREMIUM STYLES --- */

.about-commitment-section {
    padding: 100px 20px;
    background: #ffffff;
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.commitment-content {
    max-width: 900px;
    margin: 0 auto;
}

.commitment-text-box {
    margin: 40px auto;
    padding: 50px;
    background: #f8f9fa;
    border-radius: 40px;
    border: 1px solid #eee;
    position: relative;
}

.commitment-text-box p {
    font-size: 22px;
    line-height: 1.8;
    color: #444;
    margin: 0;
}

.commitment-text-box p strong {
    color: #0047ab;
    font-weight: 800;
}

/* Quote Mark Decoration */
.commitment-text-box::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 100px;
    color: #0047ab;
    opacity: 0.1;
    font-family: serif;
}

/* Small Feature Row */
.commitment-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #888;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-item span.material-icons {
    color: #0047ab;
    font-size: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .commitment-text-box {
        padding: 30px;
    }
    
    .commitment-text-box p {
        font-size: 18px;
    }
    
    .commitment-stats {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

/* --- contact section styles --- */

/* =========================================================
   LET'S GROW TOGETHER – LIGHT & MODERN CTA
========================================================= */

.about-grow-together {
    padding: 100px 20px;
    background: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.grow-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Content */
.grow-content {
    text-align: center;
    padding: 40px 20px;
    animation: fadeUp 0.8s ease forwards;
}

.grow-title {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 800;
    letter-spacing: -1.5px;
    color: #111;
    margin-bottom: 18px;
}

.white-text {
    color: #0047ab;
}

/* Description */
.grow-description {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    max-width: 700px;
    margin: 0 auto 35px;
}

/* CTA Buttons */
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 18px;
}

/* Base button */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

/* Consult Expert */
.cta-phone {
    background: #111;
    color: #fff;
}

.cta-phone:hover {
    background: #000;
    transform: translateY(-2px);
}

/* Email Us */
.cta-email {
    background: #f5f7fa;
    color: #111;
    border: 1px solid #e4e7ec;
}

.cta-email:hover {
    background: #ffffff;
    border-color: #111;
    transform: translateY(-2px);
}

/* Direct Email */
.direct-email {
    font-size: 14px;
    color: #666;
}

.direct-email strong {
    color: #111;
}

/* Icons */
.cta-btn .material-icons {
    font-size: 18px;
}

/* Simple animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }
}
