/* Final Premium Global Styles */
:root {
    --primary: #e31e24;
    --secondary: #0f172a;
    --accent: #2b5a9e;
    --dark: #020617;
    --light: #ffffff;
    --glass: rgba(255, 255, 255, 0.03);
    --gradient: linear-gradient(135deg, #e31e24 0%, #991b1b 100%);
    --bg-main: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border: rgba(0, 0, 0, 0.06);
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nclex-heading {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    color: #0b2545; /* Navy professional tone */
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    letter-spacing: -0.5px;
}

.nclex-heading span {
    display: inline-block;
    background: linear-gradient(90deg, #c1121f, #780000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

/* subtle underline accent */
.nclex-heading::after {
    content: "";
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #c1121f, #780000);
    display: block;
    margin: 14px auto 0;
    border-radius: 2px;
}
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Header Redesign */
header {
    position: relative;
    z-index: 1000;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.top-bar {
    background: rgba(0,0,0,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 8px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

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

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
    margin: 0;
}

.nav-links a {
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary) !important;
}

/* Global Design Tokens Update */
:root {
    --primary: #e31e24;
    --secondary: #0f172a;
    --accent: #2b5a9e;
    --dark: #020617;
    --light: #ffffff;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-dark: rgba(15, 23, 42, 0.03);
    --gradient: linear-gradient(135deg, #e31e24 0%, #991b1b 100%);
    --bg-main: #f8fafc;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border: rgba(0, 0, 0, 0.05);
    --transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.02);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.1);
}

.section {
    padding: 50px 0;
    position: relative;
    background: #fff;
}

.section-alt {
    background: #f8fafc !important;
}

/* Modern Card Styles */
.glass-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
    height: 100%;
}

.glass-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(227, 30, 36, 0.1);
}

/* Why Choose Us Redesign - Fixed Uniform Boxes */
.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-choose-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 32px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid #f1f5f9;
    transition: var(--transition);
    width: 100%; 
}

.why-choose-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(227, 30, 36, 0.1);
}

.why-choose-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

/* Step-Wise Approach Unique Layout */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    position: relative;
    padding-top: 40px;
}

.step-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
    z-index: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(227, 30, 36, 0.05);
    color: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    transition: var(--transition);
}

.step-card:hover {
    background: var(--secondary);
    transform: translateY(-10px);
}

.step-card:hover .step-icon {
    background: var(--primary);
    color: white;
}

.step-card:hover h5 { color: white; }
.step-card:hover p { color: #94a3b8; }

/* Section Titles Modernization */
.section-title span {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 16px;
}

.section-title h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 24px;
    line-height: 1.2;
}

/* Fix for existing components */
.stat-item {
    background: #fff;
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Hero Carousel Redesign */
.hero-carousel {
    height: 100vh;
    min-height: 700px;
    background: #020617;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    height: 100%;
    display: flex;
    width: 100%;
    position: relative;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
}

.carousel-slide.active {
    visibility: visible;
    opacity: 1;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #020617 30%, rgba(2, 6, 23, 0.7) 60%, rgba(2, 6, 23, 0.4) 100%);
    z-index: 1;
}

.carousel-slide .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    color: #fff;
    padding-right: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s all ease 0.4s;
}

.carousel-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(227, 30, 36, 0.15);
    color: #ff4d4d;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 1px solid rgba(227, 30, 36, 0.3);
}

.badge-accent { background: rgba(43, 90, 158, 0.15); color: #60a5fa; border-color: rgba(43, 90, 158, 0.3); }
.badge-success { background: rgba(16, 185, 129, 0.15); color: #34d399; border-color: rgba(16, 185, 129, 0.3); }

.hero-content h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -2px;
}

.text-primary { color: var(--primary); }
.text-accent { color: #60a5fa; }
.text-success { color: #34d399; }

.hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    line-height: 1.6;
    max-width: 600px;
}

.cta-group {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.btn-accent { background: #2563eb; color: white; }
.btn-accent:hover { background: #1d4ed8; }
.btn-success { background: #059669; color: white; }
.btn-success:hover { background: #047857; }

.hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    transform: translateX(50px);
    transition: 0.8s all ease 0.6s;
}

.carousel-slide.active .hero-visual {
    opacity: 1;
    transform: translateX(0);
}

.hero-image-wrapper {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1;
    border-radius: 30px;
    overflow: hidden;
    border: 12px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    transform: perspective(1200px) rotateY(-12deg);
    transition: transform 0.6s ease;
}

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

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

/* Carousel Controls */
.carousel-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.nav-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: 0.4s;
    border: 2px solid transparent;
}

.nav-dot.active {
    background: var(--primary);
    width: 40px;
    border-radius: 20px;
    border-color: rgba(255, 255, 255, 0.3);
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.carousel-prev:hover, .carousel-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev { left: 40px; }
.carousel-next { right: 40px; }

@media (max-width: 1200px) {
    .hero-grid { gap: 40px; }
    .carousel-prev { left: 20px; }
    .carousel-next { right: 20px; }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content { padding-right: 0; }
    .hero-visual { justify-content: center; margin-top: 50px; }
    .hero-image-wrapper { max-width: 380px; transform: none; }
    .cta-group { justify-content: center; }
    .hero-content p { margin-left: auto; margin-right: auto; }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: center;
    }
    
    .hero-visual, .reveal[style*="transition-delay"] {
        justify-content: center !important;
        order: 2;
    }
    
    .reveal {
        order: 1;
    }
    
    .order-mobile-1 { order: 1 !important; }
    .order-mobile-2 { order: 2 !important; }

    .nav-links {
        display: none; /* Mobile menu logic should be in JS, but hiding for now to ensure layout doesn't break */
    }
    
    section {
        padding: 60px 0 !important;
    }
    
    h1 { font-size: 2.5rem !important; }
    h2 { font-size: 2rem !important; }
    h3 { font-size: 1.75rem !important; }
}

@media (max-width: 768px) {
    .hero-grid {
        gap: 30px !important;
    }
    
    .glass-card {
        padding: 25px !important;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-group, .display-flex, div[style*="display: flex"] {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
}

/* Fix for overlapping cards in grids */
.grid, [style*="display: grid"] {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
}

/* Index Page Specific Responsive Fixes */
@media (max-width: 992px) {
    .hero-carousel {
        height: auto;
        min-height: 500px;
    }
    
    .carousel-slide {
        position: relative;
        padding: 80px 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem !important;
        margin-bottom: 20px;
    }
    
    .hero-visual {
        margin-top: 40px;
    }
    
    .hero-image-wrapper {
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem !important;
    }
    
    .carousel-nav {
        bottom: 20px;
    }
    
    .carousel-prev, .carousel-next {
        width: 45px;
        height: 45px;
    }
    
    .steps-container {
        grid-template-columns: 1fr !important;
    }
    
    .udaan-comp-grid {
        grid-template-columns: 1fr !important;
    }
}

/* FAQ Modern Accordion - Working & Working Layout */
.faq-modern {
    max-width: 900px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    width: 100%;
}

.faq-header {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: var(--transition);
    background: #fff;
}

.faq-header h5 {
    margin: 0;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--secondary);
    line-height: 1.4;
}

.faq-header i {
    font-size: 1rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fafafa;
}

.faq-content {
    padding: 24px 30px;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
    border-top: 1px solid #f8fafc;
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-header {
    background: rgba(227, 30, 36, 0.02);
}

.faq-item.active .faq-header h5 {
    color: var(--primary);
}

.faq-item.active .faq-header i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-item.active .faq-body {
    max-height: 500px;
}

/* Optimized Premium NCLEX vs Indian Exams Styling */
.udaan-comp-container {
    padding: 40px 0;
    position: relative;
    perspective: 1000px;
}

.udaan-comp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 1;
}

.udaan-comp-card {
    padding: 40px 30px;
    position: relative;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border: none !important;
}

.udaan-comp-card:hover {
    flex-grow: 1.05;
}

.udaan-comp-card.indian-legacy {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-right: 1px solid rgba(0, 0, 0, 0.03) !important;
}

.udaan-comp-card.nclex-future {
    background: linear-gradient(165deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
}

.udaan-comp-card h4 {
    font-size: 1.8rem;
    font-weight: 950;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.udaan-comp-card.indian-legacy h4 { 
    background: linear-gradient(to right, #1e293b, #475569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.udaan-comp-card.nclex-future h4 { 
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.udaan-comp-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.udaan-comp-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.udaan-comp-list li:hover {
    transform: translateX(10px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
}

.udaan-comp-card.indian-legacy li:hover {
    background: rgba(227, 30, 36, 0.04);
}

.udaan-comp-card.indian-legacy li { 
    background: rgba(15, 23, 42, 0.02);
    border: 1px solid rgba(15, 23, 42, 0.03);
    color: #475569;
}

.udaan-comp-card.nclex-future li { 
    color: rgba(255, 255, 255, 0.85);
}

.udaan-comp-list li i {
    font-size: 1.1rem;
    margin-top: 3px;
}

.udaan-comp-card.indian-legacy li i { color: #e31e24; }
.udaan-comp-card.nclex-future li i { color: #10b981; }

.udaan-vs-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    width: 60px;
    height: 60px;
    background: #e31e24;
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
    font-size: 1.2rem;
    border: 4px solid #fff;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.2);
    transition: 0.5s;
}

.udaan-comp-grid:hover .udaan-vs-badge {
    transform: translate(-50%, -50%) rotate(0deg) scale(1.1);
}

@media (max-width: 992px) {
    .udaan-comp-grid { grid-template-columns: 1fr; border-radius: 24px; }
    .udaan-vs-badge { top: 50%; width: 50px; height: 50px; font-size: 1rem; }
    .udaan-comp-card { padding: 30px 20px; }
    .udaan-comp-card.indian-legacy { border-right: none !important; border-bottom: 1px solid rgba(0,0,0,0.05) !important; }
}

@media (max-width: 992px) {
    .comparison-grid { grid-template-columns: 1fr; border-radius: 40px; }
    .vs-badge { top: 50%; width: 80px; height: 80px; font-size: 1.5rem; }
    .comparison-card { padding: 60px 40px; }
    .comparison-card.indian { border-right: none !important; border-bottom: 1px solid rgba(0,0,0,0.05) !important; }
}

@media (max-width: 992px) {
    .comparison-grid { grid-template-columns: 1fr; border-radius: 30px; }
    .vs-badge { top: 0; transform: translate(-50%, -50%); }
    .comparison-card { padding: 40px; }
}

@media (max-width: 992px) {
    .comparison-grid { grid-template-columns: 1fr; }
    .comparison-grid::after { display: none; }
}

/* Premium Cards */
.glass-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

.btn {
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: #c2181d;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(227, 30, 36, 0.2);
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--secondary);
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}


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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Background Blobs */
.blob-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--gradient);
    filter: blur(80px);
    opacity: 0.15;
    border-radius: 50%;
    animation: move 20s infinite alternate;
}

@keyframes move {
    from {
        transform: translate(-10%, -10%);
    }
    to {
        transform: translate(100%, 100%);
    }
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.top-bar {
    background: var(--secondary);
    color: white;
    padding: 8px 0;
    font-size: 0.85rem;
    transition: 0.3s ease;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 20px;
}

.top-info i {
    color: var(--primary);
}

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

.top-social a {
    color: rgba(255, 255, 255, 0.8);
    transition: 0.3s;
}

.top-social a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

header.scrolled {
    background: var(--glass);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

header.scrolled .top-bar {
    margin-top: -40px;
    opacity: 0;
}

header .container:nth-child(2) {
    padding: 20px 24px;
    transition: 0.4s ease;
}

header.scrolled .container:nth-child(2) {
    padding: 12px 24px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: 0.3s;
}

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

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: transparent;
    position: relative;
}

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

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--dark);
}

.hero p {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 40px;
    max-width: 600px;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(14, 165, 233, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--dark);
    border: 1px solid #e2e8f0;
    margin-left: 16px;
}

.btn-secondary:hover {
    background: #f1f5f9;
    transform: translateY(-3px);
}

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-title p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 24px;
    padding: 40px;
    transition: 0.4s;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

/* Standard Reveal Animation */
/* Standard Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s all ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* FAQ Accordion Styling */
.faq-accordion .faq-item {
    transition: all 0.3s ease;
}

.faq-accordion .faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.faq-item.active .faq-header {
    background: rgba(227, 30, 46, 0.05);
}

.faq-item.active .faq-header i {
    transform: rotate(180deg);
    color: var(--primary);
}

/* Button & Link Hover Effects */
.btn, .nav-links a {
    position: relative;
    overflow: hidden;
}

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

.nav-links a:hover::before {
    width: 100%;
}

/* Glass Card Enhanced Hover */
.glass-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(227, 30, 36, 0.2);
}

/* FAQ Accordion Styling */
.faq-accordion .faq-item {
    transition: all 0.3s ease;
}

.faq-accordion .faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.faq-item.active .faq-header {
    background: rgba(227, 30, 46, 0.05);
}

.faq-item.active .faq-header i {
    transform: rotate(180deg);
    color: var(--primary);
}

/* Button & Link Hover Effects */
.btn, .nav-links a {
    position: relative;
    overflow: hidden;
}

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

.nav-links a:hover::before {
    width: 100%;
}

/* Glass Card Enhanced Hover */
.glass-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(227, 30, 36, 0.2);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.badge {
    animation: fadeIn 1s ease-out;
}

h6 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-content h1 {
    letter-spacing: -1px;
}

.glass-card i {
    font-size: 1.8rem;
    display: inline-block;
}

.section-title span {
    display: block;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.why-choose-list {
    list-style: none;
    display: grid;
    gap: 24px;
}

.why-choose-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: #ffffff;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.why-choose-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.why-choose-item:hover {
    transform: translateX(10px) translateY(-5px);
    background: #ffffff !important;
    border-color: rgba(227, 30, 36, 0.1) !important;
    box-shadow: 0 20px 40px rgba(227, 30, 36, 0.08) !important;
}

.why-choose-item:hover::before {
    transform: scaleY(1);
}

.why-choose-item:hover .why-choose-icon-wrapper {
    background: var(--primary) !important;
    color: white !important;
    transform: rotate(360deg) scale(1.1);
}

.why-choose-icon-wrapper {
    width: 64px;
    height: 64px;
    background: #f8fafc;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    font-size: 1.5rem;
    transition: all 0.5s ease;
    box-shadow: inset 0 0 0 1px rgba(227, 30, 36, 0.05);
}

.image-stack-container {
    position: relative;
    padding: 30px;
}

.image-stack-main {
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
    border: 8px solid white;
}

.image-stack-container:hover .image-stack-main {
    transform: scale(1.02);
}

.floating-experience-card {
    position: absolute;
    top: 10%;
    left: -10%;
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 4;
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #10b981;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 15px;
}


.why-choose-icon {
    width: 48px;
    height: 48px;
    background: rgba(227, 30, 36, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    font-size: 1.25rem;
}

.image-stack {
    position: relative;
    padding: 20px;
}

.image-stack img {
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.image-stack::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
    transform: rotate(15deg);
}

.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Base Responsive Fixes */
.hero-image img {
    max-height: 500px;
    width: 100%;
    border-radius: 24px;
}

.image-box img {
    max-height: 450px;
    width: 100%;
}

@media (min-width: 993px) {
    .nav-links {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    .mobile-nav-toggle {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    .mobile-nav-toggle {
        display: block !important;
    }
}

    .nav-links.active {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: white;
        padding: 80px 40px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1001;
        gap: 25px;
        animation: slideIn 0.3s ease-out;
    }

    @keyframes slideIn {
        from { transform: translateX(100%); }
        to { transform: translateX(0); }
    }
}

@media (max-width: 768px) {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .glass-card {
        padding: 24px;
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        margin: 20px auto 0;
        max-width: 100% !important;
    }

    .image-stack {
        padding: 0;
        margin-bottom: 30px;
    }

    .image-stack img {
        max-height: 350px;
    }
    
    .why-choose-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .why-choose-icon-wrapper {
        margin: 0 auto 15px;
    }

    header {
        padding: 10px 0;
    }

    .nav-links {
        display: none; /* Consider adding a mobile menu toggle later if needed */
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .stat-item {
        padding: 20px;
    }
}
