* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Hind Siliguri', 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #f8f9fa;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header & Hero Section (Design matched from image) */
.team-hero {
    background: #ffffff;
    padding: 50px 20px 30px 20px;
    text-align: center;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #111;
    letter-spacing: 1px;
}

.hero-title span {
    color: #e62e00; /* Red emphasis color */
}

.hero-subtitle {
    color: #666;
    font-size: 16px;
    margin-top: 5px;
    margin-bottom: 30px;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 1000px;
    margin: 0 auto;
}

.btn-filter {
    background: #e9ecef;
    color: #333;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-filter:hover {
    background: #e62e00;
    color: #fff;
}

/* Slider Section */
.slider-section {
    padding: 40px 0;
    background: #f1f3f5;
}

.swiper {
    width: 100%;
    padding-bottom: 40px !important;
}

.swiper-slide {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 320px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,51,102,0.9));
    color: #fff;
    padding: 20px 15px 10px 15px;
    text-align: center;
}

.slide-caption h4 { font-size: 16px; }
.slide-caption p { font-size: 13px; opacity: 0.9; }

/* Section Headings */
.team-section {
    margin-top: 50px;
}

.section-heading {
    display: inline-block;
    background: #e62e00;
    color: #fff;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 20px;
    margin-bottom: 25px;
}

/* Member Cards Grid */
.team-grid {
    display: grid;
    gap: 25px;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.member-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.member-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    background-color: #eee;
}

.member-info {
    padding: 18px;
    text-align: center;
}

.member-info h3 {
    font-size: 18px;
    color: #003366;
    margin-bottom: 5px;
}

.member-info .designation {
    display: inline-block;
    background: #e0f2f1;
    color: #00796b;
    font-size: 13px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 15px;
    margin-bottom: 10px;
}

.member-info p {
    font-size: 13px;
    color: #666;
}

.member-info i { color: #e62e00; margin-right: 4px; }

@media (max-width: 768px) {
    .hero-title { font-size: 28px; }
    .filter-buttons { gap: 6px; }
    .btn-filter { font-size: 12px; padding: 6px 12px; }
}

/* Footer Styles */
.site-footer {
    background-color: #0b1329; /* Dark Blue Theme */
    color: #ffffff;
    padding-top: 50px;
    margin-top: 60px;
    font-family: 'Hind Siliguri', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 30px;
    padding-bottom: 40px;
}

.footer-title {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-info p {
    color: #b0bec5;
    font-size: 14px;
    line-height: 1.6;
}

.footer-info p strong {
    color: #ffffff;
}

.mt-15 {
    margin-top: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #e62e00;
    padding-left: 5px;
}

/* Support Section */
.support-number {
    font-size: 22px;
    font-weight: 800;
    color: #e62e00;
    font-family: 'Poppins', sans-serif;
}

.support-time {
    color: #b0bec5;
    font-size: 14px;
    margin-top: 4px;
    margin-bottom: 18px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1e293b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.social-icons a.fb:hover { background: #1877f2; }
.social-icons a.yt:hover { background: #ff0000; }
.social-icons a.li:hover { background: #0a66c2; }
.social-icons a.wa:hover { background: #25d366; }

/* Partner Branding */
.partner-logo {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 12px;
}

.partner-logo img {
    height: 18px;
    filter: brightness(0) invert(1);
}

/* Payment Gateway Banner */
.payment-banner {
    background: #070d1e;
    padding: 15px 0;
    border-top: 1px solid #1e293b;
    text-align: center;
}

.payment-banner img {
    max-width: 100%;
    height: auto;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

     /* Top Bar */
        .top-bar {
            background: var(--dark);
            color: #fff;
            padding: 8px 5%;
            display: flex;
            justify-content: space-between;
            font-size: 14px;
        }

        .top-bar a {
            color: #fff;
            text-decoration: none;
            margin-left: 15px;
        }

        /* Header / Navbar */
        header {
            background: #fff;
            padding: 15px 5%;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo h2 {
            color: var(--primary);
            font-size: 22px;
            font-weight: 700;
        }

        .logo p {
            color: var(--accent);
            font-size: 12px;
            font-weight: 600;
        }

        nav a {
            text-decoration: none;
            color: var(--dark);
            margin-left: 20px;
            font-weight: 600;
            transition: 0.3s;
        }

        nav a:hover {
            color: var(--secondary);
        }