/* Basic CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
    padding-top: 70px;
}

/* Header Styles */
.main-header {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 50px;
    padding-right: 40px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
}

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

/* Logo Section */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-weight: 800;
    font-size: 1.5rem;
    text-transform: uppercase;
    background: linear-gradient(90deg, #007bff 0%, #00ff88 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 0.5px;
}

/* Navigation Styles */
.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-right: auto;
    margin-left: 50px;
}

.nav-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    transition: transform 0.2s;
}

.nav-link i {
    font-size: 1.2rem;
    background: linear-gradient(90deg, #007bff 0%, #0056b3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-link span {
    background: linear-gradient(90deg, #007bff 0%, #0056b3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-link:hover {
    transform: translateY(-2px);
}

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

.social-icon {
    font-size: 1.2rem;
    color: #333;
    transition: transform 0.3s ease, color 0.3s ease;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f2f5;
}

.social-icon.telegram:hover {
    color: #0088cc;
    background-color: #e0f2fa;
    transform: translateY(-2px);
}

.social-icon.whatsapp:hover {
    color: #25d366;
    background-color: #e0fae6;
    transform: translateY(-2px);
}

.social-icon.phone:hover {
    color: #ff6b6b;
    background-color: #fae0e0;
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger-menu {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.bar {
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 10px;
    transition: 0.3s;
}

.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    background-color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 15px;
    min-width: 200px;
    flex-direction: column;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown-menu.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu a {
    text-decoration: none;
    color: #333;
    padding: 12px 16px;
    display: block;
    transition: background 0.2s, color 0.2s;
    border-radius: 8px;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

/* Hero Section */
.hero-section {
    height: 600px;
    background: linear-gradient(135deg, #FFD700 0%, #FFFACD 100%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-left: 50px;
    padding-right: 70px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    text-align: left;
    max-width: 65%;
    margin-right: 25px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    display: inline-block;
    background: linear-gradient(90deg, #003380 0%, #008040 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-stroke: 2px #ffffff;
}

.hero-subtitle {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #003380 0%, #008040 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-stroke: 1px #ffffff;
}

.hero-description {
    font-size: 1.6rem;
    font-weight: 600;
    max-width: 100%;
    background: linear-gradient(90deg, #003380 0%, #008040 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-image-container {
    z-index: 1;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    margin-top: 50px;
}

.hero-ant {
    max-height: 500px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

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

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

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(90deg, #007bff 0%, #00cc6a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.founder-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.founder-left-column {
    display: flex;
    flex-direction: column;
    gap: 170px;
    width: 400px;
    flex-shrink: 0;
}

/* Photo Frame */
.founder-photo-frame {
    position: relative;
    width: 400px;
    height: 500px;
    border-radius: 20px 20px 100px 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    background: #fff;
}

.founder-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.founder-photo.active {
    opacity: 1;
}

/* Video Container */
.founder-video-container {
    width: 400px;
    height: 225px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.video-preview {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.video-preview iframe {
    width: 100%;
    height: 100%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.founder-video-container:hover .video-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.video-overlay i {
    font-size: 4rem;
    color: white;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.founder-video-container:hover .video-overlay i {
    transform: scale(1.2);
}

.video-overlay p {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Founder Info */
.founder-info {
    flex: 1;
}

.founder-name {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #003380;
}

.founder-title {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: 600;
}

.founder-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

/* Achievements */
.achievements {
    margin-bottom: 40px;
}

.achievements-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #003380;
}

.achievements-list {
    list-style: none;
    padding: 0;
}

.achievements-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievements-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.achievements-list i {
    font-size: 1.5rem;
    color: #007bff;
    margin-top: 2px;
}

.achievements-list span {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

/* Projects */
.projects-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #003380;
}

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

.project-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.project-card i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 15px;
}

.project-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #003380;
}

.project-card p {
    font-size: 0.95rem;
    color: #666;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    z-index: 10001;
    background: white;
    border-radius: 20px;
    padding: 30px;
    max-width: 750px;
    width: 90%;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
}

.modal-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
}

.modal-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.achievements-list {
    list-style: none;
    padding: 0;
}

.achievements-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievements-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.achievements-list i {
    font-size: 1.5rem;
    color: #007bff;
    margin-top: 2px;
}

.achievements-list span {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

/* Projects */
.projects-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #003380;
}

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

.project-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.project-card i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 15px;
}

.project-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #003380;
}

.project-card p {
    font-size: 0.95rem;
    color: #666;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    z-index: 10001;
    background: white;
    border-radius: 20px;
    padding: 30px;
    max-width: 750px;
    width: 90%;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
    z-index: 10002;
}

.modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
}

.modal-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
}

.modal-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.cta-button i {
    font-size: 1.3rem;
}

/* SAMO Organization Section */
.samo-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333;
}

.samo-header {
    text-align: center;
    margin-bottom: 60px;
}

.samo-intro {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 20px auto 0;
    color: #555;
}

/* Stats Grid */
.samo-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.stat-card {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid rgba(255, 215, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.3);
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 165, 0, 0.5);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #003380 0%, #008040 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-desc {
    font-size: 0.9rem;
    color: #666;
}

/* Geography */
.samo-geography {
    margin-bottom: 80px;
}

.geography-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(90deg, #007bff 0%, #00cc6a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.country-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 18px;
    border-radius: 15px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    border: 2px solid rgba(255, 215, 0, 0.6);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.2);
}

.country-badge:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.4);
}

/* SAMO Achievements Section */
.samo-achievements-section {
    margin-bottom: 80px;
}

.achievements-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(90deg, #007bff 0%, #00cc6a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.samo-achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.achievement-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px 20px;
    border-radius: 18px;
    text-align: center;
    border: 3px solid rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.achievement-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.achievement-item i {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 15px;
}

.achievement-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.achievement-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

/* Trust Badge */
.samo-trust-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: 3px solid rgba(255, 215, 0, 0.6);
    border-radius: 25px;
    padding: 45px;
    margin-top: 60px;
    box-shadow: 0 15px 40px rgba(255, 165, 0, 0.3);
}

.trust-content {
    display: flex;
    align-items: center;
    gap: 35px;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-content i {
    font-size: 4.5rem;
    background: linear-gradient(90deg, #003380 0%, #008040 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    flex-shrink: 0;
}

.trust-text h4 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(90deg, #003380 0%, #008040 100%);
    text-align: center;
    margin-bottom: 60px;
}

.samo-intro {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 20px auto 0;
    color: #555;
}

/* Stats Grid */
.samo-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.stat-card {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid rgba(255, 215, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.3);
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 165, 0, 0.5);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #003380 0%, #008040 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-desc {
    font-size: 0.9rem;
    color: #666;
}

/* Geography */
.samo-geography {
    margin-bottom: 80px;
}

.geography-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(90deg, #007bff 0%, #00cc6a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.country-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 18px;
    border-radius: 15px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    border: 2px solid rgba(255, 215, 0, 0.6);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.2);
}

.country-badge:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.4);
}

/* SAMO Achievements Section */
.samo-achievements-section {
    margin-bottom: 80px;
}

.achievements-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(90deg, #007bff 0%, #00cc6a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.samo-achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.achievement-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px 20px;
    border-radius: 18px;
    text-align: center;
    border: 3px solid rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.achievement-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.achievement-item i {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 15px;
}

.achievement-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.achievement-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

/* Trust Badge */
.samo-trust-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: 3px solid rgba(255, 215, 0, 0.6);
    border-radius: 25px;
    padding: 45px;
    margin-top: 60px;
    box-shadow: 0 15px 40px rgba(255, 165, 0, 0.3);
}

.trust-content {
    display: flex;
    align-items: center;
    gap: 35px;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-content i {
    font-size: 4.5rem;
    background: linear-gradient(90deg, #003380 0%, #008040 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    flex-shrink: 0;
}

.trust-text h4 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 80px;
}

.stat-card {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid rgba(255, 215, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.3);
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 165, 0, 0.5);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #003380 0%, #008040 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-desc {
    font-size: 0.9rem;
    color: #666;
}

/* Geography */
.samo-geography {
    margin-bottom: 80px;
}

.geography-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(90deg, #007bff 0%, #00cc6a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.country-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 18px;
    border-radius: 15px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    border: 2px solid rgba(255, 215, 0, 0.6);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.2);
}

.country-badge:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.4);
}

/* SAMO Achievements Section */
.samo-achievements-section {
    margin-bottom: 80px;
}

.achievements-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(90deg, #007bff 0%, #00cc6a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.samo-achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.achievement-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px 20px;
    border-radius: 18px;
    text-align: center;
    border: 3px solid rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.achievement-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.achievement-item i {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 15px;
}

.achievement-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.achievement-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

/* Trust Badge */
.samo-trust-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: 3px solid rgba(255, 215, 0, 0.6);
    border-radius: 25px;
    padding: 45px;
    margin-top: 60px;
    box-shadow: 0 15px 40px rgba(255, 165, 0, 0.3);
}

.trust-content {
    display: flex;
    align-items: center;
    gap: 35px;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-content i {
    font-size: 4.5rem;
    background: linear-gradient(90deg, #003380 0%, #008040 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    flex-shrink: 0;
}

.trust-text h4 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(90deg, #003380 0%, #008040 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.trust-text p {
    line-height: 1.7;
    color: #333;
}

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

.skills-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(90deg, #003380 0%, #008040 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.skill-item {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    border: 3px solid rgba(255, 215, 0, 0.7);
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.skill-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 165, 0, 0.5);
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
}

.skill-item i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.skill-item p {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #fff;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(90deg, #003380 0%, #008040 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.feature-item i {
    font-size: 4rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: transform 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.1);
}

.feature-item p {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    background: linear-gradient(90deg, #003380 0%, #008040 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* Video CTA Section */
.video-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    position: relative;
    overflow: hidden;
}

.video-cta-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #003380 0%, #008040 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.video-cta-subtitle {
    font-size: 1.3rem;
    text-align: center;
    color: #333;
    margin-bottom: 50px;
    font-weight: 600;
}

.video-cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-10px) rotateX(2deg);
}

.video-frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.video-play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

.video-play-overlay:hover .play-button-wrapper {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.7);
}

.play-button-wrapper i {
    font-size: 2.5rem;
    color: #003380;
    margin-left: 5px;
}

.video-play-overlay p {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* CTA Button */
.cta-button-container {
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 25px 50px;
    background: linear-gradient(135deg, #003380 0%, #008040 100%);
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 51, 128, 0.4);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 51, 128, 0.6);
}

.cta-button-text {
    position: relative;
    z-index: 2;
    background: linear-gradient(90deg, #FFD700 0%, #FFF4A3 25%, #FFD700 50%, #FFA500 75%, #FFD700 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
}

.cta-button-icon {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-button-icon {
    transform: translateX(5px);
}

.cta-button-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button:hover .cta-button-glow {
    opacity: 1;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-subtext {
    margin-top: 20px;
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* Floating shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 5%;
    animation: float1 6s ease-in-out infinite;
}

.shape-2 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 10%;
    animation: float2 8s ease-in-out infinite;
}

.shape-3 {
    width: 200px;
    height: 200px;
    bottom: 5%;
    left: 50%;
    animation: float3 10s ease-in-out infinite;
}

@keyframes float1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-40px, 40px);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -50px);
    }
}


/* Mission and Credo Styling */
.mission-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.mission-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    font-weight: 500;
}

.mission-lead strong {
    background: linear-gradient(90deg, #003380 0%, #008040 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

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

.credo-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 215, 0, 0.3);
}

.credo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 215, 0, 0.6);
}

.credo-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #003380 0%, #008040 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 51, 128, 0.3);
}

.credo-icon i {
    font-size: 2.5rem;
    color: #FFD700;
}

.credo-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #003380 0%, #008040 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.credo-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.mission-footer {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border-left: 5px solid #FFD700;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mission-footer p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #333;
    margin: 0;
    text-align: center;
}

.mission-footer strong {
    background: linear-gradient(90deg, #003380 0%, #008040 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}


/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.testimonials-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #003380 0%, #008040 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.testimonials-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #555;
    margin-bottom: 60px;
    font-weight: 500;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 40px 35px;
    border-radius: 25px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    background-clip: padding-box;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #003380 100%);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.testimonial-avatar {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.avatar-hexagon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.4);
    transition: all 0.3s ease;
}

.testimonial-card:hover .avatar-hexagon {
    transform: rotate(180deg) scale(1.1);
}

.avatar-hexagon i {
    font-size: 3rem;
    background: linear-gradient(135deg, #003380 0%, #008040 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.testimonial-card:hover .avatar-hexagon i {
    transform: rotate(-180deg);
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
}

.testimonial-stars i {
    font-size: 1.5rem;
    color: #FFD700;
    text-shadow: 0 2px 5px rgba(255, 215, 0, 0.3);
    animation: starTwinkle 2s ease-in-out infinite;
}

.testimonial-stars i:nth-child(1) {
    animation-delay: 0s;
}

.testimonial-stars i:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-stars i:nth-child(3) {
    animation-delay: 0.4s;
}

.testimonial-stars i:nth-child(4) {
    animation-delay: 0.6s;
}

.testimonial-stars i:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes starTwinkle {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    padding-left: 25px;
}

.testimonial-text::before {
    content: '\\201C';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: #FFD700;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 700;
    text-align: right;
    background: linear-gradient(90deg, #003380 0%, #008040 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
}

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


/* Video Testimonials */
.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.video-testimonial-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    background: white;
}

.video-testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.video-testimonial-frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-testimonial-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-testimonial-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-testimonial-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.video-play-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-play-icon i {
    font-size: 5rem;
    color: #FFD700;
    text-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
}

.video-testimonial-overlay:hover .video-play-icon i {
    transform: scale(1.2);
    color: #FFA500;
}

/* Responsive */
@media (max-width: 768px) {
    .video-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


/* Video Testimonials Section - Separate Block */
.video-testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.video-testimonials-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(90deg, #003380 0%, #008040 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


/* Video overlay text */
.video-overlay-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
}


/* Video testimonial frame without iframe */
.video-testimonial-frame {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}


/* ========================================================================
   MODAL IMPROVEMENTS - Gradient Background & CTA Button
   ======================================================================== */

/* Update modal content with gradient */
.modal-content {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 25%, #4a90e2 75%, #003380 100%) !important;
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite, modalSlideIn 0.4s ease !important;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 215, 0, 0.3) !important;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Modal CTA Button */
.modal-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #003380 0%, #4a90e2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 51, 128, 0.3);
}

.modal-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 51, 128, 0.5);
    background: linear-gradient(135deg, #4a90e2 0%, #003380 100%);
}

/* Improve video overlay text visibility */
.video-overlay-text {
    color: white !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    margin-top: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8), 0 2px 5px rgba(0, 0, 0, 0.5) !important;
    text-align: center;
    letter-spacing: 0.5px;
}


/* ========================================================================
   ACHIEVEMENTS SECTION
   ======================================================================== */

.achievements-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.achievements-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #003380 0%, #ffd700 50%, #003380 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 3s linear infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

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

.achievements-lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: #003380;
    line-height: 1.8;
    margin-bottom: 20px;
}

.achievements-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

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

.universal-video-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.universal-video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.video-frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    overflow: hidden;
}

.video-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.universal-video-card:hover .video-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.video-play-icon {
    font-size: 4rem;
    color: #ffd700;
    transition: all 0.3s ease;
}

.universal-video-card:hover .video-play-icon {
    transform: scale(1.2);
    color: #ffed4e;
}

.achievement-card-info {
    padding: 25px;
}

.achievement-card-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #003380;
    margin-bottom: 10px;
}

.achievement-card-info p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.achievements-footer {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.achievements-footer p {
    font-size: 1.2rem;
    color: #003380;
    margin: 0;
}

.achievements-footer strong {
    font-weight: 800;
}

/* Responsive */
@media (max-width: 768px) {
    .achievements-title {
        font-size: 2rem;
    }

    .achievements-lead {
        font-size: 1.1rem;
    }

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


/* Update achievements video grid to match testimonials style */
.achievements-video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    justify-items: center;
}

/* When only one item, center it */
.achievements-video-grid:has(.universal-video-card:only-child) {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Make video cards same size as testimonials */
.universal-video-card {
    width: 100%;
    max-width: 600px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

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


/* ========================================================================
   SCHOOL LIFE SECTION
   ======================================================================== */

.school-life-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
    position: relative;
}

.school-life-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #4a90e2 0%, #003380 50%, #4a90e2 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 3s linear infinite;
}

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

.school-life-lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: #003380;
    line-height: 1.8;
    margin-bottom: 20px;
}

.school-life-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.school-life-video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.school-life-cta {
    text-align: center;
    padding: 40px 20px;
}

.blog-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #4a90e2 0%, #003380 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blog-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.blog-button:hover::before {
    left: 100%;
}

.blog-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.6);
}

.blog-button i:first-child {
    font-size: 1.3rem;
}

.blog-button i:last-child {
    transition: transform 0.3s ease;
}

.blog-button:hover i:last-child {
    transform: translateX(5px);
}

.blog-hint {
    margin-top: 15px;
    font-size: 1rem;
    color: #666;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .school-life-title {
        font-size: 2rem;
    }

    .school-life-lead {
        font-size: 1.1rem;
    }

    .school-life-video-grid {
        grid-template-columns: 1fr;
    }

    .blog-button {
        font-size: 1rem;
        padding: 15px 30px;
    }
}


/* ========================================================================
   APPLICATION FORM SECTION
   ======================================================================== */

.application-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%) !important;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
    position: relative;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.application-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #FFD700 0%, #FFF4A3 25%, #FFD700 50%, #FFA500 75%, #FFD700 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8)) drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
}

.application-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.application-lead {
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(90deg, #FFD700 0%, #FFF4A3 25%, #FFD700 50%, #FFA500 75%, #FFD700 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
    line-height: 1.8;
}

.application-form {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #003380;
    margin-bottom: 10px;
    font-size: 1rem;
}

.form-group label i {
    color: #4a90e2;
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

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

.submit-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #003380;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.submit-button i {
    font-size: 1.3rem;
}

.form-privacy {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
}

/* Features CTA Button */
.features-cta {
    text-align: center;
    margin-top: 40px;
}

.features-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #4a90e2 0%, #003380 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

.features-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(74, 144, 226, 0.5);
}

/* Clickable Trust Badge */
.samo-trust-badge.clickable-badge {
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.samo-trust-badge.clickable-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .application-title {
        font-size: 2rem;
    }

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

    .submit-button {
        font-size: 1rem;
        padding: 15px 35px;
    }
}


/* ========================================================================
   FAQ SECTION
   ======================================================================== */

.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.faq-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #003380 0%, #4a90e2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.faq-intro p {
    font-size: 1.1rem;
    color: #666;
}

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

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #003380;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question i {
    font-size: 1rem;
    transition: transform 0.3s ease;
    color: #4a90e2;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
}


/* ========================================================================
   APPLICATION FORM - YELLOW GRADIENT
   ======================================================================== */

.application-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 25%, #ffa500 75%, #ff8c00 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    position: relative;
}

.application-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #003380 0%, #4a90e2 50%, #003380 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 3s linear infinite;
    text-shadow: none;
}

.application-lead {
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(90deg, #003380 0%, #4a90e2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.8;
}


/* ========================================================================
   FOOTER
   ======================================================================== */

.main-footer {
    background: linear-gradient(135deg, #003380 0%, #001a4d 100%);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffd700;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
}

.contact-item:hover {
    color: #ffd700;
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.2rem;
    margin-top: 3px;
    color: #4a90e2;
}

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

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #ffd700;
    color: #003380;
    transform: translateY(-5px);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-nav a:hover {
    color: #ffd700;
    padding-left: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}


/* ========================================================================
   MAP MODAL
   ======================================================================== */

.map-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.map-modal.active {
    display: flex;
}

.map-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.map-modal-content {
    position: relative;
    z-index: 10001;
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    animation: modalSlideIn 0.4s ease;
}

.map-modal-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    border: none;
    color: white;
    font-size: 1.5rem;
    z-index: 10002;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.map-modal-close:hover {
    transform: rotate(90deg) scale(1.1);
}

.map-modal-content h3 {
    text-align: center;
    font-size: 1.8rem;
    color: #003380;
    margin-bottom: 30px;
}

.map-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.map-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    background: linear-gradient(135deg, #4a90e2 0%, #003380 100%);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.map-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.4);
}

.map-option i {
    font-size: 1.5rem;
}


/* ========================================================================
   MOBILE RESPONSIVENESS
   ======================================================================== */

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    /* General */
    .section-container {
        padding: 0 15px;
    }

    /* FAQ */
    .faq-title {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 15px;
    }

    /* Application Form */
    .application-title {
        font-size: 2rem;
    }

    .application-lead {
        font-size: 1rem;
    }

    .application-form {
        padding: 25px;
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-nav {
        align-items: center;
        text-align: center;
    }

    /* Map Modal */
    .map-modal-content {
        padding: 30px 20px;
    }

    .map-modal-content h3 {
        font-size: 1.5rem;
    }

    .map-option {
        font-size: 1rem;
        padding: 15px 20px;
    }

    /* Video Modals - Keep on site */
    .modal-content {
        width: 95%;
        padding: 20px;
    }

    .modal-video-wrapper {
        margin-bottom: 15px;
    }

    .modal-cta-button {
        font-size: 1rem;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 1.7rem;
    }

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

    .footer-column h3 {
        font-size: 1.1rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}


/* ========================================================================
   COMPREHENSIVE MOBILE RESPONSIVENESS
   ======================================================================== */

/* Prevent horizontal scroll */
html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Base responsive settings */
@media (max-width: 768px) {

    /* Typography scaling */
    html {
        font-size: 14px;
    }

    /* Container adjustments */
    .section-container {
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
    }

    /* Header */
    .main-header {
        padding-left: 20px;
        padding-right: 20px;
        height: 60px;
    }

    .logo-img {
        height: 30px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    /* Hero Section */
    .hero-section {
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 2rem !important;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1rem !important;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .cta-buttons .primary-btn,
    .cta-buttons .secondary-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 25px;
        font-size: 1rem;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .feature-item {
        padding: 20px 10px !important;
    }

    .feature-item i {
        font-size: 2rem !important;
    }

    .feature-item p {
        font-size: 0.85rem !important;
    }

    /* Founder Section */
    .founder-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .founder-photos {
        max-width: 100%;
        height: auto;
        aspect-ratio: 1;
    }

    .founder-info h3 {
        font-size: 1.5rem !important;
    }

    .founder-info p {
        font-size: 0.95rem !important;
    }

    /* Video frames */
    .video-container,
    .founder-video-container {
        max-width: 100%;
        width: 100%;
    }

    /* Stats Grid */
    .samo-stats {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .stat-item {
        padding: 25px 20px !important;
    }

    .stat-number {
        font-size: 2.5rem !important;
    }

    /* Trust Badge */
    .samo-trust-badge {
        padding: 20px !important;
    }

    .trust-content {
        flex-direction: column;
        text-align: center;
    }

    .trust-content i {
        font-size: 2.5rem !important;
    }

    .trust-text h4 {
        font-size: 1.3rem !important;
    }

    /* Skills Grid */
    .skills-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .skill-card {
        padding: 15px !important;
    }

    .skill-card i {
        font-size: 2rem !important;
    }

    .skill-card h3 {
        font-size: 0.9rem !important;
    }

    /* Video CTA Section */
    .video-cta-content {
        padding: 30px 20px !important;
    }

    .cta-text h2 {
        font-size: 1.8rem !important;
    }

    .cta-text p {
        font-size: 1rem !important;
    }

    .cta-button-animated {
        font-size: 1rem !important;
        padding: 15px 30px !important;
    }

    /* Credo Cards */
    .credo-cards {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .testimonial-card {
        padding: 25px 20px !important;
    }

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

    /* Video Testimonials */
    .video-testimonials-grid,
    .school-life-video-grid,
    .achievements-video-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        max-width: 100%;
    }

    .video-testimonial-card,
    .universal-video-card {
        max-width: 100% !important;
        width: 100% !important;
    }

    .video-testimonial-frame,
    .video-frame {
        width: 100%;
    }

    .video-overlay-text {
        font-size: 1.2rem !important;
    }

    /* Application Form */
    .application-form {
        padding: 25px 20px !important;
    }

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

    .form-group label {
        font-size: 0.95rem !important;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 1rem !important;
        padding: 12px !important;
    }

    .submit-button {
        width: 100%;
        font-size: 1.1rem !important;
        padding: 15px 35px !important;
    }

    /* Section Titles */
    h2,
    .section-title,
    .features-title,
    .achievements-title,
    .school-life-title,
    .faq-title,
    .application-title {
        font-size: 1.8rem !important;
        padding: 0 10px;
        text-align: center;
    }

    /* Modals */
    .modal-content {
        width: 95% !important;
        padding: 20px !important;
        margin: 20px;
    }

    .modal-video-wrapper {
        margin-bottom: 20px !important;
    }

    .modal-cta-button {
        width: 100%;
        padding: 12px 25px !important;
        font-size: 1rem !important;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    html {
        font-size: 13px;
    }

    .section-container {
        padding: 0 15px;
    }

    /* Header */
    .main-header {
        padding-left: 15px;
        padding-right: 15px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    /* Hero */
    .hero-content h1 {
        font-size: 1.7rem !important;
    }

    .hero-content p {
        font-size: 0.95rem !important;
    }

    /* Features - single column on very small screens */
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .feature-item {
        padding: 15px !important;
    }

    /* Stats */
    .stat-number {
        font-size: 2rem !important;
    }

    .stat-label {
        font-size: 0.9rem !important;
    }

    /* Skills - single column */
    .skills-grid {
        grid-template-columns: 1fr !important;
    }

    /* Titles */
    h2,
    .section-title {
        font-size: 1.5rem !important;
    }

    /* Buttons */
    .primary-btn,
    .secondary-btn,
    .cta-button-animated {
        font-size: 0.95rem !important;
        padding: 12px 25px !important;
    }

    /* Form */
    .application-form {
        padding: 20px 15px !important;
    }

    .submit-button {
        font-size: 1rem !important;
        padding: 14px 30px !important;
    }

    /* Footer */
    .footer-column h3 {
        font-size: 1.2rem !important;
    }

    .contact-item,
    .footer-nav a {
        font-size: 0.95rem !important;
    }

    .social-link {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.1rem !important;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    html {
        font-size: 12px;
    }

    .section-container {
        padding: 0 12px;
    }

    .main-header {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-content h1 {
        font-size: 1.5rem !important;
    }

    h2,
    .section-title {
        font-size: 1.4rem !important;
    }

    .cta-buttons .primary-btn,
    .cta-buttons .secondary-btn {
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        padding: 30px 0;
    }

    .founder-photos {
        max-width: 300px;
        margin: 0 auto;
    }

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

/* Fix for elements that overflow */
@media (max-width: 768px) {
    * {
        max-width: 100%;
    }

    img,
    video,
    iframe {
        max-width: 100%;
        height: auto;
    }

    .video-preview,
    .testimonial-video-preview {
        width: 100% !important;
        height: 100% !important;
    }

    /* Ensure no element causes horizontal scroll */
    .section-container>* {
        max-width: 100%;
    }

    /* Tables and wide content */
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    /* Prevent text overflow */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
}


/* ========================================================================
   SPECIFIC MOBILE FIXES FOR PROBLEMATIC SECTIONS
   ======================================================================== */

@media (max-width: 768px) {

    /* ===== HERO SECTION FIX ===== */
    .hero-section {
        height: auto !important;
        min-height: 500px;
        flex-direction: column-reverse;
        padding: 40px 20px !important;
        text-align: center;
    }

    .hero-content {
        max-width: 100% !important;
        margin-right: 0 !important;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem !important;
        font-weight: 900;
        -webkit-text-stroke: 0px #ffffff;
    }

    .hero-subtitle {
        font-size: 1.5rem !important;
        font-weight: 900;
        -webkit-text-stroke: 0px #ffffff;
    }

    .hero-description {
        font-size: 1.1rem !important;
    }

    .hero-image-container {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .hero-ant {
        max-height: 250px !important;
        width: auto;
    }

    /* ===== FEATURES SECTION FIX - 2 COLUMNS ===== */
    .features-section {
        padding: 50px 0 !important;
    }

    .features-title {
        font-size: 1.8rem !important;
        margin-bottom: 30px !important;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        padding: 0 15px;
    }

    .feature-item {
        padding: 20px 15px !important;
    }

    .feature-item i {
        font-size: 2.2rem !important;
    }

    .feature-item p {
        font-size: 0.85rem !important;
        line-height: 1.3;
    }

    /* ===== FOUNDER SECTION FIX - SHOW ALL CONTENT ===== */
    .founder-section {
        padding: 50px 0 !important;
    }

    .founder-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }

    .founder-left-column {
        width: 100% !important;
        gap: 30px !important;
    }

    .founder-photo-frame {
        width: 100% !important;
        max-width: 400px;
        height: auto;
        aspect-ratio: 4/5;
        margin: 0 auto;
    }

    .founder-video-container {
        width: 100% !important;
        max-width: 400px;
        height: auto;
        aspect-ratio: 16/9;
        margin: 0 auto;
    }

    .founder-info {
        width: 100% !important;
        padding: 0 15px;
    }

    .founder-name {
        font-size: 1.8rem !important;
        text-align: center;
    }

    .founder-title {
        font-size: 1.1rem !important;
        text-align: center;
    }

    .founder-description {
        font-size: 1rem !important;
    }

    .achievements-title {
        font-size: 1.5rem !important;
    }

    .projects-title {
        font-size: 1.5rem !important;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .project-card {
        padding: 20px 15px !important;
    }

    .project-card i {
        font-size: 2rem !important;
    }

    .project-card h5 {
        font-size: 1rem !important;
    }

    .project-card p {
        font-size: 0.85rem !important;
    }

    /* ===== SAMO SECTION FIX - SHOW ALL ACHIEVEMENT CARDS ===== */
    .samo-section {
        padding: 50px 0 !important;
    }

    .samo-achievements-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .achievement-item {
        padding: 25px 15px !important;
    }

    .achievement-item i {
        font-size: 2rem !important;
    }

    .achievement-item h4 {
        font-size: 1rem !important;
    }

    .achievement-item p {
        font-size: 0.85rem !important;
    }

    /* Countries grid - 2 columns */
    .countries-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .country-badge {
        padding: 15px 10px !important;
        font-size: 0.95rem !important;
    }
}

/* Small mobile - single column for some */
@media (max-width: 480px) {

    /* Hero */
    .hero-title {
        font-size: 1.8rem !important;
    }

    .hero-subtitle {
        font-size: 1.3rem !important;
    }

    .hero-description {
        font-size: 1rem !important;
    }

    /* Features - single column on very small screens */
    .features-grid {
        grid-template-columns: 1fr !important;
    }

    /* SAMO achievements - single column */
    .samo-achievements-grid {
        grid-template-columns: 1fr !important;
    }

    /* Countries - single column */
    .countries-grid {
        grid-template-columns: 1fr !important;
    }

    /* Founder projects - single column */
    .projects-grid {
        grid-template-columns: 1fr !important;
    }
}


/* ========================================================================
   MOBILE HEADER FIX
   ======================================================================== */

@media (max-width: 768px) {

    /* Increase header height and adjust layout */
    body {
        padding-top: 80px !important;
    }

    .main-header {
        height: 80px !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    /* Logo - smaller */
    .logo-container {
        gap: 8px;
    }

    .logo-img {
        height: 32px !important;
    }

    .logo-text {
        font-size: 1.1rem !important;
    }

    /* Hide main nav on mobile */
    .main-nav {
        display: none;
    }

    /* Header actions - smaller icons */
    .header-actions {
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .social-icon {
        width: 35px !important;
        height: 35px !important;
        font-size: 1rem !important;
        margin-right: 0 !important;
    }

    /* Hamburger menu - ensure it's visible */
    .hamburger-menu {
        width: 25px;
        height: 18px;
        margin-left: 8px;
    }

    .bar {
        height: 2.5px;
    }

    /* Dropdown menu - centered and visible */
    .dropdown-menu {
        position: fixed !important;
        top: 80px !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) translateY(-10px);
        width: 90%;
        max-width: 320px;
        z-index: 9999;
    }

    .dropdown-menu.show {
        transform: translateX(-50%) translateY(0);
    }

    .dropdown-menu a {
        padding: 14px 18px;
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {

    /* Even smaller screens */
    body {
        padding-top: 70px !important;
    }

    .main-header {
        height: 70px !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .logo-img {
        height: 28px !important;
    }

    .logo-text {
        font-size: 1rem !important;
    }

    .social-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.95rem !important;
    }

    .hamburger-menu {
        width: 22px;
        height: 16px;
    }

    .dropdown-menu {
        top: 70px !important;
        width: 95%;
    }
}

/* Ensure dropdown overlay doesn't interfere */
@media (max-width: 768px) {
    .dropdown-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .dropdown-menu.show::before {
        opacity: 1;
        pointer-events: auto;
    }
}


/* ========================================================================
   PROGRAM PAGE STYLES
   ======================================================================== */

/* Program Hero Section */
.program-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #FFD700 0%, #FFFACD 100%);
    text-align: center;
}

.program-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #003380 0%, #008040 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: titlePulse 2s ease-in-out infinite;
}

@keyframes titlePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.program-hero-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #003380;
}

.program-hero-description {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 30px;
}

.program-format {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.format-badge {
    padding: 12px 30px;
    background: white;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #003380;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.format-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

.groups-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.group-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.group-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    border-color: #FFD700;
}

.group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.group-title {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(90deg, #007bff 0%, #00cc6a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.group-icon {
    font-size: 3rem;
}

.group-info {
    margin-bottom: 25px;
}

.group-info p {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #555;
}

.group-info strong {
    color: #003380;
}

.group-semesters {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.semesters-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #003380;
    margin-bottom: 15px;
}

.semesters-list {
    list-style: none;
    padding: 0;
}

.semesters-list li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #555;
    font-size: 1.05rem;
}

.semesters-list li::before {
    content: "?";
    position: absolute;
    left: 0;
    color: #00cc6a;
    font-weight: bold;
    font-size: 1.2rem;
}

.group-button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.group-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
}

/* Experts Section */
.experts-section {
    padding: 80px 0;
    background: white;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.expert-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.expert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #FFD700;
}

.expert-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #FFD700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.expert-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #003380;
    margin-bottom: 10px;
}

.expert-title {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

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

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

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

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

.benefit-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #003380;
    margin-bottom: 15px;
}

.benefit-text {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
}

/* Program CTA Section */
.program-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

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

.cta-btn {
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn.primary {
    background: #FFD700;
    color: #003380;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
    background: #FFA500;
}

.cta-btn.secondary {
    background: white;
    color: #667eea;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.5);
}

/* Program Modal */
.program-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.program-modal.active {
    display: flex;
}

.program-modal-content {
    position: relative;
    z-index: 10001;
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 900px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    animation: modalSlideIn 0.4s ease;
}

.program-modal-body {
    padding-right: 10px;
}

.program-modal-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #007bff 0%, #00cc6a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
}

.semester-block {
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    border-left: 5px solid #667eea;
}

.semester-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #003380;
    margin-bottom: 15px;
}

.semester-desc {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
    font-style: italic;
}

.lessons-list {
    display: grid;
    gap: 12px;
}

.lesson-item {
    padding: 15px;
    background: white;
    border-radius: 10px;
    border-left: 3px solid #FFD700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.lesson-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.lesson-item strong {
    color: #003380;
}

.lesson-item em {
    color: #667eea;
    font-style: normal;
    font-size: 0.95rem;
}


/* ========================================================================
   MOBILE RESPONSIVENESS FOR PROGRAM PAGE
   ======================================================================== */

@media (max-width: 768px) {

    /* Program Hero */
    .program-hero {
        padding: 60px 0 50px;
    }

    .program-hero-title {
        font-size: 2.5rem;
    }

    .program-hero-subtitle {
        font-size: 1.4rem;
    }

    .program-hero-description {
        font-size: 1.1rem;
    }

    .format-badge {
        font-size: 1rem;
        padding: 10px 20px;
    }

    /* Groups */
    .groups-section {
        padding: 50px 0;
    }

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

    .group-card {
        padding: 30px 25px;
    }

    .group-title {
        font-size: 1.6rem;
    }

    .group-icon {
        font-size: 2.5rem;
    }

    /* Experts */
    .experts-section {
        padding: 50px 0;
    }

    .experts-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
    }

    .expert-photo {
        width: 120px;
        height: 120px;
    }

    .expert-name {
        font-size: 1.1rem;
    }

    .expert-title {
        font-size: 0.95rem;
    }

    /* Benefits */
    .benefits-section {
        padding: 50px 0;
    }

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

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

    .benefit-title {
        font-size: 1.2rem;
    }

    /* CTA */
    .program-cta-section {
        padding: 50px 0;
    }

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

    .cta-description {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

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

    /* Program Modal */
    .program-modal-content {
        width: 95%;
        padding: 30px 20px;
        max-height: 90vh;
    }

    .program-modal-title {
        font-size: 1.8rem;
    }

    .semester-block {
        padding: 20px 15px;
        margin-bottom: 30px;
    }

    .semester-title {
        font-size: 1.4rem;
    }

    .semester-desc {
        font-size: 1rem;
    }

    .lesson-item {
        padding: 12px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .program-hero-title {
        font-size: 2rem;
    }

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

    .group-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

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

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

    .program-modal-title {
        font-size: 1.5rem;
    }
}

/* ========================================
   Blog Page Styles
======================================== */

/* Blog Hero Section */
.blog-hero-section {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.blog-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.3;
}

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

.blog-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.blog-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

/* Blog Events Section */
.blog-events-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.blog-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #2d3748;
    position: relative;
    padding-bottom: 20px;
}

.blog-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.blog-events-grid {
    display: grid;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

/* Blog Event Card */
.blog-event-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.blog-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.15);
}

.event-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.event-date i {
    font-size: 0.85rem;
}

.event-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 25px;
    line-height: 1.3;
}

.event-video-container {
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.event-description {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 25px;
}

.event-description p {
    margin-bottom: 15px;
}

.event-description strong {
    color: #2d3748;
    font-weight: 600;
}

.event-description ul {
    margin: 15px 0;
    padding-left: 0;
    list-style: none;
}

.event-description ul li {
    margin-bottom: 10px;
    padding-left: 0;
}

.event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.event-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.event-tag:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.event-tag i {
    font-size: 0.8rem;
}

/* Blog CTA Section */
.blog-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.blog-cta-content {
    max-width: 700px;
    margin: 0 auto 60px;
}

.blog-cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.blog-cta-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
}

.blog-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: #fff;
    color: #667eea;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.blog-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.blog-social-follow {
    max-width: 600px;
    margin: 0 auto;
    padding-top: 60px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.blog-social-follow h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.blog-social-follow p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.blog-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.blog-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-social-link:hover {
    background: #fff;
    color: #667eea;
    transform: translateY(-5px) scale(1.1);
}

.blog-social-hint {
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Modal Social Follow Section - IMPROVED */
.modal-social-follow {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid rgba(102, 126, 234, 0.1);
    text-align: center;
    width: 100%;
}

.modal-social-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
}

.modal-social-subtitle {
    font-size: 1rem;
    color: #718096;
    margin-bottom: 25px;
}

.modal-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    /* Increased gap */
    flex-wrap: wrap;
}

.modal-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    /* Increased size */
    height: 60px;
    /* Increased size */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    color: #fff;
    font-size: 1.8rem;
    /* Increased icon size */
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.modal-social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

/* Mobile Responsiveness for Blog */
@media (max-width: 768px) {
    .blog-hero-section {
        padding: 120px 0 60px;
    }

    .blog-hero-title {
        font-size: 2rem;
    }

    .blog-hero-description {
        font-size: 1rem;
    }

    .blog-events-section {
        padding: 60px 0;
    }

    .blog-section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .blog-events-grid {
        gap: 40px;
    }

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

    .event-title {
        font-size: 1.4rem;
    }

    .blog-cta-section {
        padding: 60px 0;
    }

    .blog-cta-content h2 {
        font-size: 1.6rem;
    }

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

    .blog-social-follow {
        padding-top: 40px;
    }

    .blog-social-follow h3 {
        font-size: 1.4rem;
    }

    .blog-social-icons {
        gap: 15px;
    }

    .blog-social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    /* Modal icons on mobile */
    .modal-social-icons {
        gap: 15px;
    }

    .modal-social-link {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .blog-hero-title {
        font-size: 1.6rem;
    }

    .event-tags {
        gap: 8px;
    }

    .event-tag {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .blog-social-icons {
        gap: 12px;
    }

    .blog-social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ========================================
   ABOUT PAGE HERO SECTION STYLES
   ======================================== */

/* About Hero Section */
.about-hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('images/samo99.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    perspective: 1000px;
}

/* Hero Overlay with Gradient */
.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 51, 128, 0.85) 0%,
            rgba(0, 128, 64, 0.75) 50%,
            rgba(255, 215, 0, 0.65) 100%);
    animation: gradientShift 15s ease infinite;
    z-index: 1;
}

@keyframes gradientShift {

    0%,
    100% {
        background: linear-gradient(135deg,
                rgba(0, 51, 128, 0.85) 0%,
                rgba(0, 128, 64, 0.75) 50%,
                rgba(255, 215, 0, 0.65) 100%);
    }

    50% {
        background: linear-gradient(135deg,
                rgba(255, 215, 0, 0.65) 0%,
                rgba(0, 128, 64, 0.75) 50%,
                rgba(0, 51, 128, 0.85) 100%);
    }
}

/* Floating Particles */
.about-floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 18s;
    width: 15px;
    height: 15px;
}

.particle:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 22s;
    width: 25px;
    height: 25px;
}

.particle:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 6s;
    animation-duration: 20s;
}

.particle:nth-child(5) {
    top: 50%;
    left: 50%;
    animation-delay: 8s;
    animation-duration: 16s;
    width: 18px;
    height: 18px;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    25% {
        transform: translate(100px, -100px) rotate(90deg) scale(1.2);
    }

    50% {
        transform: translate(-50px, -200px) rotate(180deg) scale(0.8);
    }

    75% {
        transform: translate(-150px, -100px) rotate(270deg) scale(1.1);
    }
}

/* Hero Content */
.about-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1200px;
    padding: 50px;
    animation: fadeInUp 1.2s ease-out;
    transform-style: preserve-3d;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px) rotateX(-10deg);
    }

    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

/* Hero Title */
.about-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow:
        0 0 10px rgba(255, 215, 0, 0.5),
        0 0 20px rgba(255, 215, 0, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.3);
    animation: titlePulse 3s ease-in-out infinite;
    transform: translateZ(50px);
}

@keyframes titlePulse {

    0%,
    100% {
        text-shadow:
            0 0 10px rgba(255, 215, 0, 0.5),
            0 0 20px rgba(255, 215, 0, 0.3),
            0 5px 15px rgba(0, 0, 0, 0.3);
    }

    50% {
        text-shadow:
            0 0 20px rgba(255, 215, 0, 0.8),
            0 0 40px rgba(255, 215, 0, 0.5),
            0 5px 25px rgba(0, 0, 0, 0.5);
    }
}

.highlight-text {
    background: linear-gradient(90deg,
            #FFD700 0%,
            #FFA500 25%,
            #FFD700 50%,
            #FFA500 75%,
            #FFD700 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
    display: inline-block;
    font-size: 5rem;
    transform: translateZ(70px);
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* Hero Subtitle */
.about-hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #ffffff;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1.5s ease-out 0.3s both;
    transform: translateZ(30px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.gradient-text {
    background: linear-gradient(90deg,
            #FFD700 0%,
            #00ff88 50%,
            #FFD700 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 4s ease infinite;
    font-weight: 700;
}

@keyframes gradientFlow {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

/* Hero Badges */
.about-hero-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    animation: fadeIn 1.8s ease-out 0.6s both;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 20px 35px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: badgeFloat 3s ease-in-out infinite;
    transform-style: preserve-3d;
}

.hero-badge:nth-child(1) {
    animation-delay: 0s;
}

.hero-badge:nth-child(2) {
    animation-delay: 0.5s;
}

.hero-badge:nth-child(3) {
    animation-delay: 1s;
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0) rotateY(0deg);
    }

    50% {
        transform: translateY(-10px) rotateY(5deg);
    }
}

.hero-badge:hover {
    background: rgba(255, 215, 0, 0.25);
    border-color: rgba(255, 215, 0, 0.6);
    transform: translateY(-5px) scale(1.05) rotateY(10deg);
    box-shadow: 0 15px 45px rgba(255, 215, 0, 0.4);
}

.hero-badge i {
    font-size: 2rem;
    color: #FFD700;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
    animation: iconSpin 4s linear infinite;
}

@keyframes iconSpin {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(360deg);
    }
}

.hero-badge span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Responsive Design for About Hero */
@media (max-width: 1024px) {
    .about-hero-title {
        font-size: 3.5rem;
    }

    .highlight-text {
        font-size: 4rem;
    }

    .about-hero-subtitle {
        font-size: 1.6rem;
    }

    .hero-badge {
        padding: 15px 25px;
    }

    .hero-badge i {
        font-size: 1.6rem;
    }

    .hero-badge span {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        background-image: url('images/5.jpg');
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .about-hero-content {
        padding: 30px 20px;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .highlight-text {
        font-size: 3rem;
    }

    .about-hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }

    .about-hero-badges {
        gap: 15px;
    }

    .hero-badge {
        padding: 12px 20px;
        flex-direction: column;
        gap: 8px;
    }

    .hero-badge i {
        font-size: 1.4rem;
    }

    .hero-badge span {
        font-size: 0.9rem;
    }

    .particle {
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 480px) {
    .about-hero-section {
        min-height: 100vh;
        background-size: cover;
        background-position: center center;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .highlight-text {
        font-size: 2.2rem;
    }

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

    .about-hero-badges {
        flex-direction: column;
        gap: 10px;
    }

    .hero-badge {
        width: 100%;
        max-width: 300px;
    }
}

/* ========================================
   ABOUT PAGE ADDITIONAL SECTIONS
   ======================================== */

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

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

.founders-lead {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #333;
    max-width: 900px;
    margin: 0 auto 25px;
}

/* Photo Slider */
.founders-photo-slider {
    margin: 50px auto 60px;
    max-width: 900px;
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.slider-track {
    position: relative;
    width: 100%;
    height: 550px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn:hover i {
    color: white;
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-btn i {
    font-size: 1.5rem;
    color: #333;
    transition: color 0.3s ease;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

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

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: white;
    width: 35px;
    border-radius: 6px;
}


/* Founders Video Grid */
.founders-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

/* Founders Credentials */
.founders-credentials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.credential-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out;
}

.credential-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 123, 255, 0.2);
}

.credential-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(102, 126, 234, 0);
    }
}

.credential-icon i {
    font-size: 2.5rem;
    color: white;
}

.credential-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #007bff 0%, #00cc6a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.credential-card p {
    font-size: 1rem;
    color: #666;
}

/* Founders Mission Text */
.founders-mission-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 50px;
    border-radius: 25px;
    color: white;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.mission-highlight {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    padding: 0 30px;
}

.mission-highlight i {
    font-size: 1.2rem;
    opacity: 0.7;
}

.mission-belief {
    font-size: 1.3rem;
    line-height: 1.8;
    font-weight: 600;
    text-align: center;
}

/* Methodology Section */
.methodology-section {
    padding: 100px 0;
    background: white;
}

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

.methodology-lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
}

/* Methodology Features */
.methodology-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

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

.method-card:hover {
    transform: translateY(-10px);
    border-color: #007bff;
    background: white;
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15);
}

.method-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #007bff 0%, #00cc6a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.method-card:hover .method-icon {
    transform: rotate(360deg);
}

.method-icon i {
    font-size: 2rem;
    color: white;
}

.method-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #003380;
}

.method-card p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Money Philosophy */
.money-philosophy {
    margin-bottom: 60px;
}

.philosophy-content {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 50px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
    animation: philosophyGlow 3s ease-in-out infinite;
}

@keyframes philosophyGlow {

    0%,
    100% {
        box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
    }

    50% {
        box-shadow: 0 25px 70px rgba(255, 215, 0, 0.5);
    }
}

.philosophy-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: coinSpin 4s linear infinite;
}

@keyframes coinSpin {

    0%,
    100% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(180deg);
    }
}

.philosophy-icon i {
    font-size: 3.5rem;
    color: #003380;
}

.philosophy-text h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #003380;
}

.philosophy-quote {
    font-size: 1.8rem;
    font-weight: 700;
    font-style: italic;
    color: #003380;
    line-height: 1.6;
}

.philosophy-quote .highlight {
    background: linear-gradient(90deg, #003380 0%, #008040 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: underline;
    text-decoration-color: #003380;
}

/* Methodology Tools */
.methodology-tools {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 50px;
    border-radius: 25px;
}

.tools-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #003380;
}

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

.tool-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tool-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.2);
}

.tool-item i {
    font-size: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.tool-item span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

/* Final Mission Section */
.final-mission-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.final-mission-section .section-title {
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.mission-content {
    max-width: 1000px;
    margin: 0 auto;
}

.mission-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 25px;
    margin-bottom: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {

    0%,
    100% {
        transform: scale(1);
    }

    25%,
    75% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(1);
    }
}

.mission-icon i {
    font-size: 3rem;
    color: #FFD700;
}

.mission-text {
    font-size: 1.4rem;
    line-height: 1.8;
    text-align: center;
}

/* Mission Highlights */
.mission-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.5);
}

.highlight-item i {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 20px;
    display: block;
}

.highlight-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.highlight-item p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Mission CTA Text */
.mission-cta-text {
    text-align: center;
}

.cta-lead {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.6;
}

.cta-lead i {
    color: #FFD700;
    margin: 0 10px;
}

.cta-invitation {
    font-size: 1.4rem;
    line-height: 1.8;
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .founders-video-grid {
        grid-template-columns: 1fr;
    }

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

    .methodology-features {
        grid-template-columns: 1fr;
    }

    .philosophy-content {
        flex-direction: column;
        text-align: center;
    }

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

    /* Slider responsive */
    .slider-track {
        height: 450px;
    }
}

@media (max-width: 768px) {

    .founders-section,
    .methodology-section,
    .final-mission-section {
        padding: 60px 0;
    }

    .founders-lead,
    .methodology-lead {
        font-size: 1.2rem;
    }

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

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

    .founders-mission-text {
        padding: 30px 25px;
    }

    .mission-highlight {
        font-size: 1.2rem;
        padding: 0 15px;
    }

    .mission-belief {
        font-size: 1.1rem;
    }

    .methodology-features {
        gap: 20px;
    }

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

    .philosophy-content {
        padding: 35px 25px;
    }

    .philosophy-quote {
        font-size: 1.4rem;
    }

    .methodology-tools {
        padding: 35px 25px;
    }

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

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

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

    /* Slider responsive */
    .slider-track {
        height: 350px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }

    .slider-btn i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .founders-lead,
    .methodology-lead {
        font-size: 1.1rem;
    }

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

    .credential-icon i {
        font-size: 2rem;
    }

    .credential-card h3 {
        font-size: 1.3rem;
    }

    .mission-highlight {
        font-size: 1.1rem;
    }

    .philosophy-icon {
        width: 80px;
        height: 80px;
    }

    .philosophy-icon i {
        font-size: 2.5rem;
    }

    .philosophy-quote {
        font-size: 1.2rem;
    }

    .tools-title {
        font-size: 1.6rem;
    }

    .tool-item i {
        font-size: 2.5rem;
    }

    .tool-item span {
        font-size: 1.1rem;
    }

    .cta-lead {
        font-size: 1.3rem;
    }

    .cta-invitation {
        font-size: 1.2rem;
    }

    /* Slider responsive */
    .slider-track {
        height: 280px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
    }

    .slider-btn i {
        font-size: 1rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 25px;
    }
}

/* ========================================================================
   PROGRAM PAGE STYLES
   ======================================================================== */

.program-hero-title {
    background: linear-gradient(90deg, #003380 0%, #1e5a9e 25%, #4a90e2 50%, #1e5a9e 75%, #003380 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
    filter: drop-shadow(0 0 10px rgba(0, 51, 128, 0.6));
}

/* ========================================================================
   CERTIFICATES MODAL STYLES
   ======================================================================== */

.certificates-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.certificates-modal.active {
    display: flex;
}

.certificates-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.certificates-modal-content {
    position: relative;
    z-index: 10001;
    background: white;
    border-radius: 20px;
    padding: 40px 20px;
    max-width: 1000px;
    width: 95%;
    max-height: 95vh;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    animation: certificateModalSlideIn 0.4s ease;
    overflow: hidden;
}

@keyframes certificateModalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-30px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.certificates-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    border: 3px solid white;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.5);
    z-index: 10002;
}

.certificates-modal-close:hover {
    transform: rotate(90deg) scale(1.15);
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.7);
}

.certificates-viewer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
}

.certificates-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 600px;
    overflow: hidden;
}

.certificate-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

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

.certificate-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: #003380;
    text-align: center;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 12px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.certificate-image-wrapper {
    width: 100%;
    height: 480px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificate-pdf {
    width: 100%;
    height: 100%;
    border: none;
}

.certificate-description {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    font-style: italic;
    margin-top: 10px;
}

.certificates-nav {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: none;
    color: #1a1a1a;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    flex-shrink: 0;
}

.certificates-nav:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

.certificates-nav:active {
    transform: scale(0.95);
}

.certificates-nav-prev {
    order: -1;
}

.certificates-nav-next {
    order: 1;
}

.certificates-indicators {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

.certificate-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.certificate-indicator.active {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    width: 35px;
    border-radius: 6px;
}

.certificate-indicator:hover {
    background: #FFD700;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .certificates-modal-content {
        padding: 30px 15px;
        max-height: 90vh;
    }

    .certificates-modal-close {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
        top: 10px;
        right: 10px;
    }

    .certificates-viewer {
        flex-direction: column;
        gap: 15px;
    }

    .certificates-container {
        height: 450px;
    }

    .certificate-label {
        font-size: 1.2rem;
        padding: 10px 20px;
    }

    .certificate-image-wrapper {
        height: 350px;
    }

    .certificate-description {
        font-size: 0.95rem;
    }

    .certificates-nav {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }

    .certificates-nav-prev,
    .certificates-nav-next {
        order: 0;
    }

    .certificates-indicators {
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .certificates-modal-content {
        padding: 20px 10px;
    }

    .certificates-container {
        height: 380px;
    }

    .certificate-label {
        font-size: 1rem;
        padding: 8px 15px;
    }

    .certificate-image-wrapper {
        height: 280px;
    }

    .certificate-description {
        font-size: 0.85rem;
    }

    .certificates-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}
