:root {
    --primary-blue: #22409a;
    /* JCI Blue approx */
    --primary-dark-blue: #162a66;
    --text-dark: #333;
    --text-white: #fff;
    --bg-light: #fff;
    --font-family: 'Albert Sans', sans-serif;
    --header-height: 100px;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-light);
    color: var(--text-dark);
}

/* Header Styles */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: var(--header-height);
    background: #fff;
    background: #fff;
    position: fixed;
    /* Stick is good, but Fixed ensures it works with transform smoothly */
    top: 0;
    width: 100%;
    z-index: 1100;
    transition: transform 0.3s ease-in-out;
}

.site-header.hidden {
    transform: translateY(-100%);
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.site-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.site-logo:hover {
    transform: scale(1.05);
}


/* Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 10px;
    /* Reduced gap to accommodate padding on items */
    align-items: center;
}

.main-nav .nav-item {
    position: relative;
}

.main-nav a.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 25px;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.main-nav a.nav-link:hover,
.main-nav a.nav-link.active-dropdown {
    background-color: #f0f2f5;
    /* Oval background matching the image */
    color: var(--primary-blue);
    /* Darker blue text */
}

.main-nav a i {
    font-size: 10px;
    transition: transform 0.2s;
}

.main-nav a.nav-link.active-dropdown i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 10px;
    background-color: #fbfbfb;
    /* Very light gray/off-white */
    min-width: 260px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    overflow: hidden;
    /* For rounded corners on footer */
    z-index: 1000;
}

/* Show dropdown - using a class or hover for demo. */
.nav-item:hover .dropdown-menu,
.nav-item .nav-link.active-dropdown+.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu ul {
    display: block;
    /* Override flex from main nav */
    padding: 20px 0;
    margin: 0;
}

.dropdown-menu ul li {
    display: block;
}

.dropdown-menu ul li a {
    display: block;
    padding: 10px 25px;
    color: var(--primary-blue);
    /* Blue text for items */
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
    background-color: transparent;
    /* Reset */
    border-radius: 0;
    /* Reset */
}

.dropdown-menu ul li a:hover {
    color: #004a8f;
    background-color: transparent;
}

.dropdown-footer {
    background-color: #1e40af;
    /* Darker Blue footer */
    padding: 0;
}

.dropdown-footer a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 0;
}

.dropdown-footer a:hover {
    background-color: #163494;
    color: white !important;
}

.dropdown-footer i {
    font-size: 12px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-btn {
    background: #f0f2f5;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #333;
}

.contact-btn {
    background-color: var(--primary-blue);
    /* Button blue */
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    /* Pill shape */
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.3s;
}

.contact-btn:hover {
    background-color: var(--primary-dark-blue);
}

.member-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #FDB913 0%, #F5A623 100%);
    color: #000;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(253, 185, 19, 0.4);
    z-index: 1000;
}

.member-btn:hover {
    background: linear-gradient(135deg, #F5A623 0%, #E09612 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(253, 185, 19, 0.5);
}

.member-btn i {
    font-size: 16px;
}

/* Floating Contact Buttons */
.floating-contact-buttons {
    position: fixed;
    bottom: 110px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.contact-circle-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 22px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-circle-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.contact-circle-btn.whatsapp {
    background: #25D366;
}

.contact-circle-btn.whatsapp:hover {
    background: #1ebe57;
}

.contact-circle-btn.phone {
    background: #007BFF;
}

.contact-circle-btn.phone:hover {
    background: #0056b3;
}

.contact-circle-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.contact-circle-btn.instagram:hover {
    background: linear-gradient(45deg, #d87e2e 0%, #c95934 25%, #b91f39 50%, #a91c58 75%, #9a1476 100%);
}

/* Main Content */
@media (min-width: 1045px) {
    main {
        padding-top: var(--header-height);
    }
}


/* Hero Section */
.hero-section {
    padding: 20px;
    height: calc(100vh - var(--header-height));
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
}

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

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-content {
    background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('/images/bg\ image\ 2.png');
    /* Placeholder image meeting/office */
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    /* Distinct rounded corners from image */
    height: 100%;
    display: flex;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Push stats to bottom */
    padding-left: 0;
    /* Removing padding from container, applied to children or wrapper */
    /* padding-left: 80px;  Moved to wrapper to allow stats to span full width or align properly */
    color: white;
    position: relative;
    padding-top: 60px;
    /* Add some top padding */
    padding-bottom: 30px;
    /* Add bottom padding for stats */
}

/* Hero Background Images - Each slide has a unique background */
.hero-bg-1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('/images/sliderImg/leader.jpg');
    /* Making Leaders - Leadership image */
    background-size: cover;
    background-position: center;
}

.hero-bg-2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('/images/sliderImg/better version.jpg');
    /* Make Yourself Better - Personal development image */
    background-size: cover;
    background-position: center;
}

.hero-bg-3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('/images/sliderImg/speaker.jpg');
    /* Be A Best Speaker - Speaker/Presenter image */
    background-size: cover;
    background-position: center;
}

.hero-bg-4 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('/images/sliderImg/community\ \(2\).jpg');
    /* Sustainable Team Community - Community gathering */
    background-size: cover;
    background-position: center;
}

.hero-content-2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('/images/unused/bgimage.png');
}

.hero-slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.hero-dot.active {
    background: white;
    width: 40px;
    border-radius: 6px;
}

.hero-text-wrapper {
    padding-left: 80px;
    padding-right: 80px;
    margin: auto 0;
    max-width: 800px;
    /* Vertically center the text portion */
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    max-width: 700px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 650px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    font-weight: 400;
}

/* Hero Stats Section */
.hero-stats {
    display: flex;
    gap: 15px;
    padding: 0 40px;
    /* Align with header padding */
    width: 100%;
    margin-top: auto;
    /* Ensure it stays at bottom if space permits */
}

.stat-item {
    padding: 20px 30px;
    border-radius: 20px;
    flex: 1;
    /* Equal width */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Centered text */
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dark-glass {
    background: rgba(43, 48, 59, 0.65);
    /* Dark semi-transparent */
    color: white;
}

.light-glass {
    background: rgba(255, 255, 255, 0.9);
    /* White semi-transparent */
    color: var(--primary-blue);
    /* Dark blue text */
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        padding: 0 20px;
    }

    .hero-text-wrapper {
        padding-left: 30px;
        padding-right: 30px;
        text-align: center;
        align-items: center;
        /* If flex */
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .stat-item {
        width: 100%;
        padding: 15px;
        font-size: 10px;
    }
}

.cta-group {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 8px;
}

.btn-primary {
    background-color: var(--primary-blue);
    /* Lighter blue for CTA */
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 86, 179, 0.3);
}

.btn-primary:hover {
    background-color: #004a99;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.4);
}

.btn-icon {
    background-color: var(--primary-blue);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 86, 179, 0.3);
}

.btn-icon:hover {
    background-color: #004a99;
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.4);
}

/* Welcome to JCI Ernakulam Section */
.welcome-section {
    padding: 40px 40px;
    background: white;
    position: relative;
}

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

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

.welcome-text {
    padding-right: 20px;
}

.welcome-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 25px;
    line-height: 1.2;
}

.welcome-description {
    font-size: 18px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 35px;
}

.welcome-highlights {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: #495057;
    font-weight: 500;
}

.highlight-item i {
    color: var(--primary-blue);
    font-size: 20px;
    flex-shrink: 0;
}

.welcome-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.globe-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.globe-image {
    width: 100%;
    height: auto;
    display: block;
}

.global-badge {
    position: absolute;
    top: 10%;
    right: -5%;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(34, 64, 154, 0.3);
    padding: 20px;
    text-align: center;
}

.badge-number {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.badge-text {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
}

/* Responsive for Welcome Section */
@media (max-width: 900px) {
    .welcome-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .welcome-text {
        padding-right: 0;
    }

    .welcome-title {
        font-size: 36px;
    }

    .global-badge {
        width: 150px;
        height: 150px;
        right: 0;
    }

    .badge-number {
        font-size: 44px;
    }

    .badge-text {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .welcome-section {
        padding: 60px 25px;
    }

    .welcome-title {
        font-size: 32px;
    }

    .welcome-description {
        font-size: 16px;
    }

    .highlight-item {
        font-size: 15px;
    }

    .global-badge {
        width: 130px;
        height: 130px;
        top: 5%;
        right: -3%;
    }

    .badge-number {
        font-size: 36px;
    }

    .badge-text {
        font-size: 12px;
    }
}

/* President Message Home Section */
.president-message-home {
    padding: 80px 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.president-message-home::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 64, 154, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.president-home-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.president-home-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}

.president-home-image {
    position: relative;
}

.president-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(34, 64, 154, 0.15);
    transition: transform 0.3s ease;
}

.president-image-frame:hover {
    transform: translateY(-5px);
}

.president-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.president-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    padding: 30px 25px 25px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.president-info h3 {
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.president-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

.president-home-content {
    padding: 20px 0;
}

.president-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e40af 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.president-home-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 30px;
    line-height: 1.2;
}

.president-quote {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    padding: 30px 35px;
    border-radius: 15px;
    margin-bottom: 25px;
    border-left: 4px solid var(--primary-blue);
}

.president-quote i {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 32px;
    color: var(--primary-blue);
    opacity: 0.3;
}

.president-quote p {
    font-size: 17px;
    line-height: 1.7;
    color: #1e293b;
    font-style: italic;
    margin: 0;
    padding-left: 30px;
    position: relative;
    z-index: 1;
}

.president-excerpt {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 30px;
}

.btn-read-message {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e40af 100%);
    color: white;
    padding: 14px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 64, 154, 0.2);
}

.btn-read-message:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(34, 64, 154, 0.3);
}

.btn-read-message i {
    transition: transform 0.3s ease;
}

.btn-read-message:hover i {
    transform: translateX(5px);
}

/* Responsive styles for President Message Home */
@media (max-width: 1024px) {
    .president-home-layout {
        grid-template-columns: 350px 1fr;
        gap: 40px;
    }

    .president-home-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .president-message-home {
        padding: 60px 25px;
    }

    .president-home-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .president-image-frame {
        max-width: 400px;
        margin: 0 auto;
    }

    .president-home-title {
        font-size: 32px;
    }

    .president-quote {
        padding: 25px 30px;
    }

    .president-quote p {
        font-size: 16px;
        padding-left: 25px;
    }
}

@media (max-width: 480px) {
    .president-home-title {
        font-size: 28px;
    }

    .president-quote {
        padding: 20px 25px;
    }

    .president-quote i {
        font-size: 24px;
    }

    .president-quote p {
        font-size: 15px;
        padding-left: 20px;
    }

    .president-excerpt {
        font-size: 15px;
    }
}

/* JCI at a Glance Section */
.jci-glance-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.jci-glance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(34, 64, 154, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(34, 64, 154, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.glance-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.glance-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.glance-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue));
    margin: 20px auto 0;
    border-radius: 2px;
}

.glance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.glance-card {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    min-width: 280px;
}

.glance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.glance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(34, 64, 154, 0.15);
}

.glance-number {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: visible;
}

.glance-label {
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.5;
}

.glance-card.highlight {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 100%);
    border: none;
}

.glance-card.highlight .glance-number {
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glance-card.highlight .glance-label {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
}

.glance-card.highlight::before {
    background: white;
}

/* Mobile responsive for JCI at a Glance */
@media (max-width: 768px) {
    .jci-glance-section {
        padding: 60px 20px;
    }

    .glance-title {
        font-size: 36px;
        margin-bottom: 35px;
    }

    .glance-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .glance-card {
        padding: 35px 25px;
    }

    .glance-number {
        font-size: 48px;
    }

    .glance-label {
        font-size: 13px;
    }
}

/* Section Headers - Reusable */
.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-left {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 40px;
}

.section-tag,
.section-tag-dark,
.section-tag-light {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-tag {
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.section-tag-dark {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.section-tag-light {
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.section-title-white,
.section-title-dark {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title-white {
    color: white;
}

.section-title-dark {
    color: var(--primary-blue);
}

.section-subtitle-white,
.section-subtitle-dark {
    font-size: 18px;
    line-height: 1.6;
    max-width: 700px;
}

.section-subtitle-white {
    color: rgba(255, 255, 255, 0.9);
}

.section-subtitle-dark {
    color: #4b5563;
}

.section-header-centered .section-subtitle-white,
.section-header-centered .section-subtitle-dark {
    margin: 0 auto;
}

/* Sliding Images Section */
.sliding-images-section {
    height: 600px;
    position: relative;
    background: white;
    overflow: hidden;
}

.sliding-images-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
    width: 100%;
    gap: 0;
}

.sliding-image-item {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 20px;
}

.sliding-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 30px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 48px;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
    z-index: 10;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.slider-arrow:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.2);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
}


.slider-arrow-left {
    left: 40px;
}

.slider-arrow-right {
    right: 40px;
}

/* Mobile responsive for sliding images */
@media (max-width: 1024px) {
    .sliding-images-section {
        height: 500px;
    }

    .sliding-image-item {
        width: 100%;
        padding: 20px;
    }

    .slider-arrow {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .slider-arrow-left {
        left: 30px;
    }

    .slider-arrow-right {
        right: 30px;
    }
}

@media (max-width: 768px) {
    .sliding-images-section {
        height: 400px;
    }

    .sliding-image-item {
        width: 100%;
        padding: 15px;
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .slider-arrow-left {
        left: 25px;
    }

    .slider-arrow-right {
        right: 25px;
    }
}

@media (max-width: 480px) {
    .sliding-images-section {
        height: 300px;
    }

    .sliding-image-item {
        width: 100%;
        padding: 10px;
    }

    .slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .slider-arrow-left {
        left: 20px;
    }

    .slider-arrow-right {
        right: 20px;
    }
}

/* Why Join JCI Section */
.why-join-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 100%);
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.why-join-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.why-join-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    color: white;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.4);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.benefit-card p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Why Join CTA Button */
.why-join-cta {
    text-align: center;
    margin-top: 60px;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: white;
    color: var(--primary-blue);
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-learn-more:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.btn-learn-more i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.btn-learn-more:hover i {
    transform: translateX(5px);
}

/* Projects Section */
.projects-section {
    padding: 100px 40px;
    background: white;
}

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

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background: #f8f9fa;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.project-card.primary-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 100%);
    color: white;
}

.project-image {
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-tag {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid #d1d5db;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #4b5563;
    margin-bottom: 15px;
    width: fit-content;
}

.primary-card .project-tag {
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.project-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.primary-card .project-content h3 {
    color: white;
}

.project-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 25px;
    flex: 1;
}

.primary-card .project-content p {
    color: rgba(255, 255, 255, 0.9);
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: gap 0.3s ease;
}

.primary-card .project-link {
    color: white;
}

.project-link:hover {
    gap: 12px;
}

.section-cta-centered {
    text-align: center;
    margin-top: 50px;
}

.section-cta-centered .btn-primary-large,
.section-cta-centered .btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.section-cta-centered .btn-primary-large i,
.section-cta-centered .btn-outline-dark i {
    transition: transform 0.3s ease;
}

.section-cta-centered .btn-primary-large:hover i,
.section-cta-centered .btn-outline-dark:hover i {
    transform: translateX(5px);
}

/* Events Section */
.events-section {
    padding: 60px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-view-all:hover {
    background: var(--primary-dark-blue);
    gap: 15px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.event-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.event-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.event-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-image-wrapper img {
    transform: scale(1.1);
}

.event-date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 12px 16px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.date-day {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #4b5563;
    text-transform: uppercase;
    margin-top: 4px;
}

.event-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.event-category {
    display: inline-block;
    padding: 6px 14px;
    background: #e9ecef;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-blue);
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.event-info h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 12px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 0;
}

.event-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-meta i {
    color: var(--primary-blue);
}

.event-register-btn {
    display: inline-block;
    margin-top: auto;
    padding: 12px 28px;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.2);
    text-align: center;
    align-self: flex-start;
}

.event-register-btn:hover {
    background: #004a99;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 86, 179, 0.3);
}

/* Photos Section */
.photos-section {
    padding: 100px 40px;
    background: white;
}

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

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

.photo-item {
    position: relative;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    grid-column: span 2;
}

.photo-item.large {
    grid-column: span 3;
    height: 400px;
}

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

    .photo-item,
    .photo-item.large {
        grid-column: span 1;
        /* Reset for single column */
        height: 300px;
    }
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-item:hover img {
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.photo-item:hover .photo-overlay {
    transform: translateY(0);
}

.photo-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.photo-category {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-cta {
    text-align: center;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(34, 64, 154, 0.3);
}

/* Videos Section */
.videos-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 100%);
    position: relative;
    overflow: hidden;
}

.videos-section::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.videos-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.video-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    color: white;
}

.video-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 20px;
    transition: all 0.3s ease;
    padding-left: 4px;
}

.video-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.15);
    background: white;
}

.video-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.video-info {
    padding: 25px;
}

.video-category {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.video-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
    line-height: 1.4;
}

.video-info p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.videos-cta {
    text-align: center;
}

.btn-outline-white {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Mobile-only navigation items */
.mobile-only {
    display: none;
}

/* === Comprehensive Responsive Styles === */
.mobile-toggle {
    display: none;
    background: #f0f2f5;
    border: none;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 20px;
    color: var(--primary-blue);
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-toggle:hover {
    background: #e2e8f0;
}

.mobile-toggle.active {
    background: var(--primary-blue);
    color: white;
}

/* === Comprehensive Responsive Styles === */
@media (max-width: 1024px) {
    .site-header {
        padding: 0 25px;
    }

    .main-nav ul {
        gap: 5px;
    }

    .main-nav a.nav-link {
        font-size: 14px;
        padding: 8px 14px;
    }

    .contact-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .member-btn {
        bottom: 20px;
        right: 20px;
        padding: 14px 24px;
        font-size: 15px;
    }

    .search-btn {
        width: 38px;
        height: 38px;
    }
}

/* Tablet and small desktop - hide button to prevent cutoff */
@media (max-width: 900px) {
    .site-header {
        padding: 0 20px;
    }

    .main-nav ul {
        gap: 3px;
    }

    .main-nav a.nav-link {
        font-size: 13px;
        padding: 8px 10px;
        white-space: nowrap;
    }

    .contact-btn {
        display: none;
    }

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

    .why-join-cta {
        margin-top: 50px;
    }
}


.mobile-only {
    display: none;
}

@media (max-width: 768px) {

    /* Header & Navigation */
    .site-header {
        padding: 0 20px;
        height: 70px;
    }

    .mobile-only {
        display: block;
    }

    /* Header Actions */
    .header-actions {
        gap: 10px;
    }

    .search-btn {
        width: 36px;
        height: 36px;
    }

    .member-btn {
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        padding: 12px 20px;
        font-size: 14px;
        gap: 6px;
        width: auto;
        max-width: calc(100% - 30px);
    }

    .floating-contact-buttons {
        bottom: auto;
        top: 50%;
        transform: translateY(-50%);
        right: 10px;
        gap: 10px;
    }

    .contact-circle-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    /* Mobile Overlay - Light and clear */
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.2);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Hero Section */
    .hero-section {
        padding: 140px 20px 60px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    /* Page Headers */
    .page-header {
        padding: 100px 20px 40px;
    }

    .page-title {
        font-size: 36px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    /* General Sections */
    section {
        padding: 50px 20px !important;
    }

    /* Grid Layouts */
    .stat-boxes,
    .feature-grid,
    .projects-grid,
    .events-grid,
    .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .why-join-cta {
        margin-top: 40px;
    }

    .btn-learn-more {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
        font-size: 15px;
    }

    /* Footer */
    .site-footer {
        padding: 40px 20px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-logo {
        height: 50px;
    }

    /* About Pages Mobile */
    .content-stats-row {
        grid-template-columns: 1fr;
    }

    .content-body {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    /* President Page Mobile */
    .president-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .president-image-wrapper {
        position: relative;
        top: 0;
    }

    .president-content-col {
        padding: 30px 20px;
    }

    .president-name {
        font-size: 28px;
    }

    .vision-highlight {
        padding: 20px;
    }

    /* Team Page Mobile */
    .team-grid {
        grid-template-columns: 1fr;
    }

    /* Philosophy Page Mobile */
    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-quote {
        padding: 40px 25px;
    }

    .philosophy-quote p {
        font-size: 18px;
    }

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

    /* Awards Page Mobile */
    .awards-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        gap: 15px;
    }

    .timeline-year {
        width: 50px;
    }

    .awards-timeline::before {
        left: 55px;
    }

    .timeline-year::after {
        right: -16px;
    }

    /* Careers Page Mobile */
    .why-work-grid {
        grid-template-columns: 1fr;
    }

    .opportunity-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .apply-btn {
        width: 100%;
        text-align: center;
    }

    .internship-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Contact Page Mobile */
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .map-container iframe {
        height: 300px;
    }

    /* Buttons */
    .btn-primary-large,
    .btn-outline-dark {
        display: block;
        width: 100%;
        text-align: center;
    }

    .engage-buttons {
        flex-direction: column;
        width: 100%;
    }

    .engage-buttons a {
        width: 100%;
        text-align: center;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .site-header {
        height: 60px;
        padding: 0 15px;
    }

    .site-logo {
        height: 55px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .page-title {
        font-size: 28px;
    }

    .content-intro h2,
    .philosophy-intro h2,
    .awards-intro-container h2 {
        font-size: 28px;
    }

    .president-name {
        font-size: 24px;
    }

    .stat-number {
        font-size: 36px;
    }

    .area-card,
    .award-card,
    .philosophy-card {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 25px 15px;
    }

    .office-hours-section h3,
    .why-work-container h3,
    .opportunities-container h3 {
        font-size: 28px;
    }
}

/* === Blog Page === */
.blog-section {
    padding: 80px 40px;
    background: white;
}

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

.blog-grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card-compact {
    background: white;
    border-radius: 20px;
    border: 2px solid #e9ecef;
    padding: 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.blog-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card-compact:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-compact>*:not(.blog-card-image) {
    padding-left: 30px;
    padding-right: 30px;
}

.blog-card-compact .blog-card-header {
    padding-top: 25px;
}

.blog-card-compact:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 15px 40px rgba(34, 64, 154, 0.15);
    transform: translateY(-8px);
}

.blog-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-card-compact .blog-category {
    display: inline-block;
    padding: 6px 14px;
    background: #e3f2fd;
    color: var(--primary-blue);
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-compact .blog-date {
    color: #6b7280;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card-compact h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card-compact .blog-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 20px;
    flex: 1;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: gap 0.3s ease;
    margin-top: auto;
    padding-bottom: 30px;
}

.blog-read-more:hover {
    gap: 12px;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(3px);
}

/* Old Blog Card Styles (for news detail pages) */
.blog-card {
    background: white;
    border-radius: 25px;
    border: 2px solid #e9ecef;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 15px 40px rgba(34, 64, 154, 0.15);
    transform: translateY(-5px);
}

.blog-card.featured {
    border: 3px solid var(--primary-blue);
    position: relative;
}

.blog-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 40px 45px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.blog-category {
    display: inline-block;
    padding: 6px 16px;
    background: #e3f2fd;
    color: var(--primary-blue);
    border-radius: 15px;
    font-size: 13px;
    font-weight: 700;
}

.blog-date {
    color: #6b7280;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Full-width article layout for news detail pages */
.blog-article-content {
    background: white;
    padding: 0;
}

.blog-article-content .blog-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.blog-article-content .blog-category {
    display: inline-block;
    padding: 6px 16px;
    background: #e3f2fd;
    color: var(--primary-blue);
    border-radius: 15px;
    font-size: 13px;
    font-weight: 700;
}

.blog-article-content .blog-date {
    color: #6b7280;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-article-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 30px;
    line-height: 1.2;
}

.blog-article-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-top: 35px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-article-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 20px;
}

.blog-article-content .blog-excerpt {
    font-size: 20px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 25px;
    font-weight: 500;
}

/* Article Images */
.article-featured-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.article-inline-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.article-image-caption {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    font-style: italic;
    margin-top: 10px;
    margin-bottom: 25px;
}

/* Article Videos */
.article-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin: 40px 0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.article-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.article-video-caption {
    text-align: center;
    font-size: 15px;
    color: #4b5563;
    margin-top: 15px;
    margin-bottom: 30px;
    font-weight: 500;
}

.blog-excerpt {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 20px;
    font-weight: 500;
}

.blog-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 18px;
}

.blog-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-top: 30px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-content h3 i {
    color: var(--primary-blue);
}

.blog-content strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.blog-highlight {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 30px 35px;
    border-radius: 20px;
    border-left: 5px solid var(--primary-blue);
    margin: 30px 0;
    position: relative;
}

.blog-highlight i {
    color: var(--primary-blue);
    font-size: 24px;
    margin-bottom: 15px;
}

.blog-highlight p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--primary-blue);
    font-style: italic;
    font-weight: 600;
    margin: 0;
}

/* Social Share Section */
.social-share-section {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    margin: 25px 0;
    border-top: 2px solid #e9ecef;
    border-bottom: 2px solid #e9ecef;
    flex-wrap: wrap;
}

.share-label {
    font-size: 15px;
    font-weight: 600;
    color: #4b5563;
}

.social-share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
    color: white;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.facebook:hover {
    background: #145dbf;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.twitter:hover {
    background: #1a8cd8;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.linkedin:hover {
    background: #006399;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.whatsapp:hover {
    background: #1faa52;
}

.share-btn.email {
    background: #6b7280;
}

.share-btn.email:hover {
    background: #4b5563;
}

.blog-list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.blog-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.blog-list i {
    color: var(--primary-blue);
    margin-top: 4px;
    font-size: 14px;
}

/* Blog Responsive */
@media (max-width: 768px) {
    .blog-section {
        padding: 50px 20px;
    }

    .blog-grid-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-card-compact {
        padding: 25px;
    }

    .blog-card-compact h3 {
        font-size: 18px;
    }

    .blog-container {
        gap: 30px;
    }

    .blog-content {
        padding: 30px 25px;
    }

    .blog-badge {
        top: 20px;
        right: 20px;
        font-size: 11px;
        padding: 6px 14px;
    }

    .blog-content h2 {
        font-size: 24px;
    }

    .social-share-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .share-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .blog-article-content h2 {
        font-size: 28px;
    }

    .blog-article-content h3 {
        font-size: 22px;
    }

    .blog-article-content p {
        font-size: 16px;
    }

    .blog-article-content .blog-excerpt {
        font-size: 17px;
    }

    .article-video-wrapper {
        margin: 30px 0;
        border-radius: 8px;
    }

    .article-featured-image,
    .article-inline-image {
        border-radius: 8px;
        margin: 20px 0;
    }

    .article-image-caption,
    .article-video-caption {
        font-size: 13px;
    }

    .blog-content h3 {
        font-size: 18px;
    }

    .blog-highlight {
        padding: 25px;
    }

    .blog-meta {
        gap: 12px;
    }
}

/* === Downloads Page === */
.downloads-section {
    padding: 80px 40px;
    background: #f8f9fa;
}

.downloads-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.download-card {
    background: white;
    border-radius: 20px;
    padding: 40px 35px;
    border: 1px solid #e5e7eb;
    display: flex;
    gap: 25px;
    transition: all 0.3s ease;
}

.download-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
    border-color: var(--primary-blue);
}

.download-icon {
    width: 60px;
    height: 60px;
    background: #e3f2fd;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.download-icon i {
    font-size: 24px;
    color: var(--primary-blue);
}

.download-content {
    flex: 1;
}

.download-content h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-weight: 700;
}

.download-content p {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.5;
}

.file-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.file-list li {
    margin-bottom: 12px;
}

.file-list li:last-child {
    margin-bottom: 0;
}

.file-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f9fafb;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.file-link:hover {
    background: #f0f9ff;
    border-color: var(--primary-blue);
}

.file-name {
    font-size: 15px;
    color: #374151;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.file-name i {
    color: #ef4444;
    /* PDF color */
    font-size: 18px;
}

.download-action {
    color: var(--primary-blue);
    font-size: 16px;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.file-link:hover .download-action {
    opacity: 1;
}

/* Downloads Responsive */
@media (max-width: 768px) {
    .downloads-container {
        grid-template-columns: 1fr;
    }

    .download-card {
        flex-direction: column;
        padding: 30px 25px;
    }

    .download-icon {
        margin-bottom: 0;
    }
}

/* === Join Us Page === */
.membership-status-section {
    padding: 80px 40px;
    background: white;
}

.membership-card {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8fafc 0%, #edf7ff 100%);
    border: 1px solid #e0f2fe;
    border-radius: 20px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 50px;
    box-shadow: 0 20px 40px rgba(34, 64, 154, 0.08);
}

.status-icon {
    width: 110px;
    height: 110px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(34, 64, 154, 0.15);
}

.status-icon i {
    font-size: 44px;
    color: var(--primary-blue);
}

.status-content h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.status-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.status-list li {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.status-list i {
    color: var(--primary-blue);
    margin-top: 5px;
}

.join-form-section {
    padding: 80px 40px;
    background: #f8f9fa;
    position: relative;
}

.join-container {
    max-width: 900px;
    margin: 0 auto;
}

.form-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f6;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-family: 'Albert Sans', sans-serif;
    font-size: 1rem;
    color: #1f2937;
    background-color: #f9fafb;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-blue);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(34, 64, 154, 0.1);
    outline: none;
}

.form-actions {
    margin-top: 30px;
    text-align: center;
}

/* Join Us Responsive */
@media (max-width: 768px) {
    .membership-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 25px;
        gap: 30px;
    }

    .status-list li {
        justify-content: center;
        text-align: left;
    }

    .form-card {
        padding: 30px 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* === Services Page === */
.services-intro-section {
    padding: 60px 40px;
    background: white;
}

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

.services-main-section {
    padding: 80px 40px;
    background: #f8f9fa;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.service-card {
    background: white;
    border-radius: 25px;
    padding: 45px 40px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 15px 40px rgba(34, 64, 154, 0.15);
    transform: translateY(-5px);
}

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

.service-icon i {
    font-size: 36px;
    color: white;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 18px;
    line-height: 1.3;
}

.service-card>p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.service-features li:last-child {
    margin-bottom: 0;
}

.service-features i {
    color: var(--primary-blue);
    margin-top: 3px;
    font-size: 14px;
    flex-shrink: 0;
}

/* Services Page Responsive */
@media (max-width: 768px) {
    .services-intro-section {
        padding: 40px 20px;
    }

    .services-main-section {
        padding: 50px 20px;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card {
        padding: 35px 30px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon i {
        font-size: 32px;
    }

    .service-card h3 {
        font-size: 22px;
    }

    .service-card>p {
        font-size: 15px;
    }

    .service-features li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 30px 25px;
    }

    .service-icon {
        width: 65px;
        height: 65px;
    }

    .service-icon i {
        font-size: 28px;
    }

    .service-card h3 {
        font-size: 20px;
    }
}

/* === Testimonials Page === */
.testimonials-section {
    padding: 80px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.testimonials-wrapper {
    max-width: 100%;
}

.testimonials-scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 40px 0;
    cursor: pointer;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    width: max-content;
    will-change: transform;
}

.testimonial-card-compact {
    background: white;
    border-radius: 20px;
    padding: 30px;
    border: 2px solid #e9ecef;
    min-width: 320px;
    max-width: 320px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-card-compact:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 25px rgba(34, 64, 154, 0.15);
    transform: translateY(-5px);
}

.testimonial-quote-icon-small {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a3580 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.testimonial-quote-icon-small i {
    color: white;
    font-size: 18px;
}

.testimonial-content-compact {
    flex: 1;
    margin-bottom: 20px;
}

.testimonial-text-preview,
.testimonial-text-full {
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 15px;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: var(--primary-dark-blue);
}

.testimonial-author-compact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}

.author-avatar-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.author-avatar-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info-compact {
    flex: 1;
}

.author-name-small {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 4px;
    line-height: 1.3;
}

.author-position-small {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
    line-height: 1.4;
}

/* Old testimonials styles for backward compatibility */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

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

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: white;
    border-radius: 25px;
    padding: 45px 40px;
    border: 2px solid #e9ecef;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 15px 40px rgba(34, 64, 154, 0.15);
    transform: translateY(-5px);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
    border: 3px solid var(--primary-blue);
}

.testimonial-quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.testimonial-quote-icon i {
    color: white;
    font-size: 24px;
}

.testimonial-content {
    flex: 1;
    margin-bottom: 30px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 16px;
}

.testimonial-text:last-child {
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 25px;
    border-top: 2px solid #e9ecef;
}

.author-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    font-size: 32px;
    color: var(--primary-blue);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 6px;
}

.author-position {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.author-org {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

/* Testimonials Responsive */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 50px 0;
    }

    .testimonial-card-compact {
        min-width: 280px;
        max-width: 280px;
        padding: 25px;
    }

    .testimonials-track {
        gap: 20px;
    }
}

.testimonials-container {
    grid-template-columns: 1fr;
    gap: 30px;
}

.testimonial-card {
    padding: 35px 30px;
}

.testimonial-quote-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.testimonial-quote-icon i {
    font-size: 20px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
}

.testimonial-author {
    gap: 15px;
    padding-top: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
}

.author-avatar i {
    font-size: 26px;
}

.author-name {
    font-size: 18px;
}

.author-position {
    font-size: 14px;
}

.author-org {
    font-size: 13px;
}
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 30px 25px;
    }

    .testimonial-content {
        margin-bottom: 25px;
    }

    .testimonial-author {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .author-name {
        font-size: 17px;
    }
}

/* === Enhanced Mobile Responsiveness === */

/* Tablet Optimizations */
@media (max-width: 1024px) {

    /* Improve touch targets */
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    /* Better spacing for content */
    .content-section,
    .president-section,
    .team-section,
    .awards-section {
        padding: 60px 30px;
    }

    /* Optimize hero for tablets */
    .hero-section {
        padding: 160px 30px 80px;
    }

    .hero-content h1 {
        font-size: 48px;
    }
}

/* Mobile Optimizations (768px and below) */
@media (max-width: 768px) {

    /* Improve body readability */
    body {
        font-size: 16px;
        line-height: 1.6;
    }

    /* Enhanced header for mobile */
    .site-header {
        height: 90px;
        padding: 0 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .site-logo {
        height: 80px;
    }

    /* Better button sizing for touch */
    .search-btn,
    .mobile-toggle {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Mobile navigation improvements */
    .main-nav {
        padding-top: 90px;
    }

    .main-nav a.nav-link {
        padding: 16px 25px;
        font-size: 17px;
        min-height: 56px;
    }

    .dropdown-menu ul li a {
        padding: 14px 35px;
        font-size: 15px;
        min-height: 50px;
    }

    /* Page headers */
    .page-header {
        padding: 110px 20px 50px;
        min-height: auto;
    }

    .breadcrumb {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .page-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .page-subtitle {
        font-size: 16px;
        line-height: 1.5;
    }

    /* Hero section mobile */
    .hero-section {
        padding: 10px;
        height: auto;
        min-height: 550px;
    }

    .hero-slider {
        border-radius: 20px;
        min-height: 550px;
    }

    .hero-slide {
        min-height: 550px;
    }

    .hero-content {
        max-width: 100%;
        padding: 50px 20px 30px;
        background-size: cover;
        background-position: center;
        border-radius: 20px;
        min-height: 550px;
    }

    .hero-content-2 {
        background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/images/unused/bgimage.png');
    }

    .hero-text-wrapper {
        padding-left: 0;
        padding-right: 0;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 16px;
        color: white;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 25px;
        color: rgba(255, 255, 255, 0.95);
        text-align: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
    }

    .stat-item {
        width: 100%;
        padding: 15px 20px;
    }

    .cta-group {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Improved button spacing */
    .btn-primary-large,
    .btn-outline-dark {
        padding: 14px 28px;
        font-size: 16px;
        min-height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Content sections */
    .content-intro h2,
    .section-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 16px;
    }

    .lead-text {
        font-size: 17px;
        line-height: 1.6;
    }

    /* Stat boxes mobile */
    .stat-box {
        padding: 30px 20px;
        min-height: auto;
    }

    .stat-number {
        font-size: 40px;
        margin-bottom: 8px;
    }

    .stat-label {
        font-size: 15px;
    }

    /* Cards and grids */
    .process-card,
    .area-card,
    .award-card,
    .philosophy-card,
    .why-work-card {
        padding: 30px 25px;
    }

    .process-card h3,
    .area-card h3,
    .award-card h4,
    .philosophy-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .process-card p,
    .area-card p,
    .award-card p,
    .philosophy-card p {
        font-size: 15px;
        line-height: 1.6;
    }

    /* Team cards mobile */
    .team-member-card {
        padding: 25px;
    }

    .member-image {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }

    .member-name {
        font-size: 20px;
    }

    .member-position {
        font-size: 14px;
    }

    /* President page mobile */
    .president-message {
        font-size: 16px;
        line-height: 1.7;
    }

    .president-name {
        font-size: 26px;
    }

    /* Contact page mobile */
    .contact-info-card {
        padding: 35px 25px;
    }

    .contact-card-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }

    .form-group label {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .form-group input,
    .form-group textarea {
        padding: 16px 18px;
        font-size: 16px;
        min-height: 52px;
    }

    .btn-submit {
        padding: 18px 32px;
        font-size: 17px;
        min-height: 58px;
    }

    /* Footer mobile */
    .footer-col h4 {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .footer-col ul li {
        margin-bottom: 12px;
    }

    .footer-col ul li a {
        font-size: 15px;
        line-height: 1.6;
    }

    .social-links a {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    /* CTA sections */
    .cta-banner {
        padding: 50px 20px;
    }

    .cta-banner-content h3 {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .cta-banner-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    /* Opportunity cards */
    .opportunity-card {
        padding: 30px 25px;
    }

    .opportunity-header h4 {
        font-size: 20px;
    }

    .opportunity-meta {
        font-size: 13px;
        gap: 15px;
    }

    .apply-btn {
        padding: 14px 28px;
        font-size: 16px;
        min-height: 52px;
    }

    /* Blog posts mobile */
    .blog-content h2 {
        font-size: 22px;
        line-height: 1.3;
    }

    .blog-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .blog-excerpt {
        font-size: 16px;
    }

    /* Improve spacing between sections */
    section {
        margin-bottom: 0;
    }

    /* Better table/list readability */
    .benefits-list li {
        font-size: 15px;
        padding: 8px 0;
    }
}

/* Small mobile devices (480px and below) */
@media (max-width: 480px) {

    /* Even better touch targets */
    .site-header {
        height: 100px;
        padding: 0 16px;
    }

    .site-logo {
        height: 90px;
    }

    /* Mobile nav */
    .main-nav {
        width: 280px;
        padding-top: 80px;
    }

    .main-nav a.nav-link {
        padding: 18px 20px;
        font-size: 16px;
    }

    /* Page structure */
    .page-header {
        padding: 100px 16px 40px;
    }

    .page-title {
        font-size: 28px;
    }

    .page-subtitle {
        font-size: 15px;
    }

    /* Hero */
    .hero-section {
        padding: 10px;
        min-height: 500px;
    }

    .hero-slider {
        min-height: 500px;
    }

    .hero-slide {
        min-height: 500px;
    }

    .hero-content {
        padding: 40px 15px 25px;
        min-height: 500px;
    }

    .hero-content-2 {
        background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/images/unused/bgimage.png');
    }

    .hero-content h1 {
        font-size: 26px;
        line-height: 1.25;
    }

    .hero-content p {
        font-size: 15px;
    }

    /* Content */
    .content-intro h2 {
        font-size: 24px;
    }

    .lead-text {
        font-size: 16px;
    }

    /* Buttons */
    .btn-primary-large,
    .btn-outline-dark,
    .btn-submit,
    .apply-btn {
        padding: 16px 24px;
        font-size: 15px;
        width: 100%;
    }

    .floating-contact-buttons {
        right: 8px;
        gap: 8px;
    }

    .contact-circle-btn {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .member-btn {
        padding: 12px 18px;
        font-size: 13px;
        bottom: 12px;
    }

    /* Cards */
    .stat-box,
    .process-card,
    .area-card,
    .award-card,
    .philosophy-card,
    .contact-info-card {
        padding: 25px 20px;
    }

    /* Form inputs */
    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px;
    }

    /* Contact form */
    .contact-form {
        padding: 25px 20px;
    }

    /* Footer */
    .site-footer {
        padding: 35px 16px 20px;
    }

    .footer-logo {
        height: 45px;
    }

    .footer-col {
        margin-bottom: 30px;
    }

    .social-links {
        gap: 10px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    /* Blog */
    .blog-content {
        padding: 25px 20px;
    }

    .blog-content h2 {
        font-size: 20px;
    }

    .blog-content h3 {
        font-size: 17px;
    }

    .blog-highlight {
        padding: 20px;
    }

    /* Timeline */
    .timeline-year {
        width: 45px;
        font-size: 16px;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-content h4 {
        font-size: 17px;
    }

    /* Office hours */
    .hours-item {
        padding: 25px 20px;
    }

    .day {
        font-size: 16px;
    }

    .time {
        font-size: 14px;
    }
}

/* Landscape mobile phones */
@media (max-width: 767px) and (orientation: landscape) {
    .hero-section {
        padding: 10px;
        min-height: 400px;
    }

    .hero-slider {
        min-height: 400px;
    }

    .hero-slide {
        min-height: 400px;
    }

    .hero-content {
        padding: 30px 20px;
        min-height: 400px;
    }

    .hero-content-2 {
        background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/images/unused/bgimage.png');
    }

    .page-header {
        padding: 90px 20px 30px;
    }

    .modal-content {
        max-height: 90vh;
        overflow-y: auto;
    }
}

/* Prevent text size adjustment on orientation change */
@media screen and (orientation: portrait) {
    html {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
}

@media screen and (orientation: landscape) {
    html {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
}

/* Improve tap highlight on mobile */
* {
    -webkit-tap-highlight-color: rgba(34, 64, 154, 0.2);
}

/* Ensure smooth scrolling on all devices */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Better spacing for mobile lists */
@media (max-width: 768px) {

    ul,
    ol {
        padding-left: 20px;
    }

    blockquote {
        padding: 15px 20px;
        margin: 20px 0;
    }
}

/* Footer Section */
.site-footer {
    background: #1a1a2e;
    color: white;
    padding: 60px 40px 30px;
}

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

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

.footer-logo {
    height: 100px;
    width: auto;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.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: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

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

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.contact-info i {
    color: var(--primary-blue);
    margin-top: 3px;
    flex-shrink: 0;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Responsive Styles for New Sections */
@media (max-width: 768px) {

    .section-title-white,
    .section-title-dark {
        font-size: 36px;
    }

    .section-subtitle-white,
    .section-subtitle-dark {
        font-size: 16px;
    }

    .section-header-left {
        flex-direction: column;
        gap: 20px;
    }

    .why-join-section,
    .projects-section,
    .events-section,
    .photos-section,
    .videos-section {
        padding: 60px 20px;
    }

    .benefits-grid,
    .projects-grid,
    .events-grid,
    .videos-grid {
        grid-template-columns: 1fr;
    }

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

    .photo-item,
    .photo-item.large {
        height: 250px;
    }

    .benefit-card,
    .project-card,
    .event-card {
        margin-bottom: 0;
    }

    .btn-view-all {
        width: 100%;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .site-footer {
        padding: 40px 20px 20px;
    }
}

/* === About Us Pages Styles === */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 100%);
    padding: 60px;
    color: white;
    text-align: center;
}

.page-header-content {
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.7;
}

.breadcrumb span {
    opacity: 0.7;
}

.page-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Content Section - Who We Are */
.content-section {
    padding: 80px 40px;
    background: white;
}

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

.content-intro {
    text-align: center;
    margin-bottom: 60px;
}

.content-intro h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.lead-text {
    font-size: 20px;
    line-height: 1.7;
    color: #4b5563;
    max-width: 900px;
    margin: 0 auto;
}

.content-stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #4b5563;
    font-weight: 600;
}

.content-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.content-image {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.content-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

/* How It Works */
.how-it-works {
    margin-bottom: 80px;
}

.how-it-works h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 50px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.process-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    text-align: center;
}

.process-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 40px rgba(34, 64, 154, 0.15);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
}

.process-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.process-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 100%);
    padding: 60px 40px;
    border-radius: 30px;
    text-align: center;
    color: white;
}

.cta-section h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-primary-large {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* President Message Page */
.president-section {
    padding: 80px 40px;
    background: #f8f9fa;
}

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

.president-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

.president-image-wrapper {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 100px;
}

.president-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.president-content-col {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.president-badge {
    display: inline-block;
    padding: 8px 20px;
    background: #e9ecef;
    color: var(--primary-blue);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.president-name {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

.president-message p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 25px;
}

.president-message .greeting {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-blue);
}

.president-message .closing {
    font-weight: 500;
}

.vision-highlight {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 30px;
    border-radius: 20px;
    border-left: 4px solid var(--primary-blue);
    margin: 35px 0;
}

.vision-highlight h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.vision-highlight h3 i {
    color: var(--primary-blue);
}

.vision-highlight p {
    font-size: 16px;
    margin-bottom: 0;
}

.signature {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}

.signature p {
    margin: 5px 0;
    font-size: 15px;
}

.signature-name {
    font-weight: 700;
    color: var(--primary-blue);
}

.signature-title {
    font-weight: 600;
    color: var(--primary-blue);
}

.signature-org {
    color: #4b5563;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 100%);
    padding: 80px 40px;
}

.cta-banner-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-banner-content h3 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-banner-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn-outline-dark {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(34, 64, 154, 0.3);
}

/* Areas of JCI Page */
.areas-section {
    padding: 80px 40px;
    background: white;
}

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

.area-card {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    border: 2px solid #e9ecef;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.area-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 15px 50px rgba(34, 64, 154, 0.15);
    transform: translateX(10px);
}

.area-number {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: white;
    box-shadow: 0 5px 20px rgba(34, 64, 154, 0.4);
}

.area-icon {
    width: 70px;
    height: 70px;
    background: #e3f2fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.area-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.area-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
}

/* Engage Section */
.engage-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.engage-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.engage-container h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.engage-container p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 35px;
}

.engage-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Team Page */
.team-section {
    padding: 60px 40px;
    background: white;
}

.directors-section {
    background: #f8f9fa;
}

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

.team-category-header {
    margin-bottom: 40px;
}

.team-category-label {
    display: inline-block;
    padding: 8px 20px;
    background: #e9ecef;
    color: var(--primary-blue);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-member-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.member-image {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    /* 1:1 Aspect Ratio for Square */
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

.team-member-card:hover .member-image {
    /* No border color change needed */
}

.member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.member-info {
    position: relative;
    padding: 20px;
    background: white;
}

.member-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 6px;
    line-height: 1.3;
}

.member-position {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    line-height: 1.4;
}

.member-link {
    position: absolute;
    top: -10px;
    right: 0;
    width: 36px;
    height: 36px;
    background: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.member-link:hover {
    background: var(--primary-blue);
    color: white;
    transform: rotate(45deg);
}

/* Join Team CTA */
.join-team-cta {
    padding: 80px 40px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 100%);
}

.cta-content-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-content-centered h3 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content-centered p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Responsive Styles for About Pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 40px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .content-intro h2 {
        font-size: 32px;
    }

    .lead-text {
        font-size: 17px;
    }

    .content-body {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .president-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .president-image-wrapper {
        position: relative;
        top: 0;
    }

    .president-content-col {
        padding: 30px;
    }

    .president-name {
        font-size: 32px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .member-name {
        font-size: 16px;
    }

    .member-position {
        font-size: 11px;
    }

    .member-info {
        padding: 15px;
    }

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

    .btn-primary-large,
    .btn-outline-dark {
        display: block;
        text-align: center;
    }
}

/* === Philosophy Page === */
.philosophy-section {
    padding: 80px 40px;
    background: white;
}

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

.philosophy-intro {
    text-align: center;
    margin-bottom: 60px;
}

.philosophy-intro h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.philosophy-card {
    background: #f8f9fa;
    padding: 40px 35px;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.philosophy-card.blue-accent {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.philosophy-card.blue-accent:hover {
    border-color: var(--primary-blue);
}

.philosophy-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 32px;
}

.philosophy-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.philosophy-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
}

.philosophy-quote {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 100%);
    padding: 60px 50px;
    border-radius: 30px;
    margin-bottom: 60px;
    text-align: center;
}

.philosophy-quote blockquote {
    margin: 0;
}

.philosophy-quote p {
    font-size: 24px;
    line-height: 1.6;
    color: white;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-values h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-item {
    background: white;
    padding: 35px 30px;
    border-radius: 20px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(34, 64, 154, 0.15);
}

.value-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 100%);
    border-radius: 12px;
    color: white;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.value-item h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
}

/* === Awards Page === */
.awards-intro-section {
    padding: 60px 40px;
    background: #f8f9fa;
}

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

.awards-intro-container h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.awards-section {
    padding: 80px 40px;
    background: white;
}

.awards-section.individual-awards {
    background: #f8f9fa;
}

.awards-section.project-awards {
    background: white;
}

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

.awards-category-header {
    text-align: center;
    margin-bottom: 50px;
}

.awards-category-header h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.awards-category-header p {
    font-size: 18px;
    color: #4b5563;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.award-card {
    background: white;
    padding: 40px 35px;
    border-radius: 25px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.award-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(34, 64, 154, 0.15);
}

.award-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 36px;
}

.award-icon.member {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.award-year {
    display: inline-block;
    padding: 6px 16px;
    background: #e3f2fd;
    color: var(--primary-blue);
    border-radius: 15px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}

.award-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.award-card p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 10px;
}

.award-description {
    font-size: 15px !important;
    color: #6b7280 !important;
    line-height: 1.6;
}

/* Awards Timeline */
.awards-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.awards-timeline::before {
    content: '';
    position: absolute;
    left: 90px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-blue) 0%, #e9ecef 100%);
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-year {
    width: 80px;
    flex-shrink: 0;
    text-align: center;
    position: relative;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -21px;
    top: 8px;
    width: 16px;
    height: 16px;
    background: var(--primary-blue);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--primary-blue);
}

.timeline-year {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-blue);
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 25px 30px;
    border-radius: 20px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(34, 64, 154, 0.15);
}

.timeline-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
}

/* === Careers Page === */
.careers-intro-section {
    padding: 60px 40px;
    background: #f8f9fa;
}

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

.careers-intro-container h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.why-work-section {
    padding: 80px 40px;
    background: white;
}

.why-work-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-work-container h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 50px;
}

.why-work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-work-card {
    background: #f8f9fa;
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.why-work-card:hover {
    background: white;
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(34, 64, 154, 0.15);
    transform: translateY(-5px);
}

.why-work-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
}

.why-work-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.why-work-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
}

/* Career Opportunities */
.opportunities-section {
    padding: 80px 40px;
    background: #f8f9fa;
}

.opportunities-container {
    max-width: 1100px;
    margin: 0 auto;
}

.opportunities-container h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 15px;
}

.section-description {
    text-align: center;
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 50px;
}

.opportunities-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.opportunity-card {
    background: white;
    padding: 35px 40px;
    border-radius: 25px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.opportunity-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 40px rgba(34, 64, 154, 0.15);
}

.opportunity-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 20px;
}

.opportunity-header h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.opportunity-meta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #6b7280;
}

.opportunity-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.opportunity-meta i {
    color: var(--primary-blue);
}

.apply-btn {
    padding: 12px 28px;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
}

.apply-btn:hover {
    background: var(--primary-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 64, 154, 0.3);
}

.opportunity-description {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 20px;
}

.opportunity-skills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.skill-tag {
    padding: 6px 14px;
    background: #e3f2fd;
    color: var(--primary-blue);
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
}

/* Internship Section */
.internship-section {
    padding: 80px 40px;
    background: white;
}

.internship-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.internship-content h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.internship-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 25px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 35px;
}

.benefits-list li {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefits-list i {
    color: var(--primary-blue);
    font-size: 18px;
}

.internship-image {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.internship-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive for New Pages */
@media (max-width: 768px) {

    .philosophy-grid,
    .values-grid,
    .awards-grid,
    .why-work-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-quote p {
        font-size: 20px;
    }

    .opportunity-header {
        flex-direction: column;
    }

    .apply-btn {
        width: 100%;
        text-align: center;
    }

    .internship-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .timeline-item {
        gap: 20px;
    }

    .timeline-year {
        width: 60px;
    }

    .awards-timeline::before {
        left: 70px;
    }
}

/* === Contact Us Page === */
.contact-main-section {
    padding: 80px 40px;
    background: white;
}

.contact-main-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.contact-info-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: white;
    border-color: var(--primary-blue);
    box-shadow: 0 15px 40px rgba(34, 64, 154, 0.15);
    transform: translateY(-10px);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 36px;
}

.contact-info-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.contact-info-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
}

.contact-info-card a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--primary-dark-blue);
}

/* Contact Form & Map Grid */
.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-form-wrapper h2,
.map-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.form-description {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 25px;
    border: 2px solid #e9ecef;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Albert Sans', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(34, 64, 154, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(34, 64, 154, 0.3);
}

/* Map Section */
.map-wrapper {
    display: flex;
    flex-direction: column;
}

.map-container {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
    flex: 1;
}

.map-container iframe {
    display: block;
}

.btn-map {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: white;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-map:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(34, 64, 154, 0.3);
}

/* Office Hours Section */
.office-hours-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 100%);
}

.office-hours-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.office-hours-container h3 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 40px;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.hours-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.3s ease;
}

.hours-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.day {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.time {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .map-container {
        height: 350px;
    }

    .map-container iframe {
        height: 350px;
    }
}

/* Feature Cards Section */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 80px 40px;
    background-color: white;
    /* Ensure distinct section */
}

.card {
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 500px;
    position: relative;
    transition: transform 0.3s;
}

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

.light-card {
    background-color: #f8f9fa;
    /* Off-white */
}

.blue-card {
    background-color: var(--primary-blue);
    color: white;
}

/* Light Card Internal Layout */
.light-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 30px 10px 30px;
}

.tag {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #d1d5db;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #4b5563;
    letter-spacing: 0.5px;
    background: transparent;
}

.light-card .card-body {
    padding: 10px 30px;
    margin-bottom: auto;
    /* Push image to bottom */
}

.light-card h3 {
    font-size: 24px;
    font-weight: 500;
    color: var(--primary-blue);
    line-height: 1.4;
    margin-top: 10px;
}

.light-card .card-image {
    height: 250px;
    width: 100%;
    overflow: hidden;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    margin-top: 20px;
    /* Image sits at bottom, effectively */
}

.light-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Blue Card Internal Layout */
.blue-card {
    justify-content: space-between;
}

.blue-card .card-image-top {
    height: 50%;
    /* Top half */
    width: 100%;
    overflow: hidden;
    /* Optional: masking style from reference would require clip-path or transparent png overlay */
    border-bottom-left-radius: 30px;
    /* Stylistic choice */
    border-bottom-right-radius: 30px;
    background-color: #fff;
    /* Fallback */
}

.blue-card .card-image-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blue-card .card-footer {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.blue-card .card-content-bottom {
    flex: 1;
    padding-right: 15px;
}

.blue-card .tag-dark {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    margin-bottom: 20px;
}

.blue-card h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    color: white;
}

/* Arrow Button common */
.arrow-btn-card {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

.arrow-btn-card:hover {
    background: #e2e8f0;
}

.btn-white {
    /* If specifically needed for blue card, but white works there too */
    color: var(--primary-blue);
}

/* Mobile Toggle - Hidden on Desktop */
.mobile-toggle {
    display: none;
    background: #1e40af;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: white;
    font-size: 18px;
    transition: background-color 0.3s;
}

.mobile-toggle:hover {
    background-color: #163494;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .site-header {
        padding: 0 20px;
        position: relative;
        /* Ensure absolute nav is relative to this if needed, or body */
    }

    .contact-btn {
        display: none;
        /* Hide Contact Us button on mobile */
    }

    .mobile-toggle {
        display: flex;
    }

    /* Hide Desktop Nav by default */
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: none;
        flex-direction: column;
        z-index: 999;
        border-top: 1px solid #eee;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .main-nav li {
        width: 100%;
    }

    .main-nav a.nav-link {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid #f0f2f5;
        border-radius: 0;
        justify-content: space-between;
    }

    /* Mobile Dropdown styling adaptations */
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0 0 0 20px;
        /* Indent sub-menu */
        background-color: transparent;
        display: none;
        /* Hidden by default, uses hover on desktop but click needed on mobile */
    }

    .nav-item.active .dropdown-menu {
        display: block;
    }

    /* Simple JS/Hover interaction for mobile submenus? 
       For now, let's just make sure they appear if the class logic holds,
       or better, just show them or let them be clickable. 
       Given the task is about the main dropdown from the grid icon, 
       we'll focus on the main menu toggling first.
    */

    /* Ensure hero content is legible on mobile */
    .hero-content {
        padding-left: 30px;
        padding-right: 30px;
        text-align: center;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    /* Feature Cards Mobile */
    .feature-cards {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }
}

/* Search Overlay Styles */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    width: 100%;
    max-width: 800px;
    padding: 0 40px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.search-overlay.active .search-container {
    transform: translateY(0);
}

.search-input-wrapper {
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 20px 0;
    border: none;
    border-bottom: 2px solid #ddd;
    font-size: 32px;
    font-weight: 300;
    background: transparent;
    color: #333;
    outline: none;
    transition: border-color 0.3s;
    font-family: var(--font-family);
}

.search-input:focus {
    border-color: var(--primary-blue);
}

.search-submit {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-blue);
    cursor: pointer;
    padding: 10px;
}

.search-close {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    font-size: 32px;
    color: #333;
    cursor: pointer;
    transition: transform 0.3s;
}

.search-close:hover {
    transform: rotate(90deg);
    color: var(--primary-blue);
}

@media (max-width: 768px) {
    .search-input {
        font-size: 24px;
    }

    .search-close {
        top: 20px;
        right: 20px;
        font-size: 24px;
    }
}




/* Search Highlight */
mark.search-match {
    background-color: #ffd700;
    color: #000;
    padding: 0 2px;
    border-radius: 2px;
}


/* ========================================
   Who We Are Page Styles
   ======================================== */

/* Content Section - Base Styles */
.content-section {
    padding: 80px 40px;
    background: white;
}

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

.content-intro {
    text-align: center;
    margin-bottom: 60px;
}

.content-intro h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.lead-text {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto;
}

/* Stats Row */
.content-stats-row {
    display: flex;
    gap: 30px;
    margin-bottom: 80px;
    justify-content: center;
}

.stat-box {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    flex: 1;
    max-width: 300px;
    box-shadow: 0 10px 30px rgba(34, 64, 154, 0.2);
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    line-height: 1.2;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Content Body - Two Column Layout */
.content-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.content-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.content-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.content-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.content-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

/* How It Works Section */
.how-it-works {
    margin-bottom: 80px;
}

.how-it-works h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 50px;
}

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

.process-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.process-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 35px rgba(34, 64, 154, 0.15);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: white;
}

.process-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.process-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 100%);
    padding: 60px 40px;
    border-radius: 25px;
    text-align: center;
    color: white;
}

.cta-section h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-primary-large {
    display: inline-block;
    background: white;
    color: var(--primary-blue);
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 100%);
    padding: 60px 40px 40px;
    color: white;
}

.page-header-content {
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb span {
    opacity: 0.7;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
}

/* ========================================
   Mobile Responsive Styles - Who We Are
   ======================================== */

@media (max-width: 768px) {

    /* Content Section */
    .content-section {
        padding: 60px 20px;
    }

    .content-intro {
        margin-bottom: 40px;
    }

    .content-intro h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .lead-text {
        font-size: 16px;
        line-height: 1.6;
    }

    /* Stats Row - Stack Vertically */
    .content-stats-row {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 60px;
    }

    .stat-box {
        max-width: 100%;
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 13px;
    }

    /* Content Body - Single Column */
    .content-body {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .content-image img {
        height: 250px;
    }

    .content-text h3 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .content-text p {
        font-size: 15px;
        line-height: 1.7;
    }

    /* How It Works */
    .how-it-works {
        margin-bottom: 60px;
    }

    .how-it-works h3 {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-card {
        padding: 35px 25px;
    }

    .process-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
        margin-bottom: 20px;
    }

    .process-card h4 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .process-card p {
        font-size: 14px;
    }

    /* CTA Section */
    .cta-section {
        padding: 40px 25px;
        border-radius: 20px;
    }

    .cta-section h3 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .cta-section p {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .btn-primary-large {
        padding: 14px 32px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
    }

    /* Page Header */
    .page-header {
        padding: 40px 20px 30px;
    }

    .breadcrumb {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .page-title {
        font-size: 36px;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .content-section {
        padding: 40px 15px;
    }

    .content-intro h2 {
        font-size: 28px;
    }

    .lead-text {
        font-size: 15px;
    }

    .stat-box {
        padding: 25px 15px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 12px;
    }

    .content-image img {
        height: 200px;
    }

    .content-text h3 {
        font-size: 24px;
    }

    .how-it-works h3 {
        font-size: 26px;
    }

    .process-card {
        padding: 30px 20px;
    }

    .process-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .cta-section {
        padding: 35px 20px;
    }

    .cta-section h3 {
        font-size: 24px;
    }

    .cta-section p {
        font-size: 15px;
    }

    .page-title {
        font-size: 32px;
    }
}

/* JCI Creed Section */
.creed-section {
    padding: 80px 20px;
    background: #f8f9fa;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.creed-card {
    background: white;
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    /* Premium shadow */
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    border: 1px solid #ffffff;
}

/* Decorative Icon */
.creed-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    color: var(--primary-blue);
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(34, 64, 154, 0.2);
}

.creed-intro {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 30px;
    font-family: 'Albert Sans', sans-serif;
}

/* Creed Typography */
.creed-text {
    margin-bottom: 40px;
}

.creed-line {
    font-size: 22px;
    line-height: 1.8;
    color: #374151;
    font-weight: 500;
    margin-bottom: 12px;
    font-family: 'Albert Sans', sans-serif;
    letter-spacing: -0.01em;
}

/* Creed layout: text + image */
.creed-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
}

.creed-content .creed-text {
    flex: 1 1 0;
}

.creed-figure {
    flex: 0 0 280px;
    max-width: 280px;
    margin: 0;
}

.creed-figure img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Divider & Author */
.creed-divider {
    height: 4px;
    width: 60px;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-blue));
    margin: 40px auto;
    border-radius: 2px;
    opacity: 0.3;
}

.creed-author h4 {
    font-size: 20px;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.creed-author p {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .creed-section {
        padding: 40px 20px;
    }

    .creed-card {
        padding: 40px 25px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .creed-intro {
        font-size: 24px;
    }

    .creed-line {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .creed-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 30px;
    }

    .creed-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .creed-figure {
        flex: 0 0 auto;
        max-width: 220px;
        margin-top: 10px;
    }
}

/* Inner Page Hero - New Design */
.inner-page-hero {
    position: relative;
    padding: 60px;
    /* Matches standard page header */
    text-align: center;
    color: white;
    overflow: hidden;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    /* Optional min-height to ensure it's not too small if content is empty */
}

.inner-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(22, 42, 102, 0.85), rgba(34, 64, 154, 0.7)), url('/images/bg\ image\ 2.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.inner-hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.inner-hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.inner-hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Breadcrumb in Hero */
.hero-breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.hero-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.hero-breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Modern Content Layout */
.modern-section {
    padding: 0 40px 80px;
}

.modern-container {
    max-width: 1100px;
    margin: 0 auto;
}

.lead-text-large {
    font-size: 24px;
    line-height: 1.6;
    color: var(--primary-dark-blue);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    font-weight: 500;
}

/* Modern Cards Grid */
.modern-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.modern-card {
    background: white;
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    /* Soft diffuse shadow */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-blue), #4caf50);
    /* Gradient border top */
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

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

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

.card-icon-large {
    width: 70px;
    height: 70px;
    background: #f0f7ff;
    /* Light blue bg */
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--primary-blue);
    font-size: 28px;
    transition: all 0.3s ease;
}

.modern-card:hover .card-icon-large {
    background: var(--primary-blue);
    color: white;
    transform: rotateY(360deg);
    /* Playful animation */
}

.modern-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.modern-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0;
}

/* Recognition Section styled distinctively */
.recognition-box {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 30px;
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.recog-icon {
    font-size: 60px;
    color: #eab308;
    /* Gold color for certificate */
    flex-shrink: 0;
}

.recog-content h3 {
    font-size: 24px;
    color: var(--primary-dark-blue);
    margin-bottom: 10px;
}

.recog-content p {
    font-size: 16px;
    color: #4b5563;
    margin: 0;
}

/* Stats in Modern Layout */
.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card-modern {
    background: var(--primary-blue);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    color: white;
    transition: transform 0.3s;
}

.stat-card-modern:hover {
    transform: translateY(-5px);
    background: var(--primary-dark-blue);
}

.stat-number-large {
    font-size: 42px;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
}

.stat-label-small {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Responsive adjustments for new elements */
@media (max-width: 900px) {
    .modern-grid-2 {
        grid-template-columns: 1fr;
    }

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

    .inner-hero-title {
        font-size: 42px;
    }

    .lead-text-large {
        font-size: 20px;
    }
}

@media (max-width: 600px) {
    .inner-page-hero {
        border-radius: 0 0 30px 30px;
        height: 350px;
    }

    .recognition-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

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


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

/* === Refinements: Hero, Areas & CTA === */

/* 1. Hero Refinement: Solid Blue */
.inner-page-hero.solid-blue::before {
    background-image: none;
    background-color: var(--primary-blue);
    /* Optional: Gentle gradient for depth */
    background: linear-gradient(135deg, #162a66 0%, #22409a 100%);
}

/* 2. Areas of Opportunity Section */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 60px 0;
}

.area-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.area-card:hover {
    background: white;
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-blue);
}

.area-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-blue);
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.area-card:hover .area-icon {
    background: var(--primary-blue);
    color: white;
}

.area-card h4 {
    font-size: 18px;
    color: var(--primary-dark-blue);
    margin-bottom: 12px;
    font-weight: 700;
}

.area-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 900px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* 3. Blue CTA Section */
.cta-section-blue {
    background: var(--primary-blue);
    /* Fallback */
    background: linear-gradient(135deg, #22409a 0%, #1c3580 100%);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.cta-section-blue h3 {
    font-size: 32px;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-section-blue p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Button Variants for Blue Background */
.btn-white-filled {
    display: inline-block;
    background: white;
    color: var(--primary-blue);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn-white-filled:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
}

.btn-outline-white-transparent {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid white;
}

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

/* === Gallery Page Enhancements === */

/* Masonry Grid Layout */
.masonry-grid {
    column-count: 3;
    column-gap: 24px;
    margin-bottom: 60px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 24px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Softer shadow */
    transition: transform 0.3s ease;
    background: #000;
    /* For image contrast */
}

.masonry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease, opacity 0.3s;
}

.masonry-item:hover img {
    transform: scale(1.05);
    opacity: 0.9;
}

.masonry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

.masonry-caption {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Video Section */
.video-grid-refined {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.video-card-refined {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.video-card-refined:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.video-thumb-refined {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumb-refined img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card-refined:hover .video-thumb-refined img {
    transform: scale(1.1);
}

.play-icon-refined {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.video-card-refined:hover .play-icon-refined {
    background: var(--primary-blue);
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-details {
    padding: 25px;
}

.video-details h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
    font-weight: 700;
}

.video-details p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

@media (max-width: 900px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .masonry-grid {
        column-count: 1;
    }
}

/* Why Join Us Page Styles */
.benefits-intro-section {
    padding: 80px 40px 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.benefits-intro-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.intro-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.intro-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-dark-blue));
    border-radius: 2px;
}

.intro-description {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-top: 30px;
}

/* Core Benefits Section */
.core-benefits-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark-blue) 100%);
    position: relative;
    overflow: hidden;
}

.core-benefits-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.core-benefits-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.core-section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 50px;
}

.core-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 20px;
}

.core-benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.core-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.core-benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.core-benefit-icon {
    width: 85px;
    height: 85px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 38px;
    color: var(--primary-blue);
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.core-benefit-card:hover .core-benefit-icon {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.core-benefit-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.core-benefit-card p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

/* Benefits Showcase Section */
.benefits-showcase-section {
    padding: 80px 40px 100px;
    background: white;
}

.benefits-showcase-container {
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 20px;
}

.benefit-card-enhanced {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-dark-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.benefit-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(34, 64, 154, 0.15);
    border-color: var(--primary-blue);
}

.benefit-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(34, 64, 154, 0.2);
}

.benefit-card-enhanced:hover .benefit-icon-wrapper {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(34, 64, 154, 0.3);
}

.benefit-card-enhanced h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-dark-blue);
}

.benefit-card-enhanced p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

/* Call to Action Section Enhanced */
.cta-section-enhanced {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark-blue) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section-enhanced::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section-enhanced::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-container-enhanced {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content-box {
    text-align: center;
    color: white;
}

.cta-content-box h2 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-content-box p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.btn-secondary-large {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: var(--primary-blue);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn-secondary-large:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles for Why Join Us */
@media (max-width: 1024px) {
    .benefits-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .core-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .intro-title {
        font-size: 36px;
    }

    .core-section-title {
        font-size: 32px;
    }

    .cta-content-box h2 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {

    .benefits-grid-enhanced,
    .core-benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .benefits-intro-section {
        padding: 60px 20px 40px;
    }

    .core-benefits-section {
        padding: 60px 20px;
    }

    .benefits-showcase-section {
        padding: 60px 20px 80px;
    }

    .intro-title {
        font-size: 32px;
    }

    .core-section-title {
        font-size: 28px;
    }

    .intro-description {
        font-size: 16px;
    }

    .cta-section-enhanced {
        padding: 80px 20px;
    }

    .cta-content-box h2 {
        font-size: 32px;
    }

    .cta-content-box p {
        font-size: 18px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        text-align: center;
    }

    .btn-learn-more {
        padding: 16px 35px;
        font-size: 15px;
    }
}