body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.8; color: #333;
    background: #f8fafc;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #1e293b;
    overflow-x: hidden;
}

/* Modern Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 95px auto 50px;
    padding: 0 20px;
    gap: 50px;
}
.hero-text { flex: 1; }
.hero-text h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #2563eb, #14b8a6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-text p.tagline {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: #475569;
    font-weight: 500;
}
.hero-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    background: #e2e8f0;
    aspect-ratio: 4/3;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, opacity 0.5s ease;
}
.hero-image:hover img { transform: scale(1.05); }
.hero-image img.fade-out { opacity: 0.3; }

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}
.hero-dot:hover { background: rgba(255, 255, 255, 0.8); }
.hero-dot.active {
    background: #ffffff;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    transform: scale(1.2);
}

/* Vision & Mission Cards */
.info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
    gap: 40px;
}
.info-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 40px;
    border-radius: 16px;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.info-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 25px;
}
.info-card h2 { font-size: 2rem; color: #0f172a; margin-bottom: 15px; }
.info-card p { font-size: 1.1rem; color: #475569; text-align: justify; margin-bottom: 15px; }

.cta-button {
    display: inline-block;
    margin-top: 10px;
    padding: 15px 35px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.2s, background 0.2s;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}
.cta-button:hover {
    transform: translateY(-2px);
    background: #1d4ed8;
}

/* Quick Features Section */
.features-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
    gap: 30px;
}
.feature-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.feature-icon { font-size: 2.5rem; margin-bottom: 15px; }
.feature-box h3 { color: #0f172a; margin-bottom: 10px; font-size: 1.2rem; }
.feature-box p { font-size: 0.95rem; color: #475569; margin-bottom: 0; text-align: center;}

/* Load Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-up {
    opacity: 0;
}
.animate-up.in-view { animation: fadeInUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.5s; }

@media (max-width: 900px) {
    .hero-section { flex-direction: column; text-align: center; margin-top: 125px; gap: 30px; }
    .hero-text h1 { font-size: 3rem; }
    .hero-text p.tagline { font-size: 1.1rem; }
    .info-card { padding: 25px; }
    .info-card h2 { font-size: 1.6rem; }
    .feature-box { padding: 20px 15px; }
}

/* Granular styling for small mobile devices */
@media (max-width: 600px) {
    .hero-section { margin-top: 75px; gap: 20px; }
    .hero-text h1 { font-size: 2.2rem; }
    .hero-text p.tagline { font-size: 1rem; margin-bottom: 20px; }
    .info-section { grid-template-columns: 1fr; gap: 20px; }
    .features-wrapper { grid-template-columns: 1fr; gap: 20px; }
    .info-card { padding: 20px; }
    .cta-button { font-size: 1rem; padding: 12px 25px; }
}