/* Header styles moved to header-core.css */
.nav-link {
    color: #000000;
    font-weight: 500;
    margin: 0 15px;
    font-size: 16px;
}
.become-member-img {
    height: 80px; /* Increased size to match logo */
    width: auto;
}
.become-member-img-mobile {
    height: 60px; /* Smaller on mobile */
    width: auto;
}
.login-btn {
    color: #000000;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
}
.login-btn-mobile {
    color: #000000;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid #0a3b7c;
    border-radius: 4px;
}

/* Login Page Styles */
.login-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 30px;
}

.login-card .card-header {
    background-color: #0a3b7c;
    color: white;
    padding: 20px;
    border: none;
}

.login-card .card-body {
    padding: 30px;
}

.login-card .form-label {
    font-weight: 500;
    color: #333;
}

.login-card .form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
}

.login-card .form-control:focus {
    border-color: #0a3b7c;
    box-shadow: 0 0 0 0.2rem rgba(10, 59, 124, 0.25);
}

.login-submit-btn {
    background-color: #0a3b7c;
    color: white;
    font-weight: bold;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.login-submit-btn:hover {
    background-color: #0d4a9e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 59, 124, 0.3);
}

.login-card .card-footer {
    background-color: #f8f9fa;
    border: none;
    padding: 20px;
}

.login-card a {
    color: #0a3b7c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.login-card a:hover {
    color: #0d4a9e;
    text-decoration: underline;
}

/* Dashboard Styles */
.dashboard-sidebar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.dashboard-sidebar .card-header {
    background-color: #0a3b7c;
    color: white;
    font-weight: bold;
}

.dashboard-sidebar .list-group-item {
    border-left: none;
    border-right: none;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.dashboard-sidebar .list-group-item:hover {
    background-color: #f8f9fa;
}

.dashboard-sidebar .list-group-item.active {
    background-color: #0a3b7c;
    border-color: #0a3b7c;
}

.dashboard-sidebar .list-group-item i {
    width: 20px;
    text-align: center;
}

.dashboard-stat-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.dashboard-stat-card:hover {
    transform: translateY(-5px);
}

.dashboard-stat-card .card-title {
    color: #0a3b7c;
    font-size: 16px;
    font-weight: 600;
}

.dashboard-stat-card .card-text {
    font-size: 18px;
    font-weight: 500;
}
header {
    border-bottom: 1px solid #f0f0f0;
}
.navbar-toggler {
    border: none;
    padding: 0;
}
.mobile-menu-container {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
}
.mobile-actions {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

/* More Dropdown Menu Styles */
.more-dropdown-toggle {
    color: #000000;
    display: flex;
    align-items: center;
}

.more-dropdown-toggle i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.more-dropdown-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

/* Remove default dropdown arrow from Bootstrap */
.dropdown-toggle::after {
    display: none;
}

.more-dropdown-menu {
    width: 900px;
    padding: 20px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    left: 50%;
    transform: translateX(-50%); /* Center the dropdown */
    position: absolute;
    z-index: 1030; /* Ensure it's above other elements */
}

.more-menu-left {
    padding-right: 20px;
    border-right: 1px solid #eee;
}

.more-menu-right {
    padding-left: 20px;
}

.more-dropdown-menu .dropdown-item {
    padding: 8px 15px;
    font-weight: 500;
    color: #333;
    transition: background-color 0.2s;
}

.more-dropdown-menu .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #0a3b7c;
}

.membership-header, .affiliate-header {
    background-color: #f8c301;
    color: #000;
    padding: 10px 15px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.affiliate-header {
    margin-top: 20px;
}

.contact-us-btn-container {
    margin-top: 20px;
    padding: 15px;
    border-top: 1px solid #eee;
}

.contact-us-btn {
    display: block;
    background-color: #0a3b7c;
    color: white;
    text-align: center;
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 10px;
    transition: background-color 0.3s;
}

.contact-us-btn:hover {
    background-color: #0d4a9e;
    color: white;
}

.contact-info {
    font-size: 14px;
    color: #666;
}

.contact-info p {
    margin-bottom: 5px;
}

.contact-info a {
    color: #0a3b7c;
    text-decoration: none;
}

@media (max-width: 992px) {
    .more-dropdown-menu {
        width: 100%;
        left: 0;
        right: auto;
        transform: none;
        position: static;
    }

    .more-menu-left, .more-menu-right {
        padding: 0;
    }

    .more-menu-left {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
}

/* Hero Section Styles */
.hero-section {
    width: 100%;
    height: 450px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1671022412547-75c4cb01f47e?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 991px) {
    .hero-section {
        height: auto;
        min-height: 600px;
    }

    .hero-content {
        flex-direction: column;
        padding: 30px 0;
    }

    .hero-box {
        width: 90% !important;
        margin: 15px auto !important;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Newsletter Box */
.hero-box {
    background-color: rgba(51, 51, 51, 0.85);
    padding: 30px;
    color: white;
}

.newsletter-box {
    width: 30%;
    margin-left: 5%;
    border-left: 4px solid #f8c301;
}

.newsletter-box h2 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 12px;
}

.newsletter-box p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-input {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    width: 100%;
}

.newsletter-submit {
    background-color: #0a3b7c;
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.newsletter-submit:hover {
    background-color: #0d4a9e;
}

/* Association Box */
.association-box {
    width: 30%;
    margin-right: 5%;
    text-align: center;
    border-right: 4px solid #0a3b7c;
}

.association-box h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
}

.association-box p {
    font-size: 18px;
    margin-bottom: 20px;
}

.join-btn {
    display: inline-block;
    background-color: #f8c301;
    color: #000;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.join-btn:hover {
    background-color: #e0b101;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }

    .newsletter-box, .association-box {
        width: 90%;
        margin: 10px 0;
    }

    .hero-section {
        height: auto;
        min-height: 600px;
    }
}

/* Partners Logo Carousel Styles */
.partners-carousel {
    background-color: #f9f9f9;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    padding: 30px 0;
}

.partners-title {
    color: #0a3b7c;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
}

.partners-subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}

.logo-carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.logo-carousel {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 15px 30px;
    align-items: center;
    width: 100%;
}

.logo-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.logo-slide {
    flex: 0 0 auto;
    margin: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.partner-logo {
    max-height: 70px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
    .partners-title {
        font-size: 24px;
    }

    .partners-subtitle {
        font-size: 14px;
    }

    .logo-slide {
        margin: 0 15px;
        height: 60px;
    }

    .partner-logo {
        max-height: 50px;
    }
}

/* About & Vision Section Styles */
.about-vision-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-vision-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 80%;
    background-color: #0a3b7c;
    transform: translateY(-50%);
    z-index: 1;
}

.about-box, .vision-box {
    position: relative;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-image-container, .vision-image-container {
    position: relative;
    width: 100%;
    max-width: 350px;
    margin-bottom: 20px;
}

.about-image-container::before, .vision-image-container::before {
    content: '';
    position: absolute;
    top: -10px;
    width: 100%;
    height: 10px;
    background-color: #0a3b7c;
}

.about-image-container::after, .vision-image-container::after {
    content: '';
    position: absolute;
    bottom: -10px;
    width: 100%;
    height: 10px;
    background-color: #f8c301;
}

.about-image-container::before, .about-image-container::after {
    left: 10px;
}

.vision-image-container::before, .vision-image-container::after {
    right: 10px;
}

.about-image, .vision-image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-content, .vision-content {
    text-align: center;
    padding: 0 15px;
}

.about-title, .vision-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.about-text, .vision-text {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.learn-more-btn {
    display: inline-block;
    background-color: #f8c301;
    color: #000;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.learn-more-btn:hover {
    background-color: #e0b101;
    color: #000;
}

@media (max-width: 992px) {
    .about-vision-section {
        height: auto;
        padding: 50px 0;
    }

    .about-vision-section::before {
        display: none;
    }

    .about-box, .vision-box {
        margin-bottom: 40px;
    }
}

/* What We Do Section Styles */
.what-we-do-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    position: relative;
    padding: 50px 0;
    margin-bottom: 30px;
}



.what-we-do-section .container {
    position: relative;
}

.what-we-do-section .section-title {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.what-we-do-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #f8c301;
}

.what-we-do-box {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease;
}

.what-we-do-box:hover {
    transform: translateY(-5px);
}

.what-we-do-image {
    height: 150px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.what-we-do-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.what-we-do-box:hover .what-we-do-image img {
    transform: scale(1.05);
}

.what-we-do-title {
    font-size: 22px;
    font-weight: bold;
    color: #0a3b7c;
    margin: 15px 15px 10px;
    text-align: center;
}

.what-we-do-text {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    padding: 0 15px 20px;
    text-align: center;
}

.what-we-do-section .learn-more-btn {
    background-color: #f8c301;
    color: #000;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
    display: inline-block;
}

.what-we-do-section .learn-more-btn:hover {
    background-color: #e0b101;
    color: #000;
}

@media (max-width: 992px) {
    .what-we-do-section {
        padding: 40px 0;
    }

    .what-we-do-box {
        margin-bottom: 20px;
    }
}

/* What To Expect Section Styles */
.what-to-expect {
    background-color: #f5f5f5;
    padding: 40px 0;
}

.expect-header {
    background-color: #0a3b7c;
    color: white;
    padding: 10px 0;
    margin-bottom: 20px;
    border-radius: 0;
}

.expect-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}

.benefit-card {
    border: 1px solid #ddd;
    border-radius: 0;
    height: 100%;
    overflow: hidden;
}

.benefit-title {
    background-color: #f8c301;
    color: #000;
    padding: 10px 15px;
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.benefit-card.networking .benefit-title {
    background-color: #f8c301;
}

.benefit-card.opportunities .benefit-title {
    background-color: #f8c301;
}

.benefit-card.education .benefit-title {
    background-color: #f8c301;
}

.benefit-card.events .benefit-title {
    background-color: #f8c301;
}

.benefit-card.announcements .benefit-title {
    background-color: #f8c301;
}

.benefit-card.career .benefit-title {
    background-color: #f8c301;
}

.benefit-card.community .benefit-title {
    background-color: #f8c301;
}

.benefit-list {
    list-style: none;
    padding: 15px;
    margin: 0;
    background-color: #333;
    color: white;
    height: 100%;
}

.benefit-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.4;
}

.benefit-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #f8c301;
}

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

.nationwide-card {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0 0 20px 0;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
}

.nationwide-banner {
    background-color: #0a3b7c;
    color: white;
    padding: 30px 15px;
    text-align: center;
}

.nationwide-title {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    letter-spacing: 2px;
}

.nationwide-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.small-logo {
    max-width: 100%;
    max-height: 100%;
}

.nationwide-card p {
    padding: 0 15px;
    text-align: center;
}

.stat-number {
    font-size: 24px;
    font-weight: bold;
    color: #0a3b7c;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

.btn-block {
    display: block;
    width: 90%;
    margin: 0 auto;
}

/* Jobs Initiative Section */
.jobs-initiative {
    background-color: #0a3b7c;
}

/* Free Ebooks Section */
.free-ebooks {
    background: url('../images/home/white-texture-bg.jpg') center center;
    background-size: cover;
    padding: 60px 0;
}

.ebooks-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gold-text {
    color: #f8c301;
}

.blue-text {
    color: #0a3b7c;
}

.ebooks-description {
    font-size: 18px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 25px;
}

.request-access-btn {
    background-color: #0a3b7c;
    color: white;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 16px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.request-access-btn:hover {
    background-color: #0d4a9e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.ebooks-stack {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2));
    transition: transform 0.3s ease;
}

.ebooks-stack:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .ebooks-title {
        font-size: 36px;
        text-align: center;
    }

    .ebooks-description {
        text-align: center;
    }

    .text-left {
        text-align: center !important;
    }

    .ebooks-stack {
        margin-top: 30px;
    }
}

/* Testimonials Section */
.testimonials {
    background: url('../images/home/white-texture-bg.jpg') center center;
    background-size: cover;
    padding: 60px 0;
}

.testimonial-slider {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 15px;
}

.testimonial-card {
    border-radius: 20px;
    padding: 30px;
    position: relative;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gold-card {
    background-color: #f8c301;
}

.blue-card {
    background-color: #0a3b7c;
    color: white;
}

.testimonial-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.quote-mark {
    font-size: 60px;
    line-height: 1;
    font-weight: bold;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.8);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.testimonial-nav:hover {
    background-color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #0a3b7c;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 20px;
    }

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

    .testimonial-text {
        font-size: 14px;
    }
}

/* Our Impact Section */
.our-impact {
    background: url('../images/home/white-texture-bg.jpg') center center;
    background-size: cover;
    padding: 60px 0;
}

.impact-description {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.impact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 15px 20px;
    height: 60px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.impact-box:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.impact-text {
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    color: #0a3b7c;
}

.impact-plus {
    font-size: 20px;
    font-weight: bold;
    color: #0a3b7c;
}

.impact-content {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 5px 5px;
    padding: 15px;
    margin-top: -5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.impact-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

/* Enhanced Styling for Better Visual Appeal */
/* Global Enhancements */
body {
    font-family: 'Poppins', 'Segoe UI', Roboto, sans-serif;
    color: #333;
    line-height: 1.6;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0a3b7c, #f8c301);
    border-radius: 2px;
}

/* Hero Section Enhancements */
.hero-section {
    height: 650px; /* Much taller hero section */
}

.hero-background {
    filter: brightness(0.8); /* Darker for better contrast */
    background-position: center 30%; /* Better positioning of background */
}

.hero-box {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2); /* Stronger shadow */
    border-radius: 12px; /* Rounder corners */
    transition: transform 0.3s ease;
    padding: 40px; /* More padding */
    width: 35%; /* Wider boxes */
}

.hero-box:hover {
    transform: translateY(-8px); /* More movement */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.newsletter-box {
    border-left: 8px solid #f8c301; /* Thicker border */
}

.association-box {
    border-right: 8px solid #0a3b7c; /* Thicker border */
}

.newsletter-box h2 {
    font-size: 32px; /* Larger title */
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.association-box h1 {
    font-size: 40px; /* Larger title */
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.newsletter-box p, .association-box p {
    font-size: 18px; /* Larger text */
    margin-bottom: 25px;
    line-height: 1.6;
}

.newsletter-input {
    padding: 15px 20px; /* Larger input */
    font-size: 16px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.join-btn, .newsletter-submit {
    padding: 15px 30px; /* Larger buttons */
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.join-btn:hover, .newsletter-submit:hover {
    transform: translateY(-5px); /* More movement */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Partners Carousel Enhancement */
.partners-carousel {
    background-color: #ffffff;
    padding: 50px 0;
}

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

.logo-slide {
    height: 100px; /* Taller for better visibility */
}

.partner-logo {
    max-height: 80px;
    filter: grayscale(0); /* Show logos in color */
    opacity: 1;
    transition: all 0.4s ease;
}

.partner-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

/* About & Vision Section Enhancements */
.about-vision-section {
    height: 750px; /* Even taller section */
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.about-image-container, .vision-image-container {
    max-width: 500px; /* Much larger images */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    margin: 0 auto 30px;
}

.about-image, .vision-image {
    max-height: 300px; /* Taller images */
    transition: transform 0.5s ease;
    width: 100%;
}

.about-image:hover, .vision-image:hover {
    transform: scale(1.05);
}

.about-title, .vision-title {
    font-size: 38px; /* Larger titles */
    color: #0a3b7c;
    margin-bottom: 25px;
}

.about-text, .vision-text {
    font-size: 18px; /* Larger text */
    color: #444;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* What We Do Section Enhancements */
.what-we-do-section {
    padding: 90px 0; /* More padding */
    background-color: #f9f9f9;
}

.what-we-do-box {
    background-color: #fff;
    border-radius: 12px;
    padding: 40px; /* More padding */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); /* Stronger shadow */
    height: 100%;
    transition: all 0.3s ease;
    border-top: 5px solid transparent; /* Thicker border */
    margin-bottom: 30px; /* More space between boxes */
}

.what-we-do-box:hover {
    transform: translateY(-15px); /* More movement */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-top: 5px solid #f8c301;
}

.what-we-do-image {
    height: 250px; /* Even taller image area */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px; /* More space below image */
}

.what-we-do-image img {
    max-height: 220px; /* Much larger images */
    max-width: 100%;
    transition: transform 0.4s ease;
}

.what-we-do-box:hover .what-we-do-image img {
    transform: scale(1.15); /* More zoom on hover */
}

.what-we-do-title {
    font-size: 26px; /* Larger title */
    font-weight: 700;
    color: #0a3b7c;
    margin-bottom: 20px;
}

.what-we-do-text {
    color: #555;
    font-size: 17px; /* Larger text */
    line-height: 1.7;
}

/* What To Expect Section Enhancements */
.what-to-expect {
    padding: 20px 0; /* Even less padding - more consolidated */
    background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
}

/* Benefits Simple Layout */
.benefit-simple {
    margin-bottom: 10px;
}

.benefit-header {
    background-color: #e9b942; /* Gold color for headers */
    color: #d9230f; /* Red text */
    font-size: 18px;
    font-weight: 600;
    padding: 8px 15px;
    margin: 0;
    text-align: center;
    border-radius: 5px 5px 0 0;
}

.benefit-simple-list {
    background-color: #333333; /* Dark background */
    color: #ffffff; /* White text */
    list-style-type: disc;
    padding: 15px 15px 15px 35px;
    margin: 0;
    border-radius: 0 0 5px 5px;
}

.benefit-simple-list li {
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 1.4;
}

.expect-main-title {
    color: #ffffff;
    background-color: #0a3b7c;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.benefit-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px; /* Less padding */
    height: 100%;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08); /* Stronger shadow */
    transition: all 0.3s ease;
    border-left: 6px solid #0a3b7c; /* Thicker border */
    margin-bottom: 15px; /* Less space between cards */
}

.benefit-card:hover {
    transform: translateY(-8px); /* More movement */
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.benefit-title {
    color: #0a3b7c;
    font-size: 24px; /* Larger title */
    font-weight: 700;
    margin-bottom: 20px;
}

.benefit-list {
    padding-left: 5px;
}

.benefit-list li {
    margin-bottom: 15px; /* More space between items */
    position: relative;
    padding-left: 30px; /* More space for checkmark */
    font-size: 17px; /* Larger text */
    line-height: 1.6;
}

.benefit-list li::before {
    content: '✓';
    color: #f8c301;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 20px; /* Larger checkmark */
}

.nationwide-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); /* Stronger shadow */
    height: 100%;
}

.nationwide-banner {
    background-color: #0a3b7c;
    padding: 20px; /* More padding */
    text-align: center;
}

.nationwide-title {
    color: #fff;
    margin: 0;
    font-size: 28px; /* Larger title */
    font-weight: 700;
}

.nationwide-card h3 {
    font-size: 24px; /* Larger subtitle */
    margin-top: 25px;
    margin-bottom: 20px;
}

.nationwide-card p {
    font-size: 17px; /* Larger text */
    padding: 0 20px;
    line-height: 1.7;
}

.small-logo {
    max-height: 100px; /* Larger logo */
    margin: 15px 0;
}

.stat-number {
    font-size: 32px; /* Larger stats */
    font-weight: 700;
    color: #0a3b7c;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
}

/* Jobs Initiative Section Enhancements */
.jobs-initiative {
    background: linear-gradient(90deg, #0a3b7c, #0d4a9e);
    padding: 60px 0;
}

.jobs-initiative h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.jobs-initiative p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

/* Industry Data Section Enhancements */
.industry-data {
    padding: 90px 0; /* More padding */
    background-color: #f9f9f9;
}

.industry-data h3 {
    font-size: 36px; /* Much larger heading */
    font-weight: 700;
    color: #0a3b7c;
    margin-bottom: 35px;
    position: relative;
    display: inline-block;
}

.industry-data h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: #f8c301;
    border-radius: 2px;
}

.industry-data img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.industry-data img:hover {
    transform: scale(1.05);
}

.industry-stats-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.industry-stats-list li {
    margin-bottom: 20px; /* More space between items */
    padding: 25px; /* More padding */
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); /* Stronger shadow */
    transition: transform 0.3s ease;
    font-size: 17px; /* Larger text */
    line-height: 1.6;
    border-left: 5px solid #f8c301; /* Colored border */
}

.industry-stats-list li:hover {
    transform: translateX(8px); /* More movement */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.industry-stats-list strong {
    color: #0a3b7c;
    font-weight: 700;
    font-size: 19px; /* Larger bold text */
    display: block;
    margin-bottom: 8px;
}

.industry-data .btn {
    padding: 12px 30px; /* Larger button */
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.industry-data .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Free Ebooks Section Enhancements */
.free-ebooks {
    padding: 100px 0; /* More padding */
    background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
}

.ebooks-title {
    font-size: 48px; /* Much larger title */
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.gold-text {
    color: #f8c301;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1); /* Add subtle text shadow */
}

.blue-text {
    color: #0a3b7c;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1); /* Add subtle text shadow */
}

.ebooks-description {
    font-size: 22px; /* Larger description */
    color: #555;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 90%;
}

.request-access-btn {
    padding: 15px 40px; /* Larger button */
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(10, 59, 124, 0.25);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.request-access-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(10, 59, 124, 0.35);
}

.ebooks-stack {
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.5s ease;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.2); /* Stronger shadow */
    border-radius: 12px;
    max-width: 100%;
    height: auto;
}

.ebooks-stack:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05); /* Add scale effect */
}

/* Testimonials Section Enhancements */
.testimonials {
    padding: 100px 0; /* More padding */
    background-color: #f9f9f9;
}

.testimonial-carousel {
    margin: 0 40px; /* More space for navigation */
}

.testimonial-card {
    padding: 50px; /* More padding */
    border-radius: 20px; /* Rounder corners */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); /* Stronger shadow */
    position: relative;
    overflow: hidden;
    margin: 20px 0;
}

.gold-card {
    background: linear-gradient(135deg, #ffffff 0%, #fff8e1 100%);
    border-top: 8px solid #f8c301; /* Thicker border */
}

.blue-card {
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    border-top: 8px solid #0a3b7c; /* Thicker border */
}

.testimonial-name {
    font-size: 28px; /* Larger name */
    font-weight: 700;
    color: #0a3b7c;
    margin-bottom: 25px;
}

.quote-mark {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 80px; /* Larger quote mark */
    color: rgba(248, 195, 1, 0.2);
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 18px; /* Larger text */
    line-height: 1.8;
    color: #555;
}

.testimonial-nav {
    width: 60px; /* Larger buttons */
    height: 60px;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    font-size: 24px; /* Larger arrows */
    color: #0a3b7c;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-btn {
    left: -30px;
}

.next-btn {
    right: -30px;
}

.testimonial-nav:hover {
    background-color: #0a3b7c;
    color: #fff;
    box-shadow: 0 12px 25px rgba(10, 59, 124, 0.35);
}

.dot {
    width: 15px; /* Larger dots */
    height: 15px;
    background-color: #ddd;
    border-radius: 50%;
    display: inline-block;
    margin: 0 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #0a3b7c;
    transform: scale(1.3);
}

.testimonial-dots {
    margin-top: 30px; /* More space above dots */
}

/* Our Impact Section Enhancements */
.our-impact {
    padding: 100px 0; /* More padding */
    background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
}

.our-impact .section-title {
    font-size: 42px; /* Larger title */
    margin-bottom: 35px;
}

.impact-description {
    font-size: 20px; /* Larger text */
    color: #555;
    max-width: 1000px;
    margin: 0 auto 50px; /* More space below */
    line-height: 1.7;
}

.impact-box {
    padding: 25px 30px; /* More padding */
    border-radius: 12px; /* Rounder corners */
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1); /* Stronger shadow */
    transition: all 0.3s ease;
    margin-bottom: 20px; /* Space between boxes */
    background-color: #fff;
    border-left: 5px solid #0a3b7c; /* Colored border */
}

.impact-box:hover {
    transform: translateY(-8px); /* More movement */
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.impact-text {
    font-size: 22px; /* Larger text */
    font-weight: 600;
}

.impact-plus {
    font-size: 28px; /* Larger plus/minus */
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8c301;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.impact-content {
    padding: 30px; /* More padding */
    border-radius: 0 0 12px 12px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    margin-top: -5px;
    background-color: #fff;
    border-left: 5px solid #0a3b7c;
    border-bottom: 5px solid #0a3b7c;
    border-right: 5px solid #0a3b7c;
}

.impact-content p {
    font-size: 18px; /* Larger text */
    line-height: 1.8;
}

.become-member-btn {
    padding: 15px 40px; /* Larger button */
    font-size: 18px;
    font-weight: 600;
    margin-top: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.become-member-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Footer Enhancements moved to footer-core.css */

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

.slide-up {
    animation: slideUp 0.8s ease-in-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-in-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.become-member-btn {
    background-color: #f8c301;
    color: #000;
    font-weight: bold;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 10px;
}

.become-member-btn:hover {
    background-color: #e0b101;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .impact-box {
        margin-bottom: 15px;
    }
}

/* Footer styles moved to footer-core.css */