/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #667eea;
    --secondary: #764ba2;
    --dark: #2D3436;
    --light: #F8F9FA;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.8s ease-out;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease-out;
}

.loading-logo {
    margin-bottom: 30px;
    animation: pulse 2s infinite, fadeInLogo 1.5s ease-out;
}

.loading-logo img {
    width: 200px;
    height: auto;
    opacity: 0;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: logoAppear 1.5s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes fadeInLogo {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes logoAppear {
    0% {
        opacity: 0;
        transform: scale(1.2) translateY(20px);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1) translateY(10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.loading-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.loading-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 500;
}

.loading-spinner {
    display: flex;
    justify-content: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hide main content initially */
body {
    overflow-x: hidden;
}

body.loading-active {
    overflow: hidden;
}

body.loading-active > *:not(.loading-screen) {
    opacity: 0;
}

body:not(.loading-active) > *:not(.loading-screen) {
    opacity: 1;
    transition: opacity 0.5s ease-in;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    background: var(--light);
}

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

/* Buttons */
.btn {
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px) scale(1.05);
}

.btn-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-success:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.btn-info {
    background: linear-gradient(135deg, #17a2b8, #6f42c1);
    color: white;
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.3);
}

.btn-info:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(23, 162, 184, 0.4);
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 700;
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 5px 0;
    height: auto;
}

.navbar.hidden {
    transform: translateY(-150px);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: none;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 40px;
    padding: 0.05rem 0;
    position: relative;
}

.nav-center {
    position: static;
    transform: none;
    display: flex;
    align-items: center;
    margin-left: auto;
}

.logo-link {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

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

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

.logo h2 {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar.scrolled .nav-menu a {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar.scrolled .hamburger span {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,133.3C960,128,1056,96,1152,90.7C1248,85,1344,107,1392,117.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-text p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    flex: 1;
}

.hero-stats-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
    backdrop-filter: blur(15px);
    z-index: 10;
    border: 2px solid rgba(102, 126, 234, 0.1);
    animation: slideInRight 0.8s ease-out;
}

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

.hero-stat {
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-3px) scale(1.05);
}

.hero-stat-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(102, 126, 234, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-stat-text {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: #4a5568;
    margin-top: 0.3rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.6s ease;
    height: 400px;
    object-fit: cover;
    object-position: top 20%;
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

/* Statistics Section */
.statistics {
    padding: 100px 0;
    background: var(--light);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    text-align: center;
    padding: 1.8rem 1.2rem;
    border-radius: 15px;
    background: white;
    color: var(--dark);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient);
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.stat-card p {
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 500;
}

/* Eligibility Section */
.eligibility {
    padding: 100px 0;
    background: white;
    position: relative;
}

/* Why Choose Mindix Section */
.why-mindix {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.why-mindix::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,133.3C960,128,1056,96,1152,90.7C1248,85,1344,107,1392,117.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.why-mindix-content {
    position: relative;
    z-index: 1;
}

.why-mindix-header {
    text-align: center;
    margin-bottom: 3rem;
}

.why-mindix-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.why-mindix-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.why-mindix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.why-mindix-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.why-mindix-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-mindix-item:hover::before {
    opacity: 1;
}

.why-mindix-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.why-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.4rem;
    color: white;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.why-mindix-item:hover .why-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.why-mindix-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.6rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.why-mindix-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

.eligibility-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.eligibility-text h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--dark);
    line-height: 1.2;
}

.eligibility-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.eligibility-image {
    position: relative;
}

.eligibility-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.6s ease;
}

.eligibility-image:hover img {
transform: scale(1.05);
}

/* Courses Section */
.courses {
padding: 40px 0;
background: #f8f9fa;
}

.section-header {
text-align: center;
margin-bottom: 1.5rem;
}

.section-header h2 {
font-size: 1.8rem;
font-weight: 800;
margin-bottom: 0.5rem;
color: var(--dark);
line-height: 1.2;
}

.section-header p {
font-size: 0.9rem;
color: #666;
max-width: 600px;
margin: 0 auto;
line-height: 1.5;
}

.course-filters {
display: flex;
justify-content: center;
gap: 0.5rem;
margin-bottom: 1.5rem;
flex-wrap: wrap;
}

.filter-btn {
    padding: 6px 12px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 0.8rem;
    font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.8rem;
}

.course-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.course-card:hover {
    transform: translateY(-2px) scale(1.005);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
}

.course-image {
    position: relative;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block !important;
    border-radius: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    pointer-events: auto;
    opacity: 1 !important;
    visibility: visible !important;
    max-width: 100%;
    height: auto;
    min-height: 60px;
    position: relative;
    z-index: 999 !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    outline: none;
    box-sizing: border-box;
    filter: none !important;
    transform: none !important;
    clip: auto !important;
    clip-path: none !important;
    mask: none !important;
    -webkit-mask: none !important;
    isolation: isolate !important;
    mix-blend-mode: normal !important;
    image-rendering: auto !important;
    image-orientation: from-image !important;
    will-change: auto !important;
    backface-visibility: visible !important;
    transform-style: flat !important;
    perspective: none !important;
    contain: layout style paint !important;
    contain-intrinsic-size: auto 60px !important;
    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
    src: attr(src) !important;
    content: attr(src) !important;
    alt: attr(alt) !important;
}

.course-card:hover .course-image img {
    transform: scale(1.05);
}

.course-badge {
    position: absolute;
    top: 0.4rem;
    right: 0.4rem;
    background: var(--gradient);
    color: white;
    padding: 0.2rem 0.4rem;
    border-radius: 50px;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.course-content {
    padding: 0.4rem;
}

.course-content h3 {
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--dark);
    line-height: 1.2;
}

.course-duration,
.course-insights {
    color: #666;
    font-size: 0.6rem;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.course-duration::before {
    content: '⏱️';
}

.course-insights::before {
    content: '🎯';
}

.course-price {
    margin: 0.4rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    font-size: 0.9rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.course-btn {
    width: 100%;
    padding: 4px;
    font-weight: 700;
    font-size: 0.6rem;
}

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

.certification-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.certification-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.certification-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.certification-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cert-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.cert-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.cert-feature i {
    font-size: 1.2rem;
    color: var(--primary);
    width: 30px;
    text-align: center;
}

.cert-feature span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
}

.certification-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.certification-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.certification-image img:hover {
    transform: scale(1.05);
}

/* Hidden/Visible Classes */
.course-card.hidden {
    display: none;
}

.course-card.visible {
    display: block;
}

.view-all-container {
    text-align: center;
    margin-top: 2rem;
}

#viewAllBtn {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#viewAllBtn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}


/* Counselors Section */
.counselors-section {
    padding: 40px 0;
    background: var(--light);
    margin-bottom: 40px;
}

.counselors-section h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.counselors-section p {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.counselors-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    max-width: 100%;
}

.counselors-grid::-webkit-scrollbar {
    height: 8px;
}

.counselors-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.counselors-grid::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.counselors-grid::-webkit-scrollbar-thumb:hover {
    background: var(--gradient);
}

.counselor-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    min-width: 280px;
    flex-shrink: 0;
}

.counselor-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: var(--gradient);
    height: 4px;
    background: var(--gradient);
}

.counselor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.counselor-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--dark);
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.counselor-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.contact-type {
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.counselor-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Brand Partners Section */
.brand-partners {
    padding: 80px 0;
    background: white;
    overflow: hidden;
}

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

.partners-grid {
    display: flex;
    gap: 2rem;
    animation: scrollPartners 30s linear infinite;
    width: fit-content;
}

.partners-grid:hover {
    animation-play-state: paused;
}

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

.partner-logo {
    flex-shrink: 0;
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
    min-width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.partner-logo img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
    object-fit: contain;
    display: block;
}

.partner-logo img[src=""],
.partner-logo img:not([src]),
.partner-logo img[src=""] {
    display: none;
}

.company-text-logo {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    text-align: center;
    line-height: 1.2;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

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

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

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: white;
    padding: 1.2rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
}

.form-group {
    margin-bottom: 1rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
    color: var(--dark);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #f8f9fa;
    box-shadow: inset 1px 2px 3px rgba(0, 0, 0, 0.04);
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-style: italic;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1), inset 1px 2px 3px rgba(0, 0, 0, 0.04);
    transform: translateY(-1px);
}

.form-message {
    margin-top: 0.8rem;
    padding: 0.8rem;
    border-radius: 8px;
    display: none;
    font-weight: 500;
    border: 2px solid transparent;
    animation: slideIn 0.3s ease;
    font-size: 13px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message.success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 2px solid #28a745;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

.form-message.error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 2px solid #dc3545;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.info-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.info-content p {
    color: #666;
}

/* Feedback Section - Google Reviews Style */
.feedback-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.feedback-header {
    text-align: center;
    margin-bottom: 3rem;
}

.feedback-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.feedback-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.reviews-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0;
    margin-bottom: 3rem;
    width: 100%;
    position: relative;
    height: 400px;
}

.reviews-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.reviews-scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.reviews-scroll-container::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 10px;
}

.reviews-scroll-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.google-reviews-container {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    padding: 1rem;
    min-width: fit-content;
    height: 100%;
    align-items: stretch;
}

.review-card {
    width: 350px;
    min-width: 350px;
    max-width: 350px;
    flex-shrink: 0;
    height: auto;
}

.review-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e1e5e9;
    transition: all 0.3s ease;
    position: relative;
}

.review-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #202124;
    margin-bottom: 0.2rem;
}

.review-rating {
    display: flex;
    gap: 0.2rem;
}

.review-rating i {
    color: #fbbc04;
    font-size: 0.9rem;
}

.review-source {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #5f6368;
    font-size: 0.85rem;
    font-weight: 500;
}

.review-source i {
    color: #4285f4;
    font-size: 1rem;
}

.review-content {
    margin-bottom: 1rem;
}

.review-content p {
    font-size: 0.95rem;
    color: #202124;
    line-height: 1.6;
    margin: 0;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e1e5e9;
}

.review-date {
    color: #5f6368;
    font-size: 0.85rem;
}

.review-actions {
    display: flex;
    gap: 1rem;
}

.helpful-btn {
    background: none;
    border: none;
    color: #5f6368;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    border-radius: 16px;
    transition: all 0.2s ease;
}

.helpful-btn:hover {
    background: #f1f3f4;
    color: #202124;
}

.helpful-btn i {
    font-size: 0.9rem;
}

.feedback-summary {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.summary-card {
    background: white;
    border-radius: 12px;
    padding: 2rem 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e1e5e9;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.google-logo {
    font-size: 3rem;
    color: #4285f4;
}

.rating-info {
    text-align: center;
}

.overall-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.rating-score {
    font-size: 3rem;
    font-weight: 700;
    color: #202124;
}

.rating-stars {
    display: flex;
    gap: 0.2rem;
}

.rating-stars i {
    color: #fbbc04;
    font-size: 1.5rem;
}

.total-reviews {
    font-size: 1rem;
    color: #5f6368;
    margin: 0;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section h3 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #667eea;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links 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;
}

.social-links a:hover {
    background: #667eea;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.faq-category {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.faq-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.12);
}

.faq-category h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-category h3 i {
    color: #667eea;
    font-size: 1rem;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.08);
}

.faq-item.active {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.12);
}

.faq-question {
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

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

.faq-question h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
    line-height: 1.4;
}

.faq-question i {
    color: #667eea;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 15px 15px;
    font-size: 0.85rem;
    color: #4a5568;
    line-height: 1.5;
    margin: 0;
}

.faq-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: white;
}

.faq-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.faq-cta .btn {
    background: white;
    color: #667eea;
    border: none;
}

.faq-cta .btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Responsive Design */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
    
    .why-mindix-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    
    .course-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Tablets */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 40px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-center {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 0;
    }
    
    .navbar .logo-img {
        height: 50px;
    }
    
    .hero {
        padding: 60px 0 80px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-stats-overlay {
        position: static;
        transform: none;
        margin-bottom: 2rem;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .eligibility-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .eligibility-text {
        order: 2;
    }
    
    .eligibility-image {
        order: 1;
    }
    
    .why-mindix-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .why-mindix-item {
        padding: 1.5rem 1rem;
    }
    
    .course-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
        gap: 0.5rem;
    }
    
    .filter-btn {
        flex-shrink: 0;
        font-size: 13px;
        padding: 8px 16px;
    }
    
    .course-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .course-card {
        margin: 0 auto;
        max-width: 350px;
    }
    
    .counselors-grid {
        gap: 1rem;
    }
    
    .counselor-card {
        min-width: 250px;
        padding: 1.5rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .certification-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .certification-text h2 {
        font-size: 1.5rem;
    }
    
    .certification-text p {
        font-size: 1rem;
    }
    
    .certification-features {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .google-reviews-container {
        gap: 1rem;
    }
    
    .review-card {
        width: 300px;
        min-width: 300px;
        max-width: 300px;
    }
    
    .summary-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .navbar {
        padding: 3px 0;
    }
    
    .nav-content {
        min-height: 35px;
        padding: 0.02rem 0;
    }
    
    .navbar .logo-img {
        height: 40px;
    }
    
    .hamburger span {
        width: 20px;
        height: 2px;
    }
    
    .hero {
        padding: 50px 0 60px;
        min-height: auto;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        gap: 1rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .hero-stats-overlay {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .hero-stat-number {
        font-size: 1.2rem;
    }
    
    .hero-stat-text {
        font-size: 0.65rem;
    }
    
    .statistics {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.2rem 1rem;
    }
    
    .stat-icon {
        font-size: 1.8rem;
    }
    
    .stat-card h3 {
        font-size: 1.8rem;
    }
    
    .eligibility {
        padding: 60px 0;
    }
    
    .eligibility-text h2 {
        font-size: 1.8rem;
    }
    
    .eligibility-text p {
        font-size: 1rem;
    }
    
    .why-mindix {
        padding: 40px 0;
    }
    
    .why-mindix-header h2 {
        font-size: 2rem;
    }
    
    .why-mindix-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .why-mindix-item {
        padding: 1.5rem;
    }
    
    .why-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .why-mindix-item h3 {
        font-size: 1.2rem;
    }
    
    .courses {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .course-filters {
        gap: 0.4rem;
    }
    
    .filter-btn {
        font-size: 12px;
        padding: 6px 14px;
    }
    
    .course-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .course-card {
        margin: 0;
        max-width: none;
    }
    
    .course-image img {
        height: 120px;
    }
    
    .course-content h3 {
        font-size: 1rem;
    }
    
    .course-duration,
    .course-insights {
        font-size: 0.8rem;
    }
    
    .price {
        font-size: 1.2rem;
    }
    
    .counselors-section {
        padding: 30px 0;
    }
    
    .counselors-grid {
        gap: 0.8rem;
    }
    
    .counselor-card {
        min-width: 100%;
        padding: 1.2rem;
    }
    
    .counselor-info h4 {
        font-size: 1.2rem;
    }
    
    .counselor-title {
        font-size: 0.9rem;
    }
    
    .brand-partners {
        padding: 60px 0;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .partner-logo {
        min-width: 120px;
        height: 60px;
        padding: 0.8rem;
    }
    
    .partner-logo img {
        max-height: 40px;
    }
    
    .company-text-logo {
        font-size: 14px;
        height: 40px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-form {
        padding: 0.8rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 10px;
    }
    
    .form-group label {
        font-size: 13px;
        margin-bottom: 0.5rem;
    }
    
    .info-card {
        padding: 1.2rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .feedback-section {
        padding: 60px 0;
    }
    
    .feedback-header h2 {
        font-size: 1.8rem;
    }
    
    .reviews-scroll-container {
        height: 350px;
    }
    
    .google-reviews-container {
        gap: 0.8rem;
    }
    
    .review-card {
        width: 280px;
        min-width: 280px;
        max-width: 280px;
        padding: 1.2rem;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
    }
    
    .reviewer-details h4 {
        font-size: 0.9rem;
    }
    
    .review-content p {
        font-size: 0.85rem;
    }
    
    .summary-card {
        padding: 1.2rem 1.5rem;
    }
    
    .rating-score {
        font-size: 2.5rem;
    }
    
    .rating-stars i {
        font-size: 1.2rem;
    }
    
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Extra Small Phones */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text p {
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .course-filters {
        gap: 0.3rem;
    }
    
    .filter-btn {
        font-size: 11px;
        padding: 5px 12px;
    }
    
    .review-card {
        width: 250px;
        min-width: 250px;
        max-width: 250px;
    }
}

.upload-area {
    position: relative;
    border: 2px dashed #ddd;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #fafafa;
}

.upload-area:hover {
    border-color: var(--primary);
    background: #f0f4ff;
}

.upload-area.drag-over {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    transform: scale(1.02);
}

.upload-content i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.upload-content h4 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.upload-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.btn-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-danger {
    background: linear-gradient(135deg, #dc3545 0%, #e74c3c 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}
