/* ==========================================================================
   NEXTWAVE - Consolidated Page Styles
   Generated: Wednesday 21 January 2026 09:26:44 PM IST
   ========================================================================== */


/* ========== ABOUT PAGE STYLES ========== */
/* About Page Styles */
.about-hero-banner {
    position: relative;
    background: linear-gradient(135deg, #1a1c2c 0%, #4a192c 100%);
    padding: 140px 0 80px;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.about-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

/* Gradient Orbs for About Page */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orb-float 8s ease-in-out infinite;
}

.gradient-orb.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.2) 100%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.gradient-orb.orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2) 0%, rgba(255, 204, 51, 0.2) 100%);
    bottom: -50px;
    left: -50px;
    animation-delay: 4s;
}

@keyframes orb-float {

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

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

/* Grid Pattern */
.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    left: 5%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Floating Icons */
.floating-icon-hero {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float-icon 5s ease-in-out infinite;
    z-index: 1;
}

.floating-icon-hero i {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.floating-icon-hero.icon-1 {
    top: 20%;
    left: 8%;
    animation-delay: 0s;
}

.floating-icon-hero.icon-2 {
    top: 15%;
    right: 12%;
    animation-delay: 1s;
}

.floating-icon-hero.icon-3 {
    bottom: 25%;
    left: 12%;
    animation-delay: 2s;
}

.floating-icon-hero.icon-4 {
    bottom: 30%;
    right: 8%;
    animation-delay: 3s;
}

@keyframes float-icon {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    font-size: 18px;
    color: #fca5a5;
}

.hero-badge span {
    font-size: 14px;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
}

/* Enhanced Title & Subtitle */
.hero-title-enhanced {
    font-size: 64px;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
    background-size: 200% 200%;
}

@keyframes gradient-shift {

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

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

.hero-subtitle-enhanced {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Stats Badges */
.hero-stats-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.stat-badge:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 24px;
    color: #fff;
}

.stat-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.stat-content .stat-number {
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin: 0;
    text-shadow: none;
    line-height: 1;
}

.stat-content .stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    margin-top: 4px;
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {

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

    50% {
        transform: translateY(8px);
        opacity: 0.3;
    }
}

.story-section {
    padding: 120px 0;
    background: #ffffff;
}

.story-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
    border: 1px solid #f1f5f9;
}

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

.story-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.story-card:hover .story-icon {
    transform: scale(1.1) rotate(5deg);
}

.story-icon i {
    font-size: 40px;
    color: white;
}

.mission-vision-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.premium-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    height: 100%;
}

.premium-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.card-icon-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.premium-card:hover .card-icon-wrapper {
    transform: scale(1.15) rotate(-5deg);
    background: rgba(255, 255, 255, 0.3);
}

.values-section {
    padding: 120px 0;
    background: #ffffff;
}

.value-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid #e2e8f0;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
    background: white;
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.2) rotate(10deg);
}

.icon-purple {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(102, 126, 234, 0.15));
}

.icon-purple i {
    color: #667eea;
}

.icon-pink {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.1), rgba(240, 147, 251, 0.15));
}

.icon-pink i {
    color: #f093fb;
}

.icon-blue {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1), rgba(79, 172, 254, 0.15));
}

.icon-blue i {
    color: #4facfe;
}

.icon-green {
    background: linear-gradient(135deg, rgba(67, 233, 123, 0.1), rgba(67, 233, 123, 0.15));
}

.icon-green i {
    color: #43e97b;
}

.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    transition: all 0.4s ease;
}

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

.stat-number {
    font-size: 56px;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 28px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate-glow 10s linear infinite;
}

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

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

.cta-content {
    position: relative;
    z-index: 2;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .floating-icon-hero {
        display: none;
    }
}

@media (max-width: 768px) {
    .about-hero-banner {
        padding: 140px 0 80px;
        min-height: auto;
    }

    .hero-title-enhanced {
        font-size: 36px;
    }

    .hero-subtitle-enhanced {
        font-size: 16px;
        margin-bottom: 2rem;
    }

    .hero-stats-badges {
        gap: 1rem;
    }

    .stat-badge {
        width: 100%;
        justify-content: center;
    }

    .gradient-orb {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    .stat-number {
        font-size: 42px;
    }

    .story-section,
    .values-section {
        padding: 80px 0;
    }

    .mission-vision-section,
    .stats-section {
        padding: 60px 0;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .story-section {
        background: #0a0f1e;
    }

    .story-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }

    .story-card:hover {
        background: rgba(255, 255, 255, 0.06);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    }

    .values-section {
        background: #020617;
    }

    .value-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .value-card:hover {
        background: rgba(255, 255, 255, 0.06);
        box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
    }

    .cta-section {
        background: #0a0f1e;
    }

    /* Dark mode text colors */
    .story-section h6,
    .values-section h6 {
        color: #a78bfa !important;
    }

    .story-section h2,
    .values-section h2,
    .story-card h4,
    .value-card h5 {
        color: #f1f5f9 !important;
    }

    .story-section p,
    .story-card p,
    .value-card p {
        color: #cbd5e1 !important;
    }

    /* Dark mode icon backgrounds */
    .icon-purple {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.25), rgba(102, 126, 234, 0.35));
    }

    .icon-pink {
        background: linear-gradient(135deg, rgba(240, 147, 251, 0.25), rgba(240, 147, 251, 0.35));
    }

    .icon-blue {
        background: linear-gradient(135deg, rgba(79, 172, 254, 0.25), rgba(79, 172, 254, 0.35));
    }

    .icon-green {
        background: linear-gradient(135deg, rgba(67, 233, 123, 0.25), rgba(67, 233, 123, 0.35));
    }

    /* Enhanced glassmorphism in dark mode */
    .premium-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .premium-card:hover {
        background: rgba(255, 255, 255, 0.08);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    }

    /* Dark mode mission/vision section */
    .mission-vision-section {
        background: linear-gradient(135deg, #020617 0%, #0a0f1e 100%);
    }

    .card-icon-wrapper {
        background: rgba(255, 255, 255, 0.1);
    }

    .premium-card:hover .card-icon-wrapper {
        background: rgba(255, 255, 255, 0.15);
    }
}

/* ========== APPLY PAGE STYLES ========== */
/* Apply Page Styles */

/* Hero Section Styles */
.apply-hero {
    position: relative;
    min-height: 550px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 160px 0 120px;
    overflow: hidden;
}

.apply-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 100%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.float-1 {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    top: 15%;
    left: 5%;
    animation: float-slow 8s ease-in-out infinite;
}

.float-2 {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.08);
    top: 60%;
    left: 15%;
    animation: float-slow 10s ease-in-out infinite 1s;
}

.float-3 {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.06);
    top: 20%;
    right: 10%;
    animation: float-slow 12s ease-in-out infinite 2s;
}

.float-4 {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.12);
    bottom: 25%;
    right: 20%;
    animation: float-slow 7s ease-in-out infinite 0.5s;
}

.float-5 {
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    bottom: 20%;
    left: 25%;
    animation: rotate-float 15s linear infinite;
}

@keyframes float-slow {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-30px) translateX(10px);
        opacity: 1;
    }
}

@keyframes rotate-float {
    0% {
        transform: rotate(0deg) translateY(0);
    }

    50% {
        transform: rotate(180deg) translateY(-20px);
    }

    100% {
        transform: rotate(360deg) translateY(0);
    }
}

/* Grid Pattern */
.grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Hero Content */
.hero-content-wrapper {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    animation: slideInUp 0.6s ease-out;
}

.apply-hero .hero-title {
    font-size: 52px;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: slideInUp 0.6s ease-out 0.1s both;
}

.apply-hero .hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 550px;
    line-height: 1.7;
    margin-bottom: 30px;
    animation: slideInUp 0.6s ease-out 0.2s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Stats Cards */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    animation: slideInUp 0.6s ease-out 0.3s both;
}

.apply-hero .stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.apply-hero .stat-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.apply-hero .stat-number {
    font-size: 32px;
    font-weight: 800;
    color: white;
    display: block;
    line-height: 1;
}

.apply-hero .stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 5px;
}

/* Feature Pills */
.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
    animation: slideInUp 0.6s ease-out 0.4s both;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px 18px;
    font-size: 14px;
    color: white;
    transition: all 0.3s ease;
}

.feature-pill:hover {
    background: rgba(255, 255, 255, 0.2);
}

.feature-pill i {
    margin-right: 8px;
    font-size: 16px;
    color: #fbbf24;
}

/* Wave Bottom */
.wave-bottom {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
}

/* Application Info Card */
.application-info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInUp 0.6s ease-out 0.5s both;
}

/* Form Section */
.form-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 80px 0 100px;
    margin-top: -60px;
    position: relative;
    z-index: 3;
}

/* Progress Steps - Enhanced */
.progress-container {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.progress-steps-modern {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.progress-steps-modern::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 60px;
    right: 60px;
    height: 3px;
    background: #e2e8f0;
    z-index: 0;
}

.progress-line-fill {
    position: absolute;
    top: 35px;
    left: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    z-index: 1;
    transition: width 0.5s ease;
}

.step-item-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border: 3px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-bottom: 12px;
}

.step-icon-wrap.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    transform: scale(1.1);
}

.step-icon-wrap.completed {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.step-icon-wrap i {
    font-size: 28px;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.step-icon-wrap.active i,
.step-icon-wrap.completed i {
    color: white;
}

.step-text {
    text-align: center;
}

.step-title {
    font-weight: 700;
    color: #1e293b;
    font-size: 14px;
    margin-bottom: 2px;
}

.step-desc {
    font-size: 12px;
    color: #94a3b8;
}

.step-item-modern.active .step-title {
    color: #667eea;
}

/* Form Card */
.form-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.form-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
}

.form-header-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.form-header-icon i {
    font-size: 28px;
    color: white;
}

.form-header-text h4 {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.form-header-text p {
    color: #64748b;
    font-size: 14px;
    margin: 0;
}

/* Custom Form Controls */
.custom-input {
    height: 56px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    background: #f8fafc;
    padding: 0 16px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.custom-input:focus {
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    outline: none;
}

.custom-input::placeholder {
    color: #94a3b8;
}

.custom-select {
    height: 56px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    background: #f8fafc;
    padding: 0 16px;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.custom-select:focus {
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    outline: none;
}

.form-label-custom {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 14px;
    display: block;
}

.form-label-custom .required {
    color: #ef4444;
}

/* Custom Textarea */
.custom-textarea {
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    background: #f8fafc;
    padding: 16px;
    font-size: 15px;
    transition: all 0.3s ease;
    resize: vertical;
}

.custom-textarea:focus {
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    outline: none;
}

/* Navigation Buttons */
.btn-nav-prev {
    background: #f1f5f9;
    color: #475569;
    border: none;
    border-radius: 12px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-nav-prev:hover {
    background: #e2e8f0;
    transform: translateX(-3px);
}

.btn-nav-next {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    cursor: pointer;
}

.btn-nav-next:hover {
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
    transform: translateY(-2px) translateX(3px);
}

.btn-submit {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    cursor: pointer;
}

.btn-submit:hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
    transform: translateY(-3px);
}

/* Info Cards in Form */
.info-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.info-card i {
    color: #0284c7;
    font-size: 20px;
    margin-right: 12px;
}

.info-card p {
    margin: 0;
    color: #0369a1;
    font-size: 14px;
}

/* Custom Checkbox */
.custom-checkbox-wrap {
    display: flex;
    align-items: flex-start;
}

.custom-checkbox-wrap input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    accent-color: #667eea;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Responsive */
@media (max-width: 992px) {
    .apply-hero .hero-title {
        font-size: 38px;
    }

    .hero-stats {
        gap: 15px;
    }

    .apply-hero .stat-card {
        padding: 15px 20px;
    }

    .apply-hero .stat-number {
        font-size: 26px;
    }

    .progress-steps-modern {
        flex-wrap: wrap;
        gap: 20px;
    }

    .progress-steps-modern::before,
    .progress-line-fill {
        display: none;
    }

    .step-item-modern {
        flex: 0 0 calc(50% - 10px);
    }

    .form-card {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .apply-hero {
        padding: 140px 0 100px;
        min-height: auto;
    }

    .apply-hero .hero-title {
        font-size: 30px;
    }

    .apply-hero .hero-subtitle {
        font-size: 15px;
    }

    .apply-hero .stat-card {
        flex: 1 1 calc(50% - 10px);
    }

    .feature-pills {
        gap: 8px;
    }

    .feature-pill {
        padding: 8px 14px;
        font-size: 12px;
    }

    .step-item-modern {
        flex: 0 0 100%;
    }

    .step-icon-wrap {
        width: 60px;
        height: 60px;
    }

    .step-icon-wrap i {
        font-size: 24px;
    }

    .form-header {
        flex-direction: column;
        text-align: center;
    }

    .form-header-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Animation for form steps */
.step-content {
    animation: fadeInStep 0.4s ease-out;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

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

/* Form Validation Styles */
.custom-input.is-invalid,
.custom-select.is-invalid,
.custom-textarea.is-invalid {
    border-color: #ef4444 !important;
    background-image: none !important;
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #ef4444;
    font-weight: 500;
}

/* ========== BLOG PAGE STYLES ========== */
/* Blog Page Styles */
.blog-hero-banner {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 180px 0 120px;
    overflow: hidden;
}

.blog-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.blog-content-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.premium-blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.premium-blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.blog-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

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

.category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: var(--card-gradient);
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.read-time-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    font-size: 12px;
    font-weight: 600;
    color: #1a1a2e;
    z-index: 2;
}

.blog-card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 13px;
    color: #64748b;
}

.blog-title {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.4;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.premium-blog-card:hover .blog-title {
    color: #667eea;
}

.blog-excerpt {
    font-size: 14px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 1.5rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.author-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 13px;
    color: #64748b;
}

.read-more-link {
    color: #667eea;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.read-more-link:hover {
    gap: 1rem;
}

.sidebar-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.sidebar-title {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.search-box {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 0.9rem 3rem 0.9rem 1.2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-button {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    transform: translateY(-50%) scale(1.05);
}

.category-item {
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.category-item:hover,
.category-item.active {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-color: rgba(102, 126, 234, 0.2);
}

.category-name {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
}

.category-count {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
}

.popular-post-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.popular-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-post-item:hover {
    transform: translateX(5px);
}

.popular-post-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.popular-post-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.4;
    margin-bottom: 0.3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.popular-post-date {
    font-size: 12px;
    color: #64748b;
}

.newsletter-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.newsletter-title {
    font-size: 22px;
    font-weight: 800;
    color: white;
    margin-bottom: 0.8rem;
}

.newsletter-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
}

.newsletter-input {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    border: none;
    font-size: 14px;
    margin-bottom: 1rem;
}

.newsletter-button {
    width: 100%;
    padding: 0.9rem 1.5rem;
    border-radius: 12px;
    background: white;
    color: #667eea;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.pagination {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.page-link {
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    background: white;
    color: #1a1a2e;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.page-link:hover,
.page-link.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

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

    .premium-blog-card {
        margin-bottom: 2rem;
    }
}

/* ========== CONTACT PAGE STYLES ========== */
/* Contact Page Hero Banner */
.contact-hero-banner {
    position: relative;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    padding: 140px 0 80px;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.contact-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 40%);
}

/* Gradient Orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orb-float 8s ease-in-out infinite;
}

.gradient-orb.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.4) 0%, rgba(118, 75, 162, 0.3) 100%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.gradient-orb.orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.3) 0%, rgba(245, 87, 108, 0.2) 100%);
    bottom: -50px;
    left: -50px;
    animation-delay: 4s;
}

@keyframes orb-float {

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

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

/* Grid Pattern */
.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.floating-shape.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: 10%;
    animation-delay: 2s;
}

.floating-shape.shape-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    left: 5%;
    animation-delay: 4s;
}

/* Floating Icons */
.floating-icon-hero {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float-icon 5s ease-in-out infinite;
    z-index: 1;
}

.floating-icon-hero i {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.8);
}

.floating-icon-hero.icon-1 {
    top: 20%;
    left: 8%;
    animation-delay: 0s;
}

.floating-icon-hero.icon-2 {
    top: 15%;
    right: 12%;
    animation-delay: 1s;
}

.floating-icon-hero.icon-3 {
    bottom: 25%;
    left: 12%;
    animation-delay: 2s;
}

.floating-icon-hero.icon-4 {
    bottom: 30%;
    right: 8%;
    animation-delay: 3s;
}

@keyframes float-icon {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    font-size: 18px;
    color: #4ade80;
}

.hero-badge span {
    font-size: 14px;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
}

/* Enhanced Title */
.hero-title-enhanced {
    font-size: 64px;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #f093fb 50%, #4facfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
    background-size: 200% 200%;
}

@keyframes gradient-shift {

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

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

.hero-subtitle-enhanced {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Quick Contact Badges */
.quick-contact-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.quick-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
}

.quick-badge.whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: rgba(37, 211, 102, 0.5);
}

.badge-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-badge.whatsapp .badge-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.badge-icon i {
    font-size: 20px;
    color: white;
}

.badge-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.badge-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.badge-value {
    font-size: 14px;
    color: white;
    font-weight: 600;
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.scroll-indicator span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {

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

    50% {
        transform: translateY(8px);
        opacity: 0.3;
    }
}

/* Legacy styles kept for compatibility */
.hero-title {
    font-size: 56px;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
}

/* Contact Info Cards */
.contact-info-section {
    padding: 100px 0 60px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-info-card-premium {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    height: 100%;
    text-align: center;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-info-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--card-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.contact-info-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-info-card-premium:hover::before {
    transform: scaleX(1);
}

.contact-icon-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--card-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.5s ease;
}

.contact-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: var(--card-gradient);
    opacity: 0.2;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }

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

.contact-icon-wrapper i {
    font-size: 36px;
    color: white;
}

.contact-info-card-premium:hover .contact-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.contact-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.contact-card-text {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 1rem;
}

.contact-card-link {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card-link:hover {
    color: #764ba2;
    transform: translateX(5px);
}

.contact-card-secondary-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    margin-top: 0.75rem;
    transition: all 0.3s ease;
}

.contact-card-secondary-link:hover {
    color: #667eea;
}

/* Contact Form Section */
.contact-form-section {
    padding: 60px 0 120px;
    background: #ffffff;
}

.contact-form-wrapper {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-section-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.form-section-subtitle {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 2rem;
}

.premium-form-group {
    margin-bottom: 1.5rem;
}

.premium-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.premium-form-input,
.premium-form-select,
.premium-form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 15px;
    color: #1a1a2e;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    outline: none;
}

.premium-form-input:focus,
.premium-form-select:focus,
.premium-form-textarea:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
}

.premium-form-input::placeholder,
.premium-form-textarea::placeholder {
    color: #94a3b8;
}

.premium-form-textarea {
    min-height: 140px;
    resize: vertical;
}

.submit-btn-wrapper {
    margin-top: 1rem;
}

.premium-submit-btn {
    width: 100%;
    padding: 1.1rem 2rem;
    font-size: 16px;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

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

.premium-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.premium-submit-btn:hover::before {
    left: 100%;
}

.premium-submit-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.premium-submit-btn:hover i {
    transform: translateX(5px);
}

/* Map Section */
.map-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 600px;
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 600px;
    border: none;
}

.map-overlay-card {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.map-overlay-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.map-overlay-address {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 1rem;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 14px;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Quick Contact CTA */
.quick-contact-cta {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    overflow: hidden;
}

.quick-contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.cta-btn.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn.btn-whatsapp {
    background: #25D366;
    color: white;
}

.cta-btn.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.faq-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 17px;
    font-weight: 600;
    color: #1a1a2e;
}

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

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

.faq-answer {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-title-enhanced {
        font-size: 48px;
    }

    .floating-icon-hero {
        display: none;
    }

    .cta-buttons {
        justify-content: flex-start;
        margin-top: 1.5rem;
    }

    .map-wrapper {
        min-height: 400px;
        margin-top: 2rem;
    }

    .map-wrapper iframe {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-hero-banner {
        padding: 140px 0 80px;
        min-height: auto;
    }

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

    .hero-title-enhanced {
        font-size: 36px;
    }

    .hero-subtitle-enhanced {
        font-size: 16px;
        margin-bottom: 2rem;
    }

    .quick-contact-badges {
        flex-direction: column;
        align-items: center;
        margin-bottom: 2rem;
    }

    .quick-badge {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .scroll-indicator {
        display: none;
    }

    .gradient-orb {
        display: none;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .form-section-title {
        font-size: 26px;
    }

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

    .cta-subtitle {
        font-size: 16px;
    }

    .map-overlay-card {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
}

/* ========== COUNSELLING PAGE STYLES ========== */
/* Counselling Page Styles */

/* Hero Banner */
.counselling-hero-banner {
    position: relative;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 160px 0 100px;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.counselling-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(236, 72, 153, 0.15) 0%, transparent 40%);
}

.counselling-title {
    font-size: 56px;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.counselling-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits Section */
.counselling-benefits {
    padding: 100px 0;
    background: #ffffff;
}

.benefit-card-premium {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.benefit-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
}

.benefit-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 32px;
    color: white;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
}

/* Booking Section */
.booking-section {
    padding: 100px 0;
    background: #f8fafc;
}

.booking-info-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.session-type-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 16px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.session-type-card:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.session-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.session-icon.online {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.session-icon.offline {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.session-icon.phone {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.booking-form-premium {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.form-group-premium label {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control-premium {
    width: 100%;
    padding: 0.8rem 1.25rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    transition: all 0.3s ease;
    color: #1e293b;
}

.form-control-premium:focus {
    background: white;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    outline: none;
}

.btn-book-premium {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-book-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

/* ========== COURSES PAGE STYLES ========== */
/* Courses Page Styles */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.transition-all {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.sticky-top {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95) !important;
}

/* Category Tabs Styling */
.category-tabs {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.category-tab-btn {
    padding: 0.6rem 1.25rem;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f3f4f6;
    color: #374151;
}

.category-tab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-tab-btn.active {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

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

/* ========== INSTITUTIONS PAGE STYLES ========== */
/* Institutions Page Styles */

/* Hero Section */
.institutions-hero {
    position: relative;
    background: linear-gradient(135deg, #1e3a5f 0%, #0d1b2a 100%);
    padding: 160px 0 120px;
    overflow: hidden;
}

.institutions-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
}

.institutions-hero-content {
    position: relative;
    z-index: 2;
}

.institutions-title {
    font-size: 52px;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.institutions-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

/* Search Box */
.search-box-wrapper {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-top: 2rem;
}

.search-input-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.search-input {
    flex: 1;
    min-width: 200px;
    padding: 0.875rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.search-select {
    min-width: 180px;
    padding: 0.875rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    background: white;
    cursor: pointer;
}

.search-btn {
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

/* Stats Bar */
.stats-bar {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Filters Section */
.filters-section {
    padding: 2rem 0;
    background: #f8fafc;
    position: sticky;
    top: 80px;
    z-index: 100;
    border-bottom: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
    .filters-section {
        padding: 1rem 0;
        top: 60px;
        /* Adjust based on mobile header height */
    }
}

.filter-btn {
    padding: 0.6rem 1.25rem;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #6366f1;
    color: #6366f1;
}

.filter-btn.active {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    border-color: transparent;
    color: white;
}

/* Responsive Filter Scroll View */
.filters-scroll-view {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.75rem;
    overflow-x: auto;
    width: 100%;
    max-width: 100%;
    padding: 0.5rem 0.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
    scroll-snap-type: x mandatory;
    align-items: center;
}

.filters-scroll-view::-webkit-scrollbar {
    display: none;
}

.filters-scroll-view .filter-btn {
    white-space: nowrap;
    scroll-snap-align: start;
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .filters-scroll-view {
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: visible;
        padding: 0;
    }

    .filters-scroll-view .filter-btn {
        scroll-snap-align: none;
    }
}

/* Institutions Grid */
.institutions-grid {
    padding: 60px 0 100px;
    background: #f8fafc;
}

/* Premium Institution Card */
.institution-card-premium {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.institution-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.institution-card-header {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, #1e3a5f 0%, #0d1b2a 100%);
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.institution-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
}

.institution-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    width: fit-content;
}

.institution-shortname {
    font-size: 42px;
    font-weight: 900;
    color: white;
    opacity: 0.9;
    letter-spacing: -1px;
}

.accreditation-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 0.8rem;
    background: #10b981;
    color: white;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
}

.institution-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.institution-name {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.institution-location {
    font-size: 14px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.institution-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 13px;
    color: #64748b;
}

.meta-item i {
    color: #6366f1;
}

.courses-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.course-tag {
    padding: 0.3rem 0.6rem;
    background: #f1f5f9;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #475569;
}

.course-tag.more {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: white;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    font-size: 12px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.feature-item i {
    color: #10b981;
    font-size: 14px;
}

.institution-card-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.contact-links a {
    color: #6366f1;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.contact-links a:hover {
    color: #a855f7;
}

.apply-btn-small {
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.apply-btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
    color: white;
}

/* CTA Section */
.institutions-cta {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.institutions-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results-icon {
    font-size: 64px;
    color: #cbd5e1;
    margin-bottom: 1rem;
}

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

    .search-input-group {
        flex-direction: column;
    }

    .search-input,
    .search-select {
        width: 100%;
    }

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

    .institution-shortname {
        font-size: 32px;
    }
}