/**
 * Coral Educational Services - MBBS Abroad Landing Page
 * Main Stylesheet
 * 
 * Brand Colors:
 * - Primary Blue: #4A90E2
 * - Navy Dark: #0a1628 / #001F3F
 * - Red Accent: #b91c1c (Header bar)
 * - Green WhatsApp: #22c55e
 * 
 * Font: Poppins (Google Fonts)
 */

/* ========================================
   1. CSS RESET & BASE STYLES
   ======================================== */

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    min-width: 320px;
}

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

/* ========================================
   2. CSS VARIABLES
   ======================================== */

:root {
    --primary-blue: #4A90E2;
    --navy-dark: #0a1628;
    --navy-blue: #001F3F;
    --red-accent: #b91c1c;
    --whatsapp-green: #22c55e;
    --light-blue-bg: #E3F2FD;
    --text-dark: #0a1628;
    --text-muted: #64748b;
    --white: #ffffff;
    --gray-light: #f8fafc;
}

/* ========================================
   3. HEADER STYLES
   ======================================== */

/* Top Bar */
.top-bar {
    background: #b91c1c;
    color: #ffffff;
    padding: 8px 0;
    text-align: center;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar-text {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Main Header */
.main-header {
    background: #0a1628;
    padding: 15px 0;
    position: relative;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    flex-shrink: 0;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

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

.header-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.whatsapp-btn {
    background: #22c55e;
    color: #ffffff;
}

.whatsapp-btn:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

.whatsapp-btn i {
    font-size: 18px;
}

.events-btn {
    background: #3b82f6;
    color: #ffffff;
}

.events-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

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

/* Social Media Icons */
.header-social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 15px;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-icon:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

.explore-menu {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 8px 0;
    margin-left: 10px;
}

.explore-text {
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #0a1628;
    z-index: 2000;
    transition: right 0.3s ease;
    padding: 60px 30px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #3b82f6;
}

/* Header Responsive Styles */
@media (max-width: 992px) {
    .header-container {
        padding: 0 15px;
    }
    
    .header-btn span {
        font-size: 13px;
    }
    
    .explore-text {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-bar-text {
        font-size: 11px;
    }
    
    .main-header {
        padding: 10px 0;
    }
    
    .header-container {
        padding: 0 12px;
    }
    
    .logo-img {
        height: 34px;
    }
    
    .header-actions {
        gap: 8px;
    }
    
    .header-social-icons {
        display: none;
    }
    
    .header-btn {
        padding: 10px 14px;
        border-radius: 8px;
    }
    
    .header-btn span {
        display: none;
    }
    
    .whatsapp-btn i,
    .events-btn i {
        font-size: 22px;
    }
    
    .whatsapp-btn {
        background: linear-gradient(135deg, #25d366 0%, #22c55e 100%);
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
    
    .events-btn {
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    }
}

@media (max-width: 480px) {
    .top-bar {
        padding: 5px 0;
    }
    
    .top-bar-text {
        font-size: 10px;
        letter-spacing: 0.3px;
    }
    
    .main-header {
        padding: 8px 0;
    }
    
    .header-container {
        padding: 0 10px;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .header-actions {
        gap: 6px;
    }
    
    .header-btn {
        padding: 8px 10px;
        border-radius: 6px;
    }
    
    .whatsapp-btn i,
    .events-btn i {
        font-size: 20px;
    }
}

/* Who We Are Section Styles */
:root {
    --primary-blue: #4A90E2;
    --navy-blue: #001F3F;
    --light-blue-bg: #E3F2FD;
    --text-dark: #000000;
    --text-muted: #444444;
}

.who-we-are-section {
    padding: 100px 0;
    background-color: #fafdff;
}

.who-we-are-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.who-we-are-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-hexagon {
    position: absolute;
    width: 350px;
    height: 400px;
    background-color: var(--light-blue-bg);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    left: 20px;
    top: 10px;
    z-index: 1;
}

.image-hexagon {
    position: relative;
    width: 380px;
    height: 420px;
    z-index: 2;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-hexagon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.who-we-are-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px 0;
}

.section-subtitle {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.section-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 500px;
}

.btn-know-more {
    background-color: #002B49;
    color: #ffffff;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(0, 43, 73, 0.3);
    transition: background 0.3s ease;
}

.btn-know-more:hover {
    background-color: var(--primary-blue);
}

@media (max-width: 991px) {
    .who-we-are-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .who-we-are-image-container {
        justify-content: center;
        padding-left: 0;
    }

    .image-hexagon {
        width: 300px;
        height: 340px;
    }
    
    .bg-hexagon {
        width: 280px;
        height: 320px;
        left: 10px;
        top: 10px;
    }

    .who-we-are-content {
        text-align: center;
        align-items: center;
    }

    .section-description {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .who-we-are-section {
        padding: 60px 0;
    }

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

    .image-hexagon {
        width: 260px;
        height: 300px;
    }

    .bg-hexagon {
        width: 240px;
        height: 280px;
    }
}

/* Why Study MBBS Abroad Section Styles */
.why-study-mbbs-section {
    padding: 100px 0;
    background-color: #ffffff;
}

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

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

.why-study-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 15px 0;
}

.why-study-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.why-study-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-study-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.why-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.15);
    border-color: var(--primary-blue);
}

.card-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 12px 0;
}

.card-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .why-study-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .why-study-title {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .why-study-mbbs-section {
        padding: 60px 0;
    }

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

    .why-study-title {
        font-size: 28px;
    }

    .why-study-card {
        padding: 25px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-icon img {
        width: 50px;
        height: 50px;
    }
}

/* Popular Countries Section Styles */
.popular-countries-section {
    padding: 100px 0;
    background-color: #f8fafc;
}

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

.popular-countries-header {
    text-align: center;
    margin-bottom: 50px;
}

.popular-countries-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 12px 0;
}

.popular-countries-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.popular-countries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.country-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.country-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.15);
    border-color: var(--primary-blue);
}

.country-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.country-label {
    padding: 15px 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
}

@media (max-width: 991px) {
    .popular-countries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .popular-countries-title {
        font-size: 32px;
    }

    .country-image-wrapper {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .popular-countries-section {
        padding: 60px 0;
    }

    .popular-countries-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .popular-countries-title {
        font-size: 26px;
    }

    .popular-countries-subtitle {
        font-size: 14px;
    }

    .country-image-wrapper {
        height: 200px;
    }
}

/* Why Contact Us Section Styles */
.why-contact-section {
    padding: 60px 0;
    background-color: #f0f4f8;
}

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

.why-contact-grid {
    display: grid;
    grid-template-columns: 35% 62%;
    gap: 3%;
    align-items: start;
}

.why-contact-left {
    padding-top: 20px;
}

.why-contact-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.why-contact-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 300px;
}

.why-contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.contact-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.1);
    border-color: var(--primary-blue);
}

.contact-card:nth-child(2),
.contact-card:nth-child(5) {
    margin-top: 20px;
}

.contact-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

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

.contact-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 10px 0;
}

.contact-card-description {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .why-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-contact-left {
        text-align: center;
    }

    .why-contact-description {
        max-width: 100%;
    }

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

    .contact-card:nth-child(2),
    .contact-card:nth-child(5) {
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    .why-contact-section {
        padding: 40px 0;
    }

    .why-contact-title {
        font-size: 28px;
    }

    .why-contact-cards {
        grid-template-columns: 1fr;
    }
}

/* Education Consultants Section Styles */
.education-consultants-section {
    padding: 100px 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.education-consultants-bg {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 350px;
    height: 350px;
    z-index: 0;
    pointer-events: none;
}

.star-bg {
    width: 100%;
    height: 100%;
}

.education-consultants-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.education-consultants-grid {
    display: grid;
    grid-template-columns: 45% 50%;
    gap: 5%;
    align-items: center;
}

.stats-cards-wrapper {
    position: relative;
}

.stats-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stats-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.15);
    border-color: var(--primary-blue);
}

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

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

.stats-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.stats-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.consultants-content {
    padding-left: 20px;
}

.consultants-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 20px 0;
}

.consultants-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
}

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

.consultants-features li {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

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

@media (max-width: 991px) {
    .education-consultants-bg {
        display: none;
    }

    .education-consultants-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .consultants-content {
        padding-left: 0;
        text-align: center;
    }

    .consultants-features li {
        justify-content: center;
    }

    .stats-cards-grid {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .education-consultants-section {
        padding: 60px 0;
    }

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

    .stats-number {
        font-size: 28px;
    }

    .stats-card {
        padding: 25px 15px;
    }

    .consultants-features li {
        justify-content: flex-start;
        text-align: left;
    }
}

/* Partners Section Styles */
.partners-section {
    padding: 100px 0;
    background-color: #f0f4f8;
}

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

.partners-header {
    text-align: center;
    margin-bottom: 50px;
}

.partners-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 12px 0;
}

.partners-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.15);
    border-color: var(--primary-blue);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

@media (max-width: 991px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

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

@media (max-width: 576px) {
    .partners-section {
        padding: 60px 0;
    }

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

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

    .partner-logo {
        height: 70px;
        padding: 10px;
    }
}

/* Top Medical Universities Section Styles */
.top-universities-section {
    padding: 100px 0;
    background-color: #f8fafc;
}

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

.top-universities-header {
    text-align: center;
    margin-bottom: 50px;
}

.top-universities-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 12px 0;
}

.top-universities-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

.university-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.university-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.15);
    border-color: var(--primary-blue);
}

.university-image-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

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

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

.university-info {
    padding: 20px;
    text-align: center;
}

.university-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 8px 0;
}

.university-fee {
    font-size: 14px;
    color: var(--primary-blue);
    font-weight: 500;
    margin: 0;
}

@media (max-width: 991px) {
    .top-universities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .top-universities-title {
        font-size: 32px;
    }

    .university-image-wrapper {
        height: 160px;
    }
}

@media (max-width: 576px) {
    .top-universities-section {
        padding: 60px 0;
    }

    .top-universities-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .top-universities-title {
        font-size: 26px;
    }

    .top-universities-subtitle {
        font-size: 14px;
    }

    .university-image-wrapper {
        height: 200px;
    }
}

/* MBBS Myths Section Styles */
.mbbs-myths-section {
    padding: 80px 0;
    background-color: #f0f4f8;
}

.mbbs-myths-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.mbbs-myths-header {
    text-align: center;
    margin-bottom: 50px;
}

.mbbs-myths-title {
    font-size: 32px;
    font-weight: 700;
    color: #0a1628;
    margin: 0 0 8px 0;
}

.mbbs-myths-subtitle {
    font-size: 14px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.mbbs-myths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    align-items: start;
}

.myth-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: none;
    transition: all 0.3s ease;
}

.myth-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.12);
}

/* Position cards to match screenshot */
.myth-card-1 {
    grid-column: 1;
    grid-row: 1;
}

.myth-card-2 {
    grid-column: 1;
    grid-row: 2;
}

.myth-card-3 {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    margin-top: 60px;
}

.myth-card-4 {
    grid-column: 3;
    grid-row: 1;
}

.myth-card-5 {
    grid-column: 3;
    grid-row: 2;
}

.myth-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 12px;
}

.myth-icon svg {
    width: 100%;
    height: 100%;
}

.myth-title {
    font-size: 15px;
    font-weight: 600;
    color: #0a1628;
    margin: 0 0 10px 0;
}

.myth-description {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 991px) {
    .mbbs-myths-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .myth-card-1 {
        grid-column: 1;
        grid-row: 1;
    }

    .myth-card-2 {
        grid-column: 1;
        grid-row: 2;
    }

    .myth-card-3 {
        grid-column: 2;
        grid-row: 1 / 3;
        margin-top: 40px;
    }

    .myth-card-4 {
        grid-column: 2;
        grid-row: 1;
    }

    .myth-card-5 {
        grid-column: 2;
        grid-row: 2;
    }

    .mbbs-myths-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .mbbs-myths-section {
        padding: 60px 0;
    }

    .mbbs-myths-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .myth-card {
        grid-column: 1 !important;
        grid-row: auto !important;
        margin-top: 0 !important;
    }

    .mbbs-myths-title {
        font-size: 24px;
    }

    .mbbs-myths-subtitle {
        font-size: 13px;
    }
}

/* Choose University Video Section */
.choose-university-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.choose-university-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.choose-university-content {
    padding-right: 20px;
}

.choose-university-title {
    font-size: 28px;
    font-weight: 700;
    color: #0a1628;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.choose-university-description {
    font-size: 15px;
    color: #64748b;
    line-height: 1.8;
    margin: 0 0 24px 0;
}

.choose-university-content .section-tag {
    display: inline-block;
    background: rgba(74, 144, 226, 0.1);
    color: #4A90E2;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.choose-university-features {
    list-style: none;
    margin: 0 0 28px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.choose-university-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #475569;
}

.choose-university-features li i {
    color: #4A90E2;
    font-size: 16px;
}

.btn-consult-video {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #4A90E2, #6B5CE7);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.btn-consult-video:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.4);
}

.choose-university-video {
    position: relative;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

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

.video-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    padding: 12px 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    font-size: 14px;
    color: #475569;
}

.video-caption i {
    color: #4A90E2;
    font-size: 18px;
}

@media (max-width: 991px) {
    .choose-university-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .choose-university-content {
        padding-right: 0;
    }

    .choose-university-title {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .choose-university-section {
        padding: 60px 0;
    }

    .choose-university-title {
        font-size: 22px;
    }

    .choose-university-description {
        font-size: 14px;
    }

    .choose-university-features li {
        font-size: 13px;
    }

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

    .video-caption {
        font-size: 12px;
        padding: 10px 15px;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-title {
    font-size: 32px;
    font-weight: 700;
    color: #0a1628;
    margin: 0 0 10px 0;
}

.faq-subtitle {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 25px;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    margin-bottom: 12px;
}

.faq-label {
    font-weight: 700;
    color: #0a1628;
    margin-right: 8px;
}

.faq-question .faq-text {
    font-size: 15px;
    font-weight: 600;
    color: #0a1628;
}

.faq-answer .faq-label {
    font-weight: 700;
    color: #0a1628;
}

.faq-answer .faq-text {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.7;
}

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

    .faq-title {
        font-size: 26px;
    }

    .faq-subtitle {
        font-size: 13px;
    }

    .faq-question .faq-text {
        font-size: 14px;
    }

    .faq-answer .faq-text {
        font-size: 13px;
    }
}

/* ========================================
   FIXED ELEMENTS - WhatsApp & Timer
   ======================================== */

/* WhatsApp Fixed Bottom Right Button */
.whatsapp-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #22c55e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-fixed:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-fixed:active {
    transform: scale(0.95);
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    }
}

@media (max-width: 768px) {
    .whatsapp-fixed {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}

/* Early Bird Scholarship Timer - Orange Theme */
.early-bird-timer {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ff7a00 0%, #ff9500 50%, #ffb347 100%);
    color: #fff;
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(255, 122, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2);
    z-index: 9999;
    max-width: 350px;
    animation: float 3s ease-in-out infinite, slideInUp 0.6s ease-out;
    font-family: 'Poppins', sans-serif;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

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

.timer-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.timer-icon {
    background: rgba(255, 255, 255, 0.25);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: pulse 2s infinite;
}

.timer-icon i {
    font-size: 22px;
    color: #fff;
}

/* ========================================
   HEADER COMPONENT
   ======================================== */

/* Top Bar */
.top-bar {
    background: #b91c1c;
    color: #ffffff;
    padding: 8px 0;
    text-align: center;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar-text {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Main Header */
.main-header {
    background: #0a1628;
    padding: 15px 0;
    position: relative;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    flex-shrink: 0;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

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

.header-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.whatsapp-btn {
    background: #22c55e;
    color: #ffffff;
}

.whatsapp-btn:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

.whatsapp-btn i {
    font-size: 18px;
}

.events-btn {
    background: #3b82f6;
    color: #ffffff;
}

.events-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

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

/* Social Media Icons */
.header-social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 15px;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-icon:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

/* Header Responsive */
@media (max-width: 992px) {
    .header-container {
        padding: 0 15px;
    }
    
    .header-btn span {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .top-bar-text {
        font-size: 11px;
    }
    
    .main-header {
        padding: 10px 0;
    }
    
    .header-container {
        padding: 0 12px;
    }
    
    .logo-img {
        height: 34px;
    }
    
    .header-actions {
        gap: 8px;
    }
    
    /* Hide social icons on mobile */
    .header-social-icons {
        display: none;
    }
    
    .header-btn {
        padding: 10px 14px;
        border-radius: 8px;
    }
    
    /* Show only icons for buttons */
    .header-btn span {
        display: none;
    }
    
    .whatsapp-btn i,
    .events-btn i {
        font-size: 22px;
    }
    
    /* Make buttons more prominent */
    .whatsapp-btn {
        background: linear-gradient(135deg, #25d366 0%, #22c55e 100%);
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
    
    .events-btn {
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    }
}

@media (max-width: 480px) {
    .top-bar {
        padding: 5px 0;
    }
    
    .top-bar-text {
        font-size: 10px;
        letter-spacing: 0.3px;
    }
    
    .main-header {
        padding: 8px 0;
    }
    
    .header-container {
        padding: 0 10px;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .header-actions {
        gap: 6px;
    }
    
    .header-btn {
        padding: 8px 10px;
        border-radius: 6px;
    }
    
    .whatsapp-btn i,
    .events-btn i {
        font-size: 20px;
    }
}

.timer-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.timer-title {
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.timer-countdown {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.countdown-value {
    background: rgba(255, 255, 255, 0.35);
    color: #fff;
    padding: 6px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 800;
    min-width: 32px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .early-bird-timer {
        bottom: 15px;
        left: 15px;
        right: 15px;
        max-width: 280px;
        width: calc(100% - 30px);
        padding: 18px 20px;
    }
    
    .timer-icon {
        width: 45px;
        height: 45px;
    }
    
    .timer-icon i {
        font-size: 18px;
    }
}

/* ========================================
   POPUP FORM STYLES
   ======================================== */

#globalPopupModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    font-family: 'Inter', -apple-system, sans-serif;
}

#globalPopupModal > div {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 0;
    width: 90%;
    max-width: 420px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(74, 144, 226, 0.1);
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

#globalPopupModal > div > div:first-child {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 25px 30px 20px;
    text-align: center;
    position: relative;
    font-family: 'Poppins', sans-serif;
    border-bottom: 1px solid #e2e8f0;
}

#globalPopupModal > div > div:first-child > div:first-child {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(74, 144, 226, 0.1);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #64748b;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

#globalPopupModal > div > div:first-child > div:nth-child(2) {
    color: #4A90E2;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    opacity: 0.95;
    font-family: 'Poppins', sans-serif;
}

#globalPopupModal > div > div:first-child h3 {
    color: #1e293b;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
}

#globalPopupModal > div > div:first-child p {
    color: #64748b;
    font-size: 13px;
    margin: 6px 0 0;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

#globalPopupModal form {
    padding: 25px 30px 30px;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

#globalPopupModal form > div:first-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 15px;
}

#globalPopupModal form > div:first-child > div > div {
    margin-top: 12px;
}

#globalPopupModal form > div:first-child > div > div:first-child {
    margin-top: 0;
}

#globalPopupModal input,
#globalPopupModal select {
    width: 100%;
    padding: 12px 14px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

#globalPopupModal select {
    cursor: pointer;
}

#globalPopupModal button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #4A90E2 0%, #6B5CE7 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 15px rgba(74, 144, 226, 0.3);
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

#globalPopupModal button span {
    position: relative;
    z-index: 1;
    font-family: 'Poppins', sans-serif;
}

#globalPopupModal form > div:nth-child(2) {
    text-align: center;
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
    font-family: 'Poppins', sans-serif;
}

#globalPopupModal form > div:nth-child(2) > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #6c757d;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

/* Focus states */
#globalPopupModal input:focus,
#globalPopupModal select:focus {
    border-color: #4A90E2;
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.15);
    transform: translateY(-1px);
}

#globalPopupModal button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(74, 144, 226, 0.4);
}

#globalPopupModal button:active {
    transform: translateY(0);
}

/* Close button hover */
#globalPopupModal > div > div:first-child div:first-child:hover {
    background: rgba(74, 144, 226, 0.2);
    color: #4A90E2;
    transform: rotate(90deg);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #globalPopupModal > div {
        width: 95%;
        max-width: none;
        margin: 20px;
        border-radius: 20px;
    }

    #globalPopupModal form {
        padding: 30px 25px;
    }

    #globalPopupModal form > div:first-child {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    #globalPopupModal > div > div:first-child {
        padding: 25px 30px 20px;
    }

    #globalPopupModal > div > div:first-child h3 {
        font-size: 24px;
    }

    #globalPopupModal > div > div:first-child p {
        font-size: 14px;
    }

    #globalPopupModal input,
    #globalPopupModal select {
        padding: 14px 16px;
        font-size: 14px;
    }

    #globalPopupModal button {
        padding: 16px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    #globalPopupModal > div {
        width: 98%;
        margin: 10px;
        border-radius: 16px;
    }

    #globalPopupModal form {
        padding: 25px 20px;
    }

    #globalPopupModal input,
    #globalPopupModal select {
        padding: 12px 14px;
        font-size: 14px;
    }

    #globalPopupModal button {
        padding: 14px;
        font-size: 14px;
    }

    #globalPopupModal > div > div:first-child {
        padding: 20px 25px 15px;
    }

    #globalPopupModal > div > div:first-child h3 {
        font-size: 22px;
    }

    #globalPopupModal > div > div:first-child p {
        font-size: 13px;
    }

    #globalPopupModal > div > div:first-child div:first-child {
        width: 35px;
        height: 35px;
        font-size: 16px;
        top: 10px;
        right: 10px;
    }
}

/* ========================================
   HERO SECTION STYLES
   ======================================== */

.intellectual-hero {
    position: relative;
    min-height: 85vh;
    background: linear-gradient(135deg, #1e5799 0%, #2989d8 50%, #4A90E2 100%);
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    color: #F8FAFC;
}

.intellectual-hero .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    z-index: 5;
    padding: 0 20px;
}

.intellectual-hero .main-title {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.intellectual-hero .cta-group {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.intellectual-hero .btn-white {
    background: #F8FAFC;
    color: #333;
    padding: 12px 25px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s ease;
}

.intellectual-hero .btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.intellectual-hero .brand-logos {
    display: flex;
    align-items: center;
    gap: 30px;
    opacity: 0.9;
}

.intellectual-hero .brand-logos img {
    height: 40px;
}

.intellectual-hero .hero-illustration img {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.intellectual-hero .wave-bottom {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.intellectual-hero .wave-bottom svg {
    width: 100%;
    height: 150px;
}

@media (max-width: 991px) {
    .intellectual-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .intellectual-hero .cta-group,
    .intellectual-hero .brand-logos {
        justify-content: center;
    }
    
    .intellectual-hero .hero-illustration {
        order: -1;
    }
}

/* ========================================
   STUDY HERO SECTION STYLES - LIGHT THEME
   ======================================== */

.study-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 30%, #f0f9ff 60%, #f8fafc 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #1e293b;
}

/* Animated Background */
.study-hero .hero-animated-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.study-hero .floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.study-hero .shape-1 {
    width: 400px;
    height: 400px;
    background: #4A90E2;
    top: -100px;
    right: 10%;
    animation-delay: 0s;
}

.study-hero .shape-2 {
    width: 300px;
    height: 300px;
    background: #6B5CE7;
    bottom: 10%;
    left: -50px;
    animation-delay: -5s;
}

.study-hero .shape-3 {
    width: 250px;
    height: 250px;
    background: #4A90E2;
    top: 40%;
    right: 30%;
    animation-delay: -10s;
}

.study-hero .gradient-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(248, 250, 252, 0.5) 70%);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.study-hero .container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 100px 30px 140px;
    position: relative;
    z-index: 2;
}

/* Enhanced container responsive behavior */
@media (min-width: 1400px) {
    .study-hero .container {
        max-width: 1400px;
        gap: 80px;
        padding: 120px 40px 160px;
    }
}

/* Content Styles */
.study-hero .hero-content-wrapper {
    max-width: 650px;
}

.study-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.2), rgba(107, 92, 231, 0.2));
    border: 1px solid rgba(74, 144, 226, 0.3);
    color: #4A90E2;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.study-hero .hero-badge i {
    color: #FFD700;
}

/* Destination Flags */
.study-hero .destination-flags {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.study-hero .flag-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    will-change: transform;
}

.study-hero .flag-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-color: #4A90E2;
}

.study-hero .flag-item img {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    object-fit: cover;
    vertical-align: middle;
    pointer-events: none;
}

.study-hero .flag-item span {
    font-size: 12px;
    font-weight: 600;
    color: #475569;
}

.study-hero .flag-item.more {
    background: linear-gradient(135deg, #4A90E2, #6B5CE7);
    border-color: transparent;
}

.study-hero .flag-item.more span {
    color: #ffffff;
    font-weight: 500;
}

/* Programs Pills */
.study-hero .programs-pills {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.study-hero .pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(74, 144, 226, 0.1);
    color: #4A90E2;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(74, 144, 226, 0.2);
    transition: all 0.3s ease;
}

.study-hero .pill:hover {
    background: #4A90E2;
    color: #ffffff;
    transform: translateY(-2px);
}

.study-hero .pill i {
    font-size: 12px;
}

.study-hero .hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #1e293b;
    letter-spacing: -1px;
}

.study-hero .hero-title .highlight {
    background: linear-gradient(135deg, #4A90E2, #6B5CE7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.study-hero .hero-description {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.7;
    margin-bottom: 32px;
    color: #64748b;
    max-width: 550px;
}

/* Stats Row */
.study-hero .hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.study-hero .stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.study-hero .stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #4A90E2;
    line-height: 1;
}

.study-hero .stat-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.study-hero .stat-divider {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
}

/* CTA Buttons */
.study-hero .hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.study-hero .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.study-hero .btn-primary {
    background: linear-gradient(135deg, #4A90E2, #6B5CE7);
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(74, 144, 226, 0.4);
}

.study-hero .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(74, 144, 226, 0.5);
}

.study-hero .btn-glass {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    color: #475569;
}

.study-hero .btn-glass:hover {
    background: #f8fafc;
    border-color: #4A90E2;
    color: #4A90E2;
    transform: translateY(-3px);
}

/* Trust Badges */
.study-hero .trust-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.study-hero .badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
}

.study-hero .badge-item i {
    color: #4A90E2;
    font-size: 14px;
}

/* Visual/Images Section */
.study-hero .hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.study-hero .visual-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.study-hero .visual-card:hover {
    transform: translateY(-5px);
}

.study-hero .visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.study-hero .main-card {
    width: 380px;
    height: 280px;
    z-index: 3;
    position: relative;
}

.study-hero .main-card .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.study-hero .university-count {
    background: linear-gradient(135deg, #4A90E2, #6B5CE7);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.study-hero .floating-card {
    width: 160px;
    height: 120px;
    z-index: 4;
}

.study-hero .floating-card.card-1 {
    top: 20px;
    right: 0;
    animation: floatCard 6s ease-in-out infinite;
}

.study-hero .floating-card.card-2 {
    bottom: 60px;
    left: -20px;
    animation: floatCard 6s ease-in-out infinite 2s;
}

.study-hero .floating-card.card-3 {
    bottom: 20px;
    right: 40px;
    width: 140px;
    height: 100px;
    background: linear-gradient(135deg, #4A90E2, #6B5CE7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: floatCard 6s ease-in-out infinite 4s;
}

.study-hero .card-label {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.study-hero .success-rate .rate-number {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
}

.study-hero .success-rate .rate-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Form */
.study-hero .hero-form {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(74, 144, 226, 0.1);
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
}

.study-hero .hero-form-header {
    text-align: center;
    margin-bottom: 24px;
}

.study-hero .hero-form-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4A90E2, #6B5CE7);
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.study-hero .hero-form-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 8px;
    line-height: 1.3;
}

.study-hero .hero-form-header p {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.study-hero .hero-form-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.study-hero .hero-form-fields > div > div {
    margin-top: 12px;
}

.study-hero .hero-form-fields > div > div:first-child {
    margin-top: 0;
}

.study-hero .hero-form input,
.study-hero .hero-form select {
    width: 100%;
    padding: 12px 14px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.study-hero .hero-form select {
    cursor: pointer;
}

.study-hero .hero-form input:focus,
.study-hero .hero-form select:focus {
    border-color: #4A90E2;
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.15);
    transform: translateY(-1px);
}

.study-hero .hero-form button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #4A90E2 0%, #6B5CE7 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 15px rgba(74, 144, 226, 0.3);
    font-family: 'Poppins', sans-serif;
}

.study-hero .hero-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(74, 144, 226, 0.4);
}

.study-hero .hero-form button:active {
    transform: translateY(0);
}

.study-hero .hero-form-trust {
    text-align: center;
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.study-hero .hero-form-trust > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #6c757d;
    font-size: 12px;
    font-weight: 500;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Wave Divider */
.study-hero .hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 2;
}

.study-hero .hero-wave svg {
    width: 100%;
    height: 80px;
}

/* Responsive */

/* Tablet-specific improvements */
@media (min-width: 768px) and (max-width: 991px) {
    .study-hero .container {
        padding: 0 30px;
    }
    
    .study-hero .hero-content-wrapper {
        max-width: 550px;
    }
    
    .study-hero .hero-stats {
        gap: 30px;
    }
    
    .study-hero .destination-flags {
        gap: 10px;
    }
    
    .study-hero .programs-pills {
        gap: 10px;
    }
    
    .study-hero .hero-cta-group {
        max-width: 320px;
    }
}

@media (max-width: 991px) {
    .study-hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        max-width: 100%;
        padding: 0 25px;
    }

    .study-hero .hero-content-wrapper {
        max-width: 100%;
        margin: 0 auto;
    }

    .study-hero .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .study-hero .destination-flags {
        justify-content: center;
        gap: 8px;
    }

    .study-hero .programs-pills {
        justify-content: center;
        gap: 8px;
    }

    .study-hero .hero-form {
        max-width: 100%;
    }

    .study-hero .hero-form-fields {
        grid-template-columns: 1fr;
    }
    
    .study-hero .trust-badges {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .study-hero {
        padding: 60px 0 40px;
        min-height: auto;
    }

    .study-hero .hero-title {
        font-size: clamp(28px, 7vw, 42px);
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .study-hero .hero-description {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .study-hero .container {
        gap: 30px;
        padding: 0 20px;
    }
    
    .study-hero .destination-flags {
        gap: 6px;
        margin-bottom: 20px;
    }
    
    .study-hero .flag-item {
        padding: 4px 8px;
        font-size: 11px;
    }
    
    .study-hero .flag-item img {
        width: 20px;
        height: 13px;
    }

    .study-hero .hero-cta-group {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .study-hero .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 14px;
        font-weight: 600;
    }
    
    .study-hero .hero-stats {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 25px;
    }

    .study-hero .stat-divider {
        display: none;
    }
    
    .study-hero .stat-item {
        text-align: center;
    }
    
    .study-hero .stat-number {
        font-size: 24px;
    }
    
    .study-hero .stat-label {
        font-size: 12px;
    }

    .study-hero .hero-form-fields {
        grid-template-columns: 1fr;
    }

    .study-hero .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .study-hero .programs-pills {
        gap: 6px;
        margin-bottom: 25px;
    }
    
    .study-hero .pill {
        padding: 6px 10px;
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .study-hero {
        padding: 50px 0 30px;
    }
    
    .study-hero .container {
        padding: 0 15px;
        gap: 25px;
    }
    
    .study-hero .hero-title {
        font-size: clamp(24px, 8vw, 36px);
        margin-bottom: 15px;
    }
    
    .study-hero .hero-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .study-hero .destination-flags {
        gap: 4px;
        margin-bottom: 15px;
    }
    
    .study-hero .flag-item {
        padding: 3px 6px;
        font-size: 10px;
    }
    
    .study-hero .flag-item img {
        width: 18px;
        height: 12px;
    }
    
    .study-hero .hero-stats {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .study-hero .stat-number {
        font-size: 20px;
    }
    
    .study-hero .stat-label {
        font-size: 11px;
    }
    
    .study-hero .programs-pills {
        gap: 4px;
        margin-bottom: 20px;
    }
    
    .study-hero .pill {
        padding: 4px 8px;
        font-size: 10px;
    }
    
    .study-hero .hero-cta-group {
        max-width: 250px;
        gap: 10px;
    }
    
    .study-hero .btn {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .study-hero .hero-visual {
        height: 280px;
        transform: scale(0.6);
    }
    
    .study-hero .trust-badges {
        gap: 8px;
    }
    
    .study-hero .badge-item {
        padding: 6px 10px;
        font-size: 11px;
    }
}

/* Landscape orientation improvements */
@media (max-height: 600px) and (orientation: landscape) {
    .study-hero {
        padding: 40px 0 30px;
        min-height: auto;
    }
    
    .study-hero .container {
        gap: 20px;
    }
    
    .study-hero .hero-title {
        font-size: clamp(24px, 4vw, 36px);
        margin-bottom: 15px;
    }
    
    .study-hero .hero-description {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .study-hero .hero-stats {
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .study-hero .destination-flags {
        margin-bottom: 15px;
    }
    
    .study-hero .programs-pills {
        margin-bottom: 15px;
    }
    
    .study-hero .hero-visual {
        height: 200px;
        transform: scale(0.7);
    }
    
    .study-hero .hero-cta-group {
        gap: 10px;
        max-width: 300px;
    }
    
    .study-hero .btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .study-hero .hero-visual {
        display: none;
    }
    
    .study-hero .hero-content-wrapper {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }
    
    .study-hero .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .study-hero .destination-flags {
        justify-content: center;
        gap: 8px;
    }
    
    .study-hero .programs-pills {
        justify-content: center;
        gap: 8px;
    }
    
    .study-hero .trust-badges {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .study-hero .hero-visual {
        display: none;
    }
    
    .study-hero .hero-content-wrapper {
        max-width: 100%;
    }
    
    .study-hero .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .study-hero .stat-divider {
        display: none;
    }
    
    .study-hero .stat-item {
        text-align: center;
    }
    
    .study-hero .hero-cta-group {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .study-hero .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 14px;
        font-weight: 600;
    }
    
    .study-hero .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .study-hero .hero-visual {
        display: none;
    }
    
    .study-hero .hero-title {
        font-size: clamp(22px, 9vw, 32px);
    }
    
    .study-hero .hero-description {
        font-size: 13px;
    }
    
    .study-hero .destination-flags {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-behavior: smooth;
        touch-action: pan-y;
    }
    
    .study-hero .destination-flags::-webkit-scrollbar {
        display: none;
    }
    
    .study-hero .flag-item {
        flex-shrink: 0;
        touch-action: manipulation;
    }
    
    .study-hero .programs-pills {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .study-hero .programs-pills::-webkit-scrollbar {
        display: none;
    }
    
    .study-hero .hero-cta-group {
        max-width: 250px;
        gap: 10px;
    }
    
    .study-hero .btn {
        padding: 12px 16px;
        font-size: 13px;
    }
}

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

.nexus-footer {
    background-color: #0a235b;
    color: #ffffff;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    border-top: 3px solid transparent;
    background-image: linear-gradient(#0a235b 0%, #0a235b 100%), 
                      linear-gradient(90deg, #ff7a00, #ff9500, #ffb347);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.nexus-main {
    padding: 60px 0 40px;
}

.nexus-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.nexus-left {
    flex: 1;
    text-align: left;
}

.nexus-right {
    flex: 1;
    text-align: right;
}

.nexus-logo {
    height: 45px;
    margin-bottom: 16px;
}

.nexus-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 500;
}

.nexus-social-grid {
    display: flex;
    gap: 12px;
}

.nexus-social-link {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #163a74;
    color: #ff7a00;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.05);
}

.nexus-social-link:hover {
    background: #ff7a00;
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(74, 144, 226, 0.3);
}

.nexus-heading {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
    color: #ffda58;
    font-weight: 700;
}

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

.nexus-nav li {
    margin-bottom: 14px;
}

.nexus-nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nexus-nav-link:hover {
    color: #ffda58;
    padding-left: 4px;
}

.nexus-contact-list {
    margin-bottom: 0;
    max-width: 500px;
    margin-left: auto;
}

.nexus-contact-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    text-align: left;
}

.nexus-contact-box i {
    color: #ff7a00;
    width: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.nexus-contact-box span {
    line-height: 1.5;
}

.nexus-btn-primary {
    background: #ff7a00;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.nexus-btn-primary:hover {
    background: #ff9500;
    box-shadow: 0 4px 20px rgba(255, 122, 0, 0.3);
}

.nexus-base {
    background: #163a74;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.nexus-base-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nexus-copy {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.nexus-legal {
    display: flex;
    gap: 24px;
}

.nexus-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.nexus-legal a:hover {
    color: #ffda58;
}

/* Enhanced Footer Responsive Design */
@media (max-width: 1200px) {
    .nexus-container {
        padding: 0 20px;
    }
    
    .nexus-main {
        padding: 50px 0 35px;
    }
    
    .nexus-logo {
        height: 40px;
    }
    
    .nexus-tagline {
        font-size: 14px;
    }
    
    .nexus-contact-box {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .nexus-container {
        padding: 0 15px;
        gap: 30px;
    }
    
    .nexus-main {
        padding: 45px 0 30px;
    }
    
    .nexus-logo {
        height: 36px;
    }
    
    .nexus-tagline {
        font-size: 13px;
        margin-top: 10px;
    }
    
    .nexus-contact-box {
        font-size: 13px;
        padding: 8px 0;
    }
    
    .nexus-contact-box i {
        font-size: 14px;
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 768px) {
    .nexus-container {
        flex-direction: column;
        text-align: center;
        padding: 0 15px;
    }
    
    .nexus-main {
        padding: 40px 0 25px;
    }
    
    .nexus-left {
        margin-bottom: 30px;
    }
    
    .nexus-logo {
        height: 32px;
    }
    
    .nexus-tagline {
        font-size: 12px;
        margin-top: 8px;
    }
    
    .nexus-contact-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .nexus-contact-box {
        font-size: 12px;
        padding: 6px 0;
        text-align: center;
    }
    
    .nexus-contact-box i {
        font-size: 12px;
        width: 20px;
        height: 20px;
        margin-bottom: 4px;
    }
    
    .nexus-base {
        padding: 20px 0;
    }
    
    .nexus-base-flex {
        justify-content: center;
    }
    
    .nexus-copy {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .nexus-container {
        padding: 0 12px;
    }
    
    .nexus-main {
        padding: 35px 0 20px;
    }
    
    .nexus-left {
        margin-bottom: 25px;
    }
    
    .nexus-logo {
        height: 28px;
    }
    
    .nexus-tagline {
        font-size: 11px;
        margin-top: 6px;
    }
    
    .nexus-contact-list {
        gap: 8px;
    }
    
    .nexus-contact-box {
        font-size: 11px;
        padding: 4px 0;
    }
    
    .nexus-contact-box i {
        font-size: 11px;
        width: 18px;
        height: 18px;
    }
    
    .nexus-base {
        padding: 15px 0;
    }
    
    .nexus-copy {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .nexus-container {
        padding: 0 10px;
    }
    
    .nexus-main {
        padding: 30px 0 15px;
    }
    
    .nexus-left {
        margin-bottom: 20px;
    }
    
    .nexus-logo {
        height: 24px;
    }
    
    .nexus-tagline {
        font-size: 10px;
        margin-top: 4px;
    }
    
    .nexus-contact-list {
        gap: 6px;
    }
    
    .nexus-contact-box {
        font-size: 10px;
        padding: 3px 0;
    }
    
    .nexus-contact-box i {
        font-size: 10px;
        width: 16px;
        height: 16px;
    }
    
    .nexus-base {
        padding: 12px 0;
    }
    
    .nexus-copy {
        font-size: 9px;
    }
}

/* ========================================
   GLOBAL RESPONSIVE IMPROVEMENTS
   ======================================== */

/* Global Container Improvements */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
}

/* Global Typography Improvements */
@media (max-width: 768px) {
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.2;
    }
    
    p {
        line-height: 1.5;
    }
}

@media (max-width: 576px) {
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.1;
    }
    
    p {
        line-height: 1.4;
    }
}

/* Global Button Improvements */
@media (max-width: 768px) {
    .btn, button {
        min-height: 44px;
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .btn, button {
        min-height: 40px;
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* Global Image Improvements */
@media (max-width: 768px) {
    img {
        border-radius: 8px;
    }
}

/* Global Spacing Improvements */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    section {
        padding: 40px 0;
    }
}

/* Global Form Improvements */
@media (max-width: 768px) {
    input, textarea, select {
        padding: 12px 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    input, textarea, select {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* ========================================
   THANK YOU PAGE STYLES
   ======================================== */

.thankyouSection {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f8fafc;
    padding: 20px;
}

.thankyouBox {
    background: #ffffff;
    border-radius: 18px;
    padding: 50px 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    max-width: 600px;
    width: 100%;
    text-align: center;
    position: relative;
}

.thankyouLogo {
    width: 200px;
    margin-bottom: 20px;
    background: #4A90E2;
    padding: 5px;
    border-radius: 10px;
}

.thankyouTitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #4A90E2;
    font-size: 2rem;
    margin-bottom: 12px;
}

.thankyouMessage {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 35px;
    line-height: 1.6;
}

.thankyouActions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btnWhatsApp {
    background: #22c55e;
    color: #000000;
    border-radius: 50px;
    padding: 12px 26px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(43,184,38,0.3);
    transition: all 0.3s ease;
}

.btnWhatsApp:hover {
    background: #16a34a;
    transform: translateY(-3px);
}

.btnCall {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #001F3F;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,23,82,0.25);
    transition: all 0.3s ease;
}

.btnCall:hover {
    background: #4A90E2;
    transform: scale(1.1);
}

.thankyouFooter {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #94a3b8;
}

.thankyouFooter strong {
    color: #0a1628;
}

/* ========================================
   COUNTRY MARQUEE STYLES
   ======================================== */

.country-marquee-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 12px 0;
    z-index: 9998;
    border-top: 2px solid #e2e8f0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.marquee-track {
    display: inline-flex;
    animation: marquee-scroll 25s linear infinite;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 40px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    white-space: nowrap;
}

.marquee-item i {
    color: #4A90E2;
    font-size: 14px;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .country-marquee-fixed {
        padding: 10px 0;
    }
    
    .marquee-item {
        font-size: 13px;
        padding: 0 25px;
    }
    
    .marquee-track {
        animation: marquee-scroll 20s linear infinite;
    }
}

/* ========================================
   FLOATING BUTTONS STYLES
   ======================================== */

.enquire-float-btn {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(180deg, #22c55e 0%, #16a34a 40%, #dc2626 100%);
    color: #ffffff;
    padding: 20px 12px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.enquire-float-btn:hover {
    padding: 20px 18px;
    box-shadow: 6px 0 25px rgba(0, 0, 0, 0.35);
}

.enquire-text {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-transform: uppercase;
}

.enquire-float-btn i {
    font-size: 14px;
    transform: rotate(90deg);
}

.callback-panel {
    position: fixed;
    right: -400px;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    background: #ffffff;
    border-radius: 16px 0 0 16px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.25);
    z-index: 9997;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.callback-panel.active {
    right: 0;
}

.callback-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #0a1628 100%);
    color: #ffffff;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.callback-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.callback-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.callback-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.callback-form {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.callback-field {
    width: 100%;
}

.callback-input,
.callback-select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    background: #f9fafb;
    transition: all 0.3s ease;
}

.callback-input:focus,
.callback-select:focus {
    outline: none;
    border-color: #3b82f6;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.callback-submit {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #ffffff;
    border: none;
    padding: 16px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.callback-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.enquiry-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.enquiry-modal.active {
    display: flex;
    opacity: 1;
}

.enquiry-modal-content {
    background: #ffffff;
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.enquiry-modal.active .enquiry-modal-content {
    transform: scale(1);
}

.enquiry-modal-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #0a1628 100%);
    color: #ffffff;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 12px 12px 0 0;
}

.enquiry-modal-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

.enquiry-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.enquiry-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.enquiry-form {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.enquiry-field {
    width: 100%;
}

.enquiry-input,
.enquiry-select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    background: #f9fafb;
    transition: all 0.3s ease;
}

.enquiry-input:focus,
.enquiry-select:focus {
    outline: none;
    border-color: #3b82f6;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.enquiry-submit {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #ffffff;
    border: none;
    padding: 16px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.enquiry-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

@media (max-width: 768px) {
    .enquire-float-btn {
        padding: 12px 8px;
    }
    
    .enquire-text {
        font-size: 12px;
    }
    
    .callback-panel {
        width: 100%;
        right: -100%;
        top: auto;
        bottom: 0;
        transform: none;
        border-radius: 20px 20px 0 0;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .callback-panel.active {
        right: 0;
    }
}

/* ========================================
   PARTNER UNIVERSITIES SECTION STYLES
   ======================================== */

.partner-universities {
    padding: 80px 0;
    background: #ffffff;
}

.partner-universities .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.partner-universities .section-header {
    margin-bottom: 30px;
}

.partner-universities .section-title {
    font-size: clamp(24px, 3vw, 28px);
    font-weight: 600;
    color: #1a365d;
    line-height: 1.3;
}

.partner-universities .section-content {
    margin-bottom: 50px;
}

.partner-universities .description {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.partner-universities .description:last-child {
    margin-bottom: 0;
}

/* Carousel Styles */
.partner-universities .universities-carousel {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.partner-universities .carousel-track-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.partner-universities .carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.partner-universities .university-logo {
    flex: 0 0 25%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.partner-universities .university-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-universities .university-logo:hover img {
    filter: grayscale(0%);
}

.partner-universities .carousel-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.partner-universities .carousel-nav:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #334155;
}

.partner-universities .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.partner-universities .carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.partner-universities .carousel-dots .dot.active {
    background: #3b82f6;
}

.partner-universities .carousel-dots .dot:hover {
    background: #94a3b8;
}

@media (max-width: 991px) {
    .partner-universities .university-logo {
        flex: 0 0 33.333%;
    }
}

@media (max-width: 768px) {
    .partner-universities {
        padding: 50px 0;
    }

    .partner-universities .university-logo {
        flex: 0 0 50%;
        padding: 15px;
    }

    .partner-universities .university-logo img {
        max-height: 60px;
    }

    .partner-universities .carousel-nav {
        width: 36px;
        height: 36px;
    }

    .partner-universities .description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .partner-universities .university-logo {
        flex: 0 0 100%;
    }
}

/* ========================================
   STUDY PROGRAMS SECTION STYLES
   ======================================== */

.study-programs {
    padding: 100px 0;
    background: #f8fafc;
}

.study-programs .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.study-programs .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.study-programs .section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.2), rgba(107, 92, 231, 0.2));
    color: #4A90E2;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.study-programs .section-title {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.study-programs .section-subtitle {
    font-size: 16px;
    color: #64748b;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.program-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    border-color: #4A90E2;
    box-shadow: 0 20px 60px rgba(74, 144, 226, 0.15);
}

.program-card.featured {
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #4A90E2, #6B5CE7);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
}

.program-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

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

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

.program-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
}

.program-overlay .duration {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.program-content {
    padding: 24px;
}

.program-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.2), rgba(107, 92, 231, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    font-size: 20px;
    margin-bottom: 16px;
}

.program-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.program-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
}

.program-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.program-meta span {
    font-size: 12px;
    color: #4A90E2;
    background: rgba(74, 144, 226, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
}

.btn-explore {
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 1px solid rgba(74, 144, 226, 0.5);
    color: #4A90E2;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-explore:hover {
    background: linear-gradient(135deg, #4A90E2, #6B5CE7);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
}

/* Programs Section Specific Button Styles */
.program-card .btn-explore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 20px;
    background: transparent;
    color: #4A90E2;
    border: 2px solid #4A90E2;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 8px;
    text-decoration: none;
}

.program-card .btn-explore:hover {
    background: linear-gradient(135deg, #4A90E2, #6B5CE7);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

.program-card .btn-explore i {
    transition: transform 0.3s ease;
}

.program-card .btn-explore:hover i {
    transform: translateX(3px);
}

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

@media (max-width: 768px) {
    .study-programs {
        padding: 60px 0;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .program-card .btn-explore {
        padding: 12px 18px;
        font-size: 13px;
        border-radius: 10px;
    }
}

/* ========================================
   ABOUT MODERN SECTION STYLES
   ======================================== */

.about-modern {
    padding: 100px 0;
    background: #ffffff;
}

.about-modern .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content .section-tag {
    display: inline-block;
    background: rgba(74, 144, 226, 0.1);
    color: #4A90E2;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-title {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-title .text-gradient {
    background: linear-gradient(135deg, #4A90E2, #6B5CE7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-stats-row {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.about-stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-stat .stat-icon {
    width: 44px;
    height: 44px;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    font-size: 18px;
}

.about-stat .stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    display: block;
}

.about-stat .stat-name {
    font-size: 12px;
    color: #64748b;
}

.about-cta {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.about-cta .btn-primary {
    padding: 14px 28px;
    background: linear-gradient(135deg, #4A90E2, #6B5CE7);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.about-cta .btn-video {
    padding: 14px 28px;
    background: transparent;
    border: 1px solid #e2e8f0;
    color: #475569;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-cta .btn-video:hover {
    background: #f1f5f9;
    border-color: #4A90E2;
    color: #4A90E2;
}

.about-visual {
    position: relative;
    height: 450px;
}

.image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 70%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #4A90E2, #6B5CE7);
    padding: 16px 24px;
    border-radius: 12px;
    color: #ffffff;
}

.exp-number {
    font-size: 28px;
    font-weight: 800;
    display: block;
}

.exp-text {
    font-size: 12px;
    opacity: 0.9;
}

.image-secondary {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 45%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    border: 4px solid #12141D;
}

.image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: linear-gradient(145deg, #1a1d2e, #151825);
    padding: 16px 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.floating-card.students-card {
    bottom: 60px;
    right: 0;
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card i {
    font-size: 24px;
    color: #4A90E2;
}

.card-number {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    display: block;
}

.card-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

/* Enhanced About Section Responsive Design */
@media (max-width: 1200px) {
    .about-modern .container {
        padding: 0 20px;
        gap: 50px;
    }
    
    .about-visual {
        transform: scale(0.9);
    }
}

@media (max-width: 1100px) {
    .about-modern .container {
        gap: 40px;
    }
    
    .about-visual {
        transform: scale(0.85);
    }
}

@media (max-width: 991px) {
    .about-modern .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .about-content {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .about-visual {
        display: none;
    }
    
    .about-stats-row {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .about-cta {
        justify-content: center;
        gap: 15px;
    }
    
    .btn-primary, .btn-video {
        padding: 12px 20px;
        font-size: 14px;
    }

    .about-stats-row {
        justify-content: center;
    }

    .about-stat {
        flex-direction: column;
        text-align: center;
    }
    
    .about-cta {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .btn-primary, .btn-video {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-modern {
        padding: 80px 0;
    }
    
    .about-modern .container {
        padding: 0 20px;
        gap: 30px;
    }
    
    .about-title {
        font-size: clamp(28px, 6vw, 40px);
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .about-text {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .about-visual {
        display: none;
    }
    
    .about-stats-row {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .about-stat {
        padding: 15px;
        min-width: 140px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .stat-name {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .about-modern {
        padding: 60px 0;
    }
    
    .about-modern .container {
        padding: 0 15px;
        gap: 25px;
    }
    
    .about-title {
        font-size: clamp(24px, 7vw, 36px);
        margin-bottom: 15px;
    }
    
    .about-text {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .about-visual {
        display: none;
    }
    
    .about-stats-row {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .about-stat {
        padding: 12px;
        min-width: 120px;
    }
    
    .stat-value {
        font-size: 20px;
    }
    
    .stat-name {
        font-size: 11px;
    }
    
    .about-cta {
        max-width: 250px;
        gap: 10px;
    }
    
    .btn-primary, .btn-video {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .about-modern {
        padding: 50px 0;
    }
    
    .about-modern .container {
        padding: 0 12px;
        gap: 20px;
    }
    
    .about-title {
        font-size: clamp(22px, 8vw, 32px);
    }
    
    .about-text {
        font-size: 13px;
    }
    
    .about-visual {
        display: none;
    }
    
    .about-stats-row {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .about-stat {
        width: 100%;
        max-width: 200px;
        flex-direction: row;
        text-align: left;
        padding: 10px 15px;
    }
    
    .btn-primary, .btn-video {
        padding: 10px 16px;
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .about-stats-row {
        flex-direction: column;
        gap: 20px;
    }

    .about-cta {
        flex-direction: column;
    }

    .about-visual {
        display: none;
    }
}

/* ========================================
   WHY STUDY ABROAD SECTION STYLES
   ======================================== */

.why-study-abroad {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.why-study-abroad .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.why-study-abroad .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-study-abroad .section-tag {
    display: inline-block;
    background: rgba(74, 144, 226, 0.1);
    color: #4A90E2;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.why-study-abroad .section-title {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.why-study-abroad .section-subtitle {
    font-size: 16px;
    color: #64748b;
}

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

.benefit-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: #4A90E2;
    box-shadow: 0 20px 60px rgba(74, 144, 226, 0.12);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.2), rgba(107, 92, 231, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #4A90E2;
    font-size: 28px;
}

.benefit-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.benefit-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

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

.btn-consult {
    padding: 16px 40px;
    background: linear-gradient(135deg, #4A90E2, #6B5CE7);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 40px rgba(74, 144, 226, 0.3);
}

.btn-consult:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(74, 144, 226, 0.4);
}

/* Enhanced Why Study Section Responsive Design */
@media (max-width: 1200px) {
    .why-study-abroad .container {
        padding: 0 20px;
    }
    
    .benefits-grid {
        gap: 25px;
    }
    
    .benefit-card {
        padding: 35px 25px;
    }
}

@media (max-width: 1100px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
}

@media (max-width: 992px) {
    .why-study-abroad {
        padding: 80px 0;
    }
    
    .why-study-abroad .container {
        padding: 0 15px;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .benefits-grid {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    .benefit-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .benefit-desc {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .why-study-abroad {
        padding: 60px 0;
    }

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

    .benefit-card {
        padding: 25px 20px;
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }
    
    .benefit-icon {
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 0;
    }
    
    .benefit-content {
        flex: 1;
    }
    
    .benefit-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .benefit-desc {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .section-title {
        font-size: clamp(28px, 6vw, 40px);
    }
    
    .section-subtitle {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .why-study-abroad {
        padding: 50px 0;
    }
    
    .why-study-abroad .container {
        padding: 0 15px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .benefits-grid {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .benefit-card {
        padding: 20px 15px;
        gap: 12px;
    }
    
    .benefit-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .benefit-title {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .benefit-desc {
        font-size: 12px;
    }
    
    .section-title {
        font-size: clamp(24px, 7vw, 36px);
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .btn-consult {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .why-study-abroad {
        padding: 40px 0;
    }
    
    .why-study-abroad .container {
        padding: 0 12px;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .benefits-grid {
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .benefit-card {
        padding: 15px 12px;
        gap: 10px;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .benefit-title {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .benefit-desc {
        font-size: 11px;
    }
    
    .section-title {
        font-size: clamp(22px, 8vw, 32px);
    }
    
    .section-subtitle {
        font-size: 13px;
    }
    
    .btn-consult {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* ========================================
   DESTINATION COUNTRIES SECTION STYLES
   ======================================== */

.destination-countries {
    padding: 100px 0;
    background: #ffffff;
}

.destination-countries .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.destination-countries .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.destination-countries .section-tag {
    display: inline-block;
    background: rgba(74, 144, 226, 0.1);
    color: #4A90E2;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.destination-countries .section-title {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.destination-countries .section-subtitle {
    font-size: 16px;
    color: #64748b;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.country-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.country-card:hover {
    transform: translateY(-8px);
    border-color: #4A90E2;
    box-shadow: 0 20px 50px rgba(74, 144, 226, 0.15);
}

.country-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

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

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

.country-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
}

.university-badge {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
}

.country-info {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.country-flag {
    width: 36px;
    height: 24px;
    border-radius: 4px;
    object-fit: cover;
}

.country-details {
    flex: 1;
}

.country-details h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.country-details p {
    font-size: 12px;
    color: #64748b;
}

.country-card .btn-explore {
    width: 36px;
    height: 36px;
    min-width: 36px;
    padding: 0;
    border-radius: 50%;
    background: rgba(74, 144, 226, 0.1);
    border: none;
    color: #4A90E2;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.country-card .btn-explore:hover {
    background: linear-gradient(135deg, #4A90E2, #6B5CE7);
    color: #ffffff;
}

/* Enhanced Popular Countries Section Responsive Design */
@media (max-width: 1200px) {
    .destination-countries .container {
        padding: 0 20px;
    }
    
    .countries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .country-card {
        border-radius: 12px;
    }
    
    .country-info {
        padding: 15px;
    }
}

@media (max-width: 992px) {
    .destination-countries {
        padding: 80px 0;
    }
    
    .destination-countries .container {
        padding: 0 15px;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .country-card {
        border-radius: 12px;
    }
    
    .country-info {
        padding: 12px;
    }
    
    .country-details h3 {
        font-size: 16px;
    }
    
    .country-details p {
        font-size: 13px;
    }
    
    .university-badge {
        font-size: 11px;
        padding: 4px 8px;
    }
}

@media (max-width: 768px) {
    .destination-countries {
        padding: 60px 0;
    }

    .countries-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .country-card {
        display: flex;
        flex-direction: row;
        height: auto;
        min-height: 120px;
    }
    
    .country-image {
        width: 140px;
        height: 100%;
        min-height: 120px;
        flex-shrink: 0;
    }
    
    .country-info {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px;
    }
    
    .country-flag {
        width: 24px;
        height: 16px;
        margin-bottom: 8px;
    }
    
    .country-details h3 {
        font-size: 15px;
        margin-bottom: 4px;
    }
    
    .country-details p {
        font-size: 12px;
    }
    
    .btn-explore {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .university-badge {
        font-size: 10px;
        padding: 3px 6px;
        top: 8px;
        right: 8px;
    }
}

@media (max-width: 576px) {
    .destination-countries {
        padding: 50px 0;
    }
    
    .destination-countries .container {
        padding: 0 15px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .countries-grid {
        gap: 15px;
        max-width: 400px;
    }
    
    .country-card {
        min-height: 100px;
    }
    
    .country-image {
        width: 120px;
        min-height: 100px;
    }
    
    .country-info {
        padding: 12px;
    }
    
    .country-flag {
        width: 20px;
        height: 13px;
        margin-bottom: 6px;
    }
    
    .country-details h3 {
        font-size: 14px;
        margin-bottom: 3px;
    }
    
    .country-details p {
        font-size: 11px;
    }
    
    .btn-explore {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
    
    .university-badge {
        font-size: 9px;
        padding: 2px 5px;
        top: 6px;
        right: 6px;
    }
    
    .section-title {
        font-size: clamp(24px, 7vw, 36px);
    }
    
    .section-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .destination-countries {
        padding: 40px 0;
    }
    
    .destination-countries .container {
        padding: 0 12px;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .countries-grid {
        gap: 12px;
        max-width: 350px;
    }
    
    .country-card {
        min-height: 90px;
    }
    
    .country-image {
        width: 100px;
        min-height: 90px;
    }
    
    .country-info {
        padding: 10px;
    }
    
    .country-flag {
        width: 18px;
        height: 12px;
        margin-bottom: 4px;
    }
    
    .country-details h3 {
        font-size: 13px;
        margin-bottom: 2px;
    }
    
    .country-details p {
        font-size: 10px;
    }
    
    .btn-explore {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
    
    .university-badge {
        font-size: 8px;
        padding: 2px 4px;
        top: 4px;
        right: 4px;
    }
    
    .section-title {
        font-size: clamp(22px, 8vw, 32px);
    }
    
    .section-subtitle {
        font-size: 13px;
    }
}

/* ========================================
   STATS SHOWCASE SECTION STYLES
   ======================================== */

.stats-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.stats-showcase .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.stat-highlight {
    margin-bottom: 40px;
}

.stat-large {
    margin-bottom: 20px;
}

.stat-number-large {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    background: linear-gradient(135deg, #4A90E2, #6B5CE7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
}

.stat-label-large {
    font-size: 18px;
    color: #475569;
    margin-top: 8px;
    display: block;
}

.stat-description {
    font-size: 15px;
    color: #64748b;
    line-height: 1.8;
    max-width: 400px;
}

.mini-stats {
    display: flex;
    gap: 40px;
}

.mini-stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mini-stat i {
    font-size: 24px;
    color: #4A90E2;
}

.mini-number {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    display: block;
}

.mini-label {
    font-size: 13px;
    color: #64748b;
}

.choose-content .section-tag {
    display: inline-block;
    background: rgba(74, 144, 226, 0.1);
    color: #4A90E2;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.choose-title {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
    margin-bottom: 16px;
}

.choose-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 30px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon-bg {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.2), rgba(107, 92, 231, 0.2));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    font-size: 18px;
    flex-shrink: 0;
}

.feature-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.feature-info p {
    font-size: 13px;
    color: #64748b;
}

.btn-cta {
    padding: 16px 32px;
    background: linear-gradient(135deg, #4A90E2, #6B5CE7);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 40px rgba(74, 144, 226, 0.3);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(74, 144, 226, 0.4);
}

/* Enhanced Education Consultants Section Responsive Design */
@media (max-width: 1200px) {
    .stats-showcase .container {
        padding: 0 20px;
    }
    
    .showcase-grid {
        gap: 60px;
    }
    
    .stat-number-large {
        font-size: 48px;
    }
    
    .choose-title {
        font-size: clamp(28px, 4vw, 40px);
    }
}

@media (max-width: 1100px) {
    .showcase-grid {
        gap: 50px;
    }
    
    .stat-number-large {
        font-size: 44px;
    }
    
    .mini-stats {
        gap: 20px;
    }
    
    .mini-stat {
        padding: 15px;
    }
}

@media (max-width: 992px) {
    .stats-showcase {
        padding: 80px 0;
    }
    
    .stats-showcase .container {
        padding: 0 15px;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .stats-display {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .choose-content {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .stat-number-large {
        font-size: 42px;
    }
    
    .stat-label-large {
        font-size: 16px;
    }
    
    .stat-description {
        font-size: 15px;
    }
    
    .mini-stats {
        justify-content: center;
        gap: 15px;
    }
    
    .mini-stat {
        padding: 12px;
        min-width: 140px;
    }
    
    .mini-number {
        font-size: 20px;
    }
    
    .mini-label {
        font-size: 12px;
    }
    
    .choose-title {
        font-size: clamp(26px, 5vw, 36px);
        margin-bottom: 15px;
    }
    
    .choose-text {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .features-list {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .feature-item {
        padding: 15px;
        text-align: left;
    }
    
    .feature-info h4 {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .feature-info p {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .stats-showcase {
        padding: 60px 0;
    }
    
    .showcase-grid {
        gap: 30px;
    }
    
    .stat-number-large {
        font-size: 36px;
    }
    
    .stat-label-large {
        font-size: 14px;
    }
    
    .stat-description {
        font-size: 14px;
    }
    
    .mini-stats {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .mini-stat {
        width: 100%;
        max-width: 200px;
        flex-direction: row;
        text-align: left;
        padding: 10px 15px;
    }
    
    .mini-stat i {
        margin-bottom: 0;
        margin-right: 10px;
    }
    
    .mini-number {
        font-size: 18px;
    }
    
    .mini-label {
        font-size: 11px;
    }
    
    .choose-title {
        font-size: clamp(24px, 6vw, 32px);
        margin-bottom: 12px;
    }
    
    .choose-text {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .features-list {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .feature-item {
        padding: 12px;
        flex-direction: row;
        text-align: left;
        gap: 12px;
    }
    
    .feature-icon-bg {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .feature-info h4 {
        font-size: 15px;
        margin-bottom: 3px;
    }
    
    .feature-info p {
        font-size: 12px;
    }
    
    .btn-cta {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .stats-showcase {
        padding: 50px 0;
    }
    
    .stats-showcase .container {
        padding: 0 15px;
    }
    
    .showcase-grid {
        gap: 25px;
    }
    
    .stat-number-large {
        font-size: 32px;
    }
    
    .stat-label-large {
        font-size: 13px;
    }
    
    .stat-description {
        font-size: 13px;
    }
    
    .mini-stat {
        padding: 8px 12px;
    }
    
    .mini-number {
        font-size: 16px;
    }
    
    .mini-label {
        font-size: 10px;
    }
    
    .choose-title {
        font-size: clamp(22px, 7vw, 30px);
        margin-bottom: 10px;
    }
    
    .choose-text {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .features-list {
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .feature-item {
        padding: 10px;
        gap: 10px;
    }
    
    .feature-icon-bg {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .feature-info h4 {
        font-size: 14px;
        margin-bottom: 2px;
    }
    
    .feature-info p {
        font-size: 11px;
    }
    
    .btn-cta {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .stats-showcase {
        padding: 40px 0;
    }
    
    .stats-showcase .container {
        padding: 0 12px;
    }
    
    .showcase-grid {
        gap: 20px;
    }
    
    .stat-number-large {
        font-size: 28px;
    }
    
    .stat-label-large {
        font-size: 12px;
    }
    
    .stat-description {
        font-size: 12px;
    }
    
    .mini-stat {
        padding: 6px 10px;
    }
    
    .mini-number {
        font-size: 14px;
    }
    
    .mini-label {
        font-size: 9px;
    }
    
    .choose-title {
        font-size: clamp(20px, 8vw, 28px);
        margin-bottom: 8px;
    }
    
    .choose-text {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .features-list {
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .feature-item {
        padding: 8px;
        gap: 8px;
    }
    
    .feature-icon-bg {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .feature-info h4 {
        font-size: 13px;
        margin-bottom: 2px;
    }
    
    .feature-info p {
        font-size: 10px;
    }
    
    .btn-cta {
        padding: 8px 16px;
        font-size: 12px;
    }
}

@media (max-width: 640px) {
    .mini-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .mini-stat {
        flex-direction: column;
        text-align: center;
    }
}

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

.faq-section {
    padding: 100px 0;
    background: #ffffff;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

.faq-section .faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-section .section-tag {
    display: inline-block;
    background: rgba(74, 144, 226, 0.1);
    color: #4A90E2;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.faq-section .faq-title {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.faq-section .faq-subtitle {
    font-size: 16px;
    color: #64748b;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #4A90E2;
    box-shadow: 0 10px 40px rgba(74, 144, 226, 0.1);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.faq-answer {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.faq-label {
    font-size: 14px;
    font-weight: 700;
    color: #4A90E2;
    min-width: 24px;
}

.faq-text {
    font-size: 15px;
    line-height: 1.7;
    color: #1e293b;
}

.faq-answer .faq-text {
    color: #64748b;
}

/* Enhanced FAQ Section Responsive Design */
@media (max-width: 1200px) {
    .faq-section .container {
        padding: 0 20px;
    }
    
    .faq-header {
        margin-bottom: 45px;
    }
    
    .faq-list {
        gap: 20px;
    }
    
    .faq-item {
        padding: 25px;
    }
    
    .faq-question {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .faq-answer {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-section .container {
        padding: 0 15px;
    }
    
    .faq-header {
        margin-bottom: 40px;
    }
    
    .faq-list {
        gap: 18px;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-question {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .faq-answer {
        font-size: 13px;
    }
    
    .faq-title {
        font-size: clamp(28px, 5vw, 40px);
    }
    
    .faq-subtitle {
        font-size: 15px;
    }
}

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

    .faq-header {
        margin-bottom: 35px;
    }
    
    .faq-list {
        gap: 15px;
        max-width: 600px;
    }
    
    .faq-item {
        padding: 18px;
    }
    
    .faq-question {
        font-size: 14px;
        margin-bottom: 10px;
        line-height: 1.4;
    }
    
    .faq-answer {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .faq-label {
        font-size: 12px;
        width: 20px;
        height: 20px;
    }
    
    .faq-title {
        font-size: clamp(24px, 6vw, 36px);
        margin-bottom: 10px;
    }
    
    .faq-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-section .container {
        padding: 0 15px;
    }
    
    .faq-header {
        margin-bottom: 30px;
    }
    
    .faq-list {
        gap: 12px;
        max-width: 500px;
    }
    
    .faq-item {
        padding: 15px;
    }
    
    .faq-question {
        font-size: 13px;
        margin-bottom: 8px;
        line-height: 1.4;
    }
    
    .faq-answer {
        font-size: 11px;
        line-height: 1.5;
    }
    
    .faq-label {
        font-size: 11px;
        width: 18px;
        height: 18px;
    }
    
    .faq-title {
        font-size: clamp(22px, 7vw, 32px);
        margin-bottom: 8px;
    }
    
    .faq-subtitle {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-section .container {
        padding: 0 12px;
    }
    
    .faq-header {
        margin-bottom: 25px;
    }
    
    .faq-list {
        gap: 10px;
        max-width: 400px;
    }
    
    .faq-item {
        padding: 12px;
    }
    
    .faq-question {
        font-size: 12px;
        margin-bottom: 6px;
        line-height: 1.4;
    }
    
    .faq-answer {
        font-size: 10px;
        line-height: 1.5;
    }
    
    .faq-label {
        font-size: 10px;
        width: 16px;
        height: 16px;
    }
    
    .faq-title {
        font-size: clamp(20px, 8vw, 30px);
        margin-bottom: 6px;
    }
    
    .faq-subtitle {
        font-size: 12px;
    }
}

/* ========================================
   MYTHS SECTION STYLES
   ======================================== */

.myths-section {
    padding: 100px 0;
    background: #f8fafc;
}

.myths-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.myths-section .section-tag {
    display: inline-block;
    background: rgba(74, 144, 226, 0.1);
    color: #4A90E2;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.myths-title {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.myths-subtitle {
    font-size: 16px;
    color: #64748b;
}

.myths-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.myth-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.4s ease;
}

.myth-card:hover {
    transform: translateY(-8px);
    border-color: #4A90E2;
    box-shadow: 0 20px 50px rgba(74, 144, 226, 0.12);
}

.myth-card .myth-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.15), rgba(107, 92, 231, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #4A90E2;
    font-size: 24px;
}

.myth-card .myth-title {
    font-size: 17px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.myth-card .myth-description {
    font-size: 13px;
    color: #64748b;
    line-height: 1.7;
}

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

.btn-myths {
    padding: 16px 40px;
    background: linear-gradient(135deg, #4A90E2, #6B5CE7);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 40px rgba(74, 144, 226, 0.3);
}

.btn-myths:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(74, 144, 226, 0.4);
}

@media (max-width: 1200px) {
    .myths-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

    .myth-card {
        padding: 30px 24px;
    }
}

/* ========================================
   TOP UNIVERSITIES SECTION STYLES
   ======================================== */

.top-universities-section {
    padding: 100px 0;
    background: #ffffff;
}

.top-universities-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.top-universities-section .section-tag {
    display: inline-block;
    background: rgba(74, 144, 226, 0.1);
    color: #4A90E2;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.top-universities-title {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.top-universities-subtitle {
    font-size: 16px;
    color: #64748b;
}

.top-universities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.university-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.university-card:hover {
    transform: translateY(-8px);
    border-color: #4A90E2;
    box-shadow: 0 20px 50px rgba(74, 144, 226, 0.15);
}

.university-image-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
}

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

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

.uni-country {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.university-info {
    padding: 20px;
}

.university-name {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px;
}

.university-rank {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 8px;
}

.university-fee {
    font-size: 14px;
    font-weight: 600;
    color: #4A90E2;
}

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

.btn-universities {
    padding: 16px 40px;
    background: linear-gradient(135deg, #4A90E2, #6B5CE7);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 40px rgba(74, 144, 226, 0.3);
}

.btn-universities:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(74, 144, 226, 0.4);
}

/* Enhanced Top Universities Section Responsive Design */
@media (max-width: 1200px) {
    .top-universities-section .container {
        padding: 0 20px;
    }
    
    .top-universities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .university-info {
        padding: 15px;
    }
    
    .university-name {
        font-size: 16px;
    }
    
    .university-rank {
        font-size: 13px;
    }
    
    .university-fee {
        font-size: 12px;
    }
}

@media (max-width: 992px) {
    .top-universities-section {
        padding: 80px 0;
    }
    
    .top-universities-section .container {
        padding: 0 15px;
    }
    
    .top-universities-header {
        margin-bottom: 50px;
    }
    
    .top-universities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .university-info {
        padding: 12px;
    }
    
    .university-name {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .university-rank {
        font-size: 12px;
        margin-bottom: 4px;
    }
    
    .university-fee {
        font-size: 11px;
    }
    
    .uni-country {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .top-universities-title {
        font-size: clamp(28px, 5vw, 40px);
    }
    
    .top-universities-subtitle {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .top-universities-section {
        padding: 60px 0;
    }

    .top-universities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .university-card {
        display: flex;
        flex-direction: row;
        height: auto;
        min-height: 120px;
    }
    
    .university-image-wrapper {
        width: 140px;
        height: 100%;
        min-height: 120px;
        flex-shrink: 0;
    }
    
    .university-info {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 15px;
    }
    
    .university-name {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .university-rank {
        font-size: 11px;
        margin-bottom: 3px;
    }
    
    .university-fee {
        font-size: 10px;
    }
    
    .uni-country {
        font-size: 9px;
        padding: 2px 6px;
        top: 8px;
        right: 8px;
    }
    
    .top-universities-title {
        font-size: clamp(24px, 6vw, 36px);
        margin-bottom: 12px;
    }
    
    .top-universities-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .btn-universities {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .top-universities-section {
        padding: 50px 0;
    }
    
    .top-universities-section .container {
        padding: 0 15px;
    }
    
    .top-universities-header {
        margin-bottom: 40px;
    }
    
    .top-universities-grid {
        gap: 15px;
        max-width: 400px;
    }
    
    .university-card {
        min-height: 100px;
    }
    
    .university-image-wrapper {
        width: 120px;
        min-height: 100px;
    }
    
    .university-info {
        padding: 12px;
    }
    
    .university-name {
        font-size: 13px;
        margin-bottom: 4px;
    }
    
    .university-rank {
        font-size: 10px;
        margin-bottom: 2px;
    }
    
    .university-fee {
        font-size: 9px;
    }
    
    .uni-country {
        font-size: 8px;
        padding: 2px 5px;
        top: 6px;
        right: 6px;
    }
    
    .top-universities-title {
        font-size: clamp(22px, 7vw, 32px);
        margin-bottom: 10px;
    }
    
    .top-universities-subtitle {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .btn-universities {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .top-universities-section {
        padding: 40px 0;
    }
    
    .top-universities-section .container {
        padding: 0 12px;
    }
    
    .top-universities-header {
        margin-bottom: 30px;
    }
    
    .top-universities-grid {
        gap: 12px;
        max-width: 350px;
    }
    
    .university-card {
        min-height: 90px;
    }
    
    .university-image-wrapper {
        width: 100px;
        min-height: 90px;
    }
    
    .university-info {
        padding: 10px;
    }
    
    .university-name {
        font-size: 12px;
        margin-bottom: 3px;
    }
    
    .university-rank {
        font-size: 9px;
        margin-bottom: 2px;
    }
    
    .university-fee {
        font-size: 8px;
    }
    
    .uni-country {
        font-size: 7px;
        padding: 1px 4px;
        top: 4px;
        right: 4px;
    }
    
    .top-universities-title {
        font-size: clamp(20px, 8vw, 30px);
        margin-bottom: 8px;
    }
    
    .top-universities-subtitle {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .btn-universities {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* ========================================
   TESTIMONIALS SECTION STYLES - CLEAN LIGHT
   ======================================== */

.testimonials-section {
    padding: 100px 0;
    background: #ffffff;
}

.testimonials-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.testimonials-section .section-tag {
    display: inline-block;
    background: rgba(74, 144, 226, 0.1);
    color: #4A90E2;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.testimonials-title {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.testimonials-subtitle {
    font-size: 16px;
    color: #64748b;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: #4A90E2;
    box-shadow: 0 20px 50px rgba(74, 144, 226, 0.12);
}

.testimonial-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.student-profile {
    display: flex;
    align-items: center;
    gap: 14px;
}

.student-profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f1f5f9;
}

.student-details {
    display: flex;
    flex-direction: column;
}

.student-name {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}

.student-location {
    font-size: 13px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 4px;
}

.student-location i {
    color: #4A90E2;
    font-size: 12px;
}

.program-badge {
    font-size: 11px;
    color: #4A90E2;
    background: rgba(74, 144, 226, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
}

.testimonial-content {
    position: relative;
}

.quote-icon {
    font-size: 24px;
    color: #4A90E2;
    opacity: 0.3;
    margin-bottom: 8px;
    display: block;
}

.testimonial-text {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
}

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

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

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

    .testimonial-card {
        padding: 24px;
    }

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

/* ========================================
   SERVICES SECTION STYLES
   ======================================== */

.services-section {
    padding: 100px 0;
    background: #f8fafc;
}

.services-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.services-header .section-tag {
    display: inline-block;
    background: rgba(74, 144, 226, 0.1);
    color: #4A90E2;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.services-title {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.services-subtitle {
    font-size: 16px;
    color: #64748b;
}

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

.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #4A90E2;
    box-shadow: 0 20px 60px rgba(74, 144, 226, 0.12);
}

.service-card.featured {
    border-color: rgba(74, 144, 226, 0.3);
}

.featured-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #4A90E2, #6B5CE7);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.2), rgba(107, 92, 231, 0.2));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    font-size: 24px;
    margin-bottom: 24px;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-list li {
    font-size: 13px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-list li i {
    color: #4A90E2;
    font-size: 12px;
}

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

.btn-services {
    padding: 16px 40px;
    background: linear-gradient(135deg, #4A90E2, #6B5CE7);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 40px rgba(74, 144, 226, 0.3);
}

.btn-services:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(74, 144, 226, 0.4);
}

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

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

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

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

/* ========================================
   FLOATING ENQUIRY STYLES
   ======================================== */

.floating-enquiry {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}

.enquiry-toggle {
    background: linear-gradient(180deg, #4A90E2, #6B5CE7);
    color: #ffffff;
    border: none;
    padding: 16px 12px;
    border-radius: 12px 0 0 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 12px;
    box-shadow: -4px 4px 20px rgba(74, 144, 226, 0.4);
    transition: all 0.3s ease;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    min-height: 140px;
    letter-spacing: 2px;
}

.enquiry-toggle i {
    font-size: 20px;
    writing-mode: horizontal-tb;
    transform: rotate(0deg);
}

.enquiry-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    white-space: nowrap;
}

.enquiry-toggle:hover {
    transform: translateX(-5px);
    box-shadow: -8px 4px 30px rgba(74, 144, 226, 0.5);
    padding-right: 16px;
}

/* Enquiry Modal */
.enquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.enquiry-modal.active {
    opacity: 1;
    visibility: visible;
}

.enquiry-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.enquiry-form-container {
    background: #ffffff;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
}

.enquiry-modal.active .enquiry-form-container {
    transform: scale(1) translateY(0);
}

.enquiry-header {
    background: linear-gradient(135deg, #4A90E2, #6B5CE7);
    color: #ffffff;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.enquiry-header h3 {
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.close-enquiry {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    transition: all 0.3s ease;
}

.close-enquiry:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.enquiry-form {
    padding: 30px;
}

.enquiry-form .form-group {
    margin-bottom: 20px;
}

.enquiry-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.enquiry-form label i {
    color: #4A90E2;
}

.enquiry-form input,
.enquiry-form select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.enquiry-form input:focus,
.enquiry-form select:focus {
    outline: none;
    border-color: #4A90E2;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
}

.btn-submit-enquiry {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #4A90E2, #6B5CE7);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.btn-submit-enquiry:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.4);
}

.enquiry-note {
    text-align: center;
    font-size: 12px;
    color: #64748b;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.enquiry-note i {
    color: #4A90E2;
}

@media (max-width: 768px) {
    .floating-enquiry {
        right: 0;
    }

    .enquiry-toggle {
        padding: 12px 10px;
        min-height: 120px;
        font-size: 11px;
    }

    .enquiry-toggle i {
        font-size: 18px;
    }

    .enquiry-form-container {
        width: 95%;
        border-radius: 16px;
    }

    .enquiry-form {
        padding: 20px;
    }
}

/* ========================================
   MODERN HEADER STYLES - LIGHT THEME
   ======================================== */

/* Top Info Bar */
.header-top-bar {
    background: linear-gradient(135deg, #4A90E2, #6B5CE7);
    color: #ffffff;
    padding: 10px 0;
    font-size: 13px;
}

.header-top-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-left {
    display: flex;
    gap: 25px;
}

.header-top-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-top-left i {
    font-size: 12px;
}

.header-top-right {
    font-weight: 500;
}

/* Main Header */
.main-header {
    background: #ffffff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.main-header.sticky {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.header-logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.main-header.sticky .logo-img {
    height: 42px;
}

/* Social Media Navigation */
.header-social-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #64748b;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-link:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.social-link[title="Facebook"]:hover {
    background: #1877f2;
}

.social-link[title="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link[title="LinkedIn"]:hover {
    background: #0a66c2;
}

.social-link[title="YouTube"]:hover {
    background: #ff0000;
}

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

/* CTA Button */
.header-cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #4A90E2, #6B5CE7);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.header-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

/* WhatsApp Button */
.header-whatsapp-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #22c55e;
    color: #ffffff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.header-whatsapp-btn:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border: none;
    border-radius: 10px;
    color: #475569;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: #e2e8f0;
    color: #4A90E2;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #ffffff;
    z-index: 1999;
    transition: right 0.4s ease;
    padding: 60px 30px 30px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border: none;
    border-radius: 50%;
    color: #475569;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: #e2e8f0;
    color: #ef4444;
    transform: rotate(90deg);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 30px;
}

.mobile-nav-link {
    color: #475569;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 0;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.mobile-nav-link:hover {
    color: #4A90E2;
    padding-left: 10px;
}

.mobile-menu-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: #22c55e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-whatsapp-btn:hover {
    background: #16a34a;
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #4A90E2, #6B5CE7);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

body.menu-open {
    overflow: hidden;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .header-social-nav {
        gap: 8px;
    }
    
    .social-link {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .header-social-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-cta-btn span {
        display: none;
    }

    .header-cta-btn {
        padding: 12px;
    }

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

@media (max-width: 768px) {
    .header-top-bar {
        display: none;
    }

    .main-header {
        padding: 12px 0;
    }

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

    .header-social-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-cta-btn span {
        display: none;
    }
    
    .header-cta-btn {
        padding: 10px;
        width: 44px;
        height: 44px;
        justify-content: center;
    }
    
    .header-whatsapp-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .mobile-menu {
        width: 280px;
    }
    
    .logo-img {
        height: 40px;
    }
}

@media (max-width: 576px) {
    .main-header {
        padding: 10px 0;
    }
    
    .header-container {
        padding: 0 12px;
    }

    .logo-img {
        height: 34px;
    }

    .header-whatsapp-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .mobile-menu {
        width: 100%;
        padding: 60px 20px 20px;
    }
}