:root {
    --primary-color: #0B3C8D;
    --primary-blue: #0B3C8D;
    --dark-blue: #062554;
    --secondary-color: #4A90E2;
    --gold-color: #FFD700;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Lato', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.brand-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.nav-logo {
    height: 50px;
    width: auto;
    border-radius: 4px;
}

.brand-text {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    text-transform: lowercase;
}

.nav-brand i {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    padding: 0.4rem 0;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--gold-color);
    font-weight: 600;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
    background: var(--primary-color);
}

.nav-link.active::after {
    width: 100%;
    background: var(--gold-color);
}

.nav-link.btn-join {
    background: var(--gold-color);
    color: var(--text-dark);
    padding: 0.5rem 1.2rem;
    border-radius: 5px;
    font-size: 0.9rem;
}

.nav-link.btn-join::after {
    display: none;
}

.nav-link.btn-join:hover {
    background: #C79100;
    color: var(--white);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 3px;
}

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,128C672,107,768,85,864,96C960,107,1056,149,1152,154.7C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gold-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #C79100;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(218, 165, 32, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-gold {
    background: var(--gold-color);
    color: var(--white);
}

.btn-gold:hover {
    background: #C79100;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
}

.btn-block {
    width: 100%;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 5rem 0 3rem;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.bg-light {
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.benefits-highlight {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.benefit-item {
    text-align: center;
}

.benefit-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold-color);
    font-family: 'Lato', sans-serif;
}

.benefit-label {
    color: var(--text-light);
    font-size: 1rem;
    margin-top: 0.5rem;
}

.benefits-list {
    max-width: 800px;
    margin: 3rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.benefit-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.benefit-point i {
    color: var(--gold-color);
    font-size: 1.5rem;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary-color);
    font-family: 'Lato', sans-serif;
}

.stat-label {
    color: var(--text-light);
    margin-top: 0.5rem;
}

.about-content {
    max-width: 900px;
    margin: 3rem auto 0;
    text-align: center;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.commission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.commission-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 3px solid transparent;
}

.commission-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
}

.commission-card.highlight {
    border-color: var(--gold-color);
    background: linear-gradient(to bottom, #FFFBF0, var(--white));
}

.commission-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
}

.commission-card.highlight .commission-icon {
    background: var(--gold-color);
}

.commission-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.commission-rate {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold-color);
    margin: 1rem 0;
    font-family: 'Lato', sans-serif;
}

.commission-note {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 1.5rem;
    background: #FFF9E6;
    border-left: 4px solid var(--gold-color);
    border-radius: 5px;
    display: flex;
    gap: 1rem;
    align-items: start;
}

.commission-note i {
    color: var(--gold-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.content-text .lead {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.content-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-light);
}

.highlight-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.highlight-box i {
    font-size: 2rem;
    margin-top: 0.2rem;
}

.content-visual {
    display: grid;
    gap: 1.5rem;
}

.visual-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.visual-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.visual-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.club-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.club-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.club-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.club-badge.mdrt {
    background: linear-gradient(135deg, #FF6B6B, #E74C3C);
    color: var(--white);
}

.club-badge.tot {
    background: linear-gradient(135deg, var(--gold-color), #C79100);
    color: var(--white);
}

.club-badge.lic-club {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
}

.club-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.club-card > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.club-perks {
    list-style: none;
}

.club-perks li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #E0E0E0;
}

.club-perks li:last-child {
    border-bottom: none;
}

.club-perks i {
    color: var(--gold-color);
}

.fringe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.fringe-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.fringe-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.fringe-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.fringe-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.fringe-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.dream-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.dream-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.dream-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.dream-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--gold-color), #C79100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.dream-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.dream-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form-container h2,
.contact-info-container h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-intro,
.contact-intro {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.required {
    color: #E74C3C;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #E0E0E0;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group textarea {
    resize: vertical;
}

.form-message {
    padding: 1rem 1.5rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.form-message.error {
    background: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

.contact-details {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #E0E0E0;
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-text h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-text a {
    color: var(--secondary-color);
    transition: var(--transition);
}

.contact-text a:hover {
    color: var(--primary-color);
}

.social-connect {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #E0E0E0;
}

.social-connect h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.map-section {
    padding: 3rem 0 0;
}

.map-container {
    width: 100%;
    height: 450px;
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.faq-item h4 i {
    color: var(--secondary-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-column p {
    opacity: 0.9;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--white);
    opacity: 0.9;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 1rem;
    opacity: 0.9;
    display: flex;
    gap: 1rem;
}

.footer-contact i {
    margin-top: 0.2rem;
    color: var(--gold-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--gold-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

.bima-sakhi-hero {
    background: linear-gradient(135deg, #C71585 0%, #FF1493 100%);
}

.bima-sakhi-intro {
    background: var(--bg-light);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.stipend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stipend-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stipend-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #C71585, #FF1493);
}

.stipend-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(199, 21, 133, 0.2);
}

.stipend-card.year-1::before {
    background: linear-gradient(90deg, #FFD700, #FFA500);
}

.stipend-card.year-2::before {
    background: linear-gradient(90deg, #C0C0C0, #A9A9A9);
}

.stipend-card.year-3::before {
    background: linear-gradient(90deg, #CD7F32, #B8860B);
}

.year-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #C71585, #FF1493);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.stipend-amount {
    font-size: 3rem;
    font-weight: 900;
    color: #C71585;
    margin: 1rem 0;
    font-family: 'Lato', sans-serif;
}

.stipend-monthly {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.stipend-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.stipend-note {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 1.5rem;
    background: #FFF0F5;
    border-left: 4px solid #C71585;
    border-radius: 5px;
    display: flex;
    gap: 1rem;
    align-items: start;
}

.stipend-note i {
    color: #C71585;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.benefit-icon.pink {
    background: linear-gradient(135deg, #C71585, #FF1493);
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.eligibility-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 3rem;
}

.eligibility-box,
.process-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.eligibility-box h3,
.process-box h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.eligibility-box h3 i,
.process-box h3 i {
    color: #C71585;
    margin-right: 0.5rem;
}

.criteria-list {
    list-style: none;
}

.criteria-list li {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #E0E0E0;
}

.criteria-list li:last-child {
    border-bottom: none;
}

.criteria-list i {
    color: #C71585;
    font-size: 1.2rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.step-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #C71585, #FF1493);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.document-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.document-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.document-item i {
    font-size: 2.5rem;
    color: #C71585;
    margin-bottom: 1rem;
}

.document-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.document-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.fee-breakdown {
    max-width: 600px;
    margin: 3rem auto 0;
}

.fee-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.fee-label {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.fee-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #C71585;
    font-family: 'Lato', sans-serif;
}

.fee-divider {
    text-align: center;
    color: var(--text-light);
    font-size: 1.5rem;
    padding: 0.5rem 0;
}

.fee-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0 0;
    margin-top: 1.5rem;
    border-top: 2px solid #E0E0E0;
}

.total-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.total-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: #C71585;
    font-family: 'Lato', sans-serif;
}

.fee-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #FFF0F5;
    border-left: 4px solid #C71585;
    border-radius: 5px;
    display: flex;
    gap: 1rem;
    align-items: start;
}

.fee-note i {
    color: #C71585;
    font-size: 1.3rem;
    margin-top: 0.2rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #C71585, #FF1493);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -6px);
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .content-split {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .eligibility-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero {
        padding: 6rem 0 4rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .benefits-highlight {
        gap: 2rem;
    }

    .benefit-number {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid,
    .commission-grid,
    .club-grid,
    .fringe-grid,
    .dream-grid,
    .faq-grid,
    .stipend-grid,
    .benefits-grid,
    .documents-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-brand {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }

    .benefit-number {
        font-size: 2rem;
    }

    .commission-rate {
        font-size: 2.5rem;
    }

    .stipend-amount {
        font-size: 2.5rem;
    }

    .total-amount {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* ==================== Carousel Styles ==================== */
.carousel-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    padding: 60px 0;
}

.carousel-section.bima-carousel {
    background: linear-gradient(135deg, #C71585, #FF1493);
}

.carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-track {
    position: relative;
    min-height: 200px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.carousel-slide.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
}

.slide-content {
    text-align: center;
    padding: 20px;
    color: var(--white);
}

.slide-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.slide-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.slide-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.slide-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator:hover,
.carousel-indicator.active {
    background: var(--white);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .carousel-section {
        padding: 40px 0;
    }

    .slide-content h3 {
        font-size: 1.4rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slide-icon {
        width: 60px;
        height: 60px;
    }

    .slide-icon i {
        font-size: 1.8rem;
    }
}

/* ==================== Back to Top Button ==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 61, 130, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 61, 130, 0.4);
}

/* ==================== About Page Styles ==================== */
.about-overview {
    padding: 80px 0;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 20px 50px rgba(0, 61, 130, 0.3);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.image-placeholder span {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.mission-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 61, 130, 0.15);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mission-icon i {
    font-size: 2rem;
    color: var(--white);
}

.mission-card h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.mission-card p {
    color: var(--text-color);
    line-height: 1.7;
}

/* Highlights Section */
.highlights-section {
    padding: 80px 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.highlight-card {
    background: var(--white);
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--gold);
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), #f4c141);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.highlight-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.highlight-card h3 {
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.highlight-card p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Large Stats Grid */
.large-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.large-stats .stat-card {
    padding: 40px 30px;
}

.large-stats .stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.large-stats .stat-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

/* Leadership Section */
.leadership-section {
    padding: 80px 0;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.leader-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-10px);
}

.leader-image {
    margin-bottom: 20px;
}

.leader-image i {
    font-size: 5rem;
    color: var(--primary-blue);
}

.leader-card h3 {
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.leader-card p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==================== Why LIC Page Styles ==================== */
.intro-section {
    padding: 60px 0;
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 1.8;
}

/* Reasons Section */
.reasons-section {
    padding: 80px 0;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.reason-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-10px);
}

.reason-card.featured {
    border-left: 5px solid var(--gold);
}

.reason-image {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    padding: 40px;
    text-align: center;
}

.reason-image i {
    font-size: 3.5rem;
    color: var(--white);
}

.reason-content {
    padding: 30px;
}

.reason-content h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.reason-content p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 20px;
}

.reason-points {
    list-style: none;
    padding: 0;
}

.reason-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-color);
}

.reason-points li i {
    color: #28a745;
    font-size: 1rem;
}

/* More Reasons Section */
.more-reasons-section {
    padding: 80px 0;
}

.more-reasons-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.more-reason-item {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.more-reason-item:hover {
    transform: translateY(-5px);
}

.more-reason-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), #f4c141);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.more-reason-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.more-reason-item h4 {
    font-size: 1rem;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.more-reason-item p {
    font-size: 0.85rem;
    color: var(--text-color);
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
}

.comparison-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 20px 30px;
    text-align: left;
}

.comparison-table th {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table td {
    border-bottom: 1px solid #eee;
    color: var(--text-color);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background: #f8f9fa;
}

.comparison-table .green {
    color: #28a745;
    font-size: 1.2rem;
}

.comparison-table .red {
    color: #dc3545;
    font-size: 1.2rem;
}

/* ==================== Achievers Page Styles ==================== */
.achievers-hero {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
}

.inspiration-banner {
    background: linear-gradient(135deg, var(--gold), #f4c141);
    padding: 60px 0;
    text-align: center;
}

.inspiration-content {
    color: var(--dark-blue);
}

.inspiration-content i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.inspiration-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.inspiration-content p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Achievers Grid */
.achievers-section {
    padding: 80px 0;
}

.achievers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.achiever-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.achiever-card:hover {
    transform: translateY(-10px);
}

.achiever-image {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.achiever-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.achiever-image > i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 40px 0;
}

.achiever-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achiever-badge i {
    color: var(--white);
    font-size: 1.2rem;
}

.achiever-info {
    padding: 30px;
}

.achiever-info h3 {
    font-size: 1.4rem;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.achiever-title {
    color: var(--gold);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 15px;
}

.achiever-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.achiever-details span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: var(--text-color);
    background: #f5f5f5;
    padding: 5px 12px;
    border-radius: 20px;
}

.achiever-details span i {
    color: var(--primary-blue);
}

.achiever-quote {
    font-style: italic;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    border-left: 3px solid var(--gold);
    padding-left: 15px;
    margin-top: 15px;
}

/* Achievements Highlights */
.achievements-highlights {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
}

.achievements-highlights .section-title,
.achievements-highlights .section-subtitle {
    color: var(--white);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.achievement-icon {
    width: 70px;
    height: 70px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.achievement-icon i {
    font-size: 1.8rem;
    color: var(--dark-blue);
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.achievement-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* Recognition Section */
.recognition-section {
    padding: 80px 0;
}

.recognition-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.recognition-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.recognition-card:hover {
    transform: translateY(-10px);
}

.recognition-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.recognition-card.bronze::before {
    background: #cd7f32;
}

.recognition-card.silver::before {
    background: #c0c0c0;
}

.recognition-card.gold::before {
    background: var(--gold);
}

.recognition-card.platinum::before {
    background: linear-gradient(90deg, #e5e4e2, #8e8e8e, #e5e4e2);
}

.recognition-badge {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.recognition-card.bronze .recognition-badge {
    background: #cd7f32;
}

.recognition-card.silver .recognition-badge {
    background: #c0c0c0;
}

.recognition-card.gold .recognition-badge {
    background: var(--gold);
}

.recognition-card.platinum .recognition-badge {
    background: linear-gradient(135deg, #e5e4e2, #8e8e8e);
}

.recognition-badge i {
    font-size: 2rem;
    color: var(--white);
}

.recognition-card h3 {
    font-size: 1.2rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.recognition-card > p {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.recognition-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.recognition-card ul li {
    padding: 8px 0;
    color: var(--text-color);
    font-size: 0.9rem;
    border-bottom: 1px solid #eee;
}

.recognition-card ul li:last-child {
    border-bottom: none;
}

/* ==================== Downloads Page Styles ==================== */
.downloads-intro {
    padding: 60px 0;
    text-align: center;
}

/* Downloads Grid */
.study-materials-section,
.forms-section,
.product-guides-section {
    padding: 80px 0;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.download-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 61, 130, 0.15);
}

.download-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.download-icon.form-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
}

.download-icon.guide-icon {
    background: linear-gradient(135deg, var(--gold), #f4c141);
}

.download-info h3 {
    font-size: 1.1rem;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.download-info p {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.5;
}

.file-size {
    font-size: 0.8rem;
    color: #888;
    font-weight: 500;
}

.btn-download {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 61, 130, 0.3);
}

/* Helpful Links Section */
.helpful-links-section {
    padding: 80px 0;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.link-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: block;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 61, 130, 0.15);
}

.link-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.link-card h4 {
    font-size: 1.1rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.link-card p {
    font-size: 0.9rem;
    color: var(--text-color);
}

/* ==================== Form Validation Styles ==================== */
.form-group input.error,
.form-group textarea.error {
    border-color: #dc3545;
    background-color: #fff5f5;
}

.form-group input.success,
.form-group textarea.success {
    border-color: #28a745;
    background-color: #f5fff5;
}

.error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.error-message::before {
    content: '\f06a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

/* ==================== Responsive Updates for New Pages ==================== */
@media (max-width: 1024px) {
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .more-reasons-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .achievers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .recognition-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .downloads-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .large-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .more-reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-table th,
    .comparison-table td {
        padding: 15px 20px;
        font-size: 0.9rem;
    }

    .achievers-grid {
        grid-template-columns: 1fr;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .achievement-number {
        font-size: 2rem;
    }

    .recognition-grid {
        grid-template-columns: 1fr;
    }

    .downloads-grid {
        grid-template-columns: 1fr;
    }

    .links-grid {
        grid-template-columns: 1fr;
    }

    .large-stats {
        grid-template-columns: 1fr;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .inspiration-content h2 {
        font-size: 1.5rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .more-reasons-grid {
        grid-template-columns: 1fr;
    }

    .reason-image {
        padding: 30px;
    }

    .reason-image i {
        font-size: 2.5rem;
    }

    .achiever-image {
        padding: 0;
    }

    .achiever-photo {
        height: 180px;
    }

    .achiever-image > i {
        font-size: 4rem;
        padding: 30px 0;
    }

    .download-card {
        padding: 20px;
    }
}

/* ============================================
   IMAGE CAROUSEL STYLES (Bima Sakhi Page)
   ============================================ */
.image-carousel-section {
    width: 100%;
    padding: 0;
    margin: 0;
}

.image-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.image-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.image-carousel-slide.active {
    opacity: 1;
}

.image-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(11, 60, 141, 0.9));
    padding: 30px;
    color: var(--white);
}

.image-slide-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.image-slide-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

.image-carousel-prev,
.image-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    z-index: 20;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.image-carousel-prev:hover,
.image-carousel-next:hover {
    background: var(--gold-color);
    color: var(--text-dark);
}

.image-carousel-prev {
    left: 20px;
}

.image-carousel-next {
    right: 20px;
}

.image-carousel-indicators {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.image-carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-carousel-indicator.active {
    background: var(--gold-color);
    border-color: var(--gold-color);
}

/* ============================================
   HERO BANNER CAROUSEL STYLES (Index Page)
   ============================================ */
.hero-banner-carousel {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.hero-banner-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-banner-slide.active {
    opacity: 1;
}

.hero-banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 60, 141, 0.85) 0%, rgba(74, 144, 226, 0.7) 100%);
}

.hero-banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 90%;
    max-width: 900px;
    z-index: 5;
}

.hero-banner-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-banner-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    letter-spacing: 2px;
}

.hero-banner-prev,
.hero-banner-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
    color: var(--white);
    transition: all 0.3s ease;
    z-index: 20;
}

.hero-banner-prev:hover,
.hero-banner-next:hover {
    background: var(--gold-color);
    border-color: var(--gold-color);
    color: var(--text-dark);
}

.hero-banner-prev {
    left: 30px;
}

.hero-banner-next {
    right: 30px;
}

.hero-banner-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.hero-banner-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-banner-indicator.active {
    background: var(--gold-color);
    border-color: var(--gold-color);
    transform: scale(1.2);
}

/* Responsive styles for carousels */
@media (max-width: 992px) {
    .hero-banner-carousel {
        height: 500px;
    }

    .hero-banner-content h1 {
        font-size: 2.5rem;
    }

    .hero-banner-subtitle {
        font-size: 1.2rem;
    }

    .image-carousel {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hero-banner-carousel {
        height: 450px;
    }

    .hero-banner-content h1 {
        font-size: 2rem;
    }

    .hero-banner-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .hero-banner-prev,
    .hero-banner-next {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .hero-banner-prev {
        left: 15px;
    }

    .hero-banner-next {
        right: 15px;
    }

    .image-carousel {
        height: 300px;
    }

    .image-carousel-prev,
    .image-carousel-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .image-slide-overlay h3 {
        font-size: 1.4rem;
    }

    .image-slide-overlay p {
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .image-carousel {
        height: 280px;
    }

    .image-slide-overlay {
        padding: 15px 20px;
    }

    .image-slide-overlay h3 {
        font-size: 1.3rem;
    }

    .image-slide-overlay p {
        font-size: 0.85rem;
    }

    .image-carousel-indicators {
        bottom: 70px;
    }

    .image-carousel-prev,
    .image-carousel-next {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-banner-carousel {
        height: 380px;
    }

    .hero-banner-content h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero-banner-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .hero-banner-prev,
    .hero-banner-next {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .hero-banner-prev {
        left: 10px;
    }

    .hero-banner-next {
        right: 10px;
    }

    .hero-banner-indicators {
        bottom: 20px;
        gap: 8px;
    }

    .hero-banner-indicator {
        width: 10px;
        height: 10px;
    }

    .image-carousel {
        height: 220px;
    }

    .image-slide-overlay {
        padding: 12px 15px;
    }

    .image-slide-overlay h3 {
        font-size: 1.1rem;
    }

    .image-slide-overlay p {
        font-size: 0.8rem;
    }

    .image-carousel-indicators {
        bottom: 55px;
        gap: 8px;
    }

    .image-carousel-indicator {
        width: 10px;
        height: 10px;
    }

    .image-carousel-prev,
    .image-carousel-next {
        width: 35px;
        height: 35px;
    }

    .image-carousel-prev {
        left: 10px;
    }

    .image-carousel-next {
        right: 10px;
    }
}
