:root {
    --bs-primary: #05798d;
    --pri-50: #eef9fb;
    --pri-100: #d5f0f5;
    --pri-200: #abe1eb;
    --pri-300: #72c9da;
    --pri-400: #3daec3;
    --pri-500: #05798d;
    --pri-600: #046373;
    --pri-700: #034d5a;
    --pri-800: #033a44;
    --pri-900: #022830;
}

* {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

.font-heading {
    font-family: 'Poppins', sans-serif
}

::selection {
    background: #05798d;
    color: #fff
}

::-webkit-scrollbar {
    width: 7px
}

::-webkit-scrollbar-track {
    background: #f1f5f9
}

::-webkit-scrollbar-thumb {
    background: #05798d;
    border-radius: 10px
}

body {
    overflow-x: hidden;
    color: #495057;
    background: #fff
}

/* ===== Color helper classes (Bootstrap doesn't ship this custom teal) ===== */
.text-pri {
    color: var(--pri-500) !important
}

.bg-pri {
    background-color: var(--pri-500) !important
}

.bg-pri-50 {
    background-color: var(--pri-50) !important
}

.bg-pri-100 {
    background-color: var(--pri-100) !important
}

.border-pri {
    border-color: var(--pri-500) !important
}

.border-pri-100 {
    border-color: var(--pri-100) !important
}

.border-pri-200 {
    border-color: var(--pri-200) !important
}

/* ===== Hero ===== */
.hero-section {
    position: relative;
    min-height: 92vh;
    overflow: hidden;
    background: linear-gradient(165deg, #eef9fb 0%, #d5f0f5 25%, #fff 55%, #f0f9fb 100%);
    display: flex;
    align-items: center
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 75% 15%, rgba(5, 121, 141, 0.08) 0%, transparent 50%), radial-gradient(ellipse at 15% 85%, rgba(5, 121, 141, 0.05) 0%, transparent 40%);
    z-index: 1
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    z-index: 0
}

.hero-blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(5, 121, 141, 0.15), transparent 70%);
    top: -10%;
    right: -5%;
    animation: blobF1 12s ease-in-out infinite
}

.hero-blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(61, 174, 195, 0.12), transparent 70%);
    bottom: -8%;
    left: -3%;
    animation: blobF2 15s ease-in-out infinite
}

.hero-blob-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(171, 225, 235, 0.2), transparent 70%);
    top: 40%;
    left: 35%;
    animation: blobF3 10s ease-in-out infinite
}

@keyframes blobF1 {

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

    33% {
        transform: translate(-30px, 20px) scale(1.05)
    }

    66% {
        transform: translate(20px, -15px) scale(.95)
    }
}

@keyframes blobF2 {

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

    33% {
        transform: translate(25px, -25px) scale(1.08)
    }

    66% {
        transform: translate(-15px, 20px) scale(.92)
    }
}

@keyframes blobF3 {

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

    50% {
        transform: translate(-20px, 15px) scale(1.1)
    }
}

.geo-shape {
    position: absolute;
    z-index: 0;
    pointer-events: none
}

.geo-1 {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(5, 121, 141, 0.1);
    border-radius: 12px;
    top: 12%;
    left: 8%;
    animation: geoSpin 20s linear infinite, geoFloat 6s ease-in-out infinite
}

.geo-2 {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(5, 121, 141, 0.08);
    border-radius: 50%;
    top: 20%;
    right: 18%;
    animation: geoFloat 8s ease-in-out infinite
}

.geo-3 {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(5, 121, 141, 0.07);
    top: 65%;
    left: 5%;
    transform: rotate(45deg);
    animation: geoFloat 7s ease-in-out infinite 1s
}

.geo-4 {
    width: 35px;
    height: 35px;
    background: rgba(5, 121, 141, 0.04);
    border-radius: 8px;
    bottom: 20%;
    right: 10%;
    animation: geoFloat 9s ease-in-out infinite 2s
}

.geo-5 {
    width: 25px;
    height: 25px;
    border: 2px solid rgba(5, 121, 141, 0.09);
    border-radius: 50%;
    top: 35%;
    left: 45%;
    animation: geoFloat 5s ease-in-out infinite .5s
}

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

@keyframes geoFloat {

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

    50% {
        transform: translateY(-15px)
    }
}

.float-img {
    position: absolute;
    pointer-events: none;
    border-radius: 16px;
    overflow: hidden;
    object-fit: cover;
    z-index: 0
}

.float-img-1 {
    width: 140px;
    height: 105px;
    top: 8%;
    right: 6%;
    opacity: 0.10;
    animation: imgF1 8s ease-in-out infinite
}

.float-img-2 {
    width: 110px;
    height: 140px;
    top: 55%;
    right: 3%;
    opacity: 0.08;
    animation: imgF2 10s ease-in-out infinite 1s
}

.float-img-3 {
    width: 100px;
    height: 80px;
    bottom: 12%;
    left: 4%;
    opacity: 0.09;
    animation: imgF1 9s ease-in-out infinite 2s
}

@keyframes imgF1 {

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

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

@keyframes imgF2 {

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

    50% {
        transform: translateY(-10px) rotate(-3deg)
    }
}

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

.hero-badge {
    animation: fSD .8s ease both .2s
}

.hero-title {
    animation: fSU .9s ease both .4s
}

.hero-desc {
    animation: fSU .9s ease both .6s
}

.hero-ctas {
    animation: fSU .9s ease both .8s
}

.hero-checks {
    animation: fSU .9s ease both 1s
}

.hero-form-wrap {
    animation: fSL 1s ease both .5s
}

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

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

@keyframes fSD {
    from {
        opacity: 0;
        transform: translateY(-20px)
    }

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

@keyframes fSL {
    from {
        opacity: 0;
        transform: translateX(40px)
    }

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

.form-glow {
    position: relative
}

.form-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background: linear-gradient(135deg, #05798d, #3daec3, #abe1eb, #05798d);
    background-size: 300% 300%;
    animation: glowR 4s linear infinite;
    z-index: -1;
    opacity: 0.5;
    filter: blur(4px)
}

@keyframes glowR {
    0% {
        background-position: 0% 50%
    }

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

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

.pulse-dot {
    position: relative
}

.pulse-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(5, 121, 141, 0.3);
    animation: pDot 2s ease-in-out infinite
}

@keyframes pDot {

    0%,
    100% {
        transform: scale(1);
        opacity: .6
    }

    50% {
        transform: scale(1.8);
        opacity: 0
    }
}

/* ===== Scroll reveal ===== */
.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all .7s cubic-bezier(.4, 0, .2, 1)
}

.slide-up.vis {
    opacity: 1;
    transform: translateY(0)
}

.slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all .7s cubic-bezier(.4, 0, .2, 1)
}

.slide-left.vis {
    opacity: 1;
    transform: translateX(0)
}

.slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all .7s cubic-bezier(.4, 0, .2, 1)
}

.slide-right.vis {
    opacity: 1;
    transform: translateX(0)
}

.scale-up {
    opacity: 0;
    transform: scale(.85);
    transition: all .6s cubic-bezier(.4, 0, .2, 1)
}

.scale-up.vis {
    opacity: 1;
    transform: scale(1)
}

.delay-1 {
    transition-delay: .05s !important
}

.delay-2 {
    transition-delay: .1s !important
}

.delay-3 {
    transition-delay: .15s !important
}

.delay-4 {
    transition-delay: .2s !important
}

.delay-5 {
    transition-delay: .25s !important
}

.delay-6 {
    transition-delay: .3s !important
}

.delay-7 {
    transition-delay: .35s !important
}

.delay-8 {
    transition-delay: .4s !important
}

/* ===== Marquee top bar ===== */
.marquee-track {
    display: flex;
    animation: scrollL 30s linear infinite
}

@keyframes scrollL {
    to {
        transform: translateX(-50%)
    }
}

/* ===== Buttons ===== */
.btn-pri {
    background: #05798d;
    color: #fff;
    transition: all .3s;
    position: relative;
    overflow: hidden;
    border: none
}

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

.btn-pri:hover::before {
    left: 100%
}

.btn-pri:hover {
    background: #046373;
    color: #fff;
    box-shadow: 0 8px 24px rgba(5, 121, 141, .3);
    transform: translateY(-2px)
}

.btn-out-pri {
    border: 2px solid #05798d;
    color: #05798d;
    transition: all .3s;
    background: rgba(255, 255, 255, .8)
}

.btn-out-pri:hover {
    background: #05798d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(5, 121, 141, .2)
}

.badge-soft {
    background: #eef9fb;
    color: #05798d;
    border: 1px solid #d5f0f5
}

.divider {
    height: 3px;
    width: 50px;
    background: linear-gradient(90deg, #05798d, #3daec3);
    border-radius: 10px
}

.section-title-line {
    width: 0;
    transition: width .8s cubic-bezier(.4, 0, .2, 1) .3s
}

.vis .section-title-line {
    width: 50px
}

/* ===== Cards ===== */
.card-up {
    transition: all .4s cubic-bezier(.4, 0, .2, 1)
}

.card-up:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -10px rgba(5, 121, 141, .13)
}

.card-up:hover .course-icon-box {
    transform: scale(1.1) rotate(-3deg)
}

.course-icon-box {
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    width: 64px;
    height: 64px
}

.college-card {
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden
}

.college-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px -12px rgba(5, 121, 141, .15)
}

.college-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #05798d, #3daec3);
    opacity: 0;
    transition: opacity .4s
}

.college-card:hover::before {
    opacity: 1
}

.why-card {
    transition: all .4s ease
}

.why-card:hover {
    border-color: #abe1eb !important;
    box-shadow: 0 12px 36px -10px rgba(5, 121, 141, .12);
    transform: translateY(-4px)
}

.why-card:hover .why-icon {
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 6px 20px rgba(5, 121, 141, .2)
}

.why-icon {
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    width: 48px;
    height: 48px
}

.result-card .r-badge {
    opacity: 0;
    transform: translateY(4px);
    transition: all .3s
}

.result-card:hover .r-badge {
    opacity: 1;
    transform: translateY(0)
}

.process-line {
    position: relative
}

.process-line::after {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(50% + 28px);
    right: calc(-50% + 28px);
    height: 2px;
    background: linear-gradient(90deg, #abe1eb, #d5f0f5);
    display: none
}

@media(min-width:768px) {
    .process-line::after {
        display: block
    }
}

.process-num {
    position: relative;
    width: 64px;
    height: 64px
}

.process-num::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 18px;
    border: 2px solid rgba(5, 121, 141, .15);
    animation: pRing 2s ease-in-out infinite
}

@keyframes pRing {

    0%,
    100% {
        transform: scale(1);
        opacity: .5
    }

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

.testimonial-card {
    position: relative;
    overflow: hidden
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #05798d, #3daec3, #abe1eb);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s ease
}

.testimonial-card:hover::after {
    transform: scaleX(1)
}

.contact-card {
    transition: all .4s ease
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px -8px rgba(5, 121, 141, .1)
}

.contact-card:hover .contact-icon-wrap {
    transform: scale(1.1) rotate(-8deg)
}

.contact-icon-wrap {
    transition: all .4s ease;
    width: 48px;
    height: 48px
}

.footer-bg {
    background: linear-gradient(165deg, #eef9fb 0%, #d5f0f5 30%, #fff 60%, #f0f9fb 100%)
}

/* ===== Toast / floating buttons ===== */
.toast-m {
    animation: tIn .35s ease, tOut .35s ease 2.6s forwards
}

@keyframes tIn {
    from {
        transform: translateY(100%) scale(.95);
        opacity: 0
    }

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

@keyframes tOut {
    to {
        transform: translateY(-15px);
        opacity: 0
    }
}

#scrollTopBtn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 180;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #05798d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(5, 121, 141, .35);
    cursor: pointer;
    border: none;
    opacity: 0;
    visibility: hidden;
    transition: all .35s ease
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible
}

#scrollTopBtn:hover {
    background: #046373;
    transform: translateY(-3px) scale(1.05)
}

#waFloatBtn {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 180;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, .4);
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all .35s ease;
    animation: waP 3s ease-in-out infinite;
    font-size: 28px
}

@keyframes waP {

    0%,
    100% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, .4)
    }

    50% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, .4), 0 0 0 12px rgba(37, 211, 102, .1)
    }
}

#waFloatBtn:hover {
    background: #1ebe57;
    transform: scale(1.1);
    color: #fff
}

.stat-glow {
    position: relative
}

.stat-glow::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #05798d, #3daec3);
    border-radius: 10px;
    opacity: 0;
    transition: all .4s
}

.stat-glow:hover::after {
    opacity: 1;
    width: 60px
}

@keyframes borderGlow {

    0%,
    100% {
        border-color: rgba(5, 121, 141, .1)
    }

    50% {
        border-color: rgba(5, 121, 141, .25)
    }
}

.animated-border {
    animation: borderGlow 3s ease-in-out infinite
}

/* ===== Form inputs (Bootstrap form-control override) ===== */
.form-control-soft,
.form-select-soft {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: .75rem;
    padding: .85rem 1rem .85rem 2.6rem;
    font-size: .875rem
}

.form-control-soft:focus,
.form-select-soft:focus {
    border-color: #3daec3;
    box-shadow: 0 0 0 .25rem rgba(5, 121, 141, .1);
    background: #fff
}

.input-icon-wrap {
    position: relative
}

.input-icon-wrap i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #adb5bd;
    font-size: .95rem;
    z-index: 5
}

.fs-11 {
    font-size: 11px
}

.fs-12 {
    font-size: 12px
}

.fs-13 {
    font-size: 13px
}

.rounded-4x {
    border-radius: 1.25rem
}

.rounded-5x {
    border-radius: 1.5rem
}

.navbar-brand-sub {
    font-size: 8px;
    letter-spacing: .22em;
}

.nav-link-custom {
    color: #495057;
    font-weight: 500;
    font-size: 13px;
    transition: all .2s;
}

.nav-link-custom:hover {
    color: #05798d;
}

/* Mobile Navbar */
@media (max-width:991.98px) {

    #mainNav .container-xl {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-brand {
        margin-right: auto;
    }

    .navbar-toggler {
        margin-left: auto;
        padding: 0;
        border: none;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    /* Hide desktop buttons */
    #mainNav .d-flex.align-items-center.gap-3 {
        display: none !important;
    }
}

/* ===== Timeline ===== */
.timeline {
    position: relative
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--pri-200), var(--pri-100));
}

@media(min-width:768px) {
    .timeline::before {
        left: 50%;
        transform: translateX(-1px)
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem
}

.timeline-dot {
    position: absolute;
    left: 24px;
    top: 6px;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--pri-500);
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px var(--pri-100);
    z-index: 2
}

@media(min-width:768px) {
    .timeline-dot {
        left: 50%
    }
}

.timeline-card {
    margin-left: 52px;
    transition: all .4s ease
}

@media(min-width:768px) {
    .timeline-card {
        margin-left: 0;
        width: calc(50% - 40px)
    }
}

.timeline-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px -8px rgba(5, 121, 141, .14)
}

/* ===== Team ===== */
.team-card {
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(5, 121, 141, .15)
}

.team-card img {
    transition: transform .5s ease
}

.team-card:hover img {
    transform: scale(1.06)
}

.team-social a {
    width: 34px;
    height: 34px;
    transition: all .25s ease
}

.team-social a:hover {
    background: var(--pri-500) !important;
    color: #fff !important;
    transform: translateY(-2px)
}

/* ===== Values ===== */
.value-card {
    transition: all .4s ease;
    position: relative;
    overflow: hidden
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #05798d, #3daec3);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s ease
}

.value-card:hover::before {
    transform: scaleX(1)
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px -10px rgba(5, 121, 141, .13)
}

/* ===== Page hero ===== */
.page-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(165deg, #eef9fb 0%, #d5f0f5 25%, #fff 55%, #f0f9fb 100%);
    padding-top: 5rem;
    padding-bottom: 6rem
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 75% 15%, rgba(5, 121, 141, 0.08) 0%, transparent 50%), radial-gradient(ellipse at 15% 85%, rgba(5, 121, 141, 0.05) 0%, transparent 40%);
    z-index: 1
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    z-index: 0
}

.hero-blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(5, 121, 141, 0.15), transparent 70%);
    top: -15%;
    right: -8%;
    animation: blobF1 12s ease-in-out infinite
}

.hero-blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(61, 174, 195, 0.12), transparent 70%);
    bottom: -15%;
    left: -5%;
    animation: blobF2 15s ease-in-out infinite
}

@keyframes blobF1 {

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

    33% {
        transform: translate(-30px, 20px) scale(1.05)
    }

    66% {
        transform: translate(20px, -15px) scale(.95)
    }
}

@keyframes blobF2 {

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

    33% {
        transform: translate(25px, -25px) scale(1.08)
    }

    66% {
        transform: translate(-15px, 20px) scale(.92)
    }
}

.geo-shape {
    position: absolute;
    z-index: 0;
    pointer-events: none
}

.geo-1 {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(5, 121, 141, 0.1);
    border-radius: 12px;
    top: 15%;
    left: 8%;
    animation: geoSpin 20s linear infinite, geoFloat 6s ease-in-out infinite
}

.geo-2 {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(5, 121, 141, 0.08);
    border-radius: 50%;
    top: 25%;
    right: 14%;
    animation: geoFloat 8s ease-in-out infinite
}

.geo-3 {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(5, 121, 141, 0.07);
    bottom: 15%;
    left: 6%;
    transform: rotate(45deg);
    animation: geoFloat 7s ease-in-out infinite 1s
}

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

@keyframes geoFloat {

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

    50% {
        transform: translateY(-15px)
    }
}

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

.pulse-dot {
    position: relative
}

.pulse-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(5, 121, 141, 0.3);
    animation: pDot 2s ease-in-out infinite
}

@keyframes pDot {

    0%,
    100% {
        transform: scale(1);
        opacity: .6
    }

    50% {
        transform: scale(1.8);
        opacity: 0
    }
}

.breadcrumb-custom a {
    color: #6c757d;
    text-decoration: none;
    transition: color .2s
}

.breadcrumb-custom a:hover {
    color: var(--pri-500)
}

/* ===== Filter pills ===== */
.filter-pill {
    border: 1.5px solid #dee2e6;
    background: #fff;
    color: #495057;
    font-weight: 600;
    font-size: 12.5px;
    padding: .55rem 1.15rem;
    border-radius: 999px;
    transition: all .25s ease;
    cursor: pointer
}

.filter-pill:hover {
    border-color: var(--pri-300);
    color: var(--pri-600)
}

.filter-pill.active {
    background: var(--pri-500);
    border-color: var(--pri-500);
    color: #fff
}

.course-card {
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden;
    position: relative
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 44px -12px rgba(5, 121, 141, .16)
}

.course-icon-box {
    width: 56px;
    height: 56px;
    transition: all .4s cubic-bezier(.4, 0, .2, 1)
}

.course-card:hover .course-icon-box {
    transform: scale(1.1) rotate(-4deg)
}

.course-meta {
    border-top: 1px dashed #e9ecef
}

.course-meta-item i {
    width: 16px
}

.popular-ribbon {
    position: absolute;
    top: 14px;
    right: -32px;
    transform: rotate(45deg);
    background: #f59e0b;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .06em;
    padding: 4px 36px;
    text-transform: uppercase
}

.stat-glow {
    position: relative
}

.stat-glow::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #05798d, #3daec3);
    border-radius: 10px;
    opacity: 0;
    transition: all .4s
}

.stat-glow:hover::after {
    opacity: 1;
    width: 60px
}

/* ===== Process ===== */
.process-line {
    position: relative
}

.process-line::after {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(50% + 28px);
    right: calc(-50% + 28px);
    height: 2px;
    background: linear-gradient(90deg, #abe1eb, #d5f0f5);
    display: none
}

@media(min-width:768px) {
    .process-line::after {
        display: block
    }
}

.process-num {
    position: relative;
    width: 64px;
    height: 64px
}

.process-num::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 18px;
    border: 2px solid rgba(5, 121, 141, .15);
    animation: pRing 2s ease-in-out infinite
}

@keyframes pRing {

    0%,
    100% {
        transform: scale(1);
        opacity: .5
    }

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

/* ===== Accordion (FAQ) ===== */
.accordion-custom .accordion-item {
    border: 1px solid #e9ecef;
    border-radius: 1rem !important;
    overflow: hidden;
    margin-bottom: 1rem
}

.accordion-custom .accordion-button {
    font-weight: 700;
    font-size: 14px;
    color: #212529;
    padding: 1.15rem 1.5rem;
    background: #fff
}

.accordion-custom .accordion-button:not(.collapsed) {
    color: var(--pri-600);
    background: var(--pri-50);
    box-shadow: none
}

.accordion-custom .accordion-button:focus {
    box-shadow: none;
    border-color: transparent
}

.accordion-custom .accordion-button::after {
    background-size: 1rem
}

.accordion-custom .accordion-body {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.8;
    padding: 0 1.5rem 1.25rem
}

/* ===== College cards ===== */
.college-card {
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden
}

.college-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px -12px rgba(5, 121, 141, .15)
}

.college-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #05798d, #3daec3);
    opacity: 0;
    transition: opacity .4s
}

.college-card:hover::before {
    opacity: 1
}

.college-banner {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.college-logo {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 1rem;
    border: 2px solid rgba(255, 255, 255, .5);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .15);
    transition: transform .3s ease
}

.college-card:hover .college-logo {
    transform: scale(1.08)
}

.college-meta-item i {
    width: 16px
}

.rating-stars {
    color: #f59e0b;
    font-size: 12px
}

/* ===== Contact cards ===== */
.contact-card {
    transition: all .4s ease
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px -8px rgba(5, 121, 141, .1)
}

.contact-card:hover .contact-icon-wrap {
    transform: scale(1.1) rotate(-8deg)
}

.contact-icon-wrap {
    transition: all .4s ease;
    width: 48px;
    height: 48px
}

/* ===== Office cards ===== */
.office-card {
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden;
    position: relative
}

.office-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px -12px rgba(5, 121, 141, .15)
}

.office-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #05798d, #3daec3);
    opacity: 0;
    transition: opacity .4s
}

.office-card:hover::before {
    opacity: 1
}

.office-map-wrap {
    height: 180px;
    overflow: hidden
}

.office-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(15%)
}

/* ===== Gallery ===== */
.gallery-card {
    aspect-ratio: 1/1;
    cursor: pointer;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1)
}

.gallery-card:hover {
    transform: translateY(-4px)
}

.gallery-card img {
    transition: transform .5s ease
}

.gallery-card:hover img {
    transform: scale(1.08)
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 121, 141, .55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .35s ease
}

.gallery-card:hover .gallery-overlay {
    opacity: 1
}

.gallery-overlay i {
    color: #fff;
    font-size: 1.6rem
}

.gallery-wrapper {
    column-count: 3;
    column-gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    margin-bottom: 20px;
    break-inside: avoid;
    cursor: pointer;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: .45s;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .75),
            rgba(0, 0, 0, .15));
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    padding: 25px;
    color: #fff;
    opacity: 0;
    transition: .35s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h5 {
    margin: 0;
    font-weight: 700;
}

@media(max-width:992px) {

    .gallery-wrapper {
        column-count: 2;
    }

}

@media(max-width:576px) {

    .gallery-wrapper {
        column-count: 1;
    }

}

.legal-card {
    background: #fff;
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}

.legal-item {
    margin-bottom: 45px;
}

.legal-item h3 {
    color: var(--pri-500) !important;
    font-weight: 700;
    margin-bottom: 18px;
    font-size: 26px;
}

.legal-item p {
    color: #6c757d;
    line-height: 1.9;
}

.legal-item ul {
    margin: 0;
    padding-left: 20px;
}

.legal-item li {
    margin-bottom: 12px;
    color: #555;
    line-height: 1.8;
}

.contact-box {
    background: #f8faf9;
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    height: 100%;
}

.contact-box i {
    font-size: 32px;
    color: #198754;
    margin-bottom: 15px;
}

.contact-box h6 {
    font-weight: 700;
}

.contact-box a {
    text-decoration: none;
    color: #555;
    word-break: break-word;
}

@media(max-width:768px) {

    .legal-card {
        padding: 25px;
    }

    .legal-item h3 {
        font-size: 22px;
    }

}

@media (max-width: 767.98px) {
    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-buttons {
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Premium Result Card */
.premium-card {
    border: 1px solid #eef0f4;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
    transition: all 0.35s ease;
}

.premium-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.18);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

/* Student Image */
.student-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #f8fafc;
}

.student-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.premium-card:hover .student-img {
    transform: scale(1.05);
}

/* Verification Badge */
.achievement-badge {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #16a34a;
    font-size: 22px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Selection Label */
.selection-label {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 50px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .7px;
}

/* Student Name */
.premium-card h4 {
    letter-spacing: -.2px;
}

/* Selected Post */
.selection-post {
    color: #2563eb;
    font-size: 13px;
    font-weight: 700;
}

/* Student Details */
.student-info {
    color: #64748b;
    font-size: 11px;
    line-height: 1.6;
}

.student-info .dot {
    margin: 0 4px;
    color: #cbd5e1;
}

/* Footer */
.selection-footer {
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
    color: #16a34a;
    font-size: 11px;
    font-weight: 700;
}

.selection-footer i {
    margin-right: 4px;
}

/* Mobile */
@media (max-width: 575px) {
    .student-img-wrap {
        height: 260px;
    }
}
