

/* ======================================================
   INDEX HERO BANNER START
====================================================== */

.index-hero-banner {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: url("../imagess/e.webp")
        center / cover no-repeat;
    overflow: hidden;
}

.index-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.85),
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.2)
    );
    z-index: 1;
}

.index-hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: #fff;
}

/* TAGLINE */
.index-hero-tagline {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff3d6b;
    margin-bottom: 12px;
}

/* TITLE */
.index-hero-title {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 15px;
}

.index-hero-title span {
    color: #ff3d6b;
}

/* TEXT */
.index-hero-text {
    font-size: 17px;
    line-height: 1.7;
    color: #ddd;
    margin-bottom: 30px;
}

/* BUTTONS */
.index-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.index-btn-primary {
    background: linear-gradient(135deg, #ff3d6b, #ff004c);
    color: #fff;
    padding: 14px 34px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.index-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 61, 107, 0.4);
}

.index-btn-outline {
    border: 1px solid #ff3d6b;
    color: #ff3d6b;
    padding: 14px 34px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.index-btn-outline:hover {
    background: #ff3d6b;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .index-hero-title {
        font-size: 38px;
    }

    .index-hero-text {
        font-size: 15px;
    }
}

/* ======================================================
   INDEX HERO BANNER END
====================================================== */



/* ======================================================
   ABOUT PAGE CONTENT START
====================================================== */

.about-intro-section,
.about-who-section,
.about-mission-section,
.about-services-section,
.about-safety-section,
.about-legal-section{
    padding:70px 15px;
    background:#0b0f1a;
    color:#ddd;
}

.about-why-section{
    padding:70px 15px;
    background:#050b1a;
}

.about-cta-section{
    padding:80px 15px;
    background:linear-gradient(135deg,#981e55,#701135);
    text-align:center;
    color:#fff;
}

/* TITLES */
.about-main-title{
    font-size:42px;
    font-weight:900;
    color:#ffd166;
    margin-bottom:25px;
}

.about-main-title span{
    color:#ff3d6b;
}

.about-title{
    font-size:32px;
    font-weight:800;
    color:#ffd166;
    margin-bottom:20px;
}

/* TEXT */
.about-intro-section p,
.about-who-section p,
.about-mission-section p,
.about-services-section p,
.about-safety-section p,
.about-legal-section p{
    font-size:17px;
    line-height:1.9;
    margin-bottom:16px;
}

/* WHY GRID */
.about-why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.about-why-card{
    background:#111;
    border:2px solid #e91e63;
    border-radius:18px;
    padding:28px;
    text-align:center;
}

.about-why-card h4{
    color:#ffd166;
    font-weight:800;
    margin-bottom:10px;
}

/* CTA */
.about-cta-section h2{
    font-size:38px;
    font-weight:900;
    margin-bottom:15px;
}

.about-cta-section p{
    font-size:18px;
    max-width:750px;
    margin:auto;
    line-height:1.8;
}

/* RESPONSIVE */
@media(max-width:992px){
    .about-why-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .about-why-grid{
        grid-template-columns:1fr;
    }

    .about-main-title{
        font-size:30px;
    }

    .about-title{
        font-size:24px;
    }
}

/* ======================================================
   ABOUT PAGE CONTENT END
====================================================== */
