/* ============================================
   ABOUT PAGES SHARED STYLES
   For: Company, Leadership, Clientele, Testimonials, etc.
   Theme Colors: Navy #14377C, Green #188B73, Gold #C39635
============================================ */

:root {
    --navy: #14377C;
    --green: #188B73;
    --gold: #C39635;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --dark-gray: #6C757D;
    --transition: all 0.3s ease-in-out;
}

/* ============================================
   HEADER SECTION
============================================ */
.about-header-section {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--green) 100%);
    background-image: url('images/about-header-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0 60px;
    overflow: hidden;
}

.about-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 55, 124, 0.88);
    z-index: 1;
}

.about-header-section .container {
    position: relative;
    z-index: 2;
}

.about-page-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.about-page-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* ============================================
   COMMON ELEMENTS
============================================ */
.about-badge {
    display: inline-block;
    background: rgba(195, 150, 53, 0.1);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid var(--gold);
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 1.25rem;
}

/* ============================================
   STATS GRID
============================================ */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
}

.stat-box:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   VISION, MISSION, VALUES CARDS
============================================ */
.vmv-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: var(--transition);
    border: 2px solid transparent;
}

.vmv-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.vmv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.vmv-card:hover .vmv-icon {
    background: var(--gold);
    transform: rotate(360deg) scale(1.1);
}

.vmv-icon i {
    font-size: 2rem;
    color: white;
}

.vmv-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    text-align: center;
}

.vmv-card p {
    color: var(--dark-gray);
    line-height: 1.7;
    text-align: center;
}

/* ============================================
   FEATURE BOXES
============================================ */
.feature-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.feature-box:hover {
    border-color: var(--green);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.feature-box:hover .feature-icon {
    background: var(--green);
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--green);
    transition: var(--transition);
}

.feature-box:hover .feature-icon i {
    color: white;
}

.feature-box h5 {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.feature-box p {
    color: var(--dark-gray);
    margin: 0;
    font-size: 0.9rem;
}

/* ============================================
   LEADERSHIP CARDS
============================================ */
.leader-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.leader-image {
    position: relative;
    height: 350px;
    overflow: hidden;
    background: var(--light-gray);
}

.leader-image img {
    width: 400px;
    height: 550px;
    object-fit: cover;
    transition: var(--transition);
}

.leader-card:hover .leader-image img {
    transform: scale(1.1);
}

.leader-social {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    transition: var(--transition);
}

.leader-card:hover .leader-social {
    bottom: 20px;
}

.leader-social a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.leader-social a:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-3px);
}

.leader-info {
    padding: 2rem 1.5rem;
}

.leader-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.leader-position {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.leader-bio {
    color: var(--dark-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.leader-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.expertise-tag {
    background: var(--light-gray);
    color: var(--navy);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ============================================
   ADVISOR CARDS
============================================ */
.advisor-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.advisor-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 4px solid var(--gold);
}

.advisor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advisor-card h5 {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.advisor-title {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.advisor-org {
    color: var(--dark-gray);
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================
   CLIENT STATISTICS
============================================ */
.client-stat-box {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.client-stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.client-stat-box .stat-icon {
    font-size: 2.5rem;
    color: var(--green);
    margin-bottom: 1rem;
}

/* ============================================
   CLIENT LOGOS
============================================ */
.client-logo-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.client-logo-box:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.client-logo-box img {
    max-width: 100%;
    max-height: 80px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.client-logo-box:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    border-left: 4px solid var(--gold);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: var(--gold);
    font-size: 1rem;
}

.testimonial-text {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
}

.testimonial-author h6 {
    font-weight: 700;
    color: var(--navy);
    margin: 0;
}

.testimonial-author p {
    color: var(--dark-gray);
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================
   INDUSTRY CARDS
============================================ */
.industry-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
}

.industry-card:hover {
    border-color: var(--green);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.industry-icon {
    width: 70px;
    height: 70px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.industry-card:hover .industry-icon {
    background: var(--green);
}

.industry-icon i {
    font-size: 1.8rem;
    color: var(--green);
    transition: var(--transition);
}

.industry-card:hover .industry-icon i {
    color: white;
}

.industry-card h5 {
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    font-size: 1rem;
}

/* ============================================
   CTA SECTION
============================================ */
.about-cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--green) 100%);
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
}

.cta-text {
    font-size: 1.1rem;
    opacity: 0.95;
}

.btn-cta-large {
    background: var(--gold);
    color: var(--navy);
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    border: 2px solid var(--gold);
}

.btn-cta-large:hover {
    background: white;
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ============================================
   RESPONSIVE
============================================ */

@media (max-width: 991px) {
    .about-page-title {
        font-size: 2.5rem;
    }
    
    .about-stats-grid {
        gap: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .about-header-section {
        min-height: 40vh;
        padding: 80px 0 40px;
    }
    
    .about-page-title {
        font-size: 2rem;
    }
    
    .about-page-subtitle {
        font-size: 1rem;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .leader-image {
        height: 330px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .btn-cta-large {
        width: 100%;
        text-align: center;
        margin-top: 1.5rem;
    }
}
/* ============================================
   CONTACT PAGE STYLES
============================================ */
.contact-info-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-info-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.contact-info-card:hover .contact-icon {
    background: var(--gold);
    transform: rotate(360deg);
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-info-card h5 {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.contact-link {
    color: var(--green);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--gold);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e0e0e0;
    padding: 12px 15px;
    border-radius: 8px;
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 0.2rem rgba(24, 139, 115, 0.15);
}

.map-container {
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* FAQ Accordion */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.accordion-button {
    background: white;
    color: var(--navy);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--navy) 0%, var(--green) 100%);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 1.5rem;
    background: var(--light-gray);
    color: var(--dark-gray);
    line-height: 1.8;
}

/* ============================================
   CAREER & INSTRUCTOR PAGES
============================================ */
.job-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-left: 4px solid var(--green);
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-left-color: var(--gold);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1.5rem;
}

.job-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.job-meta-item i {
    color: var(--green);
}

.job-badge {
    background: var(--light-gray);
    color: var(--navy);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.job-description {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* ============================================
   GALLERY PAGE
============================================ */
.gallery-filter-btn {
    background: white;
    color: var(--navy);
    border: 2px solid #e0e0e0;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    margin: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: linear-gradient(135deg, var(--navy) 0%, var(--green) 100%);
    color: white;
    border-color: var(--navy);
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 55, 124, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    text-align: center;
    color: white;
}

.gallery-overlay-content i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.gallery-overlay-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
}

/* ============================================
   PARTNER LOGOS
============================================ */
.partner-logo-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.partner-logo-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.partner-logo-card img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

/* ============================================
   BENEFITS GRID
============================================ */
.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--green);
}

.benefit-card h5 {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--dark-gray);
    margin: 0;
}

@media (max-width: 767px) {
    .map-container {
        height: 400px;
    }
    
    .job-header {
        flex-direction: column;
    }
    
    .gallery-item img {
        height: 200px;
    }
}
/* ============================================
   LEARNING PARTNERS SECTION
============================================ */

.learning-partners-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.learning-partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%2314377C" fill-opacity="0.03" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    opacity: 0.5;
    pointer-events: none;
}

.partner-card-link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.partner-card-link:hover {
    transform: translateY(-5px);
}

.partner-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(20, 55, 124, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.partner-card:hover {
    box-shadow: 0 20px 60px rgba(20, 55, 124, 0.2);
    border-color: #188B73;
}

.partner-image-wrapper {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #14377C 0%, #188B73 100%);
}

.partner-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.partner-card:hover .partner-image {
    transform: scale(1.05);
}

.partner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(20, 55, 124, 0.9) 0%, rgba(24, 139, 115, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.partner-card:hover .partner-overlay {
    opacity: 1;
}

.partner-overlay i {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    animation: bounce 1s infinite;
}

.partner-overlay span {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.partner-content {
    padding: 2.5rem;
}

.partner-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #14377C;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.partner-card:hover .partner-title {
    color: #188B73;
}

.partner-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #6C757D;
    margin-bottom: 1.5rem;
}

.partner-cta {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: linear-gradient(135deg, #14377C 0%, #188B73 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-cta {
    background: linear-gradient(135deg, #C39635 0%, #d4a944 100%);
    transform: translateX(5px);
}

.partner-cta .cta-text {
    font-size: 1rem;
}

.partner-cta i {
    transition: transform 0.3s ease;
}

.partner-card:hover .partner-cta i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .partner-content {
        padding: 2rem;
    }
    
    .partner-title {
        font-size: 1.5rem;
    }
    
    .partner-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 767px) {
    .partner-content {
        padding: 1.5rem;
    }
    
    .partner-title {
        font-size: 1.3rem;
    }
    
    .partner-overlay i {
        font-size: 2rem;
    }
    
    .partner-overlay span {
        font-size: 1rem;
    }
}
/* ============================================
   SIMPLE PARTNER SECTION - FULL WIDTH
============================================ */

.simple-partner-section {
    background: white;
    padding: 3rem 0;
}

.simple-partner-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--green) 100%);
    padding: 4rem 0;
    width: 100%;
}

/* Partner Logo */
.simple-partner-logo {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.simple-partner-logo img {
    max-width: 100%;
    height: auto;
}

.simple-partner-badge {
    background: var(--gold);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    display: inline-block;
}

/* Partner Title */
.simple-partner-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

/* Rating */
.simple-rating {
    margin-bottom: 1.5rem;
}

.simple-rating i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-right: 3px;
}

.simple-rating span {
    color: white;
    margin-left: 10px;
    font-weight: 600;
}

/* Stats */
.simple-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.simple-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.simple-stat i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.simple-stat strong {
    font-size: 1.5rem;
    color: white;
    font-weight: 800;
    display: block;
}

.simple-stat span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Description */
.simple-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* CTA Buttons */
.simple-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-simple-primary,
.btn-simple-secondary {
    padding: 12px 30px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-simple-primary {
    background: white;
    color: var(--navy);
    border: none;
}

.btn-simple-primary:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-2px);
}

.btn-simple-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-simple-secondary:hover {
    background: white;
    color: var(--navy);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
    .simple-partner-title {
        font-size: 1.6rem;
        margin-top: 2rem;
    }
    
    .simple-stats {
        gap: 1rem;
    }
    
    .simple-stat {
        flex: 1 1 45%;
    }
}

@media (max-width: 767px) {
    .simple-partner-banner {
        padding: 2rem 0;
    }
    
    .simple-partner-title {
        font-size: 1.4rem;
    }
    
    .simple-stats {
        justify-content: center;
    }
    
    .simple-stat {
        flex: 1 1 40%;
    }
    
    .simple-cta {
        flex-direction: column;
    }
    
    .btn-simple-primary,
    .btn-simple-secondary {
        width: 100%;
        text-align: center;
    }
}
