@tailwind base;
@tailwind components;
@tailwind utilities;

/* Main Styles Extracted from index.html */
:root {
    --primary: #074a86;
    /* Karunya Royal Blue */
    --secondary: #00d2ff;
    /* Electric Blue */
    --accent: #f59e0b;
    /* Energy Amber */
    --text-main: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --glass: rgba(255, 255, 255, 0.85);
    --card-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom Styles & Utilities */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
    background-color: #FAFCFF;
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-container {
    width: 100%;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .brand {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.logo-text .dept {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Updated Nav Structure for Expandable Layout */
.nav-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* Align to right */
    width: 100%;
    padding-left: 2rem;
    position: relative;
}

.nav-row {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin-bottom: 0;
    width: 100%;
    justify-content: flex-end;
    /* Align items to right */
    align-items: center;
}

.nav-row.bottom {
    display: none;
    /* Hidden by default */
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.nav-row.bottom.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

/* Hide bottom row when top row is hovered (Desktop) */
@media (min-width: 1101px) {
    .nav-wrapper:has(.nav-row.top .nav-item:hover) .nav-row.bottom.active {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

}

/* Desktop Toggle Button */
.desktop-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(7, 74, 134, 0.1);
    color: var(--primary);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    margin-left: 0.5rem;
    border: 1px solid rgba(7, 74, 134, 0.1);
}

.desktop-toggle:hover {
    background: var(--primary);
    color: white;
}

.desktop-toggle.active [data-lucide] {
    transform: rotate(180deg);
}

/* Mobile Responsive Adjustments */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .mobile-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        z-index: 1001;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        transition: var(--transition);
        color: var(--primary);
        font-size: 30px;
        /* Ensure text icon is large enough */
        line-height: 1;
    }

    .desktop-toggle {
        display: none;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 80px 1rem 2rem;
        overflow-y: auto;
    }

    .nav-wrapper.active {
        right: 0;
    }

    .nav-row {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem !important;
        width: 100% !important;
        margin-bottom: 0;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .nav-row.bottom {
        margin-top: 0.75rem;
    }

    /* Stable Hover Logic - Fix Flickering */
    .nav-item {
        transition: opacity 0.2s ease;
    }

    /* Hide others when one is hovered without shifting layout */
    .nav-wrapper:has(.nav-item:hover) .nav-item:not(:hover) {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .nav-item:hover {
        /* Removed grid-column: span 2 to prevent shifting/flickering */
        z-index: 10;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0.5rem 0 0.5rem 1.5rem;
        display: none;
        min-width: auto;
        width: 100%;
        border: none;
        background: transparent;
    }

    /* Show dropdown on hover/focus */
    .nav-item:hover .dropdown,
    .nav-item:focus-within .dropdown {
        display: block;
    }

    /* Make the link occupy full width if needed when focused */
    .nav-item:hover .nav-link {
        background: rgba(7, 74, 134, 0.08);
        color: var(--primary);
    }

    .nav-link {
        justify-content: center;
        width: 100%;
        text-align: center;
        background: rgba(7, 74, 134, 0.03);
    }
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link:hover {
    background: rgba(7, 74, 134, 0.05);
    color: var(--primary);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 240px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 0.6rem 1rem;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.85rem;
    border-radius: 6px;
    transition: var(--transition);
}

.dropdown a:hover {
    background: var(--bg-light);
    color: var(--primary);
    padding-left: 1.25rem;
}

.mobile-toggle {
    display: none;
    color: var(--primary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-toggle:hover {
    background: rgba(7, 74, 134, 0.1);
}

/* --- Slider Controls --- */
.slider-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.nav-btn {
    width: 45px;
    height: 45px;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 4px;
    /* Square with slight radius */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-main);
}

.nav-btn:hover {
    border-color: var(--text-main);
    background: var(--bg-light);
}

.nav-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.progress-bar {
    flex-grow: 1;
    /* Take remaining space or fixed width */
    max-width: 200px;
    /* Limit width as per design */
    height: 2px;
    background: #e2e8f0;
    position: relative;
    border-radius: 1px;
}

.progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: black;
    width: 33%;
    /* Start at 1/3 */
    transition: width 0.3s ease, left 0.3s ease;
}

/* Hide slider controls on desktop/laptop */
@media (min-width: 1025px) {
    .slider-controls {
        display: none !important;
    }

    .programs-track {
        transform: none !important;
        /* Reset transform on desktop since slider is hidden */
        justify-content: center;
        flex-wrap: wrap;
    }

    .program-card {
        flex: 0 0 calc(33.333% - 2rem);
    }
}

/* Ambient Background Glows (Mesh Gradient Effect) */
.bg-glow-teal {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 184, 191, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.bg-glow-blue {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

/* Richer Glassmorphism Cards */
.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 255, 0.85) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 1);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    border-right: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 10px 40px -10px rgba(37, 99, 235, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 184, 191, 0.25);
    border-color: rgba(0, 184, 191, 0.3);
}

/* 3D Flip Cards */
.flip-card {
    background-color: transparent;
    perspective: 1200px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 1.5rem;
}

.flip-card-back {
    transform: rotateY(180deg);
}

/* Infinite Marquee */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background: linear-gradient(90deg, rgba(230, 239, 255, 0.8) 0%, rgba(229, 252, 251, 0.8) 50%, rgba(230, 239, 255, 0.8) 100%);
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee 60s linear infinite;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.marquee-content>div {
    flex-shrink: 0;
}

@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Vertical Marquee */
.vertical-marquee-wrapper {
    height: 450px;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.vertical-marquee {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    animation: scrollVertical 25s linear infinite;
}

.vertical-marquee.reverse {
    animation: scrollVerticalReverse 25s linear infinite;
}

@keyframes scrollVertical {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes scrollVerticalReverse {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

/* Hero Spotlight Pulse */
.hero-spotlight {
    background: radial-gradient(circle at center, rgba(0, 184, 191, 0.2) 0%, rgba(37, 99, 235, 0.1) 40%, transparent 70%);
    animation: pulse-spotlight 6s ease-in-out infinite alternate;
}

@keyframes pulse-spotlight {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Three.js Canvas Overlays */
.three-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.content-layer {
    position: relative;
    z-index: 10;
}

/* Feature Pills Rich Hover */
.feature-pill {
    transition: all 0.3s ease;
}

.feature-pill:hover {
    background-color: #F0FFFE;
    border-color: #00B8BF;
    transform: translateX(8px) !important;
}

/* Carousel Styles */
.carousel-wrapper {
    width: 100%;
    overflow: hidden;
}

.carousel-container {
    display: flex;
    width: 100%;
    gap: 2rem;
    /* Reverted back to 2rem */
    padding: 1.5rem 0;
}

.carousel-card {
    flex: 0 0 100%;
    min-width: 100%;
}

@media (min-width: 768px) {
    .carousel-card {
        flex: 0 0 calc(25% - 24px);
        /* Correct for 2rem (32px) gap: 3*32/4 = 24px */
        min-width: calc(25% - 24px);
    }
}

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

.carousel-dot:hover {
    transform: scale(1.2);

    box-shadow: 0 4px 12px rgba(0, 184, 191, 0.15);
}

/* Hide scrollbar for horizontal pin */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}





/* --- Footer --- */
footer {
    background: #050505;
    color: white;
    padding: 5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.5rem;
}

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

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Vision & Mission Styles (Tabbed Refinement) */
#vision-mission {
    background: #ffffff;
}

.tab-button {
    flex: 1;
    border: 1px solid rgba(13, 36, 79, 0.08);
    background: rgba(244, 247, 255, 0.4);
    backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.tab-button:hover {
    border-color: rgba(33, 90, 212, 0.2);
    background: rgba(244, 247, 255, 0.8);
    transform: translateY(-2px);
}

.tab-button.active {
    background: #ffffff;
    border-color: rgba(33, 90, 212, 0.3);
    box-shadow: 0 10px 25px -5px rgba(13, 36, 79, 0.08);
    transform: translateY(-2px);
}

.tab-button .icon-box {
    background: white;
    color: #0d244f;
    /* Navy Icon */
    transition: all 0.3s ease;
}

.tab-button.active .icon-box {
    background: #0d244f;
    color: white;
}

.tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #F4F7FF 0%, #E6EFFF 50%, #E5FCFB 100%);
    border: 1px solid rgba(33, 90, 212, 0.1);
    box-shadow: 0 20px 50px -20px rgba(13, 36, 79, 0.1);
    margin-top: 1rem;
    padding: 1.5rem;
    border-radius: 2rem;
    width: 100%;
}

.vm-gradient-text {
    background: linear-gradient(135deg, #074a86 0%, #00d2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* Fallback */
    display: inline-block;
}

.vm-gradient-badge {
    background: linear-gradient(135deg, #074a86 0%, #00d2ff 100%);
    color: white;
}

.vm-gradient-circle {
    background: linear-gradient(135deg, #074a86 0%, #00d2ff 100%);
    color: white;
}

.tab-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 1024px) {
    .tab-pane {
        margin-top: 2rem;
        padding: 4rem;
        border-radius: 3.5rem;
    }
}

/* --- Testimonies Section --- */
.testimonies-viewport {
    overflow: hidden;
    width: 100%;
    padding: 2rem 0 2rem 0;
    margin-right: -2rem;
    padding-right: 2rem;
}

.testimonies-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card-wrapper {
    flex: 0 0 calc(50% - 1rem);
    /* 2 cards per view on desktop */
    min-width: 0;
    aspect-ratio: 2 / 1;
}

@media (max-width: 768px) {
    .testimonies-viewport {
        margin-right: 0 !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .testimonies-track {
        gap: 0 !important;
    }

    .testimonial-card-wrapper {
        flex: 0 0 100% !important;
        aspect-ratio: auto !important;
        padding: 0 1.5rem !important; /* Space between cards in 100% slide */
        box-sizing: border-box;
    }

    .testimonial-card {
        flex-direction: column-reverse;
        text-align: center;
        gap: 1.5rem !important;
        padding: 1.5rem !important;
        height: auto !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .testimonial-card>.flex-1 {
        align-items: center !important;
        justify-content: center !important;
        width: 100%;
    }

    .testimonial-profile {
        width: 120px !important;
        height: 120px !important;
        border-radius: 50% !important;
        margin-bottom: 0.5rem;
    }

    .quote-icon {
        font-size: 3rem !important;
        margin-top: 0.5rem !important;
        margin-bottom: -1rem !important;
    }

    .star-rating {
        justify-content: center !important;
    }
}

.testimonial-card {
    background-color: #0A1F44;
    border-radius: 2rem;
    padding: 1.5rem 2rem 2.5rem 2rem;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3.5rem;
    overflow: hidden;
}

.testimonial-card>.flex-1 {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 0.5rem;
}

.testimonial-card>.flex-shrink-0 {
    flex-shrink: 0;
}

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

.testimonial-profile {
    width: 180px;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.quote-icon {
    font-size: 5rem;
    line-height: 1;
    color: white;
    font-family: serif;
    opacity: 1;
    margin-bottom: -2rem;
    margin-top: 2.5rem;
}

.star-rating {
    color: white;
    display: flex;
    gap: 4px;
    margin-bottom: 0.5rem;
}

.testimony-highlight {
    background-color: #2563EB;
    color: white;
    padding: 0 1.25rem;
    border-radius: 8px;
    display: inline-block;
}

.testimony-dot.active {
    background-color: var(--primary);
    width: 30px;
}

/* --- FAQ Accordion --- */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid rgba(13, 36, 79, 0.08);
    border-radius: 1.25rem;
    margin-bottom: 1.25rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 10px 25px -5px rgba(13, 36, 79, 0.05);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 20px 40px -10px rgba(7, 74, 134, 0.1);
}

.faq-trigger {
    width: 100%;
    padding: 1.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
    text-align: left;
    outline: none;
}

.faq-question {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    padding-right: 2rem;
    line-height: 1.4;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

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

.faq-item.active .faq-content {
    max-height: 500px;
    border-top: 1px solid rgba(13, 36, 79, 0.05);
}

.faq-answer {
    padding: 2rem;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.testimony-dot {
    width: 10px;
    height: 10px;
    border-radius: 99px;
    background: #D1D5DB;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimony-dot.active {
    background: #2563EB;
    width: 32px;
}

@media (max-width: 1024px) {
    .tab-container {
        flex-direction: column;
    }

    .tab-button {
        width: 100%;
    }
}

/* Additional Component Styles */
.hero-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 1.6rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1.5px solid rgba(0, 184, 191, 0.25);
    box-shadow: 0 4px 24px -4px rgba(0, 184, 191, 0.15), 0 0 0 1px rgba(255,255,255,0.5) inset;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    transition: all 0.4s ease;
    margin-bottom: 2rem;
}

@media (max-width: 480px) {
    .hero-badge {
        padding: 0.6rem 1.2rem;
        letter-spacing: 0.08em;
        font-size: 0.7rem;
    }
}
.hero-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: -1;
}
.hero-badge-text {
    background: linear-gradient(135deg, #0A1F44 0%, #2563EB 50%, #00B8BF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}
.hero-badge-dot {
    position: relative;
    width: 8px;
    height: 8px;
}
.hero-badge-dot::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #00B8BF, #2563EB);
    animation: badge-pulse 2s ease-in-out infinite;
}
.hero-badge-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00B8BF, #2563EB);
    opacity: 0;
    animation: badge-ping 2s ease-in-out infinite;
}
@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}
@keyframes badge-ping {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(2.2); opacity: 0; }
}

.hero-btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #00B8BF 0%, #2563EB 100%);
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
    border: none;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 8px 30px -4px rgba(0, 184, 191, 0.45), 0 0 0 1px rgba(255,255,255,0.15) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    z-index: 1;
}
.hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: none;
    animation: hero-shimmer 3s ease-in-out infinite;
    z-index: 0;
}
@keyframes hero-shimmer {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}
.hero-btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 40px -4px rgba(0, 184, 191, 0.55), 0 0 60px -10px rgba(37, 99, 235, 0.3), 0 0 0 1px rgba(255,255,255,0.2) inset;
}
.hero-btn-primary .hero-btn-arrow {
    display: inline-flex;
    transition: transform 0.3s ease;
}
.hero-btn-primary:hover .hero-btn-arrow {
    transform: translateX(4px);
}

.hero-btn-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.1rem 2.5rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #0A1F44;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
    border: 1.5px solid rgba(10, 31, 68, 0.12);
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 4px 20px -4px rgba(10, 31, 68, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}
.hero-btn-secondary:hover {
    transform: translateY(-3px) scale(1.03);
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 184, 191, 0.4);
    box-shadow: 0 10px 30px -4px rgba(0, 184, 191, 0.18), 0 0 0 1px rgba(0, 184, 191, 0.15);
    color: #00B8BF;
}
/*
! tailwindcss v3.4.1 | MIT License | https://tailwindcss.com
*/

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: #e5e7eb;
  /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  font-family: "Plus Jakarta Sans", sans-serif;
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
  font-variation-settings: normal;
  /* 6 */
  -webkit-tap-highlight-color: transparent;
  /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0;
  /* 1 */
  line-height: inherit;
  /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* 1 */
  font-feature-settings: normal;
  /* 2 */
  font-variation-settings: normal;
  /* 3 */
  font-size: 1em;
  /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
  border-collapse: collapse;
  /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-feature-settings: inherit;
  /* 1 */
  font-variation-settings: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  color: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  padding: 0;
  /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

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

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden] {
  display: none;
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

.pointer-events-none {
  pointer-events: none;
}

.visible {
  visibility: visible;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.inset-0 {
  inset: 0px;
}

.bottom-10 {
  bottom: 2.5rem;
}

.bottom-4 {
  bottom: 1rem;
}

.bottom-8 {
  bottom: 2rem;
}

.bottom-\[-10\%\] {
  bottom: -10%;
}

.left-1\/2 {
  left: 50%;
}

.left-6 {
  left: 1.5rem;
}

.left-\[-10\%\] {
  left: -10%;
}

.right-0 {
  right: 0px;
}

.right-\[-10\%\] {
  right: -10%;
}

.right-\[-20\%\] {
  right: -20%;
}

.top-0 {
  top: 0px;
}

.top-20 {
  top: 5rem;
}

.top-6 {
  top: 1.5rem;
}

.top-\[-10\%\] {
  top: -10%;
}

.top-\[-20\%\] {
  top: -20%;
}

.top-\[20\%\] {
  top: 20%;
}

.-z-10 {
  z-index: -10;
}

.z-0 {
  z-index: 0;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-20 {
  margin-bottom: 5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.ms-1 {
  margin-inline-start: 0.25rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-auto {
  margin-top: auto;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.h-1 {
  height: 0.25rem;
}

.h-1\.5 {
  height: 0.375rem;
}

.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 3rem;
}

.h-14 {
  height: 3.5rem;
}

.h-16 {
  height: 4rem;
}

.h-2 {
  height: 0.5rem;
}

.h-24 {
  height: 6rem;
}

.h-3 {
  height: 0.75rem;
}

.h-32 {
  height: 8rem;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-64 {
  height: 16rem;
}

.h-72 {
  height: 18rem;
}

.h-8 {
  height: 2rem;
}

.h-\[420px\] {
  height: 420px;
}

.h-\[500px\] {
  height: 500px;
}

.h-\[600px\] {
  height: 600px;
}

.h-\[800px\] {
  height: 800px;
}

.h-\[900px\] {
  height: 900px;
}

.h-full {
  height: 100%;
}

.min-h-screen {
  min-height: 100vh;
}

.w-0 {
  width: 0px;
}

.w-0\.5 {
  width: 0.125rem;
}

.w-10 {
  width: 2.5rem;
}

.w-12 {
  width: 3rem;
}

.w-14 {
  width: 3.5rem;
}

.w-16 {
  width: 4rem;
}

.w-2 {
  width: 0.5rem;
}

.w-24 {
  width: 6rem;
}

.w-3 {
  width: 0.75rem;
}

.w-32 {
  width: 8rem;
}

.w-4 {
  width: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-64 {
  width: 16rem;
}

.w-8 {
  width: 2rem;
}

.w-\[600px\] {
  width: 600px;
}

.w-\[800px\] {
  width: 800px;
}

.w-\[900px\] {
  width: 900px;
}

.w-full {
  width: 100%;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.max-w-\[1850px\] {
  max-width: 1850px;
}

.max-w-\[280px\] {
  max-width: 280px;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-shrink {
  flex-shrink: 1;
}

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

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

.grow {
  flex-grow: 1;
}

.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-x-1\/2 {
  --tw-translate-x: 50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-y-4 {
  --tw-translate-y: 1rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-y-8 {
  --tw-translate-y: 2rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

.animate-bounce {
  animation: bounce 1s infinite;
}

@keyframes pulse {
  50% {
    opacity: .5;
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.cursor-default {
  cursor: default;
}

.cursor-pointer {
  cursor: pointer;
}

.resize {
  resize: both;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.items-stretch {
  align-items: stretch;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-16 {
  gap: 4rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-24 {
  gap: 6rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}

.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}

.overflow-hidden {
  overflow: hidden;
}

.scroll-smooth {
  scroll-behavior: smooth;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.rounded-\[2\.5rem\] {
  border-radius: 2.5rem;
}

.rounded-\[2rem\] {
  border-radius: 2rem;
}

.rounded-\[3rem\] {
  border-radius: 3rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-bl-full {
  border-bottom-left-radius: 9999px;
}

.border {
  border-width: 1px;
}

.border-2 {
  border-width: 2px;
}

.border-4 {
  border-width: 4px;
}

.border-y-2 {
  border-top-width: 2px;
  border-bottom-width: 2px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-l {
  border-left-width: 1px;
}

.border-l-4 {
  border-left-width: 4px;
}

.border-t {
  border-top-width: 1px;
}

.border-t-2 {
  border-top-width: 2px;
}

.border-t-4 {
  border-top-width: 4px;
}

.border-blue-shimmer {
  border-color: rgba(37,99,235,0.15);
}

.border-lightgray {
  --tw-border-opacity: 1;
  border-color: rgb(203 213 225 / var(--tw-border-opacity));
}

.border-lightgray\/50 {
  border-color: rgb(203 213 225 / 0.5);
}

.border-navy\/5 {
  border-color: rgb(10 31 68 / 0.05);
}

.border-teal {
  --tw-border-opacity: 1;
  border-color: rgb(0 184 191 / var(--tw-border-opacity));
}

.border-teal-light {
  border-color: rgba(0,184,191,0.2);
}

.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
}

.border-t-blue-vibrant {
  --tw-border-opacity: 1;
  border-top-color: rgb(37 99 235 / var(--tw-border-opacity));
}

.border-t-navy {
  --tw-border-opacity: 1;
  border-top-color: rgb(10 31 68 / var(--tw-border-opacity));
}

.border-t-teal {
  --tw-border-opacity: 1;
  border-top-color: rgb(0 184 191 / var(--tw-border-opacity));
}

.bg-\[\#F8FAFC\] {
  --tw-bg-opacity: 1;
  background-color: rgb(248 250 252 / var(--tw-bg-opacity));
}

.bg-blue-shimmer {
  background-color: rgba(37,99,235,0.15);
}

.bg-iceblue\/30 {
  background-color: rgb(230 239 255 / 0.3);
}

.bg-lightgray\/50 {
  background-color: rgb(203 213 225 / 0.5);
}

.bg-pearl {
  --tw-bg-opacity: 1;
  background-color: rgb(244 247 255 / var(--tw-bg-opacity));
}

.bg-pearl\/50 {
  background-color: rgb(244 247 255 / 0.5);
}

.bg-teal {
  --tw-bg-opacity: 1;
  background-color: rgb(0 184 191 / var(--tw-bg-opacity));
}

.bg-teal-glow\/10 {
  background-color: rgb(224 250 251 / 0.1);
}

.bg-teal-light {
  background-color: rgba(0,184,191,0.2);
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.bg-white\/40 {
  background-color: rgb(255 255 255 / 0.4);
}

.bg-white\/50 {
  background-color: rgb(255 255 255 / 0.5);
}

.bg-white\/80 {
  background-color: rgb(255 255 255 / 0.8);
}

.bg-white\/90 {
  background-color: rgb(255 255 255 / 0.9);
}

.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-airymint {
  --tw-gradient-from: #E5FCFB var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(229 252 251 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-blue-vibrant {
  --tw-gradient-from: #2563EB var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(37 99 235 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-iceblue\/50 {
  --tw-gradient-from: rgb(230 239 255 / 0.5) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(230 239 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-navy {
  --tw-gradient-from: #0A1F44 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(10 31 68 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-pearl {
  --tw-gradient-from: #F4F7FF var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(244 247 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-teal {
  --tw-gradient-from: #00B8BF var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 184 191 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-white {
  --tw-gradient-from: #fff var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.via-iceblue {
  --tw-gradient-to: rgb(230 239 255 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #E6EFFF var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.to-\[\#008B92\] {
  --tw-gradient-to: #008B92 var(--tw-gradient-to-position);
}

.to-\[\#009A9F\] {
  --tw-gradient-to: #009A9F var(--tw-gradient-to-position);
}

.to-\[\#0F2A5C\] {
  --tw-gradient-to: #0F2A5C var(--tw-gradient-to-position);
}

.to-\[\#1D4ED8\] {
  --tw-gradient-to: #1D4ED8 var(--tw-gradient-to-position);
}

.to-airymint {
  --tw-gradient-to: #E5FCFB var(--tw-gradient-to-position);
}

.to-airymint\/50 {
  --tw-gradient-to: rgb(229 252 251 / 0.5) var(--tw-gradient-to-position);
}

.to-blue-vibrant {
  --tw-gradient-to: #2563EB var(--tw-gradient-to-position);
}

.to-iceblue {
  --tw-gradient-to: #E6EFFF var(--tw-gradient-to-position);
}

.to-white {
  --tw-gradient-to: #fff var(--tw-gradient-to-position);
}

.bg-clip-text {
  -webkit-background-clip: text;
          background-clip: text;
}

.fill-current {
  fill: currentColor;
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.object-center {
  -o-object-position: center;
     object-position: center;
}

.p-10 {
  padding: 2.5rem;
}

.p-12 {
  padding: 3rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.p-5 {
  padding: 1.25rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}

.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-\[20px\] {
  padding-top: 20px;
  padding-bottom: 20px;
}

.pb-12 {
  padding-bottom: 3rem;
}

.pb-5 {
  padding-bottom: 1.25rem;
}

.pr-24 {
  padding-right: 6rem;
}

.pt-32 {
  padding-top: 8rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-8 {
  padding-top: 2rem;
}

.text-left {
  text-align: left;
}

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

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.text-\[10px\] {
  font-size: 10px;
}

.text-\[11px\] {
  font-size: 11px;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.font-black {
  font-weight: 900;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.uppercase {
  text-transform: uppercase;
}

.leading-\[1\.1\] {
  line-height: 1.1;
}

.leading-normal {
  line-height: 1.5;
}

.leading-relaxed {
  line-height: 1.625;
}

.leading-tight {
  line-height: 1.25;
}

.tracking-\[0\.2em\] {
  letter-spacing: 0.2em;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.text-\[\#1F2937\] {
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity));
}

.text-blue-vibrant {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity));
}

.text-gray-300 {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity));
}

.text-navy {
  --tw-text-opacity: 1;
  color: rgb(10 31 68 / var(--tw-text-opacity));
}

.text-slate {
  --tw-text-opacity: 1;
  color: rgb(51 65 85 / var(--tw-text-opacity));
}

.text-teal {
  --tw-text-opacity: 1;
  color: rgb(0 184 191 / var(--tw-text-opacity));
}

.text-teal-glow {
  --tw-text-opacity: 1;
  color: rgb(224 250 251 / var(--tw-text-opacity));
}

.text-transparent {
  color: transparent;
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.opacity-0 {
  opacity: 0;
}

.opacity-100 {
  opacity: 1;
}

.opacity-40 {
  opacity: 0.4;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-95 {
  opacity: 0.95;
}

.opacity-\[0\.02\] {
  opacity: 0.02;
}

.shadow-\[0_0_50px_rgba\(0\2c 184\2c 191\2c 0\.15\)\] {
  --tw-shadow: 0 0 50px rgba(0,184,191,0.15);
  --tw-shadow-colored: 0 0 50px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-glass {
  --tw-shadow: 0 10px 40px -10px rgba(37,99,235,0.15);
  --tw-shadow-colored: 0 10px 40px -10px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-inner {
  --tw-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: inset 0 2px 4px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-xl {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.blur-\[120px\] {
  --tw-blur: blur(120px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.backdrop-blur-md {
  --tw-backdrop-blur: blur(12px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
          backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.backdrop-blur-sm {
  --tw-backdrop-blur: blur(4px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
          backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-700 {
  transition-duration: 700ms;
}

.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Main Styles Extracted from index.html */

:root {
  --primary: #074a86;
  /* Karunya Royal Blue */
  --secondary: #00d2ff;
  /* Electric Blue */
  --accent: #f59e0b;
  /* Energy Amber */
  --text-main: #1e293b;
  --text-light: #64748b;
  --bg-light: #f8fafc;
  --glass: rgba(255, 255, 255, 0.85);
  --card-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom Styles & Utilities */

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow-x: hidden;
  background-color: #FAFCFF;
}

/* --- Navigation --- */

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0.5rem 0;
  transition: var(--transition);
}

.nav-container {
  width: 100%;
  padding: 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .brand {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.logo-text .dept {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 1px;
}

/* Updated Nav Structure for Expandable Layout */

.nav-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  /* Align to right */
  width: 100%;
  padding-left: 2rem;
  position: relative;
}

.nav-row {
  display: flex;
  list-style: none;
  gap: 1rem;
  margin-bottom: 0;
  width: 100%;
  justify-content: flex-end;
  /* Align items to right */
  align-items: center;
}

.nav-row.bottom {
  display: none;
  /* Hidden by default */
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.nav-row.bottom.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

/* Hide bottom row when top row is hovered (Desktop) */

@media (min-width: 1101px) {
  .nav-wrapper:has(.nav-row.top .nav-item:hover) .nav-row.bottom.active {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

/* Desktop Toggle Button */

.desktop-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(7, 74, 134, 0.1);
  color: var(--primary);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  margin-left: 0.5rem;
  border: 1px solid rgba(7, 74, 134, 0.1);
}

.desktop-toggle:hover {
  background: var(--primary);
  color: white;
}

.desktop-toggle.active [data-lucide] {
  transform: rotate(180deg);
}

/* Mobile Responsive Adjustments */

@media (max-width: 1024px) {
  .nav-container {
    padding: 0 1.5rem;
  }

  .mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: var(--transition);
    color: var(--primary);
    font-size: 30px;
    /* Ensure text icon is large enough */
    line-height: 1;
  }

  .desktop-toggle {
    display: none;
  }

  .nav-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 80px 1rem 2rem;
    overflow-y: auto;
  }

  .nav-wrapper.active {
    right: 0;
  }

  .nav-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem !important;
    width: 100% !important;
    margin-bottom: 0;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .nav-row.bottom {
    margin-top: 0.75rem;
  }

  /* Stable Hover Logic - Fix Flickering */

  .nav-item {
    transition: opacity 0.2s ease;
  }

  /* Hide others when one is hovered without shifting layout */

  .nav-wrapper:has(.nav-item:hover) .nav-item:not(:hover) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .nav-item:hover {
    /* Removed grid-column: span 2 to prevent shifting/flickering */
    z-index: 10;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0.5rem 0 0.5rem 1.5rem;
    display: none;
    min-width: auto;
    width: 100%;
    border: none;
    background: transparent;
  }

  /* Show dropdown on hover/focus */

  .nav-item:hover .dropdown,
    .nav-item:focus-within .dropdown {
    display: block;
  }

  /* Make the link occupy full width if needed when focused */

  .nav-item:hover .nav-link {
    background: rgba(7, 74, 134, 0.08);
    color: var(--primary);
  }

  .nav-link {
    justify-content: center;
    width: 100%;
    text-align: center;
    background: rgba(7, 74, 134, 0.03);
  }
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover {
  background: rgba(7, 74, 134, 0.05);
  color: var(--primary);
}

/* Dropdown */

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 240px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 0.6rem 1rem;
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.85rem;
  border-radius: 6px;
  transition: var(--transition);
}

.dropdown a:hover {
  background: var(--bg-light);
  color: var(--primary);
  padding-left: 1.25rem;
}

.mobile-toggle {
  display: none;
  color: var(--primary);
  cursor: pointer;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: var(--transition);
}

.mobile-toggle:hover {
  background: rgba(7, 74, 134, 0.1);
}

/* --- Slider Controls --- */

.slider-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.nav-btn {
  width: 45px;
  height: 45px;
  border: 1px solid #e2e8f0;
  background: white;
  border-radius: 4px;
  /* Square with slight radius */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text-main);
}

.nav-btn:hover {
  border-color: var(--text-main);
  background: var(--bg-light);
}

.nav-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.progress-bar {
  flex-grow: 1;
  /* Take remaining space or fixed width */
  max-width: 200px;
  /* Limit width as per design */
  height: 2px;
  background: #e2e8f0;
  position: relative;
  border-radius: 1px;
}

.progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: black;
  width: 33%;
  /* Start at 1/3 */
  transition: width 0.3s ease, left 0.3s ease;
}

/* Hide slider controls on desktop/laptop */

@media (min-width: 1025px) {
  .slider-controls {
    display: none !important;
  }

  .programs-track {
    transform: none !important;
    /* Reset transform on desktop since slider is hidden */
    justify-content: center;
    flex-wrap: wrap;
  }

  .program-card {
    flex: 0 0 calc(33.333% - 2rem);
  }
}

/* Ambient Background Glows (Mesh Gradient Effect) */

.bg-glow-teal {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 184, 191, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

.bg-glow-blue {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

/* Richer Glassmorphism Cards */

.glass-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 255, 0.85) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 1);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  border-right: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 10px 40px -10px rgba(37, 99, 235, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(0, 184, 191, 0.25);
  border-color: rgba(0, 184, 191, 0.3);
}

/* 3D Flip Cards */

.flip-card {
  background-color: transparent;
  perspective: 1200px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 1.5rem;
}

.flip-card-back {
  transform: rotateY(180deg);
}

/* Infinite Marquee */

.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  background: linear-gradient(90deg, rgba(230, 239, 255, 0.8) 0%, rgba(229, 252, 251, 0.8) 50%, rgba(230, 239, 255, 0.8) 100%);
}

.marquee-content {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: marquee 60s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.marquee-content>div {
  flex-shrink: 0;
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Vertical Marquee */

.vertical-marquee-wrapper {
  height: 450px;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.vertical-marquee {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  animation: scrollVertical 25s linear infinite;
}

.vertical-marquee.reverse {
  animation: scrollVerticalReverse 25s linear infinite;
}

@keyframes scrollVertical {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

@keyframes scrollVerticalReverse {
  0% {
    transform: translateY(-50%);
  }

  100% {
    transform: translateY(0);
  }
}

/* Hero Spotlight Pulse */

.hero-spotlight {
  background: radial-gradient(circle at center, rgba(0, 184, 191, 0.2) 0%, rgba(37, 99, 235, 0.1) 40%, transparent 70%);
  animation: pulse-spotlight 6s ease-in-out infinite alternate;
}

@keyframes pulse-spotlight {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.1);
    opacity: 1;
  }
}

/* Three.js Canvas Overlays */

.three-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.content-layer {
  position: relative;
  z-index: 10;
}

/* Feature Pills Rich Hover */

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

.feature-pill:hover {
  background-color: #F0FFFE;
  border-color: #00B8BF;
  transform: translateX(8px) !important;
}

/* Carousel Styles */

.carousel-wrapper {
  width: 100%;
  overflow: hidden;
}

.carousel-container {
  display: flex;
  width: 100%;
  gap: 2rem;
  /* Reverted back to 2rem */
  padding: 1.5rem 0;
}

.carousel-card {
  flex: 0 0 100%;
  min-width: 100%;
}

@media (min-width: 768px) {
  .carousel-card {
    flex: 0 0 calc(25% - 24px);
    /* Correct for 2rem (32px) gap: 3*32/4 = 24px */
    min-width: calc(25% - 24px);
  }
}

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

.carousel-dot:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(0, 184, 191, 0.15);
}

/* Hide scrollbar for horizontal pin */

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* --- Footer --- */

footer {
  background: #050505;
  color: white;
  padding: 5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.5rem;
}

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

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Vision & Mission Styles (Tabbed Refinement) */

#vision-mission {
  background: #ffffff;
}

.tab-button {
  flex: 1;
  border: 1px solid rgba(13, 36, 79, 0.08);
  background: rgba(244, 247, 255, 0.4);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.tab-button:hover {
  border-color: rgba(33, 90, 212, 0.2);
  background: rgba(244, 247, 255, 0.8);
  transform: translateY(-2px);
}

.tab-button.active {
  background: #ffffff;
  border-color: rgba(33, 90, 212, 0.3);
  box-shadow: 0 10px 25px -5px rgba(13, 36, 79, 0.08);
  transform: translateY(-2px);
}

.tab-button .icon-box {
  background: white;
  color: #0d244f;
  /* Navy Icon */
  transition: all 0.3s ease;
}

.tab-button.active .icon-box {
  background: #0d244f;
  color: white;
}

.tab-pane {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, #F4F7FF 0%, #E6EFFF 50%, #E5FCFB 100%);
  border: 1px solid rgba(33, 90, 212, 0.1);
  box-shadow: 0 20px 50px -20px rgba(13, 36, 79, 0.1);
  margin-top: 1rem;
  padding: 1.5rem;
  border-radius: 2rem;
  width: 100%;
}

.vm-gradient-text {
  background: linear-gradient(135deg, #074a86 0%, #00d2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  /* Fallback */
  display: inline-block;
}

.vm-gradient-badge {
  background: linear-gradient(135deg, #074a86 0%, #00d2ff 100%);
  color: white;
}

.vm-gradient-circle {
  background: linear-gradient(135deg, #074a86 0%, #00d2ff 100%);
  color: white;
}

.tab-pane.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1024px) {
  .tab-pane {
    margin-top: 2rem;
    padding: 4rem;
    border-radius: 3.5rem;
  }
}

/* --- Testimonies Section --- */

.testimonies-viewport {
  overflow: hidden;
  width: 100%;
  padding: 2rem 0 2rem 0;
  margin-right: -2rem;
  padding-right: 2rem;
}

.testimonies-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card-wrapper {
  flex: 0 0 calc(50% - 1rem);
  /* 2 cards per view on desktop */
  min-width: 0;
  aspect-ratio: 2 / 1;
}

@media (max-width: 768px) {
  .testimonies-viewport {
    margin-right: 0 !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .testimonies-track {
    gap: 0 !important;
  }

  .testimonial-card-wrapper {
    flex: 0 0 100% !important;
    aspect-ratio: auto !important;
    padding: 0 1.5rem !important;
    /* Space between cards in 100% slide */
    box-sizing: border-box;
  }

  .testimonial-card {
    flex-direction: column-reverse;
    text-align: center;
    gap: 1.5rem !important;
    padding: 1.5rem !important;
    height: auto !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .testimonial-card>.flex-1 {
    align-items: center !important;
    justify-content: center !important;
    width: 100%;
  }

  .testimonial-profile {
    width: 120px !important;
    height: 120px !important;
    border-radius: 50% !important;
    margin-bottom: 0.5rem;
  }

  .quote-icon {
    font-size: 3rem !important;
    margin-top: 0.5rem !important;
    margin-bottom: -1rem !important;
  }

  .star-rating {
    justify-content: center !important;
  }
}

.testimonial-card {
  background-color: #0A1F44;
  border-radius: 2rem;
  padding: 1.5rem 2rem 2.5rem 2rem;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.5rem;
  overflow: hidden;
}

.testimonial-card>.flex-1 {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 0.5rem;
}

.testimonial-card>.flex-shrink-0 {
  flex-shrink: 0;
}

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

.testimonial-profile {
  width: 180px;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.quote-icon {
  font-size: 5rem;
  line-height: 1;
  color: white;
  font-family: serif;
  opacity: 1;
  margin-bottom: -2rem;
  margin-top: 2.5rem;
}

.star-rating {
  color: white;
  display: flex;
  gap: 4px;
  margin-bottom: 0.5rem;
}

.testimony-highlight {
  background-color: #2563EB;
  color: white;
  padding: 0 1.25rem;
  border-radius: 8px;
  display: inline-block;
}

.testimony-dot.active {
  background-color: var(--primary);
  width: 30px;
}

/* --- FAQ Accordion --- */

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid rgba(13, 36, 79, 0.08);
  border-radius: 1.25rem;
  margin-bottom: 1.25rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 10px 25px -5px rgba(13, 36, 79, 0.05);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 20px 40px -10px rgba(7, 74, 134, 0.1);
}

.faq-trigger {
  width: 100%;
  padding: 1.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  outline: none;
}

.faq-question {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  padding-right: 2rem;
  line-height: 1.4;
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

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

.faq-item.active .faq-content {
  max-height: 500px;
  border-top: 1px solid rgba(13, 36, 79, 0.05);
}

.faq-answer {
  padding: 2rem;
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1rem;
}

.testimony-dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: #D1D5DB;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimony-dot.active {
  background: #2563EB;
  width: 32px;
}

@media (max-width: 1024px) {
  .tab-container {
    flex-direction: column;
  }

  .tab-button {
    width: 100%;
  }
}

/* Additional Component Styles */

.hero-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(0, 184, 191, 0.25);
  box-shadow: 0 4px 24px -4px rgba(0, 184, 191, 0.15), 0 0 0 1px rgba(255,255,255,0.5) inset;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  transition: all 0.4s ease;
  margin-bottom: 2rem;
}

@media (max-width: 480px) {
  .hero-badge {
    padding: 0.6rem 1.2rem;
    letter-spacing: 0.08em;
    font-size: 0.7rem;
  }
}

.hero-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: -1;
}

.hero-badge-text {
  background: linear-gradient(135deg, #0A1F44 0%, #2563EB 50%, #00B8BF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

.hero-badge-dot {
  position: relative;
  width: 8px;
  height: 8px;
}

.hero-badge-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #00B8BF, #2563EB);
  animation: badge-pulse 2s ease-in-out infinite;
}

.hero-badge-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00B8BF, #2563EB);
  opacity: 0;
  animation: badge-ping 2s ease-in-out infinite;
}

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

  50% {
    transform: scale(1.15);
  }
}

@keyframes badge-ping {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

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

.hero-btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #00B8BF 0%, #2563EB 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 8px 30px -4px rgba(0, 184, 191, 0.45), 0 0 0 1px rgba(255,255,255,0.15) inset;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  z-index: 1;
}

.hero-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: none;
  animation: hero-shimmer 3s ease-in-out infinite;
  z-index: 0;
}

@keyframes hero-shimmer {
  0% {
    left: -100%;
  }

  50%, 100% {
    left: 100%;
  }
}

.hero-btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px -4px rgba(0, 184, 191, 0.55), 0 0 60px -10px rgba(37, 99, 235, 0.3), 0 0 0 1px rgba(255,255,255,0.2) inset;
}

.hero-btn-primary .hero-btn-arrow {
  display: inline-flex;
  transition: transform 0.3s ease;
}

.hero-btn-primary:hover .hero-btn-arrow {
  transform: translateX(4px);
}

.hero-btn-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.1rem 2.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #0A1F44;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  border: 1.5px solid rgba(10, 31, 68, 0.12);
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 4px 20px -4px rgba(10, 31, 68, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.hero-btn-secondary:hover {
  transform: translateY(-3px) scale(1.03);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(0, 184, 191, 0.4);
  box-shadow: 0 10px 30px -4px rgba(0, 184, 191, 0.18), 0 0 0 1px rgba(0, 184, 191, 0.15);
  color: #00B8BF;
}

.last\:border-0:last-child {
  border-width: 0px;
}

.hover\:scale-105:hover {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:border-blue-vibrant:hover {
  --tw-border-opacity: 1;
  border-color: rgb(37 99 235 / var(--tw-border-opacity));
}

.hover\:border-teal:hover {
  --tw-border-opacity: 1;
  border-color: rgb(0 184 191 / var(--tw-border-opacity));
}

.hover\:border-teal\/30:hover {
  border-color: rgb(0 184 191 / 0.3);
}

.hover\:bg-white\/60:hover {
  background-color: rgb(255 255 255 / 0.6);
}

.hover\:text-blue-vibrant:hover {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity));
}

.hover\:text-teal:hover {
  --tw-text-opacity: 1;
  color: rgb(0 184 191 / var(--tw-text-opacity));
}

.hover\:shadow-lg:hover {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-md:hover {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.group:hover .group-hover\:scale-110 {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@media (min-width: 640px) {
  .sm\:block {
    display: block;
  }

  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:flex-col {
    flex-direction: column;
  }

  .sm\:gap-2 {
    gap: 0.5rem;
  }

  .sm\:gap-5 {
    gap: 1.25rem;
  }

  .sm\:text-center {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .md\:static {
    position: static;
  }

  .md\:left-auto {
    left: auto;
  }

  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .md\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .md\:mb-10 {
    margin-bottom: 2.5rem;
  }

  .md\:mb-20 {
    margin-bottom: 5rem;
  }

  .md\:mt-8 {
    margin-top: 2rem;
  }

  .md\:grid {
    display: grid;
  }

  .md\:hidden {
    display: none;
  }

  .md\:w-\[calc\(25\%-24px\)\] {
    width: calc(25% - 24px);
  }

  .md\:translate-x-0 {
    --tw-translate-x: 0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .md\:translate-x-8 {
    --tw-translate-x: 2rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:border-l {
    border-left-width: 1px;
  }

  .md\:border-t-0 {
    border-top-width: 0px;
  }

  .md\:p-8 {
    padding: 2rem;
  }

  .md\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .md\:px-24 {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .md\:pb-0 {
    padding-bottom: 0px;
  }

  .md\:pb-10 {
    padding-bottom: 2.5rem;
  }

  .md\:pt-0 {
    padding-top: 0px;
  }

  .md\:pt-20 {
    padding-top: 5rem;
  }

  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }

  .md\:text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }

  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .lg\:order-1 {
    order: 1;
  }

  .lg\:order-2 {
    order: 2;
  }

  .lg\:order-3 {
    order: 3;
  }

  .lg\:order-4 {
    order: 4;
  }

  .lg\:order-5 {
    order: 5;
  }

  .lg\:order-6 {
    order: 6;
  }

  .lg\:h-12 {
    height: 3rem;
  }

  .lg\:h-6 {
    height: 1.5rem;
  }

  .lg\:w-12 {
    width: 3rem;
  }

  .lg\:w-6 {
    width: 1.5rem;
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:grid-cols-\[2fr\2c 1fr\] {
    grid-template-columns: 2fr 1fr;
  }

  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:flex-wrap {
    flex-wrap: wrap;
  }

  .lg\:justify-center {
    justify-content: center;
  }

  .lg\:rounded-3xl {
    border-radius: 1.5rem;
  }

  .lg\:p-6 {
    padding: 1.5rem;
  }

  .lg\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .lg\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .lg\:py-\[50px\] {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .lg\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .lg\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .lg\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .lg\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }

  .lg\:text-8xl {
    font-size: 6rem;
    line-height: 1;
  }

  .lg\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
