/* About Hero Area (Base - Mobile) */
.about-hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1.5rem;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.6));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1rem;
    color: var(--white);
    max-width: 500px;
    margin: 0 auto;
}

/* About Grid Section (Base - Mobile) */
.about-grid {
    padding: 60px 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    border: 1px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--white);
}

.card-label {
    display: inline-block;
    color: var(--white);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-card h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.about-card p {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.7;
}

/* Core Values Section (Base - Mobile) */
.core-values {
    padding: 80px 1.5rem;
    background-color: #CCD6F6 ;
}
.section-header h1{
    color: var(--bg-card);
    text-align: center;
    margin-bottom: 0.6rem;
}
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2.5rem;
    background: var(--secondary);
    border-radius: 12px;
    transition: var(--transition);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    
}

.value-item i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ────────────────────────────────
   RESPONSIVE ENHANCEMENTS (min-width)
───────────────────────────────── */

/* Tablet (min-width: 768px) */
@media (min-width: 768px) {
    .about-hero {
        height: 70vh;
    }

    .hero-content h1 {
        font-size: 4rem;
    }

    .hero-content p {
        font-size: 1.25rem;
    }

    .about-grid {
        flex-direction: row;
        padding: 100px 3rem;
        max-width: var(--container-max-width);
        margin: 0 auto;
        gap: 4rem;
    }

    .about-card {
        flex: 1;
        padding: 4rem;
    }

    .core-values {
        padding: 100px 3rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: var(--container-max-width);
        margin: 0 auto;
    }
}

/* Desktop (min-width: 1024px) */
@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Small mobile tweak: ensure hero title sits below fixed header on very small screens */
@media (max-width: 320px) {
  .hero-content {
    padding: 140px 1.5rem 60px;
  }

  .hero-content h1 {
    margin-top: 0.9rem;
    font-size: 2.2rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}