:root {
    --orange: #ff6700;
    --orange-dark: #cc5200;
    --orange-glow: rgba(255, 103, 0, 0.35);
}

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

#about-us {
    scroll-margin-top: 100px;
    /* adjust to your header height */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
}

/* ─── CURSOR GLOW ─── */
#cursor-glow {
    pointer-events: none;
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 103, 0, 0.07) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: opacity 0.3s;
}

/* ─── TOP BAR ─── */
#topbar {
    background: #0a0a0a;
    border-bottom: 1px solid rgba(255, 103, 0, 0.15);
    padding: 10px 0;
    font-size: 13px;
    letter-spacing: 0.02em;
}

/* ─── HEADER ─── */
#header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
}

#header.scrolled {
    background: rgba(0, 0, 0, 0.96);
    border-bottom-color: rgba(255, 103, 0, 0.2);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.nav-link {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    padding-bottom: 2px;
}

/* Underline base state */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--orange);
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Desktop Hover & Active States (Screens wider than mobile) */
@media (min-width: 769px) {

    .nav-link:hover,
    .nav-link.active {
        color: #fff;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }
}

/* Mobile States (Screens 768px and smaller) */
@media (max-width: 768px) {

    /* No underline on mobile */
    .nav-link::after {
        display: none;
    }

    /* Orange text color for active and hover states */
    .nav-link:hover,
    .nav-link.active {
        color: var(--orange);
    }
}

/* ─── HERO ─── */
#home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border: 1px solid rgba(255, 103, 0, 0.3);
    border-radius: 100px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    background: rgba(255, 103, 0, 0.06);
    backdrop-filter: blur(8px);
    margin-bottom: 32px;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {

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

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

.hero-title {
    font-size: clamp(52px, 8vw, 80px);
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -0.02em;
}

.hero-title .accent {
    color: var(--orange);
    font-style: italic;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 64px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 16px 24px;

    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    flex: 1 1 220px;
    min-width: 220px;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--orange);

    line-height: 1;
    white-space: nowrap;
}

.stat-title {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.55);

    max-width: 80px;
}

/* Tablet */

@media (max-width: 991px) {
    .hero-stats {
        gap: 16px;
        margin-top: 48px;
    }

    .stat-card {
        flex: 1 1 calc(50% - 8px);
        min-width: 0;
    }
}

/* Mobile */

@media (max-width: 767px) {
    .hero-stats {
        flex-direction: column;
        gap: 14px;
        margin-top: 40px;
    }

    .stat-card {
        width: 100%;
        padding: 14px 18px;
    }

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

    .stat-title {
        max-width: none;
        font-size: 12px;
    }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ─── SECTION LABEL ─── */
.section-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

.section-title {
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 700;
    line-height: 1.05;
}

/* ─── STAT CARDS ─── */
.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 103, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    border-color: rgba(255, 103, 0, 0.3);
    transform: translateY(-4px);
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
}

@media (max-width: 900px) {
    .stat-number {
        font-size: 20px;
    }

    .stat-card {
        padding: 12px;
    }
}

/* ─── MVP CARDS ─── */
.mvp-card {
    border-radius: 24px;
    padding: 36px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.mvp-card:hover {
    transform: translateY(-6px);
}

/* ─── SERVICE CARDS ─── */
.service-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(255, 103, 0, 0.15);
}

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

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--orange), #ff9a4d);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .icon-box {
    transform: rotate(6deg) scale(1.1);
}

/* ─── MENTOR CARDS ─── */
.mentor-card {
    border-radius: 28px;
    overflow: hidden;
    background: #111;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
    position: relative;
}

.mentor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(255, 103, 0, 0.2);
}

.mentor-card img {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mentor-social {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(12px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mentor-card:hover .mentor-social {
    opacity: 1;
    transform: translateX(0);
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.social-btn:hover {
    background: var(--orange);
}

/* ─── TESTIMONIAL ─── */
.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 40px;
    backdrop-filter: blur(16px);
    transition: border-color 0.4s;
    height: 100%;
}

.testimonial-card:hover {
    border-color: rgba(255, 103, 0, 0.35);
}

/* ─── EVENT CARDS ─── */
.event-card {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 103, 0, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.event-card img {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ─── INDUSTRY CARDS ─── */
.industry-card {
    border-radius: 20px;
    overflow: hidden;
    height: 260px;
    position: relative;
    cursor: pointer;
}

.industry-card img {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industry-card:hover img {
    transform: scale(1.1);
}

.industry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.15) 100%);
    transition: opacity 0.4s;
}

.industry-hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 103, 0, 0.92), rgba(204, 82, 0, 0.75));
    opacity: 0;
    transition: opacity 0.4s;
}

.industry-card:hover .industry-hover-overlay {
    opacity: 1;
}

.industry-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

.industry-card:hover .industry-icon-box {
    background: #8b3800;
}

.industry-card:hover .industry-icon-box svg {
    color: var(--orange) !important;
}

/* ─── WHO WE SERVE ─── */
.serve-card {
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(16px);
    padding: 36px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.serve-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 103, 0, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
}

.serve-card:hover::before {
    opacity: 1;
}

.serve-card:hover {
    border-color: rgba(255, 103, 0, 0.3);
    transform: translateY(-6px);
}

/* ─── CONTACT FORM ─── */
.form-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-input:focus {
    border-color: var(--orange);
    background: rgba(255, 103, 0, 0.04);
}

/* ─── BUTTONS ─── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--orange);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 103, 0, 0.45);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    color: #ff7a20;
    font-weight: 600;
    border-radius: 12px;
    background: rgb(0 0 0 / 51%);
    backdrop-filter: blur(21px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgb(255 103 0);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .2);
    transition: .35s;
}

.btn-outline:hover {
    background: #ff6700;
    transform: translateY(-2px);
    color: white;
}

/* ─── SLIDER ARROWS ─── */
.slider-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--orange);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    box-shadow: 0 8px 30px rgba(255, 103, 0, 0.35);
}

.slider-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(255, 103, 0, 0.5);
}

.slider-btn:active {
    transform: scale(0.96);
}

/* ─── MARQUEE ─── */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

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

.marquee-track {
    animation: marquee 28s linear infinite;
    display: flex;
    width: max-content;
}

.marquee-track:hover {
    animation-play-state: paused;
}

/* ─── DECORATIVE LINES ─── */
.divider-line {
    width: 48px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
    margin: 16px 0 0;
}

/* ─── MOBILE MENU ─── */
/* #mobileMenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobileMenu.open {
    max-height: 400px;
} */

#mobileMenu {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #111827;
    z-index: 9999;

    transform: translateX(-100%);
    transition: transform .4s ease;

    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

#mobileMenu.open {
    transform: translateX(0);
}

body.menu-open {
    overflow: hidden;
}

.mobile-menu-content {
    padding: 24px;
    min-height: 100vh;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.close-menu {
    width: 42px;
    height: 42px;
    border: 0;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
    line-height: 1;
}

.mobile-menu-content .nav-link,
.mobile-dropdown-btn,
.mobile-sub-dropdown-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 14px 0;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.mobile-dropdown-btn,
.mobile-sub-dropdown-btn {
    background: transparent;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    cursor: pointer;
}

.mobile-dropdown-content,
.mobile-sub-dropdown-content {
    display: none;
    padding-left: 16px;
}

.mobile-dropdown.active .mobile-dropdown-content,
.mobile-sub-dropdown.active .mobile-sub-dropdown-content {
    display: block;
}

.dropdown-icon {
    transition: transform .3s ease;
}

.mobile-dropdown.active>.mobile-dropdown-btn .dropdown-icon,
.mobile-sub-dropdown.active>.mobile-sub-dropdown-btn .dropdown-icon {
    transform: rotate(180deg);
}

.child-link {
    padding: 12px 0;
    font-size: 14px;
    opacity: .85;
}

.mobile-contact-btn {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.mobile-dropdown.active>.mobile-dropdown-btn .dropdown-icon {
    transform: rotate(180deg);
}

.mobile-sub-dropdown.active>.mobile-sub-dropdown-btn .dropdown-icon {
    transform: rotate(180deg);
}

/* ─── CONTACT INFO ─── */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.contact-info-item:hover .contact-icon {
    transform: scale(1.1) rotate(6deg);
}

/* ─── FOOTER ─── */
footer {
    background: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ─── AMBIENT GLOW ANIMATION ─── */
@keyframes float {

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

    50% {
        transform: translateY(-20px) scale(1.04);
    }
}

.ambient {
    animation: float 8s ease-in-out infinite;
}

.ambient-delay {
    animation: float 10s ease-in-out 2s infinite;
}

/* ─── FLOATING CIRCLES ─── */
@keyframes fc1 {

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

    50% {
        transform: translateY(30px)
    }
}

@keyframes fc2 {

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

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

.fc1 {
    animation: fc1 8s ease-in-out infinite;
}

.fc2 {
    animation: fc2 9s ease-in-out infinite;
}

/* ─── FAQ SECTION ─── */
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-btn {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: pointer;
    background: none;
    border: none;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    gap: 16px;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 103, 0, 0.15);
    border: 1px solid rgba(255, 103, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s;
    color: var(--orange);
    font-size: 18px;
}

.faq-btn.active .faq-icon {
    background: var(--orange);
    color: #fff;
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
}

.faq-content.open {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-content p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 15px;
}

.footer-link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-link:hover {
    color: var(--orange);
    transform: translateX(4px);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.social-link:hover {
    border-color: var(--orange);
    background: rgba(255, 103, 0, 0.1);
}

.social-link:hover svg {
    fill: var(--orange) !important;
    stroke: var(--orange) !important;
}



/* ---------------------------------------who we serve section---------------------------- */
/* ── WHO WE ARE PAGE ── */

/* Hero */
.hero {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    right: -40px;
    top: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(232, 83, 26, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(232, 83, 26, 0.15);
    background: rgb(20 18 17);
    color: var(--orange);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: #fff;
}

.hero-title em {
    font-style: italic;
    color: var(--orange);
    font-weight: 300;
}

.hero-body {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    max-width: 480px;
}

.hero-text {
    flex: 1;
}

.hero-stats {
    display: flex;
    /* flex-direction: column; */
    gap: 1rem;
    flex-shrink: 0;
}

.stat-pill {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    text-align: center;
    min-width: 120px;
}

.stat-num {
    font-size: 28px;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Section headers */
.section {
    margin-bottom: 3rem;
}

.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.25;
}

.section-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 2rem;
}

/* About cards */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
}

.about-card.featured {
    background: rgba(232, 83, 26, 0.12);
    border-color: rgba(232, 83, 26, 0.25);
}

.about-card.wide {
    grid-column: span 2;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(232, 83, 26, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--orange);
    font-size: 20px;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.card-body {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

.quote-accent {
    width: 4px;
    min-width: 4px;
    height: 60px;
    background: var(--orange);
    border-radius: 2px;
}

.quote-line {
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    color: #fff;
    flex: 1;
    line-height: 1.5;
}

.quote-attr {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 8px;
    font-style: normal;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 32px 1fr;
    gap: 0 16px;
    align-items: start;
}

.t-year {
    font-size: 18px;
    font-weight: 700;
    color: var(--orange);
    padding-top: 6px;
    text-align: right;
    line-height: 1;
}

.t-spine {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.t-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--orange);
    margin-top: 8px;
    flex-shrink: 0;
}

.t-dot.current {
    width: 16px;
    height: 16px;
    box-shadow: 0 0 0 4px rgba(232, 83, 26, 0.2);
    margin-top: 6px;
}

.t-line {
    width: 1px;
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 4px;
    min-height: 100px;
}

.timeline-item:last-child .t-line {
    display: none;
}

.t-content {
    padding-bottom: 2rem;
}

.timeline-item:last-child .t-content {
    padding-bottom: 0;
}

.t-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 6px;
    background: rgba(232, 83, 26, 0.15);
    color: var(--orange);
}

/* .t-tag.founded {
    background: rgba(232, 83, 26, 0.15);
    color: var(--orange);
}

.t-tag.growth {
    background: rgba(34, 197, 94, 0.12);
    color: #4ade80;
}

.t-tag.milestone {
    background: rgba(59, 130, 246, 0.12);
    color: #60a5fa;
}

.t-tag.today {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
} */

.t-heading {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.t-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
}

/* MVP cards */
.mvp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mvp-card {
    border-radius: 16px;
    padding: 1.5rem;
}

/* .mvp-card.mission {
    background: linear-gradient(135deg, var(--orange), #ff9a4d);
} */

.mvp-card.vision,
.mvp-card.values {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mvp-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 18px;
}

.mvp-card.mission .mvp-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.mvp-card.vision .mvp-icon,
.mvp-card.values .mvp-icon {
    background: rgba(232, 83, 26, 0.15);
    color: var(--orange);
}

.mvp-card-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.mvp-card.mission .mvp-card-title {
    color: #fff;
}

.mvp-card.vision .mvp-card-title,
.mvp-card.values .mvp-card-title {
    color: #fff;
}

.mvp-body {
    font-size: 13px;
    line-height: 1.7;
}

.mvp-card.mission .mvp-body {
    color: rgba(255, 255, 255, 0.55);
}

.mvp-card.vision .mvp-body,
.mvp-card.values .mvp-body {
    color: rgba(255, 255, 255, 0.55);
}

.value-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.value-pill {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(232, 83, 26, 0.15);
    color: var(--orange);
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.team-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
}

.avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(232, 83, 26, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 700;
    color: var(--orange);
    margin: 0 auto 0.75rem;
}

.team-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 3px;
}

.team-role {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
}

.team-exp {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    background: rgba(232, 83, 26, 0.12);
    color: var(--orange);
    padding: 3px 9px;
    border-radius: 100px;
    margin-top: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 1.5rem;
    }

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

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-card.wide {
        grid-column: span 1;
    }

    .mvp-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        grid-template-columns: 60px 28px 1fr;
    }
}


/* ── EVENT GALLERY PAGE ── */

/* Filter Bar */
.gallery-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-group {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.filter-group-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    align-self: center;
    margin-right: 4px;
}

.filter-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 6px;
    align-self: center;
}

.filter-btn {
    font-size: 12px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: all 0.18s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.filter-btn.active {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}

/* Results count */
.gallery-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.gallery-count {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.gallery-count span {
    color: #fff;
    font-weight: 600;
}

/* Masonry grid */
.gallery-grid {
    columns: 3;
    column-gap: 12px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 12px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    display: block;
    background: rgba(255, 255, 255, 0.06);
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
}

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

.gallery-item-title {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.gallery-item-meta {
    display: flex;
    align-items: center;
    gap: 6px;
}

.gallery-item-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 100px;
}

.gallery-item-tag.placement {
    background: rgba(232, 83, 26, 0.85);
    color: #fff;
}

.gallery-item-tag.workshop {
    background: rgba(59, 130, 246, 0.85);
    color: #fff;
}

.gallery-item-tag.celebration {
    background: rgba(168, 85, 247, 0.85);
    color: #fff;
}

.gallery-item-tag.campus {
    background: rgba(34, 197, 94, 0.85);
    color: #fff;
}

.gallery-item-year {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

/* Placeholder card (no image) */
.gallery-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.2);
}

.gallery-placeholder svg {
    opacity: 0.4;
}

.gallery-placeholder span {
    font-size: 12px;
}

/* Empty state */
.gallery-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: rgba(255, 255, 255, 0.3);
    display: none;
}

.gallery-empty.visible {
    /* display: block; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-empty-icon {
    font-size: 40px;
    margin-bottom: 1rem;
    opacity: 0.4;
}

.gallery-empty p {
    font-size: 14px;
}

/* Lightbox */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-overlay.open {
    display: flex;
}

.lightbox-box {
    position: relative;
    max-width: 860px;
    /* width: 100%; */
    border-radius: 18px;
    overflow: hidden;
    background: #111;
}

.lightbox-box img {
    width: 100%;
    display: block;
    max-height: 70vh;
    object-fit: cover;
}

.lightbox-info {
    padding: 1.25rem 1.5rem;
    background: #111;
    display: flex;
    align-items: center;
    gap: 12px;
}

.lightbox-info-text {
    flex: 1;
}

.lightbox-info-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 3px;
}

.lightbox-info-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}

.lightbox-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

.lightbox-nav:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

/* Hidden items (filtered out) */
.gallery-item.hidden {
    display: none;
}

/* Responsive */
@media (max-width: 900px) {
    .gallery-grid {
        columns: 2;
    }
}

@media (max-width: 560px) {
    .gallery-grid {
        columns: 1;
    }

    .filter-divider {
        display: none;
    }

    .gallery-filters {
        gap: 6px;
    }

    .lightbox-nav {
        display: none;
    }
}

/* ── CONTACT US PAGE ── */

/* Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    align-items: start;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 2rem;
}

/* Segment tabs */
.segment-tabs {
    display: flex;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 5px;
}

.seg-tab {
    flex: 1;
    padding: 9px 10px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    white-space: nowrap;
}

.seg-tab:hover {
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.06);
}

.seg-tab.active {
    background: var(--orange);
    color: #fff;
}

.seg-tab svg {
    display: inline-block;
    vertical-align: -3px;
    margin-right: 5px;
}

/* Form panels */
.form-panel {
    display: none;
    flex-direction: column;
    gap: 1rem;
}

.form-panel.active {
    display: flex;
}

/* Form card wrapper */
.form-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.75rem;
}

.form-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.form-card-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Form rows */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full {
    grid-column: span 2;
}

.form-label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.03em;
}

.form-label span {
    color: var(--orange);
    margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px 14px;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.18s, background 0.18s;
    outline: none;
    width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--orange);
    background: rgba(232, 83, 26, 0.06);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.form-select option {
    background: #1a1a1a;
    color: #fff;
}

.form-textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.6;
}

/* Checkbox / radio group */
.check-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.check-item input[type="checkbox"],
.check-item input[type="radio"] {
    accent-color: var(--orange);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.check-item-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}

/* Submit button */
.form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: var(--orange);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.18s, transform 0.15s;
    margin-top: 12px;
}

.form-submit:hover {
    opacity: 0.9;
}

.form-submit:active {
    transform: scale(0.98);
}

.form-submit svg {
    flex-shrink: 0;
}

/* Success toast */
.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 12px;
    margin-top: 0.5rem;
}

.form-success.show {
    display: flex;
}

.form-success-icon {
    color: #4ade80;
    flex-shrink: 0;
}

.form-success p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.form-success strong {
    color: #fff;
}

/* Right sidebar — info cards */
.info-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
}

.info-card-title {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(232, 83, 26, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    flex-shrink: 0;
}

.info-text {
    flex: 1;
}

.info-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 3px;
    letter-spacing: 0.04em;
}

.info-value {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
}

.info-value a {
    color: #fff;
    text-decoration: none;
}

.info-value a:hover {
    color: var(--orange);
}

/* Hours table */
.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr td {
    font-size: 13px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-table tr:last-child td {
    border-bottom: none;
}

.hours-table td:first-child {
    color: rgba(255, 255, 255, 0.45);
}

.hours-table td:last-child {
    text-align: right;
    color: #fff;
    font-weight: 500;
}

.hours-closed {
    color: rgba(255, 60, 60, 0.7) !important;
}

/* Map embed */
.map-wrap {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    line-height: 0;
}

.map-wrap iframe {
    width: 100%;
    height: 400px;
    border: none;
    filter: grayscale(30%) contrast(1.05);
    display: block;
}

/* Social row */
.social-row {
    display: flex;
    gap: 8px;
    margin-top: 0.75rem;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(232, 83, 26, 0.12);
    color: var(--orange);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    /* color: rgba(255, 255, 255, 0.55); */
    text-decoration: none;
    transition: all 0.18s;
}

.social-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-right {
        position: static;
    }
}

@media (max-width: 560px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: span 1;
    }

    .segment-tabs {
        gap: 4px;
    }

    .seg-tab {
        font-size: 12px;
        padding: 8px 6px;
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}



/* -------------------------student registration form----------------------------  */
/* ── REGISTRATION PAGE ── */
.rp {
    max-width: 860px;
    margin: 0 auto;
    padding: 1.5rem 1rem 3rem;
}

/* Header */
.rh {
    text-align: center;
    margin-bottom: 2rem;
}

.rh-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(232, 83, 26, 0.12);
    color: var(--orange);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 100px;
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: .9rem;
}

.rh h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: .4rem;
}

.rh p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* Progress bar */
.prog-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.prog-fill {
    height: 100%;
    background: var(--orange);
    border-radius: 3px;
    transition: width .4s ease;
}

/* Stepper */
.stepper {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

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

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.5);
    transition: all .3s;
}

.step-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 6px;
    text-align: center;
    white-space: nowrap;
}

.step-connector {
    position: absolute;
    top: 18px;
    left: 50%;
    right: -50%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.step-item:last-child .step-connector {
    display: none;
}

.step-item.done .step-circle {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

.step-item.active .step-circle {
    border-color: var(--orange);
    color: var(--orange);
    background: #1c0a03;
}

.step-item.done .step-label,
.step-item.active .step-label {
    color: #fff;
}

.step-item.done .step-connector {
    background: var(--orange);
}

/* Step panels */
.step-panel {
    display: none;
}

.step-panel.on {
    display: block;
}

/* Mandatory note */
.mand-note {
    font-size: 12px;
    color: rgb(255, 255, 255);
    margin-bottom: 1.25rem;
}

.mand-note span {
    color: var(--orange);
}

/* Section header */
.sh {
    margin-bottom: 1.25rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sh-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.sh-desc {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.5);
}

/* Card */
.card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}

/* Grid helpers */
.fg {
    display: grid;
    gap: 14px;
}

.g1 {
    grid-template-columns: 1fr;
}

.g2 {
    grid-template-columns: 1fr 1fr;
}

.g3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.g4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.gf {
    grid-column: 1 / -1;
}

/* Field */
.fl {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.lbl {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: .05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
}

.lbl .req {
    color: var(--orange);
    font-size: 13px;
    line-height: 1;
}

.lbl .opt {
    font-size: 9px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.25);
    padding: 1px 6px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-left: 4px;
}

.hint {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 2px;
}

/* Inputs */
.rp input[type=text],
.rp input[type=email],
.rp input[type=tel],
.rp input[type=number],
.rp input[type=date],
.rp select,
.rp textarea {
    width: 100%;
    background: #222;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px 14px;
    color: #fff;
    font-size: 13.5px;
    font-family: inherit;
    outline: none;
    transition: border-color .18s, background .18s;
    appearance: none;
    box-sizing: border-box;
}

.rp input::placeholder,
.rp textarea::placeholder {
    color: rgba(255, 255, 255, 0.22);
}

.rp input:focus,
.rp select:focus,
.rp textarea:focus {
    border-color: var(--orange);
    background: rgba(232, 83, 26, 0.06);
}

.rp select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.35)' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 13px center;
    padding-right: 34px;
    cursor: pointer;
}

.rp select option {
    background: #1a1a1a;
    color: #fff;
}

.rp textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.6;
}

/* Multi-select tag pills */
.tag-select {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.tag-opt {
    display: none;
}

.tag-lbl {
    padding: 7px 13px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #222;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12.5px;
    font-weight: 500;
    cursor: pointer;
    transition: all .18s;
    user-select: none;
}

.tag-opt:checked+.tag-lbl {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

/* Radio group */
.radio-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.radio-opt {
    display: none;
}

.radio-lbl {
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #222;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all .18s;
    user-select: none;
}

.radio-opt:checked+.radio-lbl {
    background: rgba(232, 83, 26, 0.12);
    border-color: var(--orange);
    color: #fff;
}

/* Yes / No toggle */
.yn-group {
    display: flex;
    gap: 8px;
}

.yn-opt {
    display: none;
}

.yn-lbl {
    flex: 1;
    text-align: center;
    padding: 9px;
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #222;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .18s;
}

.yn-opt:checked+.yn-lbl {
    background: rgba(232, 83, 26, 0.12);
    border-color: var(--orange);
    color: #fff;
}

/* Same address checkbox */
.same-addr {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #222;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 12px;
}

.same-addr input {
    width: 16px;
    height: 16px;
    accent-color: var(--orange);
    cursor: pointer;
    flex-shrink: 0;
    margin: 0;
}

.same-addr span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Backlog reveal */
.backlog-detail {
    display: none;
    margin-top: 10px;
}

.backlog-detail.show {
    display: block;
}

/* Semester table */
.sem-table {
    width: 100%;
    border-collapse: collapse;
}

.sem-table th {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: rgba(255, 255, 255, 0.5);
    padding: 8px 10px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sem-table td {
    padding: 6px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sem-table tr:last-child td {
    border-bottom: none;
}

.sem-table input {
    padding: 7px 10px;
    font-size: 13px;
}

.agg-row {
    background: rgba(232, 83, 26, 0.1);
    border-radius: 8px;
}

.agg-row td {
    padding: 9px 10px;
    font-weight: 700;
    color: var(--orange);
    border: none;
}

/* File upload zone */
.file-zone {
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all .2s;
    background: #222;
    position: relative;
}

.file-zone:hover {
    border-color: var(--orange);
    background: rgba(232, 83, 26, 0.06);
}

.file-zone input[type=file] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.file-zone-icon {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: .5rem;
}

.file-zone-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.file-zone-text strong {
    color: #fff;
    display: block;
    margin-bottom: 3px;
}

.file-zone-badge {
    display: inline-block;
    margin-top: .5rem;
    font-size: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.25);
    padding: 3px 8px;
    border-radius: 6px;
}

/* Nav buttons */
.btn-row {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.btn {
    padding: 11px 24px;
    border-radius: 10px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all .18s;
}

.btn-back {
    background: #222;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.btn-back:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-next {
    background: var(--orange);
    color: #fff;
    margin-left: auto;
}

.btn-next:hover {
    opacity: .88;
}

.btn-next:active {
    transform: scale(.97);
}

.btn-submit {
    /* width: 100%; */
    justify-content: center;
    padding: 13px;
}

/* Success screen */
.reg-success {
    display: none;
    text-align: center;
    padding: 3rem 1.5rem;
}

.reg-success.show {
    display: block;
}

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #4ade80;
}

.reg-success h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: .5rem;
}

.reg-success p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 400px;
    margin: 0 auto;
}

.reg-id {
    display: inline-block;
    margin-top: 1rem;
    padding: 8px 20px;
    background: rgba(232, 83, 26, 0.12);
    border: 1px solid rgba(232, 83, 26, 0.25);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--orange);
}

.radio-lbl {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Responsive */
@media (max-width: 600px) {

    .g2,
    .g3,
    .g4 {
        grid-template-columns: 1fr;
    }

    .step-label {
        display: none;
    }

    .step-circle {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .step-connector {
        top: 15px;
    }
}


/*------------------------------------08/06/2026-----------------------------------------*/
/* ── SERVICES PAGE ── */

/* Hero */
.sv-hero {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 3rem 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.sv-hero::before {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(232, 83, 26, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.sv-hero::after {
    content: '';
    position: absolute;
    left: -40px;
    bottom: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(232, 83, 26, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.sv-hero-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.sv-hero h1 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.sv-hero h1 em {
    color: var(--orange);
    font-style: italic;
    font-weight: 300;
}

.sv-hero p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    max-width: 460px;
}

.hero-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

.hero-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.5);
}

.hero-pill svg {
    color: var(--orange);
}

.sv-hero-visual {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    text-align: center;
    min-width: 110px;
}

.hero-stat-n {
    font-size: 26px;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
}

.hero-stat-l {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-top: 3px;
}

/* Service cards grid */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.svc-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all .22s;
    position: relative;
    overflow: hidden;
}

.svc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232, 83, 26, 0.07) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .22s;
}

.svc-card:hover::before,
.svc-card.active::before {
    opacity: 1;
}

.svc-card:hover {
    border-color: rgba(232, 83, 26, 0.25);
    transform: translateY(-2px);
}

.svc-card.active {
    border-color: var(--orange);
    background: rgba(232, 83, 26, 0.08);
}

.svc-card.featured {
    grid-column: span 2;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.svc-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(232, 83, 26, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    margin-bottom: 1rem;
    flex-shrink: 0;
    transition: background .22s;
}

.svc-card.active .svc-icon,
.svc-card:hover .svc-icon {
    background: var(--orange);
    color: #fff;
}

.svc-card.featured .svc-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 0;
}

.svc-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.svc-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.svc-tag {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
}

.svc-card.active .svc-tag {
    background: rgba(232, 83, 26, 0.12);
    color: var(--orange);
}

.svc-arrow {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all .2s;
}

.svc-card:hover .svc-arrow,
.svc-card.active .svc-arrow {
    background: var(--orange);
    color: #fff;
}

/* Detail panel */
.detail-panel {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    margin-bottom: 2.5rem;
    overflow: hidden;
    display: none;
}

.detail-panel.show {
    display: block;
}

.dp-inner {
    display: grid;
    grid-template-columns: 1fr 320px;
    min-height: 340px;
}

.dp-left {
    padding: 2rem;
}

.dp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(232, 83, 26, 0.12);
    color: var(--orange);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: .85rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.dp-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: .6rem;
}

.dp-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.dp-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 1.25rem;
}

.dp-feat {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.dp-feat-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: rgba(232, 83, 26, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 1px;
}

.dp-feat-title {
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
    font-size: 13px;
}

.dp-feat-text {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.dp-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    background: var(--orange);
    color: #fff;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: opacity .18s;
}

.dp-cta:hover {
    opacity: .88;
}

.dp-right {
    background: rgba(255, 255, 255, 0.02);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dp-right-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: .25rem;
}

.dp-step {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.dp-step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(232, 83, 26, 0.12);
    border: 1px solid rgba(232, 83, 26, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--orange);
    flex-shrink: 0;
}

.dp-step-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.55;
    padding-top: 3px;
}

.dp-step-text strong {
    color: #fff;
    display: block;
    font-size: 13px;
    margin-bottom: 1px;
}

.dp-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
}

/* How it works */
.how-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}

.how-grid::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1), transparent);
    z-index: 0;
}

.how-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 .5rem;
    position: relative;
    z-index: 1;
}

.how-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .85rem;
}

.how-item:nth-child(odd) .how-num {
    background: rgba(232, 83, 26, 0.12);
    border-color: rgba(232, 83, 26, 0.25);
}

.how-num svg {
    color: var(--orange);
}

.how-label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}

.how-desc {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.55;
}

/* Who it's for */
.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.who-card {
    border-radius: 16px;
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
}

.who-card.candidates {
    background: linear-gradient(135deg, #1a1a1a 0%, rgba(232, 83, 26, 0.12) 100%);
    border: 1px solid rgba(232, 83, 26, 0.25);
}

.who-card.employers {
    background: linear-gradient(135deg, #1a1a1a 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.25);
}

.who-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.who-card.candidates .who-card-icon {
    background: rgba(232, 83, 26, 0.12);
    color: var(--orange);
}

.who-card.employers .who-card-icon {
    background: rgba(59, 130, 246, 0.12);
    color: #60a5fa;
}

.who-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: .5rem;
}

.who-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.who-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.who-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

.who-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.who-card.candidates .who-dot {
    background: var(--orange);
}

.who-card.employers .who-dot {
    background: #60a5fa;
}

.who-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 1.25rem;
    padding: 9px 18px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all .18s;
}

.who-card.candidates .who-btn {
    background: var(--orange);
    color: #fff;
}

.who-card.employers .who-btn {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.25);
}

.who-btn:hover {
    opacity: .85;
}

/* Testimonials */
.testimonial-responsive {
    width: 50%;
    flex-shrink: 0
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.testi-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 1.25rem;
}

.testi-stars {
    display: flex;
    gap: 2px;
    margin-bottom: .75rem;
}

.star {
    color: var(--orange);
    font-size: 13px;
}

.testi-quote {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testi-quote::before {
    content: '"';
    font-size: 28px;
    color: var(--orange);
    font-style: normal;
    line-height: .5;
    display: block;
    margin-bottom: .4rem;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testi-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(232, 83, 26, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
    flex-shrink: 0;
}

.testi-name {
    font-size: 13px;
    font-weight: 600;
}

.testi-role {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

/* CTA banner */
.cta-banner {
    background: linear-gradient(135deg, var(--orange) 0%, #ff9a4d 100%);
    border-radius: 18px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-text h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: .4rem;
}

.cta-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.cta-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cta-btn-w {
    padding: 11px 22px;
    border-radius: 10px;
    background: #fff;
    color: var(--orange);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: opacity .18s;
    white-space: nowrap;
}

.cta-btn-o {
    padding: 11px 22px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.4);
    font-family: inherit;
    transition: opacity .18s;
    white-space: nowrap;
}

.cta-btn-w:hover,
.cta-btn-o:hover {
    opacity: .88;
}

/* Responsive */
@media (max-width: 820px) {
    .testimonial-responsive {
        width: 100%;
    }

    .svc-grid {
        grid-template-columns: 1fr 1fr;
    }

    .svc-card.featured {
        grid-column: span 2;
    }

    .dp-inner {
        grid-template-columns: 1fr;
    }

    .dp-right {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .how-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .how-grid::before {
        display: none;
    }

    .who-grid,
    .testi-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        flex-direction: column;
    }

    .cta-btns {
        flex-direction: column;
        width: 100%;
    }

    .sv-hero {
        flex-direction: column;
    }

    .sv-hero-visual {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

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

    .svc-card.featured {
        grid-column: span 1;
        flex-direction: column;
    }

    .dp-features {
        grid-template-columns: 1fr;
    }

    .sv-hero h1 {
        font-size: 26px;
    }
}


/*--------------------------------------------- 17/06/26 ----------------------------------------------*/

/* ── BLOG DETAILS PAGE ── */
.bp {
    font-family: inherit;
    color: #fff;
    padding: 0 0 2rem;
    margin: 0 auto;
}

/* breadcrumb */
.bp-crumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1.5rem;
}

.bp-crumb1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 1rem 0;
    background: #ff670014;
    border: none;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1.5rem 24px;
}

.bp-crumb a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
}

.bp-crumb a:hover {
    color: var(--orange);
}

.bp-crumb span {
    color: rgba(255, 255, 255, 0.2);
}

.bp-crumb b {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* category + title */
.bp-cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(232, 83, 26, 0.15);
    color: var(--orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.bp-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.1rem;
    color: #fff;
}

.bp-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* meta row */
.bp-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 1.5rem;
    margin-bottom: 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bp-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.bp-meta-text {
    flex: 1;
}

.bp-author {
    font-size: 13.5px;
    font-weight: 600;
    color: #fff;
}

.bp-meta-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
}

.bp-meta-sub svg {
    flex-shrink: 0;
}

.bp-share {
    display: flex;
    gap: 7px;
}

.bp-share a {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all .18s;
}

.bp-share a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

/* hero image */
.bp-hero {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
    position: relative;
    background: linear-gradient(135deg, #1c1c1c 0%, #141414 100%);
}

.bp-hero svg,
.bp-hero img {
    display: block;
    width: 100%;
    height: auto;
}

/* .bp-hero img {
    object-fit: cover;
    max-height: 360px;
} */

/* body typography */
.bp-body {
    font-size: 15.5px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.75);
}

.bp-body p {
    margin-bottom: 1.4rem;
}

.bp-body h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 2.25rem 0 1rem;
    line-height: 1.3;
}

.bp-body h3 {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin: 1.75rem 0 .75rem;
}

.bp-body ul {
    margin: 0 0 1.4rem;
    padding-left: 0;
    list-style: none;
}

.bp-body ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: .6rem;
    color: rgba(255, 255, 255, 0.7);
}

.bp-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ffffffee;
}

.bp-body ol {
    margin: 0 0 1.4rem;
    padding-left: 0;
    counter-reset: bp-counter;
}

.bp-body ol li {
    position: relative;
    padding-left: 34px;
    margin-bottom: .7rem;
    color: rgba(255, 255, 255, 0.7);
    counter-increment: bp-counter;
}

.bp-body ol li::before {
    content: counter(bp-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--orange);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bp-body strong {
    color: #fff;
    font-weight: 600;
}

/* pull quote */
.bp-quote {
    display: flex;
    gap: 1rem;
    background: rgba(232, 83, 26, 0.07);
    border: 1px solid rgba(232, 83, 26, 0.2);
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
    margin: 2rem 0;
}

.bp-quote-mark {
    font-size: 32px;
    color: var(--orange);
    font-family: Georgia, serif;
    line-height: .6;
    flex-shrink: 0;
}

.bp-quote p {
    font-size: 16px;
    font-style: italic;
    color: #fff;
    line-height: 1.6;
    margin: 0;
}

/* inline service grid */
.bp-svc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 1.5rem 0 2rem;
}

.bp-svc {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1rem 1.1rem;
}

.bp-svc-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(232, 83, 26, 0.13);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    margin-bottom: .6rem;
}

.bp-svc-title {
    font-size: 13.5px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 3px;
}

.bp-svc-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
}

/* tags */
.bp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 2rem 0;
}

.bp-tag {
    font-size: 12px;
    font-weight: 500;
    padding: 5px 13px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.55);
}

/* CTA box */
.bp-cta {
    background: linear-gradient(135deg, var(--orange), #ff9a4d);
    border-radius: 16px;
    padding: 2rem;
    margin: 2.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.bp-cta-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.bp-cta-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

.bp-cta-btn {
    background: #fff;
    color: var(--orange);
    font-size: 13.5px;
    font-weight: 700;
    padding: 11px 22px;
    border-radius: 9px;
    border: none;
    white-space: nowrap;
    cursor: pointer;
    flex-shrink: 0;
    font-family: inherit;
    transition: transform .15s;
}

.bp-cta-btn:hover {
    transform: scale(1.03);
}

/* author card */
.bp-author-card {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    margin: 2.5rem 0;
}

.bp-author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.bp-author-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 3px;
}

.bp-author-role {
    font-size: 11.5px;
    color: var(--orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 6px;
}

.bp-author-bio {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* related posts */
.bp-related-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.bp-related-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.bp-related-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 13px;
    padding: 1.1rem;
    cursor: pointer;
    transition: border-color .18s;
}

.bp-related-card:hover {
    border-color: var(--orange);
}

.bp-related-cat {
    font-size: 10px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 6px;
}

.bp-related-card h4 {
    font-size: 13.5px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 6px;
}

.bp-related-card span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
}

/* Responsive */
@media (max-width: 600px) {
    .bp-title {
        font-size: 24px;
    }

    .bp-svc-grid {
        grid-template-columns: 1fr;
    }

    .bp-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .bp-related-grid {
        grid-template-columns: 1fr;
    }

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


/* ── TESTIMONIALS PAGE ── */
.tp {
    font-family: inherit;
    color: #fff;
    padding: 0 0 2rem;
}

/* header */
.tp-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: .5rem;
}

.tp-title {
    font-family: 'Fraunces', serif;
    font-size: 32px;
    font-weight: 300;
    margin-bottom: .6rem;
    line-height: 1.25;
}

.tp-title em {
    font-style: italic;
    color: var(--orange);
}

.tp-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 1.5rem;
}

/* stat strip */
.tp-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.25rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tp-stat-num {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
}

.tp-stat-num span {
    color: var(--orange);
}

.tp-stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-top: 4px;
}

/* filters */
.tp-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 2rem;
}

.tp-filter-btn {
    font-size: 13px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: all .18s;
    font-family: inherit;
}

.tp-filter-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}

.tp-filter-btn.on {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

/* grid */
.tp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.tp-card {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    padding: 1.75rem;
    cursor: pointer;
    transition: border-color .22s, transform .22s, background .22s;
    position: relative;
    overflow: hidden;
}

.tp-card:hover {
    border-color: rgba(232, 83, 26, 0.4);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

.tp-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(232, 83, 26, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.tp-quote-icon {
    color: var(--orange);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.tp-card-title {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.tp-card-text {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tp-card-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    flex-wrap: wrap;
    justify-content: left;
}

.tp-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.tp-avatar.employer {
    background: linear-gradient(135deg, #3b6dff, #7a9cff);
}

.tp-avatar.candidate {
    background: linear-gradient(135deg, var(--orange), #ff9a4d);
}

.tp-card-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.tp-card-role {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 1px;
}

.tp-card-badge {
    /* margin-left: auto; */
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 100px;
    flex-shrink: 0;
}

.tp-card-badge.employer {
    background: rgba(59, 109, 255, 0.15);
    color: #7a9cff;
}

.tp-card-badge.candidate {
    background: rgba(232, 83, 26, 0.15);
    color: var(--orange);
}

.tp-stars {
    display: flex;
    gap: 2px;
    margin-top: 8px;
}

.tp-stars svg {
    color: var(--orange);
}

.tp-card.hidden {
    display: none;
}

/* DETAIL MODAL */
.tp-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.tp-modal-overlay.open {
    display: flex;
}

.tp-modal {
    position: relative;
    max-width: 560px;
    width: 100%;
    background: #161616;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    padding: 2.5rem;
    max-height: 85vh;
    overflow-y: auto;
}

.tp-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .18s;
}

.tp-modal-close:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.tp-modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 1.25rem;
}

.tp-modal-badge.employer {
    background: rgba(59, 109, 255, 0.15);
    color: #7a9cff;
}

.tp-modal-badge.candidate {
    background: rgba(232, 83, 26, 0.15);
    color: var(--orange);
}

.tp-modal-quote-mark {
    font-family: 'Fraunces', serif;
    font-size: 60px;
    color: var(--orange);
    opacity: 0.3;
    line-height: .5;
    margin-bottom: .5rem;
}

.tp-modal-title {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 300;
    font-style: italic;
    color: #fff;
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.tp-modal-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.85;
    margin-bottom: 1.75rem;
}

.tp-modal-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1.5rem;
}

.tp-modal-stars svg {
    color: var(--orange);
}

.tp-modal-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tp-modal-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.tp-modal-avatar.employer {
    background: linear-gradient(135deg, #3b6dff, #7a9cff);
}

.tp-modal-avatar.candidate {
    background: linear-gradient(135deg, var(--orange), #ff9a4d);
}

.tp-modal-name {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.tp-modal-role {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 2px;
}

/* Responsive */
@media (max-width: 700px) {
    .tp-grid {
        grid-template-columns: 1fr;
    }

    .tp-stats {
        gap: 1.5rem;
    }

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

    .tp-modal {
        padding: 1.75rem;
    }
}


/*------------------------------------------------------- 18/06/2026-------------------------------------------------------- */
/* ── SERVICES SPLIT PAGE ── */
.sv {
    font-family: 'DM Sans', system-ui, sans-serif;
    color: #fff;
    padding: 0 0 3rem
}

/* ── HERO SPLIT (text left, visual right) ── */
.sv-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    position: relative;
    overflow: hidden
}

.sv-hero::before {
    content: '';
    position: absolute;
    left: -80px;
    bottom: -80px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(232, 83, 26, 0.1) 0%, transparent 70%);
    pointer-events: none
}

.sv-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--orange);
    background: rgba(232, 83, 26, 0.1);
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 1rem
}

.sv-hero-title {
    font-family: 'Fraunces', serif;
    font-size: 36px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1rem
}

.sv-hero-title em {
    font-style: italic;
    color: var(--orange)
}

.sv-hero-body {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    margin-bottom: .75rem
}

.sv-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
    background: var(--orange);
    color: #fff;
    font-size: 13.5px;
    font-weight: 600;
    padding: 11px 22px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: opacity .18s
}

.sv-hero-cta:hover {
    opacity: .88
}

/* hero SVG illustration */
.sv-hero-img {
    border-radius: 16px;
    overflow: hidden;
    background: #161616;
    border: 1px solid rgba(255, 255, 255, 0.08)
}

.sv-hero-img svg {
    display: block;
    width: 100%;
    height: auto
}

/* ── SECTION BASE ── */
.sv-section {
    margin-bottom: 4rem
}

.sv-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center
}

.sv-split.rev {
    direction: rtl
}

.sv-split.rev>* {
    direction: ltr
}

/* illustration box */
.sv-img-box {
    border-radius: 18px;
    overflow: hidden;
    background: #161616;
    border: 1px solid rgba(255, 255, 255, 0.08)
}

.sv-img-box svg {
    display: block;
    width: 100%;
    height: auto
}

/* section text block */
.sv-sec-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: .5rem
}

.sv-sec-title {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 1.25rem;
    line-height: 1.3
}

/* service cards inside right col */
.sv-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 1.25rem
}

.sv-card {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 13px;
    padding: 1rem 1.1rem;
    transition: border-color .2s
}

.sv-card:hover {
    border-color: rgba(232, 83, 26, 0.35)
}

.sv-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(232, 83, 26, 0.13);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    flex-shrink: 0
}

.sv-card-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 3px;
    text-align: left;
}

.sv-card-desc {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    text-align: left;
}

/* FAQ */
.sv-faq {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.sv-faq-item {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 13px;
    overflow: hidden
}

.sv-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.4rem;
    cursor: pointer
}

.sv-faq-q span {
    font-size: 14px;
    font-weight: 600;
    color: #fff
}

.sv-faq-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    font-size: 16px;
    transition: transform .25s, background .2s
}

.sv-faq-item.open .sv-faq-icon {
    transform: rotate(45deg);
    background: var(--orange);
    border-color: var(--orange);
    color: #fff
}

.sv-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .32s ease
}

.sv-faq-item.open .sv-faq-a {
    max-height: 200px
}

.sv-faq-a p {
    padding: 0 1.4rem 1.25rem;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75
}

/* FAQ text col */
.sv-faq-text .sv-sec-title {
    margin-bottom: .75rem
}

.sv-faq-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    margin-bottom: 1.25rem
}

@media(max-width:768px) {

    .sv-hero,
    .sv-split,
    .sv-split.rev {
        grid-template-columns: 1fr;
        direction: ltr
    }

    /* .sv-hero-img {
        display: none
    } */

    .sv-hero-title {
        font-size: 26px
    }

    .sv-sec-title {
        font-size: 22px
    }
}


/* ------------------------------------22/06/2026 ---------------------------------------------*/
.legal-page p,
.legal-page h1,
.legal-page h2,
.legal-page h3,
.legal-page h4,
.legal-page h5,
.legal-page h6,
.legal-page li {
    color: #ffffffb3 !important;
}

.legal-page a {
    color: var(--orange) !important;
}

.who-we-serve p,
.who-we-serve h1,
.who-we-serve h2,
.who-we-serve h3,
.who-we-serve h4,
.who-we-serve h5,
.who-we-serve h6,
.who-we-serve li {
    color: #ffffffb3 !important;
}

.who-we-serve a {
    color: var(--orange) !important;
}

.who-we-serve ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-size: 20px;
    line-height: 1;
}

/* =================24-06-2026================= */
.yearwise-data .stat-title {
    max-width: none;
}


.partner-prev,
.partner-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
}

.partner-prev {
    left: -20px;
}

.partner-next {
    right: -20px;
}

@media(max-width:768px) {
    .partner-prev {
        left: 0;
    }

    .partner-next {
        right: 0;
    }
}

.mentor-prev,
.mentor-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
}

.mentor-prev {
    left: -30px;
}

.mentor-next {
    right: -30px;
}

.slider-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
}

.slider-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-50%) scale(1.08);
}

@media(max-width:768px) {

    .mentor-prev {
        left: 10px;
    }

    .mentor-next {
        right: 10px;
    }
}

.year-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.year-badge {
    position: relative;
    display: inline-block;
    padding: 10px 28px;
    background: #1a1a1a;
    border: 1px solid var(--orange);
    color: #fff;
    border-radius: 14px;
    font-size: 22px;
    font-weight: 700;
}

.year-badge::before,
.year-badge::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            var(--orange));
}

.year-badge::before {
    right: 100%;
    margin-right: 16px;
}

.year-badge::after {
    left: 100%;
    margin-left: 16px;
    transform: rotate(180deg);
}