/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #2C3E50;
    --primary-yellow: #FFD700;
    --dark-blue: #1a252f;
    --light-blue: #E8EAF6;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --gray-bg: #F5F5F5;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 15px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.2);
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Bar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-blue);
    text-decoration: none;
    cursor: pointer;
}

a.logo:hover {
    text-decoration: none;
    color: var(--primary-blue);
    opacity: 0.9;
}

.logo img {
    width: 57px;
    height: 57px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 15px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-blue);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropbtn {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 280px;
    max-height: 500px;
    overflow-y: auto;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 8px;
    top: 100%;
    left: 0;
}

.dropdown-category {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 10px 16px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-category:first-child {
    border-top: none;
}

.dropdown-content a {
    color: var(--text-dark);
    padding: 6px 20px;
    text-decoration: none;
    display: block;
    transition: all 0.3s;
    font-size: 14px;
    border-left: 3px solid transparent;
}

.dropdown-content a:hover {
    background-color: var(--light-blue);
    border-left-color: var(--primary-blue);
    padding-left: 24px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* University Dropdown */
.university-dropdown {
    min-width: 320px;
    padding: 10px 0;
}

.university-dropdown .university-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    border-left: 3px solid transparent;
    transition: all 0.3s;
}

.university-dropdown .university-item:hover {
    background-color: var(--light-blue);
    border-left-color: var(--primary-blue);
}

.university-dropdown .university-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
    background: #f5f5f5;
    padding: 5px;
}

.university-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.university-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.university-courses {
    font-size: 12px;
    color: var(--primary-blue);
    font-weight: 500;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section Carousel */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    width: 100%;
}

.hero-slide {
    display: none;
    background: linear-gradient(135deg, #2C3E50 0%, #1a252f 50%, #2C3E50 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.5s ease-in-out;
    min-height: 500px;
}

.hero-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Slide 1 Styles */
.hero-bg-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-bg-icons i {
    position: absolute;
    color: rgba(255, 255, 255, 0.08);
    font-size: 40px;
}

.hero-bg-icons i:nth-child(1) { top: 10%; left: 5%; font-size: 50px; }
.hero-bg-icons i:nth-child(2) { top: 60%; left: 3%; font-size: 35px; }
.hero-bg-icons i:nth-child(3) { top: 80%; left: 15%; font-size: 45px; }
.hero-bg-icons i:nth-child(4) { top: 15%; right: 35%; font-size: 30px; }
.hero-bg-icons i:nth-child(5) { top: 70%; left: 40%; font-size: 35px; }
.hero-bg-icons i:nth-child(6) { bottom: 15%; left: 25%; font-size: 40px; }

.hero-section .container {
    position: relative;
    z-index: 2;
    padding: 0 40px;
    max-width: 1200px;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-features {
    padding: 20px 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 22px;
    color: #ffffff;
    font-weight: 500;
    font-style: italic;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.feature-icon i {
    color: #2C3E50;
    font-size: 22px;
}

.feature-text {
    color: #ffffff;
}

.feature-text strong {
    font-weight: 700;
    color: #FFD700;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.student-circle {
    width: 360px;
    height: 360px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
}

.student-circle img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top;
    position: relative;
    top: 72px;
}

/* Slide 2 Styles */
.hero-slide-2 {
    background: linear-gradient(135deg, #2C3E50 0%, #1a252f 50%, #2C3E50 100%);
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.geometric-shape {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
}

.geometric-shape:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -100px;
    right: 10%;
    transform: rotate(45deg);
}

.geometric-shape:nth-child(2) {
    width: 300px;
    height: 300px;
    top: 50%;
    right: 5%;
    transform: rotate(30deg);
}

.geometric-shape:nth-child(3) {
    width: 200px;
    height: 200px;
    bottom: 10%;
    right: 20%;
    transform: rotate(60deg);
}

.hero-text-content {
    max-width: 600px;
}

.hero-main-title {
    font-size: 45px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-main-title span {
    display: block;
}

.text-yellow {
    color: #FFD700;
}

.text-white {
    color: #ffffff;
}

.hero-compare-box {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 15px;
    border: 2px solid #FFD700;
}

.compare-badge {
    background: #FFD700;
    color: #2C3E50;
    font-size: 32px;
    font-weight: 800;
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 10px;
}

.compare-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.hero-comparison-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-comparison-image img {
    max-width: 100%;
    /* height: auto; */
    /* max-height: 450px; */
    max-width: 450px;
}

/* Carousel Controls */
.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(255, 215, 0, 0.9);
    color: #2C3E50;
    border-color: #FFD700;
    transform: translateY(-50%) scale(1.1);
}

/* Carousel Dots */
.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #FFD700;
    transform: scale(1.2);
}

/* Hero Form */
.hero-form {
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.hero-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.hero-form:hover {
    transform: translateY(-5px);
}

.form-header {
    text-align: center;
    margin-bottom: 10px;
}

.limited-offer {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B6B, #FF4757);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    animation: pulse 2s infinite;
}

.hero-form h3 {
    color: var(--primary-blue);
    font-size: 28px;
    margin-bottom: 10px;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 14px;
}

.form-note {
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
    color: #4CAF50;
    font-weight: 500;
}

.form-group {
    margin-bottom: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #FAFAFA;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
    transform: translateY(-2px);
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-row.phone-code {
    grid-template-columns: 100px 1fr;
}

.phone-code {
    flex: 0 0 110px;
}

.phone-number {
    flex: 1;
}

.btn-apply {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-apply::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-apply:hover::before {
    left: 100%;
}

.btn-apply:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.5);
}

.btn-apply:active {
    transform: translateY(-1px);
}

/* Trust Section */
.trust-section {
    background: #ffffff;
    padding: 30px 0;
    margin-top: 0;
    border-bottom: 1px solid #eee;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 10px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    padding: 15px 18px;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    flex: 1 1 auto;
    min-width: 180px;
    max-width: 220px;
}

.trust-item:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.trust-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.trust-item-text {
    text-align: left;
}

.trust-item h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--primary-blue);
}

.trust-item p {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

/* Courses Section */
.courses-section {
    padding: 30px 0;
    background: var(--gray-bg);
}

.section-title {
    text-align: center;
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 50px;
    font-weight: 400;
}

.courses-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

.course-categories {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.category-btn {
    padding: 18px 25px;
    background: var(--white);
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    text-align: left;
}

.category-btn:hover,
.category-btn.active {
     background: var(--primary-blue);
     color: var(--white);
    transform: translateX(5px);
}

.course-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.course-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
}

.course-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.course-image {
    position: relative;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
    z-index: 10;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }
}

.badge.trending {
    background: linear-gradient(135deg, #FF6B6B, #FF4757);
    animation: trendingGlow 2s ease-in-out infinite;
}

@keyframes trendingGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 71, 87, 0.5);
    }
    50% {
        box-shadow: 0 6px 25px rgba(255, 71, 87, 0.8);
    }
}

.badge.few-seats {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    animation: seatsShake 3s ease-in-out infinite;
}

@keyframes seatsShake {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-3deg);
    }
    75% {
        transform: rotate(3deg);
    }
}

.course-info {
    padding: 18px 16px;
}

.course-info h3 {
    color: var(--primary-blue);
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
}

.course-full-name {
    color: var(--text-light);
    font-size: 12px;
    margin-bottom: 12px;
    font-style: italic;
    line-height: 1.3;
}

.course-details {
    margin-bottom: 15px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--text-dark);
}

.detail-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.detail-text {
    line-height: 1.5;
}

.detail-text strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.course-duration {
    color: var(--text-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.course-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn-apply-course {
    padding: 9px 18px;
    background: linear-gradient(135deg, #FF6B6B, #FF4757);
    color: var(--white);
    border: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
    flex: 1;
}

.btn-apply-course:hover {
    background: linear-gradient(135deg, #FF4757, #FF3838);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.5);
}

.btn-apply-course:active {
    transform: translateY(-1px);
}

.btn-compare {
    padding: 9px 16px;
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 1;
}

.btn-compare:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.3);
}

.btn-compare:active {
    transform: translateY(-1px);
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}

.partners-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    animation: slidePartners 20s linear infinite;
    width: max-content;
}

@keyframes slidePartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partners-section .container {
    overflow: hidden;
}

.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: var(--gray-bg);
    border-radius: 10px;
    transition: transform 0.3s;
    min-width: 150px;
    flex-shrink: 0;
}

.partner-logo:hover {
    transform: scale(1.05);
    animation-play-state: paused;
}

.partners-grid:hover {
    animation-play-state: paused;
}

.partner-logo img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    transition: filter 0.3s;
}

/* Counselors Section */
.counselors-section {
    padding: 80px 0;
    background: var(--gray-bg);
    overflow: hidden;
}

.counselors-grid {
    display: flex;
    gap: 30px;
    animation: slideCounselors 25s linear infinite;
    width: max-content;
}

@keyframes slideCounselors {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.counselors-section .container {
    overflow: hidden;
}

.counselor-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    min-width: 260px;
    max-width: 260px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.counselor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.counselors-grid:hover {
    animation-play-state: paused;
}

/* Full-bleed cover image at the top */
.counselor-img-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.counselor-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.4s ease;
}

.counselor-card:hover .counselor-img-wrap img {
    transform: scale(1.05);
}

/* Gradient scrim at the bottom of the image for text readability */
.counselor-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0));
    pointer-events: none;
}

/* Info section below the image */
.counselor-info {
    padding: 18px 20px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.counselor-card h3 {
    color: var(--primary-blue);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.3;
}

.qualification {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.stats {
    display: flex;
    justify-content: space-around;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #eef0f4;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.stat-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.2;
}

.stat-label {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.3;
}

/* Program Pages - New Header Design */
.program-header-new {
    background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
    color: var(--white);
    padding: 100px 0 60px;
    padding-top: 100px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    min-height: 350px;
}

.program-header-new .header-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.program-header-new .bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.program-header-new .bg-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: #FFD700;
    top: -100px;
    right: 20%;
}

.program-header-new .bg-shape.shape-2 {
    width: 200px;
    height: 200px;
    background: #FFD700;
    bottom: -50px;
    left: 10%;
}

.program-header-new .bg-shape.shape-3 {
    width: 150px;
    height: 150px;
    background: #FFD700;
    top: 50%;
    right: 5%;
}

.header-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.header-text h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.header-text h1 span {
    display: block;
}

.header-text h1 .text-gold {
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.header-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 450px;
}

.header-illustration {
    text-align: center;
}

.header-illustration img {
    max-width: 100%;
    max-height: 320px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* Legacy Program Header (keep for compatibility) */
.program-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    padding: 90px 0 60px;
    text-align: center;
    margin-top: 0;
}

.program-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.program-header p {
    font-size: 20px;
}

/* University Comparison */
.university-comparison {
    padding: 80px 0;
    background: var(--gray-bg);
}

.comparison-table {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1000px;
}

.comparison-table thead {
    background: var(--primary-blue);
    color: var(--white);
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #E0E0E0;
}

.comparison-table td:first-child {
    padding: 8px 12px;
}

.comparison-table th {
    font-weight: 600;
    font-size: 16px;
}

.comparison-table tbody tr {
    transition: background-color 0.3s;
}

.comparison-table tbody tr:hover {
    background-color: var(--light-blue);
}

.university-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.university-info img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.comparison-table .university-info img {
    width: 150px;
    height: auto;
    object-fit: contain;
}

.btn-apply-small {
    padding: 10px 20px;
    background: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.btn-apply-small:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

.btn-website {
    padding: 10px 20px;
    background: var(--white);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid var(--primary-blue);
}

.btn-website:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* Contact Page */
.contact-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.contact-header p {
    font-size: 20px;
}

.contact-section {
    padding: 80px 0;
    background: var(--gray-bg);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    color: var(--primary-blue);
    font-size: 28px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-blue);
    width: 30px;
}

.info-item h3 {
    color: var(--primary-blue);
    font-size: 18px;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-light);
    font-size: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-yellow);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    color: var(--primary-blue);
    font-size: 28px;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-yellow);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-yellow);
    color: var(--dark-blue);
    transform: translateY(-5px) rotate(360deg);
}

.footer-section p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom a {
    color: var(--primary-yellow);
    text-decoration: none;
}

/* Application Modal Popup */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: slideDown 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 25px;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.modal-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.modal-header p {
    margin: 5px 0 0 0;
    font-size: 13px;
    opacity: 0.9;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 20px 25px;
}

.course-info-box {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    border-left: 4px solid #667eea;
}

.course-info-box h3 {
    color: #2C3E50;
    font-size: 16px;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.course-info-box p {
    margin: 4px 0;
    color: #666;
    font-size: 13px;
}

.course-info-box p strong {
    color: #2C3E50;
}

.modal-form .form-group {
    margin-bottom: 15px;
}

.modal-form label {
    display: block;
    margin-bottom: 6px;
    color: #2C3E50;
    font-weight: 600;
    font-size: 13px;
}

.modal-form label .required {
    color: #FF4757;
}

.modal-form input,
.modal-form select {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #FAFAFA;
}

.modal-form input:focus,
.modal-form select:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.modal-form input:disabled,
.modal-form select:disabled {
    background: #f0f0f0;
    color: #666;
    cursor: not-allowed;
}

.modal-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.modal-form .phone-row {
    grid-template-columns: 100px 1fr;
}

.modal-form .btn-submit {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    margin-top: 5px;
}

.modal-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.modal-form .btn-submit:active {
    transform: translateY(0);
}

/* Sticky Icons */
.sticky-icons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.sticky-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.sticky-icon.whatsapp {
    background: #25D366;
}

.sticky-icon.contact {
    background: var(--primary-blue);
}

.sticky-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-links.active {
        left: 0;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        display: none;
        min-width: auto;
        max-height: none;
    }

    .dropdown-content a {
        padding: 4px 20px;
        font-size: 13px;
    }

    .dropdown-category {
        padding: 8px 16px;
        font-size: 12px;
    }

    .dropdown:hover .dropdown-content {
        display: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-text-content {
        text-align: center;
    }

    .hero-main-title {
        font-size: 28px;
    }

    .compare-badge {
        font-size: 24px;
    }

    .compare-text {
        font-size: 16px;
    }

    .hero-comparison-image {
        margin-top: 30px;
    }

    .hero-prev,
    .hero-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .hero-prev {
        left: 10px;
    }

    .hero-next {
        right: 10px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .hero-image img {
        height: 400px;
    }
    
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .trust-item img {
        width: 50px;
        height: 50px;
    }

    .trust-item h4 {
        font-size: 26px;
    }

    .courses-layout {
        grid-template-columns: 1fr;
    }

    .course-categories {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        overflow-x: visible;
    }

    .category-btn {
        white-space: normal;
        min-width: auto;
        padding: 12px 15px;
        font-size: 13px;
        text-align: center;
        line-height: 1.3;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text h2 {
        font-size: 24px;
    }

    .section-title {
        font-size: 32px;
    }

    .program-header h1,
    .contact-header h1 {
        font-size: 36px;
    }

    .comparison-table {
        overflow-x: visible;
        overflow: visible;
    }

    .comparison-table table {
        display: block;
        min-width: unset;
        width: 100%;
    }

    .comparison-table thead {
        display: none;
    }

    .comparison-table tbody {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .comparison-table tr {
        display: block;
        background: white;
        border-radius: 15px;
        padding: 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border: 2px solid #f0f0f0;
    }

    .comparison-table td {
        display: block;
        padding: 12px 0;
        border: none;
        text-align: left;
    }

    .comparison-table td:before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--primary-blue);
        display: block;
        margin-bottom: 5px;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .comparison-table .university-info {
        flex-direction: row;
        gap: 15px;
        align-items: center;
        padding: 10px 0;
    }
    .university-page {
        background: var(--white);
    }

    .university-hero {
        padding: 60px 0;
        background: linear-gradient(120deg, #f6f8ff 0%, #ffffff 100%);
    }

    .university-hero-grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 40px;
        align-items: center;
    }

    .section-kicker {
        display: inline-block;
        padding: 6px 14px;
        border-radius: 20px;
        background: var(--primary-blue);
        color: var(--white);
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }

    .university-hero-content h1 {
        font-size: 38px;
        margin-bottom: 12px;
        color: var(--primary-blue);
    }

    .hero-subtitle {
        color: var(--text-light);
        margin-bottom: 20px;
    }

    .badge-list {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 20px;
    }

    .badge-item {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 6px 12px;
        background: var(--white);
        border-radius: 10px;
        box-shadow: var(--shadow-sm);
        font-size: 12px;
        color: var(--text-dark);
    }

    .badge-item img {
        width: 32px;
        height: 32px;
        object-fit: contain;
    }

    .hero-highlights {
        list-style: none;
        display: grid;
        gap: 8px;
        color: var(--text-dark);
    }

    .hero-highlights li::before {
        content: "\2022";
        color: var(--primary-blue);
        font-weight: bold;
        display: inline-block;
        width: 16px;
    }

    .university-hero-card {
        background: var(--white);
        border-radius: 18px;
        padding: 24px;
        box-shadow: var(--shadow-md);
        display: grid;
        gap: 16px;
    }

    .hero-logo {
        width: 120px;
        height: auto;
    }

    .hero-banner {
        width: 100%;
        border-radius: 14px;
        border: 1px solid #e8e8e8;
    }

    .hero-card-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        font-weight: 600;
        color: var(--primary-blue);
    }

    .btn-primary {
        background: var(--primary-blue);
        color: var(--white);
        padding: 10px 16px;
        border-radius: 20px;
        text-decoration: none;
        font-size: 13px;
    }

    .section-block {
        padding: 60px 0;
    }

    .light-section {
        background: var(--gray-bg);
    }

    .section-body p {
        margin-bottom: 12px;
        color: var(--text-dark);
    }

    .info-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
        margin-top: 24px;
    }

    .info-card {
        background: var(--white);
        border-radius: 14px;
        padding: 20px;
        box-shadow: var(--shadow-sm);
    }

    .info-card h3 {
        margin-bottom: 10px;
        color: var(--primary-blue);
        font-size: 18px;
    }

    .table-wrap {
        overflow-x: auto;
        background: var(--white);
        border-radius: 14px;
        box-shadow: var(--shadow-sm);
    }

    .data-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 640px;
    }

    .data-table th,
    .data-table td {
        padding: 14px 16px;
        border-bottom: 1px solid #e6e6e6;
        text-align: left;
        font-size: 14px;
    }

    .data-table th {
        background: var(--light-blue);
        color: var(--primary-blue);
        font-weight: 600;
    }

    .facts-list {
        list-style: none;
        display: grid;
        gap: 12px;
        margin-top: 20px;
    }

    .facts-list li::before {
        content: "\2714";
        color: var(--primary-blue);
        font-weight: bold;
        display: inline-block;
        width: 20px;
    }

    .logo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 16px;
        margin-top: 24px;
    }

    .logo-card {
        background: var(--white);
        border-radius: 12px;
        padding: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--shadow-sm);
    }

    .logo-card img {
        width: 100%;
        max-width: 90px;
        height: auto;
        object-fit: contain;
    }

    .process-list {
        padding-left: 20px;
        margin-top: 16px;
    }

    .process-list li {
        margin-bottom: 10px;
    }

    .section-note {
        margin-top: 14px;
        font-size: 14px;
        color: var(--text-light);
    }

    .two-column {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 24px;
        align-items: center;
    }

    .certificate-card {
        background: var(--white);
        border-radius: 16px;
        padding: 16px;
        box-shadow: var(--shadow-sm);
    }

    .certificate-card img {
        width: 100%;
        border-radius: 12px;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 16px;
        margin: 24px 0;
    }

    .stat-card {
        background: var(--light-blue);
        border-radius: 12px;
        padding: 16px;
        text-align: center;
        color: var(--primary-blue);
        font-weight: 600;
    }

    .stat-card span {
        display: block;
        margin-top: 6px;
        color: var(--text-light);
        font-weight: 400;
    }

    .faq-list details {
        background: var(--white);
        border-radius: 12px;
        padding: 14px 18px;
        box-shadow: var(--shadow-sm);
        margin-bottom: 12px;
    }

    .faq-list summary {
        cursor: pointer;
        font-weight: 600;
        color: var(--primary-blue);
    }

    .faq-list p {
        margin-top: 10px;
        color: var(--text-dark);
    }

    @media (max-width: 900px) {
        .university-hero-grid,
        .two-column {
            grid-template-columns: 1fr;
        }

        .hero-card-footer {
            flex-direction: column;
            align-items: flex-start;
        }
    }

    .comparison-table .university-info img {
        width: 220px;
        height: 110px;
        object-fit: contain;
    }

    .comparison-table .university-info span {
        font-size: 18px;
        font-weight: 600;
        color: var(--primary-blue);
    }

    .comparison-table .btn-apply-small {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        margin-top: 10px;
    }

    .modal-content {
        width: 95%;
        max-height: 90vh;
    }

    .modal-header {
        padding: 18px 20px;
    }

    .modal-body {
        padding: 18px 20px;
    }
}

@media (max-width: 768px) {
    .hero-section .container {
        padding: 0 25px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-features {
        order: 1;
    }

    .hero-image {
        order: 2;
    }

    .feature-list li {
        font-size: 16px;
        gap: 15px;
        margin-bottom: 18px;
        justify-content: flex-start;
        text-align: left;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon i {
        font-size: 18px;
    }

    .student-circle {
        width: 250px;
        height: 250px;
    }

    .hero-bg-icons i {
        font-size: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-form .form-row {
        grid-template-columns: 1fr;
    }

    .modal-form .phone-row {
        grid-template-columns: 100px 1fr;
    }

    .course-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .partners-grid {
        gap: 30px;
    }

    .counselors-grid {
        gap: 25px;
    }

    .sticky-icons {
        bottom: 20px;
        right: 20px;
    }

    .sticky-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-form {
        padding: 25px 20px;
    }

    .hero-form h3 {
        font-size: 24px;
    }

    .detail-icon {
        font-size: 16px;
    }

    .detail-text {
        font-size: 12px;
    }
}

@media (max-width: 580px) {
    .hero-section .container {
        padding: 0 20px;
    }

    .course-cards {
        grid-template-columns: 1fr;
    }

    .course-categories {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .category-btn {
        padding: 14px 20px;
        font-size: 14px;
    }

    .logo {
        font-size: 18px;
    }

    .logo img {
        width: 35px;
        height: 35px;
    }

    .hero-image img {
        height: 180px;
    }

    .hero-text {
        padding: 20px 30px;
    }

    .hero-text h1 {
        font-size: 24px;
    }

    .hero-text h2 {
        font-size: 18px;
    }

    .hero-form {
        padding: 25px;
    }

    .section-title {
        font-size: 28px;
    }

    .partners-grid {
        gap: 20px;
    }

    .counselors-grid {
        gap: 20px;
    }

    .course-card {
        border-radius: 12px;
    }

    .course-info h3 {
        font-size: 16px;
    }

    .course-full-name {
        font-size: 11px;
    }

    .detail-item {
        font-size: 12px;
    }

    .btn-apply-course,
    .btn-compare {
        font-size: 10px;
        padding: 8px 12px;
    }

    .modal-content {
        width: 95%;
        max-width: none;
        border-radius: 15px;
    }

    .modal-header {
        padding: 15px 18px;
        border-radius: 15px 15px 0 0;
    }

    .modal-header h2 {
        font-size: 18px;
    }

    .modal-header p {
        font-size: 12px;
    }

    .modal-body {
        padding: 15px 18px;
    }

    .course-info-box {
        padding: 12px;
    }

    .course-info-box h3 {
        font-size: 14px;
    }

    .course-info-box p {
        font-size: 12px;
    }

    .modal-form label {
        font-size: 12px;
    }

    .modal-form input,
    .modal-form select {
        padding: 9px 11px;
        font-size: 13px;
    }

    .modal-form .btn-submit {
        padding: 11px;
        font-size: 14px;
    }

    .contact-header h1,
    .program-header h1 {
        font-size: 28px;
    }

    .contact-header p,
    .program-header p {
        font-size: 14px;
    }

    /* New Program Header Responsive */
    .program-header-new {
        padding: 60px 0 40px;
        min-height: auto;
    }

    .header-content-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .header-text h1 {
        font-size: 36px;
    }

    .header-text h1 span {
        display: inline;
    }

    .header-subtitle {
        margin: 0 auto;
        font-size: 16px;
    }

    .header-illustration img {
        max-height: 220px;
    }

    .program-header-new .bg-shape.shape-1 {
        width: 150px;
        height: 150px;
    }

    .program-header-new .bg-shape.shape-2 {
        width: 100px;
        height: 100px;
    }

    .program-header-new .bg-shape.shape-3 {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 16px;
    }

    .partners-grid {
        gap: 15px;
    }
}

/* ================================
   Page Header Styles
   ================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a252f 100%);
    padding: 100px 0 60px;
    text-align: center;
    margin-top: 0;
}

.page-header h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* ================================
   About Page Styles
   ================================ */
.about-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-content h2 {
    color: var(--primary-blue);
    font-size: 32px;
    margin-bottom: 25px;
}

.about-content p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Mission & Vision */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.mission-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.mission-card:hover {
    transform: translateY(-10px);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), #1a252f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mission-icon i {
    font-size: 32px;
    color: #fff;
}

.mission-card h3 {
    color: var(--primary-blue);
    font-size: 22px;
    margin-bottom: 15px;
}

.mission-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* About Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: linear-gradient(135deg, var(--primary-blue), #1a252f);
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 80px;
}

.stat-item {
    text-align: center;
}

.about-stats .stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #FFD700;
    display: block;
}

.about-stats .stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 5px;
    display: block;
}

/* Why Choose Us */
.why-choose-us {
    text-align: center;
}

.why-choose-us h2 {
    color: var(--primary-blue);
    font-size: 32px;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    border: 1px solid #eee;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
}

.feature-card i {
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.feature-card h4 {
    color: var(--text-dark);
    font-size: 18px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* ================================
   Blog Page Styles
   ================================ */
.blog-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.blog-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.blog-category-btn {
    padding: 10px 25px;
    border: 2px solid var(--primary-blue);
    background: #fff;
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.blog-category-btn:hover,
.blog-category-btn.active {
    background: var(--primary-blue);
    color: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-blue);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.blog-meta span {
    color: var(--text-light);
    font-size: 13px;
}

.blog-meta i {
    margin-right: 5px;
    color: var(--primary-blue);
}

.blog-content h3 {
    color: var(--text-dark);
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 12px;
}

.load-more-container {
    text-align: center;
}

.btn-load-more {
    padding: 15px 40px;
    background: var(--primary-blue);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-load-more:hover {
    background: #1a252f;
    transform: translateY(-3px);
}

/* ================================
   Responsive Styles for New Pages
   ================================ */
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
        text-align: center;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 30px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-header p {
        font-size: 16px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .about-stats .stat-number {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-categories {
        gap: 10px;
    }

    .blog-category-btn {
        padding: 8px 18px;
        font-size: 13px;
    }
}

/* ================================
   Counselling Popup Styles
   ================================ */

/* Floating Trigger Button */
.counselling-trigger {
    position: fixed;
    bottom: 100px;
    left: 20px;
    background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
    color: white;
    padding: 10px 18px;
    border-radius: 50px;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(44, 62, 80, 0.4);
    transition: all 0.3s ease;
    border: 2px solid #FFD700;
}

.counselling-trigger:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 25px rgba(44, 62, 80, 0.5);
    background: linear-gradient(135deg, #1a252f 0%, #2C3E50 100%);
}

.counselling-trigger i {
    font-size: 18px;
    color: #FFD700;
}

.counselling-trigger span {
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
}

/* Popup Overlay */
.counselling-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.counselling-popup-overlay.active {
    display: flex;
    opacity: 1;
}

/* Popup Container - Compact Design */
.counselling-popup {
    background: white;
    border-radius: 16px;
    max-width: 420px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    animation: popupSlideIn 0.35s ease;
    overflow: hidden;
}

@keyframes popupSlideIn {
    from {
        transform: translateY(-30px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Close Button */
.popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    color: white;
    font-size: 12px;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Popup Header - Compact */
.popup-header {
    background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
    color: white;
    padding: 18px 20px;
    text-align: center;
}

.popup-header h2 {
    font-size: 17px;
    margin: 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.popup-header h2 i {
    color: #FFD700;
    font-size: 20px;
}

/* Popup Form - Compact */
.popup-form {
    padding: 18px 20px 20px;
}

.popup-form .form-group {
    margin-bottom: 12px;
}

.popup-form input,
.popup-form select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.25s ease;
    background: #fafafa;
}

.popup-form input::placeholder {
    color: #999;
}

.popup-form input:focus,
.popup-form select:focus {
    border-color: #2C3E50;
    background: white;
    outline: none;
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

.popup-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* Submit Button - Professional */
.popup-submit-btn {
    width: 100%;
    padding: 13px 20px;
    background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    margin-top: 5px;
}

.popup-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.35);
}

.popup-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.popup-submit-btn i {
    color: #FFD700;
}

/* Disclaimer */
.popup-disclaimer {
    text-align: center;
    font-size: 11px;
    color: #888;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.popup-disclaimer i {
    color: #27ae60;
}

/* Success State - Compact */
.popup-success {
    padding: 35px 25px;
    text-align: center;
}

.success-icon {
    font-size: 55px;
    color: #27ae60;
    margin-bottom: 15px;
    animation: successBounce 0.5s ease;
}

@keyframes successBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

.popup-success h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 8px;
}

.popup-success p {
    color: #666;
    font-size: 14px;
    margin-bottom: 0;
}

.popup-success .popup-submit-btn {
    margin-top: 20px;
    width: auto;
    padding: 10px 30px;
    display: inline-flex;
}

/* Responsive Styles for Popup */
@media (max-width: 600px) {
    .counselling-trigger {
        bottom: 80px;
        left: 15px;
        padding: 10px 14px;
    }

    .counselling-trigger span {
        display: none;
    }

    .counselling-trigger i {
        font-size: 20px;
    }

    .counselling-popup {
        max-width: 100%;
        border-radius: 12px;
        margin: 10px;
    }

    .popup-header {
        padding: 15px 18px;
    }

    .popup-header h2 {
        font-size: 15px;
    }

    .popup-form {
        padding: 15px 18px 18px;
    }

    .popup-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .popup-form input,
    .popup-form select {
        padding: 10px 12px;
        font-size: 13px;
    }

    .popup-submit-btn {
        padding: 12px 18px;
        font-size: 13px;
    }
}

/* ================================
   Hero Section Responsive Enhancements
   ================================ */
@media (max-width: 992px) {
    .hero-slide {
        min-height: 450px;
        padding: 40px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .hero-main-title {
        font-size: 36px;
    }

    .student-circle {
        width: 280px;
        height: 280px;
    }

    .hero-comparison-image img {
        max-width: 350px;
    }

    .compare-badge {
        font-size: 26px;
        padding: 8px 16px;
    }

    .compare-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-slide {
        min-height: auto;
        padding: 30px 0;
    }

    .hero-content {
        text-align: center;
    }

    .hero-main-title {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .hero-compare-box {
        padding: 12px 18px;
    }

    .compare-badge {
        font-size: 20px;
        padding: 5px 12px;
    }

    .compare-text {
        font-size: 13px;
    }

    .hero-comparison-image img {
        max-width: 220px;
    }

    .student-circle {
        width: 180px;
        height: 180px;
    }

    .student-circle img {
        top: 40px;
    }

    .feature-list {
        display: inline-block;
        text-align: left;
    }

    .feature-list li {
        font-size: 14px;
        gap: 10px;
        margin-bottom: 12px;
    }

    .feature-icon {
        width: 34px;
        height: 34px;
    }

    .feature-icon i {
        font-size: 14px;
    }

    .hero-bg-icons {
        display: none;
    }

    .hero-prev,
    .hero-next {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .hero-prev {
        left: 8px;
    }

    .hero-next {
        right: 8px;
    }

    .carousel-dots {
        bottom: 12px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    /* Trust section tablet fix */
    .trust-item {
        min-width: 150px;
        max-width: 200px;
        padding: 12px 15px;
    }

    .trust-item img {
        width: 35px;
        height: 35px;
    }

    .trust-item h4 {
        font-size: 18px;
    }

    .trust-item p {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .hero-slide {
        min-height: auto;
        padding: 25px 0;
    }

    .hero-content {
        gap: 20px;
    }

    .hero-main-title {
        font-size: 20px;
        line-height: 1.3;
    }

    .hero-compare-box {
        padding: 10px 12px;
    }

    .compare-badge {
        font-size: 16px;
        padding: 4px 10px;
        border-radius: 6px;
    }

    .compare-text {
        font-size: 12px;
    }

    .hero-comparison-image img {
        max-width: 160px;
    }

    .student-circle {
        width: 140px;
        height: 140px;
    }

    .student-circle img {
        top: 30px;
    }

    .feature-list li {
        font-size: 13px;
        gap: 8px;
        margin-bottom: 10px;
    }

    .feature-icon {
        width: 28px;
        height: 28px;
    }

    .feature-icon i {
        font-size: 12px;
    }

    .hero-prev,
    .hero-next {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }

    .hero-prev {
        left: 5px;
    }

    .hero-next {
        right: 5px;
    }

    .geometric-shape {
        display: none;
    }

    /* Trust section mobile fix */
    .trust-section {
        padding: 20px 0;
    }

    .trust-grid {
        flex-direction: row;
        gap: 10px;
        padding: 0 10px;
    }

    .trust-item {
        min-width: calc(33.33% - 10px);
        max-width: calc(33.33% - 10px);
        padding: 10px 8px;
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .trust-item img {
        width: 30px;
        height: 30px;
    }

    .trust-item-text {
        text-align: center;
    }

    .trust-item h4 {
        font-size: 16px;
    }

    .trust-item p {
        font-size: 9px;
        line-height: 1.2;
    }

    .hero-bg-pattern {
        display: none;
    }
}