:root {
  --brand: #01b5fb;
  --sub: #6ac754;
  --body: #516171;
  --border: rgba(0,0,0,0.08);
  --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}


:root {
    --brand: #BF092F;
}

/* Hero Section */
.about-hero {
    position: relative;
    width: 100%;
    height: 55vh;
    background: url('../img/image-2/about-path.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Dark overlay */
.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* backdrop-filter: blur(2px); */
}

/* Text area */
.about-content {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 2;
    padding: 0 20px;
}

/* Stylish main title */
.about-content h1 {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

/* Underline with brand color */
.about-content h1::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 70px;
    height: 4px;
    background: var(--brand);
    transform: translateX(-50%);
    border-radius: 10px;
}

/* Subtitle */
.about-content p {
    margin-top: 25px;
    font-size: 1.2rem;
    max-width: 700px;
    opacity: 0.95;
}

/* Simple fade-up animation if not using AOS */
[data-aos="fade-up"] {
    animation: fadeUp 1s ease-out;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Section Styling */
.about-wrapper {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}
/* Decorative top line */
.about-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--brand);
    border-radius: 10px;
}
.about-heading {
    font-size: 30px;
    font-weight: 800;
    color: #0b2149;
    letter-spacing: -0.5px;
}
.about-tagline {
    /* font-size: 20px; */
    color: #6b7280;
    margin-bottom: 25px;
}
.about-description {
    /* font-size: 17px; */
    line-height: 1.85;
    color: #374151;
    margin-bottom: 18px;
}
/* Image Section */
.about-photo-wrapper {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: .4s ease;
}
.about-photo-wrapper img {
    width: 100%;
    border-radius: 18px;
    transition: transform .6s ease;
}
.about-photo-wrapper:hover img {
    transform: scale(1.05);
}
/* Stats Box */
.highlight-card {
    padding: 20px;
    border-radius: 14px;
    background: #f9fafb;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: .3s ease;
}
.highlight-card:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
}
.highlight-card h5 {
    font-size: 22px;
    font-weight: 700;
    color: #0b2149;
    margin-bottom: 5px;
}
.highlight-card p {
    margin: 0;
    color: #6b7280;
    font-size: 15px;
}

/* Equal height wrapper */
.equal-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* Image container with equal height */
.equal-image {
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.equal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* This keeps perfect crop without stretching */
    transition: transform .6s ease;
}
.equal-image:hover img {
    transform: scale(1.05);
}
/* Optional – add smooth gap control */
.about-wrapper {
    padding: 100px 0;
}



.stats-section {
    padding: 0 0 50px 0;
    background: #ffffff;
    position: relative;
}
.stats-heading {
    font-size: 36px;
    font-weight: 700;
    color: #0b2149;
    text-align: center;
    margin-bottom: 15px;
}
.stats-subtitle {
    font-size: 18px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 50px;
}
.stat-box {
    padding: 30px 20px;
    background: #f9fafb;
    border-radius: 14px;
    transition: 0.3s ease;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.stat-box:hover {
    transform: translateY(-8px);
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.stat-icon {
    font-size: 42px;
    color: #0d6efd;
    margin-bottom: 10px;
}
.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #0b2149;
    margin-bottom: 5px;
}
.stat-label {
    font-size: 16px;
    color: #6b7280;
}


.quality-section {
    padding: 50px 0 80px 0;
    background: #ffffff;
}

.quality-heading {
    font-size: 26px;
    font-weight: 800;
    color: var(--brand);
    text-align: center;
    max-width: 900px;
    padding: 0 50px;
    margin: 0 auto 50px auto;
    line-height: 1.5;
}

@media (max-width: 768px) {
  .quality-heading {
    font-size: 20px;
  }
}

/* Feature Card */
.feature-card {
    background: #f8f9fc;
    padding: 30px;
    border-radius: 16px;
    transition: .4s ease;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;

    /* SAME HEIGHT FIX */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    background: #ffffff;
}

.feature-card:before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff0033, #ff8a00);
    opacity: 0.08;
    transition: 0.4s;
}

.feature-card:hover:before {
    opacity: 0.15;
    transform: scale(1.2);
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #d60000;
    margin-bottom: 12px;
}

.feature-text {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
}

/* RIGHT SIDE BOX */
/* .highlight-box {
    background: #0f172a;
    color: #ffffff;
    padding: 45px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
    transition: 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
}

.highlight-box h2 {
    color: #ffffff;
    font-size: 24px;
    line-height: 1.6;
    font-weight: 700;
} */

/* Enhanced Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #ffffff, #f8f8f8);
    color: #111827;
    padding: 45px;
    border-radius: 22px;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    border-left: 6px solid var(--brand);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.10);
    transition: all 0.35s ease;
    overflow: hidden;
}

/* Subtle glowing highlight circle */
.highlight-box::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    top: -40px;
    right: -40px;
    background: var(--brand);
    opacity: 0.12;
    border-radius: 50%;
    /* filter: blur(25px); */
    transition: 0.4s ease;
}

/* Hover Effect */
.highlight-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 10px 20px rgba(191, 9, 47, 0.25);
    border-left-color: #ff8a8a;
}

/* Light bubble moves on hover */
.highlight-box:hover::before {
    transform: translate(-10px, 10px) scale(1.1);
    opacity: 0.18;
}