:root {
    --iv-dark: #1A365D;
    --iv-primary: #2C5282;
    --iv-secondary: #4A5568;
    --iv-accent: #4299E1;
    --iv-light: #F7FAFC;
    --iv-white: #FFFFFF;
    --iv-border: #E2E8F0;
    --iv-radius: 12px;
    --iv-transition: all 0.3s ease;
}

.iv-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
.iv-h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--iv-dark);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.iv-h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--iv-dark);
    line-height: 1.3;
    margin-bottom: 24px;
}

.iv-h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--iv-dark);
    line-height: 1.4;
    margin-bottom: 16px;
}

.iv-lead {
    font-size: 18px;
    color: var(--iv-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.iv-text {
    font-size: 16px;
    color: var(--iv-secondary);
    line-height: 1.6;
}

.iv-section {
    padding: 35px 0;
}

.iv-section-alt {
    background: var(--iv-light);
}

.iv-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.iv-section-subtitle {
    text-align: center;
    margin-bottom: 60px;
}

.iv-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Cards */
.iv-card {
    background: var(--iv-white);
    border-radius: var(--iv-radius);
    padding: 32px;
    border: 1px solid var(--iv-border);
}

.iv-quote-card {
    background: linear-gradient(135deg, var(--iv-primary), var(--iv-accent));
    color: var(--iv-white);
    padding: 32px;
    border-radius: var(--iv-radius);
}

.iv-quote-card .iv-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-style: italic;
    margin-bottom: 16px;
}

.iv-quote-author {
    font-weight: 600;
    color: var(--iv-white);
}

/* Feature Items */
.iv-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
}

.iv-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(66, 153, 225, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--iv-accent);
    font-size: 20px;
    flex-shrink: 0;
}

/* Composition Grid */
.iv-composition-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 32px 0;
}

.iv-mineral-item {
    padding: 20px;
    background: var(--iv-white);
    border-radius: 8px;
    border: 1px solid var(--iv-border);
    text-align: center;
}

.iv-mineral-name {
    font-weight: 600;
    color: var(--iv-primary);
    margin-bottom: 8px;
    font-size: 14px;
}

.iv-mineral-desc {
    font-size: 13px;
    color: var(--iv-secondary);
}

/* Benefits */
.iv-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0;
}

.iv-benefit {
    padding: 10px 20px;
    background: var(--iv-white);
    border-radius: 20px;
    border: 1px solid var(--iv-border);
    font-size: 14px;
    font-weight: 500;
    color: var(--iv-primary);
}

/* Hero */
.iv-hero {
    padding: 120px 0 60px;
    text-align: center;
}

.iv-hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    color: #2d3436;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #1A365D, #2C5282);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Team Image - FIXED */
.iv-team-image {
    width: 100%;
    height: 400px;
    border-radius: var(--iv-radius);
    overflow: hidden;
    position: relative;
}

.iv-team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.iv-team-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 54, 93, 0.8), transparent);
    padding: 24px;
    color: white;
}

.iv-team-image-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.iv-team-image-title {
    font-size: 14px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 992px) {
    .iv-grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .iv-composition-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .iv-hero-title {
        font-size: 42px;
    }

    .iv-h2 {
        font-size: 28px;
    }

    .iv-team-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .iv-container {
        padding: 0 20px;
    }

    .iv-section {
        padding: 60px 0;
    }

    .iv-hero-title {
        font-size: 36px;
        margin-top: 65px;
    }

    .iv-composition-grid {
        grid-template-columns: 1fr;
    }

    .iv-card {
        padding: 24px;
    }

    .iv-team-image {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .iv-hero-title {
        font-size: 32px;
    }

    .iv-h2 {
        font-size: 24px;
    }

    .iv-lead {
        font-size: 16px;
    }

    .iv-team-image {
        height: 250px;
    }
}


















































:root {
    --iv-dark: #1A365D;
    --iv-primary: #2C5282;
    --iv-secondary: #4A5568;
    --iv-accent: #4299E1;
    --iv-light: #F7FAFC;
    --iv-white: #FFFFFF;
    --iv-border: #E2E8F0;
    --iv-radius: 12px;
    --iv-transition: all 0.3s ease;
}

.iv-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
.iv-h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--iv-dark);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.iv-h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--iv-dark);
    line-height: 1.3;
    margin-bottom: 24px;
}

.iv-h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--iv-dark);
    line-height: 1.4;
    margin-bottom: 16px;
}

.iv-lead {
    font-size: 18px;
    color: var(--iv-secondary);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.iv-text {
    font-size: 16px;
    color: var(--iv-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.iv-section {
    padding: 80px 0;
}

.iv-section-alt {
    background: var(--iv-light);
}

.iv-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.iv-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Banner System (For 1920x600 Images) */
.iv-full-banner {
    width: 100%;
    height: 450px; /* Scaled height for better web viewing */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.iv-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 54, 93, 0.15); /* Subtle tint */
    display: flex;
    align-items: center;
}

.iv-banner-text-box {
    max-width: 600px;
}

.iv-white-text {
    color: white !important;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Cards */
.iv-card {
    background: var(--iv-white);
    border-radius: var(--iv-radius);
    padding: 32px;
    border: 1px solid var(--iv-border);
}

.iv-quote-card {
    background: linear-gradient(135deg, var(--iv-primary), var(--iv-accent));
    color: var(--iv-white);
    padding: 40px;
    border-radius: var(--iv-radius);
    box-shadow: 0 10px 25px rgba(44, 82, 130, 0.15);
}

.iv-quote-card .iv-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-style: italic;
    margin-bottom: 16px;
}

.iv-quote-author {
    font-weight: 600;
    color: var(--iv-white);
    margin-top: 15px;
}

/* Feature Items */
.iv-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
}

/* Composition Grid */
.iv-composition-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 32px 0;
}

.iv-mineral-item {
    padding: 24px;
    background: var(--iv-white);
    border-radius: 8px;
    border: 1px solid var(--iv-border);
    text-align: center;
    transition: var(--iv-transition);
}

.iv-mineral-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.iv-mineral-name {
    font-weight: 600;
    color: var(--iv-primary);
    margin-bottom: 8px;
    font-size: 16px;
}

.iv-mineral-desc {
    font-size: 14px;
    color: var(--iv-secondary);
}

/* Benefits */
.iv-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0;
}

.iv-benefit {
    padding: 10px 20px;
    background: var(--iv-white);
    border-radius: 20px;
    border: 1px solid var(--iv-border);
    font-size: 14px;
    font-weight: 500;
    color: var(--iv-primary);
}

/* Hero */
.iv-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(to bottom, #ebf4ff, #ffffff);
}

.iv-hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--iv-dark);
    margin-bottom: 1rem;
}

/* Team Image */
.iv-team-image {
    width: 100%;
    height: 500px;
    border-radius: var(--iv-radius);
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.iv-team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.iv-team-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 54, 93, 0.9), transparent);
    padding: 32px;
    color: white;
}

.iv-team-image-name {
    font-size: 24px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .iv-grid-2 { grid-template-columns: 1fr; gap: 40px; }
    .iv-full-banner { height: 350px; }
    .iv-white-text { font-size: 2rem; }
    .iv-hero-title { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .iv-section { padding: 60px 0; }
    .iv-composition-grid { grid-template-columns: 1fr; }
    .iv-full-banner { height: 250px; }
}