.elementor-6876 .elementor-element.elementor-element-36d60b6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-6876 .elementor-element.elementor-element-36d60b6:not(.elementor-motion-effects-element-type-background), .elementor-6876 .elementor-element.elementor-element-36d60b6 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#2C2C2C;}/* Start custom CSS for html, class: .elementor-element-f39539d *//* --- 1. IMPORT GOOGLE FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&family=Rubik:wght@400&display=swap');

/* --- 2. VARIABLES & BASE STYLES --- */
:root {
    --color-dark-bg: #2c2c2c;
    --color-card-bg: #303030;
    --color-accent-gold: #c9ac4b;
    /* Updated to pure white as requested */
    --color-light-text: rgb(255, 255, 255); 
    
    /* Updated Fonts */
    --font-heading: 'Poppins', sans-serif; 
    --font-body: 'Rubik', sans-serif;
    
    --padding-base: 20px;
}

.about-us-page {
    background-color: var(--color-dark-bg);
    color: var(--color-light-text);
    font-family: var(--font-body);
}

/* --- 3. TYPOGRAPHY UPDATES (YOUR REQUESTS) --- */

/* Apply Rubik 400, 17px, 26px LH to all Paragraphs and List Items */
p, li {
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    color: var(--color-light-text);
}

/* Apply Poppins 700 to Headings */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 700;
    color: var(--color-light-text);
}

/* --- 4. HERO SECTION --- */
.about-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px var(--padding-base);
    margin-bottom: 40px;
    
    /* Background Image */
    background-image: url("https://bioelevatelifesciences.in/wp-content/uploads/2025/11/Gemini_Generated_Image_jprdc3jprdc3jprd-e1763562949212.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

/* Dark Overlay */
.about-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}

.hero-content {
    position: relative; 
    z-index: 2;
}

.hero-content h1 {
    /* Keeping Hero Title slightly larger for impact, but using Poppins */
    font-size: 3em; 
    color: var(--color-accent-gold); /* Keeping gold for main title distinction */
    margin-bottom: 5px;
}

/* --- 5. CONTENT GRID --- */
.about-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 var(--padding-base) 60px;
    max-width: 1200px; 
    margin: 0 auto;
}

.grid-card {
    background-color: var(--color-card-bg);
    padding: var(--padding-base) 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    cursor: default; 
}

.grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    background-color: #383838;
}

/* Applying specific 28px/34px request to Card Headings */
.grid-card h3 {
    font-size: 28px;
    line-height: 34px;
    color: var(--color-accent-gold); /* Keeping gold accent */
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(201, 172, 75, 0.5); 
    padding-bottom: 10px;
}

/* List Styles */
.grid-card ul {
    list-style: none;
    padding-left: 0;
}

.grid-card li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.grid-card li::before {
    content: '\2022'; 
    color: var(--color-accent-gold);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Founder Specifics */
.founder-card {
    flex-direction: row;
    align-items: center;
    padding: 20px;
}

.founder-info h4 {
    font-size: 1.2em;
    color: var(--color-accent-gold);
    margin: 0;
}

/* --- 6. RESPONSIVE QUERIES --- */
@media (min-width: 768px) {
    .about-content-grid {
        grid-template-columns: 1fr 1fr;
    }

    .grid-card.large-card:nth-child(1) { grid-area: 1 / 1 / 2 / 2; } /* Company Overview */
    .grid-card:nth-child(3) { grid-area: 1 / 2 / 2 / 3; }            /* Quality */
    .grid-card.large-card:nth-child(2) { grid-area: 2 / 1 / 3 / 2; } /* Vision */
    .grid-card.founder-details { grid-area: 2 / 2 / 4 / 3; }         /* Founder Profile */

    .about-hero {
        padding: 80px var(--padding-base);
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 4em;
    }
}/* End custom CSS */