.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 0 6vw;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(108, 79, 187, 0.08);
}
.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    padding: 16px 0;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo {
    width: 65px;
    height: auto;
    transition: opacity 0.3s ease;
}
.logo:hover {
    opacity: 0.8;
}
.brand-name {
    font-size: 20px;
    font-weight: 700;
    color: #2d2d2d;
    letter-spacing: -0.5px;
}
.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.brand-slogan {
    font-size: 0.7rem;
    color: #6c4fbb;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.3px;
}
.brand-name:hover {
    color: #6c4fbb;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 45px;
    margin: 0;
    padding: 0;
    align-items: center;
}
.nav-links li a {
    color: #2d2d2d;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
    position: relative;
    display: block;
}
.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #6c4fbb;
    transition: width 0.3s ease;
}
.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}
.nav-links li a:hover {
    color: #6c4fbb;
}
.nav-links li a.active {
    color: #6c4fbb;
    font-weight: 600;
}
.login-btn {
    background: #6c4fbb !important;
    color: #fff !important;
    padding: 10px 26px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    margin-left: 20px;
}
.login-btn::after {
    display: none !important;
}
.login-btn:hover {
    background: #5a3f9d !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(108, 79, 187, 0.3);
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    outline: none;
    z-index: 1100;
    padding: 8px;
}
.hamburger span {
    width: 26px;
    height: 2.5px;
    background-color: #2d2d2d;
    border-radius: 3px;
    transition: all 0.3s ease;
}
.hamburger:hover span {
    background-color: #6c4fbb;
}
/* Mobile menu overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.nav-overlay.show {
    display: block;
    opacity: 1;
}
@media (max-width: 1100px) {
    .nav-links {
        gap: 35px;
    }
    .nav-links li a {
        font-size: 14px;
    }
    .logo {
        width: 60px;
    }
    .brand-name {
        font-size: 18px;
    }
}
@media (max-width: 900px) {
    .navbar {
        padding: 0 4vw;
    }
    .navbar-container {
        padding: 14px 0;
    }
    .hamburger {
        display: flex;
    }
    .hamburger.active span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        background: #fff;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        width: 75vw;
        max-width: 320px;
        height: 100vh;
        padding: 80px 0 40px 0;
        gap: 4px;
        display: flex;
        align-items: stretch;
        transition: right 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        overflow-y: auto;
    }
    .nav-links.show {
        right: 0;
    }
    .nav-links li {
        width: 100%;
    }
    .nav-links li a {
        padding: 16px 28px;
        border-radius: 0;
        font-size: 15px;
        width: 100%;
        text-align: left;
        color: #2d2d2d;
    }
    /* Hide login button on mobile */
    .login-btn {
        display: none !important;
    }
    .nav-links li a::after {
        display: none;
    }
    .nav-links li a:hover {
        background: rgba(108, 79, 187, 0.08);
    }
}
.hero {
    background-color: #2d1457;
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 24px #2d145722;
    overflow: hidden;
}
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 2s ease-in-out;
}
.hero::before {
    background-image: var(--current-bg, linear-gradient(rgba(44,0,62,0.3), rgba(108,79,187,0.25)), url('Assets/Hero section/1X3A7132.JPG'));
    z-index: 0;
    opacity: 1;
}
.hero::after {
    background-image: var(--next-bg, linear-gradient(rgba(44,0,62,0.3), rgba(108,79,187,0.25)), url('Assets/Hero section/1X3A7132.JPG'));
    z-index: 0;
    opacity: 0;
}
.hero[data-transitioning="true"]::after {
    opacity: 1;
}
.hero-overlay {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 48px 32px 40px 32px;
    border-radius: 18px;
    max-width: 95vw;
    background: rgba(44,0,62,0.55);
    box-shadow: 0 4px 32px #2d145733;
    animation: fadeIn 1.2s;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero h1 {
    font-size: 3rem;
    letter-spacing: 2px;
    margin-bottom: 18px;
    color: #e0cfff;
    text-shadow: 0 2px 8px #2d145799;
}
.hero p {
    font-size: 1.3rem;
    margin-bottom: 28px;
    color: #fff;
    opacity: 0.95;
}
.btn {
    background: linear-gradient(90deg, #e0cfff 60%, #6c4fbb 100%);
    color: #2d1457;
    padding: 14px 36px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 2px 12px #e0cfff33;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s;
    cursor: pointer;
}
.btn:hover {
    background: #2d1457;
    color: #e0cfff;
    box-shadow: 0 4px 24px #2d145755;
    transform: translateY(-2px) scale(1.04);
}

/* Info Section */
.info-section {
    background: linear-gradient(135deg, #f8f6fc 0%, #ffffff 100%);
    padding: 80px 6vw;
    position: relative;
}

.info-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 45px 35px;
    box-shadow: 0 4px 25px rgba(108, 79, 187, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6c4fbb, #9b7fd9);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(108, 79, 187, 0.15);
    border-color: #e0cfff;
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6c4fbb, #9b7fd9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.info-card:hover .info-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(108, 79, 187, 0.3);
}

.info-card-icon svg {
    width: 35px;
    height: 35px;
    color: #ffffff;
}

.info-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d1457;
    margin-bottom: 18px;
    text-align: center;
    letter-spacing: -0.5px;
}

.info-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5a6b;
    text-align: center;
    margin: 0;
}

.values-image {
    width: 100%;
    max-width: 320px;
    border-radius: 10px;
    margin-top: 18px;
    box-shadow: 0 2px 12px #6c4fbb22;
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, #f8f6fc 0%, #ffffff 100%);
    padding: 80px 6vw;
    position: relative;
}

.values-container {
    max-width: 1500px;
    margin: 0 auto;
}

.values-title {
    font-size: 2.8rem;
    color: #2d1457;
    text-align: center;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.values-subtitle {
    font-size: 1.15rem;
    color: #6c4fbb;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 500;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.value-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
    box-shadow: 0 8px 30px rgba(108, 79, 187, 0.1);
}

.value-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: #e0cfff;
    box-shadow: 0 20px 50px rgba(108, 79, 187, 0.2);
}

/* Value Image Container */
.value-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.value-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover .value-image {
    transform: scale(1.12);
}

.value-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(108, 79, 187, 0.2) 0%, rgba(44, 0, 62, 0.6) 100%);
    opacity: 0.75;
    transition: opacity 0.4s ease;
}

.value-card:hover .value-image-overlay {
    opacity: 0.9;
    background: linear-gradient(180deg, rgba(108, 79, 187, 0.4) 0%, rgba(44, 0, 62, 0.75) 100%);
}

/* Value Content */
.value-content {
    padding: 28px 24px;
    text-align: center;
    position: relative;
    background: #fff;
}

.value-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #6c4fbb 0%, #e0cfff 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover .value-content::before {
    width: 100%;
}

.value-content h3 {
    font-size: 1.5rem;
    color: #2d1457;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.value-card:hover .value-content h3 {
    color: #6c4fbb;
}

.value-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.footer {
    background: #f8f9fa;
    color: #5a5a5a;
    padding: 60px 6vw 0 6vw;
    margin-top: 80px;
    border-top: 1px solid #e0e0e0;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 40px auto;
}
.footer-brand {
    flex: 1;
    max-width: 350px;
}
.footer-brand-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.footer-logo {
    width: 60px;
    height: auto;
}
.footer-brand-name {
    font-size: 18px;
    font-weight: 700;
    color: #2d2d2d;
    letter-spacing: -0.3px;
}
.footer-description {
    color: #6a6a6a;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}
.footer-contact {
    margin-bottom: 20px;
}
.footer-contact p {
    color: #2d2d2d;
    font-size: 14px;
    margin: 4px 0;
    font-weight: 500;
}
.footer-contact a {
    color: #2d2d2d;
    text-decoration: none;
    font-weight: 600;
}
.footer-social {
    display: flex;
    gap: 15px;
}
.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a5a5a;
    transition: all 0.3s ease;
}
.footer-social a svg {
    width: 22px;
    height: 22px;
}
.footer-social a:hover {
    background: #6c4fbb;
    color: #fff;
    transform: translateY(-3px) scale(1.05);
}
.footer-links {
    flex: 2;
    display: flex;
    gap: 60px;
    justify-content: flex-end;
}
.footer-column h4 {
    color: #2d2d2d;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0;
}
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-column ul li {
    margin-bottom: 10px;
}
.footer-column a {
    color: #6a6a6a;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-column a:hover {
    color: #6c4fbb;
}
.newsletter-text {
    color: #6a6a6a;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 250px;
}
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 250px;
}
.newsletter-form input {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}
.newsletter-form input:focus {
    border-color: #6c4fbb;
}
.newsletter-form button {
    padding: 12px 20px;
    background: #6c4fbb;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}
.newsletter-form button:hover {
    background: #5a3f9d;
}
.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    font-size: 13px;
    color: #888;
}
.footer-bottom a {
    color: #6c4fbb;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-bottom a:hover {
    color: #5a3f9d;
    text-decoration: underline;
}
.footer-bottom strong {
    color: #6c4fbb;
}
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }
    .footer-brand {
        max-width: 100%;
    }
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .info-section {
        padding: 60px 5vw;
    }
    .info-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .info-card {
        padding: 40px 30px;
    }
    .values-section {
        padding: 60px 4vw;
    }
    .values-title {
        font-size: 2.2rem;
    }
    .values-subtitle {
        font-size: 1rem;
    }
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 24px;
    }
    .value-image-container {
        height: 180px;
    }
    .governance-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    .timeline {
        padding-left: 0;
    }
    .timeline::before {
        left: 20px;
        width: 2px;
    }
    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 55px;
        padding-right: 0;
        justify-content: flex-start;
        margin-bottom: 35px;
    }
    .timeline-marker {
        left: 20px;
        width: 14px;
        height: 14px;
        transform: translateX(-50%);
        border-radius: 3px;
    }
    .timeline-content {
        border-left: 4px solid #6c4fbb !important;
        border-right: none !important;
        max-width: 100%;
        width: calc(100% - 65px);
        padding: 22px 24px;
    }
    .membership-section {
        padding: 60px 4vw;
    }
    .membership-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 28px;
    }
    .application-section {
        padding: 60px 4vw;
    }
    .application-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .info-box {
        padding: 28px 30px;
    }
    .featured-news-section {
        padding: 60px 4vw;
    }
    .featured-news-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
    }
    .featured-main,
    .featured-secondary {
        max-width: 100%;
    }
    .featured-image {
        height: 260px;
    }
    .featured-image-small {
        height: 200px;
    }
    .news-grid-section {
        padding: 60px 4vw;
    }
    .news-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
    }
    .news-card-image {
        height: 220px;
    }
    .newsletter-signup-section {
        padding: 50px 5vw;
    }
    .newsletter-signup-content {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 45px 30px;
        text-align: center;
        justify-items: center;
        backdrop-filter: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        background: linear-gradient(135deg, #6c4fbb 0%, #9d7edb 100%);
        border-radius: 24px;
    }
    .newsletter-icon {
        margin: 0 auto 8px;
    }
    .newsletter-text {
        width: 100%;
    }
    .newsletter-signup-form {
        max-width: 100%;
        width: 100%;
    }
}
@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.1rem;
    }
    .info-section {
        padding: 50px 4vw;
    }
    .info-container {
        gap: 25px;
    }
    .info-card {
        padding: 28px 22px;
        border-radius: 16px;
        box-shadow: 0 6px 18px rgba(108, 79, 187, 0.12);
    }
    .info-card-icon {
        width: 54px;
        height: 54px;
    }
    .info-card-icon svg {
        width: 26px;
        height: 26px;
    }
    .info-card h3 {
        font-size: 1.25rem;
    }
    .info-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .footer {
        padding: 40px 4vw 0 4vw;
        margin-top: 40px;
    }
    .values-section {
        padding: 48px 4vw;
    }
    .values-title {
        font-size: 1.9rem;
    }
    .values-subtitle {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .value-image-container {
        height: 160px;
    }
    .value-content {
        padding: 22px 18px;
    }
    .value-content h3 {
        font-size: 1.3rem;
    }
    .governance-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .governance-card {
        padding: 28px 22px;
    }
    .timeline-item {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .timeline-content {
        width: 100% !important;
        height: auto;
        max-width: none;
        max-height: none;
        min-height: 200px;
        padding: 20px;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        text-align: left;
    }
    .timeline-content h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
        line-height: 1.3;
        font-weight: 700;
    }
    .timeline-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .timeline-date {
        font-size: 0.85rem;
        margin-bottom: 6px;
        font-weight: 600;
    }
    .testimonials-section {
        padding: 50px 4vw;
    }
    .testimonials-track {
        gap: 16px;
        padding: 20px 0;
    }
    .testimonial-card {
        width: 90vw;
        max-width: 90vw;
        padding: 24px 20px;
    }
    .membership-section {
        padding: 50px 4vw;
    }
    .membership-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .membership-card {
        padding: 32px 24px;
    }
    .application-section {
        padding: 50px 4vw;
    }
    .application-card {
        padding: 35px 28px;
    }
    .info-box {
        flex-direction: column;
        padding: 25px 22px;
        gap: 18px;
    }
    .info-card-icon {
        width: 50px;
        height: 50px;
    }
    .info-card-icon svg {
        width: 24px;
        height: 24px;
    }
    .featured-news-section {
        padding: 50px 4vw;
    }
    .featured-content {
        padding: 22px 20px;
    }
    .featured-content h3 {
        font-size: 1.25rem;
        line-height: 1.35;
        margin-bottom: 12px;
    }
    .featured-content p {
        font-size: 0.9rem;
        line-height: 1.55;
        margin-bottom: 16px;
    }
    .featured-main {
        border-radius: 16px;
    }
    .featured-image {
        height: 220px;
    }
    .featured-image-small {
        height: 150px;
    }
    .featured-secondary {
        border-radius: 16px;
    }
    .featured-content-small {
        padding: 18px 20px;
    }
    .featured-content-small h4 {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }
    .featured-content-small p {
        font-size: 0.86rem;
        margin-bottom: 10px;
    }
    .news-meta {
        gap: 12px;
        margin-bottom: 14px;
    }
    .news-date {
        font-size: 0.85rem;
    }
    .news-category {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
    .read-more {
        font-size: 0.95rem;
    }
    .news-grid-section {
        padding: 50px 4vw;
    }
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .news-card {
        border-radius: 16px;
    }
    .news-card-content {
        padding: 20px 18px;
    }
    .news-card-content h3 {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }
    .news-card-content p {
        font-size: 0.9rem;
        line-height: 1.55;
    }
    .news-filters {
        gap: 10px;
    }
    .filter-btn {
        padding: 10px 22px;
        font-size: 0.9rem;
    }
    .newsletter-signup-section {
        padding: 50px 5vw;
    }
    .newsletter-signup-content {
        padding: 45px 28px;
        gap: 28px;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        background: linear-gradient(135deg, #6c4fbb 0%, #9d7edb 100%);
        border: none;
        box-shadow: 0 20px 50px rgba(108, 79, 187, 0.35);
        border-radius: 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .newsletter-icon {
        width: 70px;
        height: 70px;
        background: rgba(255, 255, 255, 0.25);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(10px);
        margin-bottom: 8px;
    }
    .newsletter-icon svg {
        width: 40px;
        height: 40px;
    }
    .newsletter-text {
        text-align: center;
        width: 100%;
    }
    .newsletter-text h3 {
        font-size: 1.65rem;
        line-height: 1.25;
        color: #ffffff;
        font-weight: 700;
        margin-bottom: 12px;
    }
    .newsletter-text p {
        font-size: 1rem;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.92);
        margin: 0;
    }
    .newsletter-signup-form {
        flex-direction: column;
        gap: 16px;
        width: 100%;
        max-width: 100%;
    }
    .newsletter-signup-form input {
        width: 100%;
        padding: 18px 24px;
        font-size: 1rem;
        border: 2px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.22);
        color: #ffffff;
        border-radius: 16px;
        backdrop-filter: blur(8px);
        box-sizing: border-box;
    }
    .newsletter-signup-form input::placeholder {
        color: rgba(255, 255, 255, 0.75);
    }
    .newsletter-signup-form input:focus {
        outline: none;
        border-color: #ffffff;
        background: rgba(255, 255, 255, 0.3);
    }
    .newsletter-signup-form button {
        width: 100%;
        padding: 18px 32px;
        font-size: 1.08rem;
        font-weight: 700;
        background: #ffffff;
        color: #6c4fbb;
        border-radius: 16px;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .newsletter-signup-form button:hover {
        background: #f5f0ff;
        transform: translateY(-2px);
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
    }
}

/* Extra small screens */
@media (max-width: 400px) {
    .navbar {
        padding: 0 3vw;
    }
    .logo {
        width: 50px;
    }
    .brand-name {
        font-size: 16px;
    }
    .brand-slogan {
        font-size: 10px;
    }
    .hero h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .hero-overlay {
        padding: 35px 24px;
    }
    .btn {
        padding: 12px 28px;
        font-size: 1rem;
    }
    .nav-links {
        width: 85vw;
    }
    .info-section {
        padding: 44px 5vw;
    }
    .info-card {
        padding: 24px 20px;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .section-sub {
        font-size: 0.9rem;
    }
    .timeline-content {
        padding: 16px 18px;
    }
    .timeline-content h3 {
        font-size: 1rem;
    }
    .timeline-content p {
        font-size: 0.85rem;
    }
    .featured-image {
        height: 200px;
    }
    .featured-image-small {
        height: 140px;
    }
    .news-card-content {
        padding: 18px 16px;
    }
}

body {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    margin: 0;
    background: #fff;
    color: #111;
    min-height: 100vh;
    scroll-behavior: smooth;
}
.join-form {
    background: #f7f3ff;
    padding: 32px 24px 24px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 12px #6c4fbb11;
    max-width: 500px;
    margin: 0 auto;
}
.join-form .btn {
    margin-top: 18px;
    width: 100%;
    font-size: 1.15rem;
    font-weight: bold;
    background: linear-gradient(90deg, #6c4fbb 60%, #e0cfff 100%);
    color: #fff;
    border: none;
    box-shadow: 0 2px 12px #6c4fbb33;
}
.join-form .btn:hover {
    background: #2d1457;
    color: #e0cfff;
}

/* Contact page specific styles */
.contact-section {
    background: #f7f7fa;
    padding: 60px 10vw;
}
.contact-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}
.contact-left {
    flex: 1 1 360px;
    max-width: 480px;
}
.contact-right {
    flex: 1 1 520px;
    max-width: 680px;
}
.contact-card, .map-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 10px 30px #6c4fbb11;
    border: 1px solid #e0cfff55;
    margin-bottom: 20px;
}
.contact-intro h2 {
    margin: 0 0 10px 0;
    color: #2d1457;
}
.contact-intro p { color: #444; margin-top: 0; }
.contact-points { display: flex; flex-direction: column; gap: 18px; margin-top: 18px; }
.contact-item { display: flex; gap: 18px; align-items: center; }
.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px #6c4fbb11;
    border: 1px solid #e0cfff44;
}
.icon-box svg { width: 28px; height: 28px; fill: #6c4fbb; }
.icon-box {
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    cursor: pointer;
}

.icon-box:hover,
.icon-box:focus {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 16px 40px #6c4fbb22;
    border-color: #6c4fbb;
}
.icon-box:focus {
    outline: 3px solid rgba(108,79,187,0.12);
    outline-offset: 6px;
}
.icon-box:hover svg,
.icon-box:focus svg {
    fill: #2d1457;
}
.contact-item .meta { color: #2d1457; }
.meta small { display: block; color: #666; font-size: 0.95rem; }
.map-card iframe { width: 100%; height: 220px; border: 0; border-radius: 10px; }

.form-card { background: linear-gradient(180deg,#f7f3ff 0%, #fff 100%); padding: 28px; border-radius: 14px; box-shadow: 0 10px 30px #6c4fbb11; border: 1px solid #e0cfff55; }
.form-card h3 { margin-top: 0; color: #2d1457; }
.form-row { 
    display: flex;
    gap: 12px;
    /* always stack fields vertically so inputs appear on separate lines */
    flex-direction: column;
}
.form-row .field { flex: 1; }
.form-field { width: 100%; padding: 14px 18px; border-radius: 28px; border: 1.5px solid #e6e6ee; background: #fff; outline: none; font-size: 1rem; color: #222; }
.form-field:focus { box-shadow: 0 6px 20px #e0cfff44; border-color: #e0cfff; }
.form-textarea { padding: 16px 18px; border-radius: 16px; min-height: 120px; resize: vertical; border: 1.5px solid #e6e6ee; }
.send-btn { 
    display: inline-block; 
    margin-top: 16px; 
    padding: 12px 28px; 
    border-radius: 6px; 
    background: #6c4fbb; 
    color: #fff; 
    border: none; 
    cursor: pointer; 
    font-weight: 600; 
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(108, 79, 187, 0.2);
}
.send-btn:hover { 
    background: #5a3f9d;
    transform: translateY(-1px); 
    box-shadow: 0 4px 12px rgba(108, 79, 187, 0.3);
}
.send-btn:focus {
    outline: 3px solid rgba(108,79,187,0.18);
    outline-offset: 2px;
}
.form-message {
    padding: 14px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    display: none;
}
.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}
.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

@media (max-width: 900px) {
    .contact-grid { flex-direction: column-reverse; }
    .map-card iframe { height: 200px; }
}

/* =====================
   About page components
   ===================== */
.about-section {
    background: #f7f7fa;
    padding: 64px 10vw;
}
.section-header {
    text-align: center;
    margin-bottom: 28px;
}
.section-kicker {
    display: inline-block;
    background: #e0cfff;
    color: #2d1457;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    letter-spacing: .6px;
}
.section-title { color: #2d1457; margin: 10px 0 6px 0; font-size: 2rem; }
.section-sub { color: #4a4163; max-width: 760px; margin: 0 auto; }

.split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 36px;
    align-items: center;
}
.split .panel {
    background: #fff;
    border: 1.5px solid #e0cfff55;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 6px 24px #6c4fbb11;
}
.split .image-panel img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px #6c4fbb22;
}
@media (max-width: 900px){
    .split { grid-template-columns: 1fr; }
}

/* Governance Cards */
.governance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.governance-card {
    background: #ffffff;
    padding: 35px 28px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(108, 79, 187, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.governance-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(108, 79, 187, 0.15);
    border-color: #e0cfff;
}

.governance-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f8f5ff 0%, #e0cfff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.governance-card:hover .governance-icon {
    transform: scale(1.1) rotate(5deg);
}

.governance-card h3 {
    font-size: 1.35rem;
    color: #2d1457;
    margin-bottom: 12px;
    font-weight: 600;
}

.governance-card p {
    color: #4a4163;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 50px auto 0;
    padding: 0 20px;
}

/* Membership Section */
.membership-section {
    padding: 80px 5vw;
    background: linear-gradient(135deg, #ffffff 0%, #f8f5ff 100%);
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.membership-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 4px 25px rgba(108, 79, 187, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.membership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6c4fbb 0%, #9d7edb 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.membership-card:hover::before {
    transform: scaleX(1);
}

.membership-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(108, 79, 187, 0.2);
    border-color: #e0cfff;
}

.membership-card.featured {
    border-color: #6c4fbb;
    background: linear-gradient(135deg, #ffffff 0%, #faf8ff 100%);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, #6c4fbb 0%, #9d7edb 100%);
    color: #ffffff;
    padding: 6px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(108, 79, 187, 0.3);
}

.membership-header {
    text-align: center;
    margin-bottom: 30px;
}

.membership-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8f5ff 0%, #e0cfff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.4s ease;
}

.membership-card:hover .membership-icon {
    transform: scale(1.1) rotate(10deg);
}

.membership-header h3 {
    font-size: 1.6rem;
    color: #2d1457;
    margin: 0;
    font-weight: 700;
}

.membership-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.requirement-item {
    padding: 16px 20px;
    background: #f8f5ff;
    border-radius: 12px;
    border-left: 4px solid #6c4fbb;
    transition: all 0.3s ease;
}

.requirement-item:hover {
    background: #f0ebff;
    transform: translateX(8px);
}

.requirement-item strong {
    display: block;
    color: #6c4fbb;
    font-size: 0.95rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.requirement-item p {
    color: #4a4163;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Application Section */
.application-section {
    padding: 80px 5vw;
    background: #ffffff;
}

.application-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.application-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f5ff 100%);
    padding: 45px 40px;
    border-radius: 20px;
    box-shadow: 0 6px 30px rgba(108, 79, 187, 0.12);
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.application-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 45px rgba(108, 79, 187, 0.18);
    border-color: #e0cfff;
}

.app-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #6c4fbb 0%, #9d7edb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(108, 79, 187, 0.25);
}

.app-icon svg {
    stroke: #ffffff;
}

.application-card h3 {
    font-size: 1.6rem;
    color: #2d1457;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.application-card p {
    color: #4a4163;
    line-height: 1.7;
    margin-bottom: 28px;
    font-size: 1rem;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #6c4fbb 0%, #9d7edb 100%);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(108, 79, 187, 0.3);
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(108, 79, 187, 0.4);
}

/* Upload Form Styles */
.upload-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 10px;
}

.upload-form input[type="file"] {
    display: none;
}

.file-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #f8f5ff;
    color: #6c4fbb;
    padding: 16px 28px;
    border-radius: 12px;
    border: 2px dashed #6c4fbb;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.file-label:hover {
    background: #f0ebff;
    border-color: #9d7edb;
}

.file-name {
    color: #4a4163;
    font-size: 0.9rem;
    font-style: italic;
    min-height: 20px;
}

.btn-submit {
    background: linear-gradient(135deg, #6c4fbb 0%, #9d7edb 100%);
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(108, 79, 187, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(108, 79, 187, 0.4);
}

/* Info Box */
.info-box {
    max-width: 900px;
    margin: 50px auto 0;
    background: linear-gradient(135deg, #f8f5ff 0%, #ffffff 100%);
    padding: 35px 40px;
    border-radius: 16px;
    border-left: 6px solid #6c4fbb;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    box-shadow: 0 4px 20px rgba(108, 79, 187, 0.08);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(108, 79, 187, 0.15);
}

.info-content h4 {
    font-size: 1.4rem;
    color: #2d1457;
    margin: 0 0 12px 0;
    font-weight: 700;
}

.info-content p {
    color: #4a4163;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.info-content strong {
    color: #6c4fbb;
    font-weight: 600;
}

/* News Page Styles */
/* Featured News Section */
.featured-news-section {
    padding: 80px 5vw;
    background: linear-gradient(135deg, #ffffff 0%, #f8f5ff 100%);
}

.featured-news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 35px;
    margin-top: 50px;
}

.featured-main {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 35px rgba(108, 79, 187, 0.12);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.featured-main:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 50px rgba(108, 79, 187, 0.2);
    border-color: #e0cfff;
}

.featured-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-main:hover .featured-image img {
    transform: scale(1.08);
}

.news-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.badge-event {
    background: rgba(108, 79, 187, 0.95);
    color: #ffffff;
}

.badge-announcement {
    background: rgba(46, 125, 50, 0.95);
    color: #ffffff;
}

.badge-update {
    background: rgba(251, 140, 0, 0.95);
    color: #ffffff;
}

.featured-content {
    padding: 35px 40px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6c4fbb;
    font-size: 0.9rem;
    font-weight: 600;
}

.news-category {
    background: #f8f5ff;
    color: #6c4fbb;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.featured-content h3 {
    font-size: 2rem;
    color: #2d1457;
    margin: 0 0 18px 0;
    line-height: 1.3;
    font-weight: 700;
}

.featured-content p {
    color: #4a4163;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: #6c4fbb;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #9d7edb;
    transform: translateX(5px);
}

/* Secondary Featured Cards */
.featured-secondary {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(108, 79, 187, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.featured-secondary:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(108, 79, 187, 0.18);
    border-color: #e0cfff;
}

.featured-image-small {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.featured-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-secondary:hover .featured-image-small img {
    transform: scale(1.1);
}

.featured-content-small {
    padding: 25px 28px;
}

.featured-content-small h4 {
    font-size: 1.25rem;
    color: #2d1457;
    margin: 0 0 12px 0;
    line-height: 1.4;
    font-weight: 700;
}

.featured-content-small p {
    color: #4a4163;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.read-more-small {
    color: #6c4fbb;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.read-more-small:hover {
    color: #9d7edb;
}

/* News Grid Section */
.news-grid-section {
    padding: 80px 5vw;
    background: #ffffff;
}

.news-filters {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.filter-btn {
    background: #f8f5ff;
    color: #6c4fbb;
    border: 2px solid transparent;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn:hover {
    background: #f0ebff;
    border-color: #e0cfff;
}

.filter-btn.active {
    background: linear-gradient(135deg, #6c4fbb 0%, #9d7edb 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(108, 79, 187, 0.3);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.news-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(108, 79, 187, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(108, 79, 187, 0.2);
    border-color: #e0cfff;
}

.news-card-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.12);
}

.news-card-content {
    padding: 28px 30px;
}

.news-card-content h3 {
    font-size: 1.4rem;
    color: #2d1457;
    margin: 0 0 15px 0;
    line-height: 1.4;
    font-weight: 700;
}

.news-card-content p {
    color: #4a4163;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.news-link {
    display: inline-flex;
    align-items: center;
    color: #6c4fbb;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: #9d7edb;
    transform: translateX(5px);
}

/* Newsletter Signup Section */
.newsletter-signup-section {
    padding: 80px 5vw;
    background: linear-gradient(135deg, #6c4fbb 0%, #9d7edb 100%);
}

.newsletter-signup-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) minmax(0, 360px);
    gap: 35px;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 50px 60px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.newsletter-text h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.newsletter-signup-form {
    display: flex;
    gap: 15px;
    width: 100%;
    max-width: 420px;
    justify-self: stretch;
}

.newsletter-signup-form input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 1rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.newsletter-signup-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-signup-form input:focus {
    outline: none;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.25);
}

.newsletter-signup-form button {
    padding: 16px 35px;
    background: #ffffff;
    color: #6c4fbb;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.newsletter-signup-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* Timeline Styles (continued) */

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #6c4fbb 0%, #e0cfff 100%);
    top: 0;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 40px);
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 40px);
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #6c4fbb;
    border: 4px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #e0cfff;
    z-index: 2;
}

.timeline-content {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(108, 79, 187, 0.1);
    max-width: 400px;
    transition: all 0.3s ease;
    border-left: 4px solid #6c4fbb;
}

.timeline-item:nth-child(even) .timeline-content {
    border-left: none;
    border-right: 4px solid #6c4fbb;
}

.timeline-content:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(108, 79, 187, 0.15);
}

.timeline-date {
    color: #6c4fbb;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.timeline-content h3 {
    font-size: 1.3rem;
    color: #2d1457;
    margin-bottom: 10px;
    font-weight: 600;
}

.timeline-content p {
    color: #4a4163;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Team grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 22px;
}
.person-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(108, 79, 187, 0.12);
    transition: all 0.3s ease;
    position: relative;
}
.person-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 12px 40px rgba(108, 79, 187, 0.25); 
}
.avatar {
    width: 100%; 
    height: 280px; 
    object-fit: cover; 
    display: block;
    transition: transform 0.3s ease;
}
.person-card:hover .avatar {
    transform: scale(1.05);
}
.person-info {
    padding: 20px 16px;
    background: linear-gradient(180deg, #fff 0%, #fafbff 100%);
    text-align: center;
    border-top: 3px solid #6c4fbb;
}
.person-name { 
    color: #2d1457; 
    font-weight: 700; 
    font-size: 1.05rem;
    margin: 0 0 6px 0; 
}
.person-role { 
    color: #6c4fbb; 
    font-weight: 600; 
    font-size: 0.9rem; 
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Services Section */
/* Services Section */
.services-section {
    padding: 80px 6vw;
    background: linear-gradient(180deg, #ffffff 0%, #f8f6fc 100%);
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.service-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(108, 79, 187, 0.12);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 60px rgba(108, 79, 187, 0.25);
    border-color: #e0cfff;
}

/* Service Image Container */
.service-image-container {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image {
    transform: scale(1.15);
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(44, 0, 62, 0.1) 0%, rgba(108, 79, 187, 0.6) 100%);
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-image-overlay {
    opacity: 0.85;
    background: linear-gradient(180deg, rgba(44, 0, 62, 0.3) 0%, rgba(108, 79, 187, 0.75) 100%);
}

/* Service Content */
.service-content {
    padding: 32px 28px;
    position: relative;
}

.service-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #6c4fbb 0%, #e0cfff 50%, #6c4fbb 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-content::before {
    transform: scaleX(1);
}

.service-content h3 {
    font-size: 1.6rem;
    color: #2d1457;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.service-card:hover .service-content h3 {
    color: #6c4fbb;
}

.service-content p {
    font-size: 0.98rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: #6c4fbb;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}
.service-link:hover {
    color: #2d1457;
    transform: translateX(4px);
}

/* Service Dropdown Styles */
.service-dropdown-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #6c4fbb 0%, #8a6fd4 100%);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(108, 79, 187, 0.25);
    margin-top: 8px;
}

.service-dropdown-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 79, 187, 0.35);
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.service-dropdown-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

.service-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin-top 0.3s ease;
    opacity: 0;
    margin-top: 0;
}

.service-dropdown-content.active {
    max-height: 500px;
    opacity: 1;
    margin-top: 20px;
}

.loan-type {
    padding: 18px 20px;
    background: linear-gradient(135deg, #f8f6fc 0%, #ffffff 100%);
    border-radius: 14px;
    margin-bottom: 14px;
    border-left: 5px solid #6c4fbb;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(108, 79, 187, 0.08);
}

.loan-type:last-child {
    margin-bottom: 0;
}

.loan-type:hover {
    background: linear-gradient(135deg, #f0ebff 0%, #faf9ff 100%);
    transform: translateX(6px);
    box-shadow: 0 6px 20px rgba(108, 79, 187, 0.15);
    border-left-width: 6px;
}

.loan-type-info h4 {
    color: #2d1457;
    font-size: 1.15rem;
    margin: 0 0 8px 0;
    font-weight: 700;
    transition: color 0.3s ease;
}

.loan-type:hover .loan-type-info h4 {
    color: #6c4fbb;
}

.loan-type-info p {
    color: #666;
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 4vw;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-image-container {
        height: 200px;
    }
    
    .service-content {
        padding: 24px 20px;
    }
    
    .service-content h3 {
        font-size: 1.4rem;
    }
    
    .loan-type {
        padding: 16px;
    }
    
    .service-dropdown-content.active {
        max-height: 600px;
    }
}

@media (max-width: 480px) {
    .service-image-container {
        height: 180px;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
    
    .service-content p {
        font-size: 0.9rem;
    }
}

/* Testimonials */
.testimonials-section {
    background: linear-gradient(180deg,#fff 0%, #f7f3ff 100%);
    padding: 60px 10vw;
}
.testimonials-track {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px 0;
}
.carousel-dots {
    display: none;
}
.testimonial-card {
    width: 300px;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1.5px solid #e0cfff55;
}
.testimonial-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6c4fbb 0%, #8b68e6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(108, 79, 187, 0.2);
}
.testimonial-icon svg {
    color: #ffffff;
}
.testimonial-quote { 
    color: #333;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 12px;
}
.testimonial-meta { 
    color: #6c4fbb;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 6px;
}
.testimonial-title {
    font-size: 0.85rem;
    color: #6b6b6b;
}

/* Gallery Page Styles */
.gallery-main {
    background: linear-gradient(to bottom, #f8f6fc 0%, #ffffff 50%);
    padding: 80px 6vw 100px;
    min-height: 100vh;
}

.gallery-container {
    max-width: 1600px;
    margin: 0 auto;
}

.gallery-header {
    text-align: center;
    margin-bottom: 48px;
}

.gallery-header h2 {
    font-size: 3rem;
    color: #2d1457;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -1px;
}

.gallery-header p {
    font-size: 1.2rem;
    color: #6c4fbb;
    font-weight: 500;
}

/* Filter Buttons */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    background: #fff;
    color: #6c4fbb;
    border: 2px solid #e0cfff;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(108, 79, 187, 0.1);
}

.filter-btn:hover {
    background: #f8f6fc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 79, 187, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, #6c4fbb 0%, #8a6fd4 100%);
    color: #fff;
    border-color: #6c4fbb;
    box-shadow: 0 8px 24px rgba(108, 79, 187, 0.35);
}

/* Masonry Gallery Grid */
.gallery-masonry {
    column-count: 3;
    column-gap: 20px;
    margin: 0 auto;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(108, 79, 187, 0.12);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(108, 79, 187, 0.7) 0%, rgba(45, 20, 87, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 48px rgba(108, 79, 187, 0.3);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.overlay-content h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 6px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.overlay-content p {
    color: #e0cfff;
    font-size: 0.95rem;
    margin: 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    text-align: center;
    margin-top: 20px;
    color: #fff;
}

.lightbox-caption h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: #e0cfff;
}

.lightbox-caption p {
    font-size: 1.1rem;
    color: #fff;
    opacity: 0.9;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: fixed;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 2rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(108, 79, 187, 0.9);
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(108, 79, 187, 0.5);
}

.lightbox-close {
    top: 30px;
    right: 30px;
    font-weight: 300;
    line-height: 1;
}

.lightbox-prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Responsive Gallery */
@media (max-width: 1200px) {
    .gallery-masonry {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .gallery-main {
        padding: 60px 4vw 80px;
    }
    
    .gallery-header h2 {
        font-size: 2.2rem;
    }
    
    .gallery-header p {
        font-size: 1rem;
    }
    
    .gallery-masonry {
        column-count: 1;
        column-gap: 16px;
    }
    
    .gallery-item {
        margin-bottom: 16px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }
    
    .lightbox-close {
        top: 20px;
        right: 20px;
    }
    
    .lightbox-prev {
        left: 20px;
    }
    
    .lightbox-next {
        right: 20px;
    }
    
    .lightbox-caption h3 {
        font-size: 1.4rem;
    }
    
    .lightbox-caption p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .gallery-header h2 {
        font-size: 1.8rem;
    }
}