body {
    color: #fff !important;
    font-family: 'Jost', sans-serif !important;;
    line-height: 1.6;
}

/* ===== Smooth transition for all hoverable elements ===== */
* {
  transition: all 0.3s ease;
}


/* ===== Hero Section CSS Starts ===== */

.hero {
    position: relative;
    background: url('../img/bg-1.jpg') center/cover no-repeat;
    color: #fff !important;
    padding: 120px 0;
    text-align: center;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.9) !important;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5) !important; /* Adjust opacity here */
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-weight: 900;
    font-size: 3.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    user-select: none;
}

.hero p.lead {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffc2c2 !important;
}

/* ===== Hero Section CSS End ===== */


/* ===== About Us Section CSS Start ===== */

#about h2 {
    color: #2E2E2E !important;
    font-weight: 700;
    margin-bottom: 1rem;
}

#about p {
    color: #000 !important;
    font-size: 1.1rem;
}

/* ===== About Us Section CSS End ===== */


/* ===== Principles Section CSS Start ===== */

#principles h2 {
    color: #2E2E2E !important;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

#principles h4{
    color: #000 !important;
    font-weight: bolder;
}

#principles .p-4 {
    background: linear-gradient(145deg, #ff4545 0%, rgba(56, 32, 32, 0.85) 100%) !important;
    color: white !important;
    box-shadow: 0 8px 20px rgba(255, 69, 69, 0.4) !important;
    border: none;
    border-radius: 15px;
    cursor: default;
    transform-style: preserve-3d;
    user-select: none;
}

#principles .p-4:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 69, 69, 0.7) !important;
}

/* ===== Principal Section CSS End ===== */


/* ===== Stats Section CSS Start ===== */

.stats-box {
    background: #1a0000 !important;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 15px rgba(255, 69, 69, 0.3) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.stats-box:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 69, 69, 0.7) !important;
}

.stats-box h2 {
    color: #ff4545 !important;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.7) !important;
}

.stats-box p {
    font-size: 1.1rem;
    color: #ccc !important;
    letter-spacing: 1px;
}

/* ===== Stats Section CSS Ends ===== */
 

@media (max-width: 768px) {
    .hero {
        padding: 80px 15px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p.lead {
        font-size: 1.2rem;
    }

    #principles .p-4 {
        margin-bottom: 1.5rem;
    }

    .stats-box h2 {
        font-size: 2.2rem;
    }
}