 
body {
    font-family: 'Inter', sans-serif;
    background-color: #fdfdfd;
    color: #1a1a1a;
    overflow-x: hidden;
}

.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.bento-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gradient-text {
    background: linear-gradient(135deg, #000 0%, #444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.loader-wrapper {
    position: fixed;
    inset: 0;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease;
}

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

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

.page-transition {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Testimonial Slider */
.slider-container {
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Floating WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

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



/* Fade + Slide Animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

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

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out;
}

/* Pop effect */
@keyframes pop {
    0% {
        transform: scale(0.6);
        opacity: 0;
    }

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

.animate-pop {
    animation: pop 0.6s ease-out;
}

/* Floating Flags */
.flag {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 4px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: #f3f4f6;
    animation: float 3s ease-in-out infinite;
}

/* Delays */
.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Floating motion */
@keyframes float {

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

    50% {
        transform: translateY(-10px);
    }
}

/* Snake Line Animation */
.snake-line {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: snakeMove 8s linear infinite;
    opacity: 0.35;
    filter: drop-shadow(0 0 6px rgba(99, 102, 241, 0.4));
}

.snake-line.delay {
    animation-delay: 3s;
    opacity: 0.2;
}

@keyframes snakeMove {
    0% {
        stroke-dashoffset: 300;
    }

    100% {
        stroke-dashoffset: -300;
    }
}


/* Trust Card Base */
.trust-card {
    position: relative;
    padding: 30px;
    text-align: center;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(200, 200, 200, 0.2);
    transition: all 0.4s ease;
    overflow: hidden;
}

/* Hover Lift + Glow */
.trust-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Gradient Shine Sweep */
.trust-card::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: rotate(25deg);
    transition: 0.6s;
}

.trust-card:hover::before {
    top: 100%;
    left: 100%;
}

/* Number */
.trust-card .number {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 10px 0;
    background: linear-gradient(to right, #2563eb, #ec4899);
    -webkit-background-clip: text;
    color: transparent;
}

/* Label */
.trust-card p {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #3b82f6;
    font-weight: 600;
}

/* Icon */
.trust-card .icon {
    font-size: 26px;
    margin-bottom: 8px;
    animation: floatIcon 3s ease-in-out infinite;
}

/* Floating Icon Animation */
@keyframes floatIcon {

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

    50% {
        transform: translateY(-6px);
    }
}



/* Base Line Style */
.circle-line {
    fill: none;
    stroke: rgba(255, 132, 226, 0.781);
    stroke-width: 1.5;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: flowLine 12s linear infinite;
}

/* Variations */
.delay1 {
    animation-delay: 3s;
    opacity: 0.5;
}

.delay2 {
    animation-delay: 6s;
    opacity: 0.3;
}

/* Flow Animation */
@keyframes flowLine {
    0% {
        stroke-dashoffset: 200;
        transform: translateX(0);
    }

    100% {
        stroke-dashoffset: -200;
        transform: translateX(-50px);
    }
}



/* Faculty Card */
.faculty-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(200, 200, 200, 0.2);
    border-radius: 24px;
    padding: 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.faculty-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Subtle Shine Effect */
.faculty-card::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: rotate(25deg);
    transition: 0.6s;
}

.faculty-card:hover::before {
    top: 100%;
    left: 100%;
}

/* Image */
.faculty-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 15px;
    transition: 0.4s;
}

.group:hover .faculty-img {
    transform: scale(1.05);
}

/* Text */
.faculty-name {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 4px;
}

.faculty-role {
    font-size: 13px;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 6px;
}

.faculty-exp {
    font-size: 12px;
    color: #555;
}

.faculty-qual {
    font-size: 11px;
    color: #777;
    margin-top: 4px;
}




/* Gradient Animation */
.animate-gradient {
    animation: gradientMove 6s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

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

/* Floating Animation */
.floating {
    animation: floating 5s ease-in-out infinite;
}

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

    50% {
        transform: translateY(-12px);
    }

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




/* ========================= */
/*   HERO SECTION */
/* ========================= */

.odella-badge {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.odella-live-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #22c55e;
    position: relative;
}

.odella-live-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: #22c55e;
    animation: odellaPulse 1.5s infinite;
}

@keyframes odellaPulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

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

.odella-badge-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: #111827;
}

.odella-hero-heading {
    font-size: clamp(1.2rem, 6vw, 4rem);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -0.06em;
    color: #000;
    margin-bottom: 24px;
}

.odella-gradient-text {
    background: linear-gradient(to right, #000, #6b7280, #000);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: odellaGradient 5s linear infinite;
}

@keyframes odellaGradient {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.odella-hero-description {
    max-width: 700px;
    color: #6b7280;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    margin-bottom: 32px;
}

.odella-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 18px 0;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.odella-marquee-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: odellaMarquee 22s linear infinite;
}

@keyframes odellaMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.odella-lang-pill {
    background: white;
    padding: 5px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    white-space: nowrap;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.odella-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 50px;
}

.odella-primary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: black;
    color: white;
    padding: 16px 32px;
    border-radius: 999px;
    font-weight: 600;
    transition: 0.4s;
    width: fit-content;
}

.odella-primary-btn:hover {
    transform: translateY(-3px);
}

.odella-secondary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid #e5e7eb;
    padding: 16px 32px;
    border-radius: 999px;
    font-weight: 600;
    transition: 0.4s;
}

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



/* ========================= */
/* MOBILE RESPONSIVE */
/* ========================= */

@media(max-width:768px) {

    .odella-btn-group {
        flex-direction: column;
    }

    .odella-primary-btn,
    .odella-secondary-btn {
        width: 100%;
    }


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

    .odella-marquee-wrapper {
        padding: 14px 0;
    }

}



.social-icon-box {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #111827;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.social-icon-box:hover {
    background: black;
    color: white;
    transform: translateY(-4px);
}

.social-icon-box i {
    font-size: 18px;
}
 