:root {
    --primary: #e4723d;
    --text-dark: #2c3e50;
    --text-muted: #7f8c8d;
    --bg-light: #f8fafc;
    --card-bg: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    margin: 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    /* padding: 80px 20px; */
}

.main-heading {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 10px;
    margin-top: 100px;
    font-family: "Playfair Display", serif;
}

.main-heading span {
    color: rgb(72, 178, 211);
}

.sub-text {
    text-align: center;
    color: rgb(39, 121, 168);
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* Grid Layout */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Facility Card */
.facility-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.facility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.facility-card:hover::before {
    transform: scaleX(1);
}

/* Icon Styling */
.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(46, 204, 113, 0.1);
    color: rgb(23, 121, 138);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 25px;
    text-align: center;
    margin-left: 100px;
}

.icon-box svg {
    width: 30px;
    height: 30px;
}

.facility-card h3 {
    margin: 0 0 15px 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.facility-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Animation Classes */
[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

[data-reveal].active {
    opacity: 1;
    transform: translateY(0);
}