/* Base Styles and Variables */
:root {
    --c-primary: #FF7A00;
    /* Orange */
    --c-secondary: #0075FF;
    /* Blue */
    --c-tertiary: #00C853;
    /* Green */
    --c-dark: #0A0A0A;
    --c-dark-glass: rgba(10, 10, 10, 0.7);
    --c-light: #F5F5F5;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--c-dark);
    color: var(--c-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

section {
    padding: 6rem 5%;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--c-primary), #FF5500);
    color: #FFF;
    border: none;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 122, 0, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--c-secondary), #0055FF);
}

.btn-secondary:hover {
    box-shadow: 0 10px 20px rgba(0, 117, 255, 0.3);
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 5%;
    transition: all 0.3s ease;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    /* background: rgba(8, 8, 8, 0.65); */
    background: rgb(8 8 8 / 92%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar.scrolled {
    padding: 1rem 5%;
    background: rgba(8, 8, 8, 0.92);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

/* ── Navbar Animated Bottom Glow ── */
.nav-animated-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Animated glowing bottom border */
.nav-bottom-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 122, 0, 0) 10%,
            rgba(255, 122, 0, 0.7) 35%,
            rgba(0, 117, 255, 0.5) 65%,
            rgba(255, 122, 0, 0) 90%,
            transparent 100%);
    background-size: 200% 100%;
    animation: navGlowSweep 4s linear infinite;
}

@keyframes navGlowSweep {
    0% {
        background-position: -100% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Ensure nav content is above bg layer */
.nav-container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 48px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

/* Navbar Icons */
.nav-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #CCC;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--c-primary);
}

.nav-item-icon {
    opacity: 0.7;
    transition: all 0.3s ease;
}

.nav-links a:hover .nav-item-icon {
    opacity: 1;
    color: var(--c-primary);
    transform: scale(1.1);
}

.drop-icon {
    margin-right: 12px;
    opacity: 0.6;
    color: var(--c-primary);
}

.dropdown-menu a:hover .drop-icon {
    opacity: 1;
    transform: scale(1.1);
}

.nav-links a:hover .nav-icon {
    transform: rotate(180deg);
}

.nav-icon {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

/* Dropdown System */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    min-width: 240px;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.2rem 0;
    margin-top: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    z-index: 1001;
}

/* Arrow pointer for dropdown */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: rgba(15, 15, 15, 0.95);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 1025px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

/* ── Mega Menu System ── */
.dropdown-menu.mega-menu {
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 900px;
    /* Force wide for mega menu */
    max-width: 95vw;
    padding: 2.5rem;
}

@media (min-width: 1025px) {
    .dropdown:hover .dropdown-menu.mega-menu {
        transform: translateX(-50%) translateY(0);
    }
}

.mega-container {
    width: 100%;
}

.mega-row {
    display: flex;
    gap: 2.5rem;
}

.mega-col {
    flex: 1;
}

.mega-title {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--c-primary);
    margin-bottom: 2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 122, 0, 0.2);
    text-align: center;
}

.mega-item {
    display: flex !important;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
    text-decoration: none !important;
}

.mega-item:hover {
    background: rgba(255, 122, 0, 0.08);
    transform: translateX(5px);
}

.mega-icon {
    font-size: 1.1rem;
    color: var(--c-primary);
    margin-top: 3px;
    opacity: 0.8;
}

.mega-text {
    display: flex;
    flex-direction: column;
}

.mega-heading {
    color: #FFF;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
    transition: color 0.3s ease;
}

.mega-item:hover .mega-heading {
    color: var(--c-primary);
}

.mega-meta {
    color: #94A3B8;
    font-size: 0.85rem;
}

/* Mobile adjustments handled via global nav-links responsive styles */
@media (max-width: 1024px) {
    .dropdown-menu.mega-menu {
        position: static;
        width: 100%;
        transform: none !important;
        box-shadow: none;
        background: transparent;
        padding: 1rem 0;
        border: none;
        opacity: 1;
        visibility: visible;
        display: none;
        /* Controlled by toggle class in global JS */
    }

    .dropdown.active .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        background: rgba(255, 255, 255, 0.02) !important;
        border: 1px solid rgba(255, 255, 255, 0.05) !important;
        border-radius: 12px !important;
        padding: 1rem !important;
        margin-top: 0.5rem !important;
        width: 100% !important;
    }

    .dropdown.active .dropdown-menu a {
        display: flex !important;
        align-items: center !important;
        padding: 0.6rem 1rem !important;
        font-size: 0.95rem !important;
        color: #BBB !important;
        background: transparent !important;
        border: none !important;
        transition: all 0.2s ease !important;
    }

    .dropdown.active .dropdown-menu a:hover {
        color: var(--c-primary) !important;
        background: rgba(255, 122, 0, 0.05) !important;
        padding-left: 1.2rem !important;
    }

    .dropdown.active .mega-title {
        text-align: left !important;
        font-size: 0.8rem !important;
        color: var(--c-primary) !important;
        margin-bottom: 1rem !important;
        padding-bottom: 0.5rem !important;
        border-bottom: 1px solid rgba(255, 122, 0, 0.1) !important;
    }

    .dropdown.active .mega-item {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 1rem !important;
        padding: 0.8rem !important;
        border-radius: 8px !important;
        margin-bottom: 0.3rem !important;
        text-decoration: none !important;
    }

    .dropdown.active .mega-item:hover {
        background: rgba(255, 122, 0, 0.06) !important;
    }

    .dropdown.active .mega-heading {
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        color: #FFF !important;
    }

    .dropdown.active .mega-meta {
        font-size: 0.8rem !important;
        color: #94A3B8 !important;
    }

    .mega-row {
        flex-direction: column;
        gap: 1rem;
    }
}

.dropdown-menu li {
    list-style: none;
    width: 100%;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
    color: #AAA;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: rgba(255, 122, 0, 0.08);
    color: var(--c-primary);
    padding-left: 2.2rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: #FFF;
    transition: 0.3s;
}

/* ── Mobile / Tablet Navigation ── */
@media (max-width: 1024px) {

    .nav-links,
    .nav-btn {
        display: none;
    }

    /* The nav-links overlay must escape the centered nav-container.
       We anchor it to the .navbar (position:fixed) via position:fixed. */
    .nav-links.active {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        top: var(--navbar-h, 76px) !important;
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        height: calc(100dvh - var(--navbar-h, 76px)) !important;
        background: rgba(8, 8, 8, 0.98) !important;
        backdrop-filter: blur(24px) !important;
        -webkit-backdrop-filter: blur(24px) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
        padding: 2rem 1.5rem 3rem !important;
        gap: 0.4rem !important;
        overflow-y: auto !important;
        z-index: 9998 !important;
        animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
    }

    /* Style each top-level nav item as a full-width row */
    .nav-links.active > li {
        width: 100% !important;
    }

    .nav-links.active > li > a {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        width: 100% !important;
        padding: 0.85rem 1rem !important;
        font-size: 1.05rem !important;
        font-weight: 600 !important;
        color: #E0E0E0 !important;
        border-radius: 10px !important;
        transition: background 0.2s ease, color 0.2s ease !important;
    }

    .nav-links.active > li > a:hover {
        background: rgba(255, 122, 0, 0.08) !important;
        color: var(--c-primary) !important;
    }

    /* Dropdown chevron in mobile */
    .nav-links.active .nav-icon {
        margin-left: auto !important;
        transition: transform 0.3s ease !important;
    }

    .nav-links.active .dropdown.active > a .nav-icon {
        transform: rotate(180deg) !important;
    }

    .nav-links.active::-webkit-scrollbar {
        width: 4px;
    }
    .nav-links.active::-webkit-scrollbar-track {
        background: transparent;
    }
    .nav-links.active::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.12);
        border-radius: 4px;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Logo size on tablets */
    .logo img {
        height: 40px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .navbar {
        padding: 1rem 4%;
    }

    .logo img {
        height: 34px;
    }

    .nav-links.active {
        padding: 1.5rem 1rem 3rem !important;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body.nav-open {
    overflow: hidden !important;
}

/* Hero Section Styles */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    background-color: var(--c-dark);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.slider,
.slide,
.image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px) brightness(0.6);
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(8, 8, 8, 0.40) 0%, rgba(8, 8, 8, 0.45) 45%, rgba(5, 5, 5, 0.6) 100%);
}

.dark-blue-overlay {
    background: linear-gradient(105deg, rgba(8, 12, 20, 0.95) 0%, rgba(8, 12, 20, 0.85) 45%, rgba(0, 10, 30, 0.6) 100%);
}

.slide-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 5rem;
    z-index: 10;
}

.slide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 2rem;
}

.reverse-grid .content-box {
    order: 2;
}

.reverse-grid .image-front {
    order: 1;
}

.glass-panel {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.image-front {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.img-frame {
    width: 100%;
    height: 70vh;
    max-height: 650px;
    border-radius: 24px;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.frame-orange {
    box-shadow: 0 20px 50px rgba(255, 122, 0, 0.15);
}

.frame-blue {
    box-shadow: 0 20px 50px rgba(0, 117, 255, 0.15);
}

.img-frame::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

.img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFF;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #FFF;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -1px;
}

.event-short-name {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--c-primary);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.event-short-name::before {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background: var(--c-primary);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 122, 0, 0.6);
}

.text-white {
    color: #FFF;
}

.event-details-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.detail-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.detail-icon {
    display: flex;
    align-items: center;
    color: var(--c-primary);
}

.detail-text {
    color: #E0E0E0;
    font-size: 0.95rem;
    font-weight: 500;
}

.divider {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0.5rem;
    font-weight: 300;
    font-size: 1.1rem;
}

.detail-text strong {
    color: #FFF;
    font-weight: 700;
}

.action-group {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(255, 122, 0, 0.4);
}

.btn-glow-blue {
    background: linear-gradient(135deg, var(--c-secondary), #0055FF);
    box-shadow: 0 0 20px rgba(0, 117, 255, 0.4);
}

.btn-outline {
    padding: 0.8rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFF;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: #FFF;
    background: rgba(255, 255, 255, 0.1);
}

.slider-ui {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress-container {
    width: 300px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--c-primary);
    width: 0%;
}

.slider-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.slide-counter {
    font-family: var(--font-heading);
    font-weight: 600;
    color: #888;
    font-size: 1.1rem;
}

.slide-counter .current {
    color: #FFF;
}

.slider-btn {
    background: transparent;
    border: none;
    color: #FFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.slider-btn:hover {
    background: var(--c-primary);
    color: #FFF;
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .slide-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .action-group {
        justify-content: center;
    }

    .glass-panel {
        margin: 0 auto;
    }

    .image-front {
        display: none;
    }
}

@media (max-width: 900px) {
    .title {
        font-size: 2.5rem;
    }

    .glass-panel {
        padding: 2rem;
    }

    .progress-container {
        width: 150px;
    }
}

@media (max-width: 600px) {
    .title {
        font-size: 2rem;
    }

    .action-group {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .action-group a {
        width: 100%;
        text-align: center;
    }

    .slider-ui {
        bottom: 20px;
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* About Section - Simple Light Theme */
/* .about-section {
    background-color: #f9fafb;
    position: relative;
    padding: 6rem 5%;
    overflow: hidden;
}

.ab-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(180deg, #ffffff 0%, #FAFCFE 100%);
}

.ab-circle-lines {
    position: absolute;
    opacity: 0.6;
    pointer-events: none;
}

.top-left-lines {
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    transform: translate(-30%, -30%);
}

.bottom-right-lines {
    bottom: 0;
    right: 0;
    width: 600px;
    height: 600px;
    transform: translate(30%, 30%);
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
}

.clean-grid {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    position: relative;
    padding: 2rem 0;
}

.clean-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 4rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    position: relative;
}

.clean-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
    border-color: #CBD5E1;
}


.corner-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    transition: background 0.3s ease, transform 0.3s ease;
}

.clean-card:hover .corner-dot {
    background: rgba(0, 117, 255, 0.4);
    transform: scale(1.2);
}

.tl {
    top: 18px;
    left: 18px;
}

.tr {
    top: 18px;
    right: 18px;
}

.bl {
    bottom: 18px;
    left: 18px;
}

.br {
    bottom: 18px;
    right: 18px;
}

.clean-icon-wrapper {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #f9fafb;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
    color: var(--c-primary);
}

.clean-card:hover .clean-icon-wrapper {
    transform: scale(1.1);
    background: rgba(255, 122, 0, 0.08);
    color: #FF7A00;
}

.clean-svg {
    width: 32px;
    height: 32px;
}

.clean-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #0A1628;
    margin-bottom: 1rem;
}

.clean-card p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1024px) {
    .clean-card {
        min-width: 100%;
    }
} */

.about-section {
    background-color: #FFFFFF;
    position: relative;
    overflow: hidden;
    padding: 4rem 5%;
}

.corner-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(80px);
    z-index: 0;
    animation: morphBlob 15s ease-in-out infinite alternate;
    pointer-events: none;
}

.blob-top {
    top: -200px;
    right: -200px;
    /* background: rgba(255, 122, 0, 0.15); */
}

.blob-bottom {
    bottom: -200px;
    left: -200px;
    /* background: rgba(0, 64, 128, 0.1); */
    animation-delay: -5s;
}

@keyframes morphBlob {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: rotate(0deg) scale(1);
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 50% 40% 50%;
        transform: rotate(45deg) scale(1.1);
    }
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-header {
    text-align: center;
    margin-bottom: 5rem;
}

.about-header h2 {
    font-size: 3.5rem;
    color: #004080;
    font-family: var(--font-heading);
    font-weight: 800;
}

.highlight {
    color: var(--c-primary);
}

.header-line {
    width: 80px;
    height: 4px;
    background: var(--c-primary);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 122, 0, 0.4);
    border-top: 5px solid var(--c-primary);
    border-radius: 24px;
    padding: 3.5rem;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 64, 128, 0.05);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 64, 128, 0.12);
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--c-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* .card:hover::after {
    transform: scaleX(1);
} */

.motto-card {
    background: rgba(255, 255, 255, 0.85);
}

.motto-card p {
    margin: 0;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: rgba(255, 122, 0, 0.1);
    border: 1px solid rgba(255, 122, 0, 0.2);
    border-radius: 16px;
    color: var(--c-primary);
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.4, -0.6, 0.2, 1.5), background 0.3s ease;
}

.card-icon svg {
    width: 32px;
    height: 32px;
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
    background: rgba(255, 122, 0, 0.15);
}

.card h3 {
    font-size: 2.2rem;
    color: #004080;
    margin: 0;
}

.card p {
    color: #445566;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* Live Conferences Styles */
.live-events-container {
    background: linear-gradient(135deg, #faf1e9 30%, #eff6fe 100%) !important;
    position: relative;
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
    overflow: hidden;
    isolation: isolate;
}

.live-events-container .section-header h2 {
    color: #004080 !important;
}

.live-events-container .subtitle {
    color: #556677 !important;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    animation: floatShapes 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: rgba(255, 122, 0, 0.12);
    top: -100px;
    left: -200px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: rgba(0, 200, 255, 0.1);
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: rgba(0, 200, 83, 0.08);
    top: 40%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes floatShapes {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    33% {
        transform: translate(50px, -50px) scale(1.1) rotate(10deg);
    }

    66% {
        transform: translate(-30px, 80px) scale(0.9) rotate(-5deg);
    }

    100% {
        transform: translate(20px, 20px) scale(1.05) rotate(15deg);
    }
}

.relative-container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3.5rem;
    color: #004080;
    font-family: var(--font-heading);
    font-weight: 800;
}

.subtitle {
    color: #556677;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 1.5rem auto 0;
    line-height: 1.6;
}

.line {
    width: 80px;
    height: 4px;
    background: var(--c-primary);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.event-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 64, 128, 0.1);
    border-radius: 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.card-image {
    position: relative;
    width: 100%;
    height: 140px;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.event-card:hover .card-image img {
    transform: scale(1.07);
}

.image-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.2);
    color: #FFF;
    flex-shrink: 0;
}

.type-virtual .image-badge {
    background: rgba(0, 128, 179, 0.9);
    color: #FFF;
}

.type-in-person .image-badge {
    background: rgba(255, 122, 0, 0.9);
    color: #FFF;
}

.type-hybrid .image-badge {
    background: rgba(0, 140, 58, 0.9);
    color: #FFF;
}

.card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.event-card:hover {
    transform: translateY(-8px);
    background: #FFFFFF;
    box-shadow: 0 20px 40px rgba(0, 64, 128, 0.08);
    border-color: rgba(255, 122, 0, 0.2);
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--c-primary);
}

.event-card.type-virtual::before {
    background: #0080B3;
}

.event-card.type-in-person::before {
    background: #FF7A00;
}

.event-card.type-hybrid::before {
    background: #008C3A;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.event-badge {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.05);
    color: #333;
}

.type-virtual .event-badge {
    background: rgba(0, 200, 255, 0.15);
    color: #006090;
}

.type-in-person .event-badge {
    background: rgba(255, 122, 0, 0.15);
    color: #B35800;
}

.type-hybrid .event-badge {
    background: rgba(0, 200, 83, 0.15);
    color: #006428;
}

.event-id {
    color: #FFF;
    font-size: 0.9rem;
    font-family: var(--font-heading);
    font-weight: 700;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-title {
    font-size: 1.6rem;
    color: #004080;
    line-height: 1.4;
    margin-bottom: 2rem;
    margin-top: 0;
    flex-grow: 1;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #445566;
    font-size: 1rem;
}

.meta-item svg {
    color: var(--c-primary);
    flex-shrink: 0;
}

.type-virtual .meta-item svg {
    color: #0080B3;
}

.type-hybrid .meta-item svg {
    color: #008C3A;
}

.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 64, 128, 0.08);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #667788;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #FF7A00;
}

.contact-link.empty {
    opacity: 0.4;
    pointer-events: none;
}

.btn-register {
    background: transparent;
    border: 1px solid rgba(0, 64, 128, 0.2);
    color: #004080;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-register:hover {
    background: #FF7A00;
    color: #FFF;
    border-color: #FF7A00;
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }

    .card-bottom {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
}

/* =========================================================
   LEC REDESIGN — Live Events 2026 Premium Section
   ========================================================= */

/* Override base section background for the redesign */
.lec-redesign {
    /* background: #06090F !important;
    background-color: #06090F !important; */
    /* padding-top: 7rem !important;
    padding-bottom: 9rem !important; */
}

/* ---------- Background layer ---------- */
.lec-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.lec-faded-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(to right, rgba(0, 117, 255, 0.08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 117, 255, 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 30%, transparent 70%);
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 30%, transparent 70%);
}

/* Gradient orbs */
.lec-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
}

.lec-orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.14) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation: lecOrbDrift 22s ease-in-out infinite alternate;
}

.lec-orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 117, 255, 0.12) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation: lecOrbDrift 28s ease-in-out infinite alternate-reverse;
}

.lec-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.08) 0%, transparent 70%);
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: lecOrbDrift 18s ease-in-out infinite alternate;
    animation-delay: -8s;
}

@keyframes lecOrbDrift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(60px, -80px) scale(1.12);
    }

    100% {
        transform: translate(-40px, 60px) scale(0.92);
    }
}

/* SVG pattern overlay */
.lec-pattern {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9;
}

/* Animated SVG rings */
.lec-svg-ring {
    transform-origin: center;
    animation: lecRingSpin 40s linear infinite;
}

.lec-ring-delay {
    animation-duration: 55s;
    animation-direction: reverse;
}

@keyframes lecRingSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Floating particles */
.lec-particles {
    position: absolute;
    inset: 0;
}

.lec-p {
    position: absolute;
    border-radius: 50%;
    animation: lecParticleFloat linear infinite;
    opacity: 0;
}

.lec-p1 {
    width: 4px;
    height: 4px;
    background: rgba(255, 122, 0, 0.7);
    left: 12%;
    top: 80%;
    animation-duration: 12s;
    animation-delay: 0s;
}

.lec-p2 {
    width: 3px;
    height: 3px;
    background: rgba(0, 117, 255, 0.7);
    left: 30%;
    top: 90%;
    animation-duration: 15s;
    animation-delay: -3s;
}

.lec-p3 {
    width: 5px;
    height: 5px;
    background: rgba(0, 200, 83, 0.5);
    left: 55%;
    top: 95%;
    animation-duration: 10s;
    animation-delay: -6s;
}

.lec-p4 {
    width: 3px;
    height: 3px;
    background: rgba(255, 122, 0, 0.6);
    left: 70%;
    top: 85%;
    animation-duration: 18s;
    animation-delay: -2s;
}

.lec-p5 {
    width: 4px;
    height: 4px;
    background: rgba(0, 200, 255, 0.6);
    left: 85%;
    top: 90%;
    animation-duration: 13s;
    animation-delay: -9s;
}

.lec-p6 {
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    left: 45%;
    top: 88%;
    animation-duration: 20s;
    animation-delay: -5s;
}

@keyframes lecParticleFloat {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-900px) rotate(720deg);
        opacity: 0;
    }
}

/* ---------- Section Header ---------- */
.lec-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.lec-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--c-primary);
    background: rgba(255, 122, 0, 0.1);
    border: 1px solid rgba(255, 122, 0, 0.25);
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.8rem;
    animation: lecLabelPulse 3s ease-in-out infinite;
}

@keyframes lecLabelPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 122, 0, 0);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(255, 122, 0, 0.08);
    }
}

.lec-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #0A1628;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
}

.lec-year {
    background: linear-gradient(135deg, var(--c-primary) 0%, #FF5500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lec-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--c-primary);
}

.lec-divider span {
    display: block;
    width: 60px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, rgba(255, 122, 0, 0.8), transparent);
}

.lec-divider svg {
    animation: lecStarSpin 8s linear infinite;
    color: var(--c-primary);
}

@keyframes lecStarSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.lec-subtitle {
    font-size: 1.1rem;
    color: rgba(200, 210, 220, 0.75);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ---------- Events Grid ---------- */
.lec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

/* ---------- Event Card ---------- */
.lec-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border: none;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 64, 128, 0.06);
}

.lec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 64, 128, 0.12);
}

.lec-card-glow {
    display: none;
}

/* ---------- Card image ---------- */
.lec-card-img {
    position: relative;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
}

.lec-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lec-card:hover .lec-card-img img {
    transform: scale(1.08);
}

.lec-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 30%,
            rgba(0, 0, 0, 0.85) 100%);
}

/* Type badge */
.lec-type-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: none;
    transition: transform 0.3s ease;
    z-index: 4;
}

.lec-virtual .lec-type-badge {
    background: #0080B3;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 117, 255, 0.3);
}

.lec-inperson .lec-type-badge {
    background: #FF7A00;
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
}

.lec-card:hover .lec-type-badge {
    transform: scale(1.05);
}

.lec-type-icon {
    display: flex;
    align-items: center;
    opacity: 0.9;
    animation: lecIconPulse 2.5s ease-in-out infinite;
}

@keyframes lecIconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

/* Event ID tag (bottom of image) */
.lec-event-tag {
    position: absolute;
    bottom: 12px;
    right: 15px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    z-index: 4;
}

/* Decorative corner SVG */
.lec-corner-svg {
    display: none;
}

/* ---------- Card body ---------- */
.lec-card-body {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 1.2rem;
}

.lec-event-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: #0A1628;
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.lec-card:hover .lec-event-title {
    color: var(--c-primary);
}

/* Meta rows */
.lec-meta {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.lec-meta-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
}

.lec-meta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease;
}

.lec-virtual .lec-meta-icon {
    background: rgba(0, 186, 255, 0.08);
    color: #00BAFF;
}

.lec-inperson .lec-meta-icon {
    background: rgba(255, 122, 0, 0.08);
    color: #FF7A00;
}

.lec-card:hover .lec-meta-icon {
    transform: scale(1.1) rotate(8deg);
}

/* ---------- Card footer ---------- */
.lec-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: auto;
    flex-wrap: wrap;
}

.lec-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 240px;
}

.lec-email:hover {
    color: var(--c-primary);
}

.lec-email svg {
    flex-shrink: 0;
}

.lec-tba {
    opacity: 0.45;
    pointer-events: none;
    font-style: italic;
}

.lec-btn-register {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1.2rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.lec-virtual .lec-btn-register {
    background: linear-gradient(135deg, #0064CC, #0099FF);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 100, 200, 0.35);
}

.lec-inperson .lec-btn-register {
    background: linear-gradient(135deg, var(--c-primary), #FF4500);
    color: #fff;
    box-shadow: 0 4px 14px rgba(255, 80, 0, 0.35);
}

.lec-btn-register:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
}

.lec-btn-register svg {
    transition: transform 0.3s ease;
}

.lec-btn-register:hover svg {
    transform: translateX(4px);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    .lec-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .lec-grid {
        grid-template-columns: 1fr;
    }

    .lec-card-foot {
        flex-direction: column;
        align-items: flex-start;
    }

    .lec-btn-register {
        width: 100%;
        justify-content: center;
    }

    .lec-email {
        max-width: 100%;
    }
}

/* =========================================================
   CA REDESIGN — Conferencing App (Light Background)
   ========================================================= */

.ca-section {
    background: #FFFFFF;
    position: relative;
    padding: 4rem 2rem;
    overflow: hidden;
    isolation: isolate;
}

.ca-container {
    position: relative;
    z-index: 2;
}

.ca-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

/* ---------- Content ---------- */
.ca-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ca-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--c-secondary);
    background: rgba(0, 117, 255, 0.08);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    width: fit-content;
    margin-bottom: 0.5rem;
}

.ca-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #1A1F2B;
    line-height: 1.1;
}

.ca-accent {
    color: var(--c-secondary);
}

.ca-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--c-secondary);
}

.ca-divider span {
    width: 40px;
    height: 1.5px;
    background: linear-gradient(90deg, var(--c-secondary), transparent);
}

.ca-lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.7;
}

.ca-body {
    font-size: 1.05rem;
    color: #64748B;
    line-height: 1.8;
}

.ca-partner-note {
    display: flex;
    gap: 1rem;
    padding: 1.2rem;
    background: #F8FAFF;
    border-left: 4px solid var(--c-secondary);
    border-radius: 0 12px 12px 0;
    color: #475569;
    font-size: 0.95rem;
    font-weight: 500;
    align-items: flex-start;
}

.ca-platforms {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.ca-platform-chip {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.2rem;
    background: #FFFFFF;
    border: 1px solid rgba(0, 117, 255, 0.15);
    border-radius: 50px;
    color: #1E293B;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 117, 255, 0.05);
}

/* ---------- Image ---------- */
.ca-image-col {
    position: relative;
}

.ca-image-container {
    position: relative;
    border-radius: 30px;
    padding: 1.5rem;
    background: #FFFFFF;
    /* box-shadow: 0 40px 100px rgba(0, 32, 64, 0.1); */
}

.ca-image-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(0, 117, 255, 0.1), transparent 70%);
    z-index: -1;
    animation: caGlowPulse 5s infinite alternate;
}

@keyframes caGlowPulse {
    from {
        opacity: 0.5;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1.1);
    }
}

.ca-app-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ca-floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: #FFFFFF;
    padding: 1.2rem 1.5rem;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: caCardFloat 6s infinite ease-in-out;
}

@keyframes caCardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.ca-f-icon {
    font-size: 1.5rem;
}

.ca-f-text strong {
    display: block;
    color: #0F172A;
    font-size: 0.95rem;
}

.ca-f-text span {
    color: #64748B;
    font-size: 0.8rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .ca-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .ca-content {
        align-items: center;
    }

    .ca-divider {
        justify-content: center;
    }

    .ca-platforms {
        justify-content: center;
    }

    .ca-floating-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }
}

@media (max-width: 600px) {
    .ca-platforms {
        flex-direction: column;
        width: 100%;
    }

    .ca-platform-chip {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================================
   WD REDESIGN — What We Develop (Light Background)
   ========================================================= */


.wd-section {
    background: linear-gradient(160deg, #F0F5FF 0%, #FFFFFF 50%, #F5F8FF 100%);
    position: relative;
    padding: 0 0 7rem;
    overflow: hidden;
    isolation: isolate;
}

/* Wave dividers */
.wd-wave-top,
.wd-wave-bot {
    position: relative;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.wd-wave-top svg,
.wd-wave-bot svg {
    display: block;
    width: 100%;
    height: 80px;
}

.wd-wave-top {
    margin-bottom: -1px;
    background-color: #FFFFFF;
}

.wd-wave-bot {
    margin-top: -1px;
}

.wd-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
}

.wd-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.08) 0%, transparent 70%);
    top: -100px;
    left: -150px;
    animation: wdOrbFloat 20s ease-in-out infinite alternate;
}

.wd-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 117, 255, 0.07) 0%, transparent 70%);
    bottom: 0;
    right: -100px;
    animation: wdOrbFloat 25s ease-in-out infinite alternate-reverse;
}

@keyframes wdOrbFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(40px, -60px) scale(1.08);
    }

    100% {
        transform: translate(-30px, 40px) scale(0.95);
    }
}

.wd-dotpattern,
.wd-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Container */
.wd-container {
    position: relative;
    z-index: 2;
    padding: 4rem 2rem;
}

/* ---------- Header ---------- */
.wd-header {
    text-align: center;
    margin-bottom: 2rem;
}

.wd-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--c-secondary);
    background: rgba(0, 117, 255, 0.08);
    border: 1px solid rgba(0, 117, 255, 0.2);
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    animation: wdLabelPop 3s ease-in-out infinite;
}

@keyframes wdLabelPop {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 117, 255, 0);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(0, 117, 255, 0.07);
    }
}

.wd-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #0A1628;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 1.4rem;
}

.wd-accent {
    background: linear-gradient(135deg, var(--c-primary) 0%, #FF4500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wd-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: var(--c-primary);
}

.wd-divider span {
    display: block;
    width: 50px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, rgba(255, 122, 0, 0.7), transparent);
}

/* ---------- Two-column layout ---------- */
.wd-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* ---------- Text column ---------- */
.wd-text-col {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

/* Stat chips */
.wd-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.wd-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid rgba(0, 64, 128, 0.1);
    border-radius: 14px;
    padding: 0.8rem 1.4rem;
    box-shadow: 0 4px 16px rgba(0, 64, 128, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 80px;
}

.wd-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 64, 128, 0.1);
}

.wd-stat-num {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--c-primary);
    line-height: 1;
}

.wd-stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #6680A0;
    margin-top: 0.3rem;
    text-transform: uppercase;
}

.wd-lead {
    font-size: 1.2rem;
    color: #1A2B4A;
    font-weight: 600;
    line-height: 1.7;
}

.wd-body {
    font-size: 1rem;
    color: #445B78;
    line-height: 1.8;
}

.wd-body strong {
    color: #1A2B4A;
    font-weight: 700;
}

.wd-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    background: linear-gradient(135deg, var(--c-primary), #FF4500);
    color: #FFF;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(255, 80, 0, 0.3);
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    align-self: flex-start;
    margin-top: 0.5rem;
}

.wd-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 80, 0, 0.4);
}

.wd-cta-btn svg {
    transition: transform 0.3s ease;
}

.wd-cta-btn:hover svg {
    transform: translateX(5px);
}

/* ---------- Cards column ---------- */
.wd-cards-col {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.wd-card {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    padding: 1.5rem 1.8rem;
    background: #FFFFFF;
    border: 1px solid rgba(0, 64, 128, 0.09);
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0, 64, 128, 0.05);
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}

/* Left accent bar */
.wd-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 18px 0 0 18px;
    transition: width 0.3s ease;
}

.wd-card-vr::before {
    background: linear-gradient(180deg, #7C3AED, #A855F7);
}

.wd-card-video::before {
    background: linear-gradient(180deg, #0075FF, #00C2FF);
}

.wd-card-analytics::before {
    background: linear-gradient(180deg, var(--c-primary), #FF5500);
}

.wd-card-ml::before {
    background: linear-gradient(180deg, #00C853, #00A86B);
}

.wd-card:hover {
    transform: translateX(6px);
    box-shadow: 0 10px 36px rgba(0, 64, 128, 0.1);
    border-color: rgba(0, 64, 128, 0.15);
}

.wd-card:hover::before {
    width: 6px;
}

/* Icon wrap */
.wd-card-icon-wrap {
    position: relative;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    flex-shrink: 0;
    z-index: 1;
}

.wd-card-vr .wd-card-icon-wrap {
    background: rgba(124, 58, 237, 0.1);
    color: #7C3AED;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.wd-card-video .wd-card-icon-wrap {
    background: rgba(0, 117, 255, 0.1);
    color: #0075FF;
    border: 1px solid rgba(0, 117, 255, 0.2);
}

.wd-card-analytics .wd-card-icon-wrap {
    background: rgba(255, 122, 0, 0.1);
    color: var(--c-primary);
    border: 1px solid rgba(255, 122, 0, 0.2);
}

.wd-card-ml .wd-card-icon-wrap {
    background: rgba(0, 200, 83, 0.1);
    color: #00C853;
    border: 1px solid rgba(0, 200, 83, 0.2);
}

/* Animated ring behind icon */
.wd-icon-ring {
    position: absolute;
    inset: -4px;
    border-radius: 18px;
    border: 1.5px dashed;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: wdRingSpin 8s linear infinite;
}

.wd-card-vr .wd-icon-ring {
    border-color: rgba(124, 58, 237, 0.4);
}

.wd-card-video .wd-icon-ring {
    border-color: rgba(0, 117, 255, 0.4);
}

.wd-card-analytics .wd-icon-ring {
    border-color: rgba(255, 122, 0, 0.4);
}

.wd-card-ml .wd-icon-ring {
    border-color: rgba(0, 200, 83, 0.4);
}

.wd-card:hover .wd-icon-ring {
    opacity: 1;
}

@keyframes wdRingSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Card text content */
.wd-card-text {
    flex: 1;
}

.wd-card-text h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #0A1628;
    margin: 0 0 0.3rem;
}

.wd-card-text p {
    font-size: 0.9rem;
    color: #6680A0;
    line-height: 1.55;
    margin: 0;
}

/* Arrow icon */
.wd-card-arrow {
    color: rgba(0, 64, 128, 0.2);
    flex-shrink: 0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.wd-card:hover .wd-card-arrow {
    color: var(--c-primary);
    transform: translate(3px, -3px);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .wd-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .wd-text-col {
        text-align: center;
        align-items: center;
    }

    .wd-stats {
        justify-content: center;
    }

    .wd-cta-btn {
        align-self: center;
    }
}

@media (max-width: 600px) {
    .wd-stats {
        gap: 0.7rem;
    }

    .wd-card {
        padding: 1.2rem 1.4rem;
    }
}


/* =========================================================
   TM REDESIGN — Testimonials Premium Section (Dark)
   ========================================================= */

.tm-section {
    background: linear-gradient(170deg, #06090F 0%, #0C1220 50%, #07091A 100%);
    position: relative;
    padding: 4rem 0 4rem;
    overflow: hidden;
    isolation: isolate;
}

/* ---------- Background ---------- */
.tm-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.tm-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.tm-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.1) 0%, transparent 65%);
    top: -150px;
    right: -100px;
    animation: tmOrbDrift 22s ease-in-out infinite alternate;
}

.tm-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 117, 255, 0.1) 0%, transparent 65%);
    bottom: -100px;
    left: -100px;
    animation: tmOrbDrift 28s ease-in-out infinite alternate-reverse;
}

@keyframes tmOrbDrift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(50px, -70px) scale(1.1);
    }

    100% {
        transform: translate(-30px, 50px) scale(0.93);
    }
}

.tm-constellation {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.tm-glow-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 122, 0, 0.15) 25%, rgba(0, 117, 255, 0.12) 75%, transparent 100%);
    transform: translateY(-50%);
}

/* ---------- Container ---------- */
.tm-container {
    position: relative;
    z-index: 2;
}

/* ---------- Header ---------- */
.tm-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tm-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #FFB347;
    background: rgba(255, 122, 0, 0.1);
    border: 1px solid rgba(255, 122, 0, 0.25);
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.8rem;
}

.tm-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
}

.tm-accent {
    background: linear-gradient(135deg, var(--c-primary) 0%, #FF5500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tm-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--c-primary);
}

.tm-divider span {
    display: block;
    width: 60px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, rgba(255, 122, 0, 0.8), transparent);
}

.tm-divider svg {
    animation: tmQuoteSpin 10s ease-in-out infinite alternate;
    opacity: 0.7;
}

@keyframes tmQuoteSpin {
    0% {
        transform: scale(1) rotate(-5deg);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.15) rotate(5deg);
        opacity: 1;
    }
}

.tm-subtitle {
    font-size: 1.05rem;
    color: rgba(190, 205, 220, 0.7);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---------- Grid ---------- */
.tm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

/* ---------- Card ---------- */
.tm-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.4s ease,
        border-color 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

/* Top accent strips */
.tm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 24px 24px 0 0;
    background: linear-gradient(90deg, #FF7A00, #FF4500);
    box-shadow: 0 0 14px rgba(255, 122, 0, 0.45);
}

.tm-card-alt::before {
    background: linear-gradient(90deg, #0075FF, #00BAFF);
    box-shadow: 0 0 14px rgba(0, 186, 255, 0.45);
}

.tm-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(255, 255, 255, 0.13);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.55);
}

/* Card glow (hover) */
.tm-card-glow {
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.tm-card .tm-card-glow {
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.15), transparent 60%);
}

.tm-card-alt .tm-card-glow {
    background: linear-gradient(135deg, rgba(0, 186, 255, 0.15), transparent 60%);
}

.tm-card:hover .tm-card-glow {
    opacity: 1;
}

/* Top row: stars + tag */
.tm-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.tm-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #FFB347;
}

.tm-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    background: rgba(255, 122, 0, 0.12);
    border: 1px solid rgba(255, 122, 0, 0.25);
    color: #FFB347;
}

.tm-tag-blue {
    background: rgba(0, 186, 255, 0.1);
    border-color: rgba(0, 186, 255, 0.25);
    color: #5DDAFF;
}

/* Decorative SVG quote mark */
.tm-quote-mark {
    color: rgba(255, 122, 0, 0.18);
    line-height: 0;
    transition: color 0.3s ease;
}

.tm-card-alt .tm-quote-mark {
    color: rgba(0, 186, 255, 0.15);
}

.tm-card:hover .tm-quote-mark {
    color: rgba(255, 122, 0, 0.28);
}

.tm-card-alt:hover .tm-quote-mark {
    color: rgba(0, 186, 255, 0.25);
}

/* Review text */
.tm-review {
    font-size: 1.05rem;
    color: rgba(210, 225, 240, 0.85);
    line-height: 1.85;
    font-style: italic;
    margin: 0;
    flex-grow: 1;
    border: none;
    padding: 0;
    quotes: none;
}

/* Horizontal rule */
.tm-card-rule {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    margin: 0;
}

/* Author row */
.tm-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Avatar */
.tm-avatar-wrap {
    position: relative;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.tm-avatar-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

.tm-avatar-ring {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid;
    animation: tmRingPulse 3s ease-in-out infinite;
}

.tm-card .tm-avatar-ring {
    border-color: rgba(255, 122, 0, 0.6);
}

.tm-card-alt .tm-avatar-ring {
    border-color: rgba(0, 186, 255, 0.6);
}

@keyframes tmRingPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

.tm-author-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.tm-author-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
}

.tm-author-role {
    font-size: 0.85rem;
    color: rgba(160, 180, 205, 0.75);
}

/* Verified badge */
.tm-verified {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.tm-card .tm-verified {
    background: rgba(255, 122, 0, 0.12);
    color: #FFB347;
    border: 1px solid rgba(255, 122, 0, 0.25);
}

.tm-card-alt .tm-verified {
    background: rgba(0, 186, 255, 0.12);
    color: #5DDAFF;
    border: 1px solid rgba(0, 186, 255, 0.25);
}

.tm-card:hover .tm-verified {
    transform: scale(1.1) rotate(8deg);
}

/* ---------- Trust bar ---------- */
.tm-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 1.8rem 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    backdrop-filter: blur(12px);
    margin: 0 2rem;
}

.tm-trust-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: rgba(190, 205, 225, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
}

.tm-trust-item svg {
    color: var(--c-primary);
    flex-shrink: 0;
}

.tm-trust-sep {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .tm-grid {
        grid-template-columns: 1fr;
    }

    .tm-trust-bar {
        gap: 1.2rem;
    }

    .tm-trust-sep {
        display: none;
    }
}

/* ---------- Marquee scrolling ---------- */
.tm-marquee-wrap {
    position: relative;
    overflow: hidden;
    margin-bottom: 4rem;
    /* Edge fade masks */
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.tm-marquee-wrap:hover .tm-marquee-track {
    animation-play-state: paused;
}

.tm-marquee-track {
    display: flex;
    gap: 1.8rem;
    width: max-content;
    animation: tmMarqueeScroll 55s linear infinite;
}

@keyframes tmMarqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Marquee card overrides — fixed width, compact */
.tm-card.tm-mc {
    width: 360px;
    flex-shrink: 0;
    margin-bottom: 0;
    /* slightly shorter for horizontal layout */
    padding: 2rem;
}

.tm-card.tm-mc .tm-review {
    font-size: 0.97rem;
    line-height: 1.75;
    /* Clamp to 4 lines */
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tm-stars {
    font-size: 1rem;
    color: #FFB347;
    letter-spacing: 1px;
}


.testimonials {
    background-color: #0F0F0F;
    position: relative;
}



.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.test-card {
    padding: 3rem;
    border-radius: 24px;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.quote {
    font-family: var(--font-heading);
    font-size: 6rem;
    line-height: 0;
    color: var(--c-primary);
    opacity: 0.3;
    position: absolute;
    top: 40px;
    left: 30px;
}

.review {
    font-size: 1.1rem;
    color: #CCC;
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    font-style: italic;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--c-primary);
}

.info h5 {
    color: #FFF;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.info span {
    color: #888;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   CT REDESIGN — Contact Premium Section (Light)
   ========================================================= */

.ct-section {
    background: linear-gradient(180deg, #F8FAFF 0%, #FFFFFF 100%);
    position: relative;
    padding: 3rem 2rem;
    overflow: hidden;
    isolation: isolate;
}

/* ---------- Background System (Constellation & Mesh) ---------- */
.ct-noise {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.ct-mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    filter: blur(80px);
    opacity: 0.4;
}

.ct-mesh-blob {
    position: absolute;
    border-radius: 50%;
    animation: ctMeshMove 20s infinite alternate ease-in-out;
}

.ct-mesh-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 117, 255, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.ct-mesh-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.1) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation-delay: -5s;
    animation-duration: 25s;
}

.ct-mesh-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 117, 255, 0.08) 0%, transparent 70%);
    top: 50%;
    left: 20%;
    animation-duration: 30s;
}

@keyframes ctMeshMove {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 80px) scale(1.2);
    }
}

.ct-constellation {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.ct-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: ctLineDraw 10s ease-out forwards, ctLinePulse 8s infinite alternate ease-in-out;
}

.ct-line-1 {
    animation-delay: 0.5s;
}

.ct-line-2 {
    animation-delay: 1s;
}

.ct-line-3 {
    animation-delay: 1.5s;
}

@keyframes ctLineDraw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes ctLinePulse {

    0%,
    100% {
        opacity: 0.3;
        stroke-width: 0.5px;
    }

    50% {
        opacity: 0.8;
        stroke-width: 1.2px;
    }
}

.ct-node {
    animation: ctNodePulse 4s infinite ease-in-out;
    filter: drop-shadow(0 0 5px var(--c-primary));
}

@keyframes ctNodePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

.ct-shards {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.ct-shard {
    position: absolute;
    opacity: 0.3;
    animation: ctShardFloat 25s infinite linear;
}

.ct-shard-1 {
    top: 10%;
    left: 5%;
}

.ct-shard-2 {
    bottom: 5%;
    right: 10%;
}

@keyframes ctShardFloat {
    from {
        transform: translate(0, 0) rotate(0deg);
    }

    to {
        transform: translate(30px, 20px) rotate(360deg);
    }
}



/* ---------- Header ---------- */
.ct-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ct-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--c-primary);
    background: rgba(0, 117, 255, 0.06);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.ct-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #1A1F2B;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.ct-accent {
    color: var(--c-primary);
}

.ct-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ct-divider span {
    width: 40px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, rgba(0, 117, 255, 0.3), transparent);
}

.ct-divider svg {
    color: var(--c-primary);
}

.ct-subtitle {
    font-size: 1.1rem;
    color: #5E677A;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ---------- Layout ---------- */
.ct-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

/* ---------- Info Column ---------- */
.ct-info-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ct-info-card {
    display: flex;
    gap: 1.2rem;
    padding: 1.8rem;
    background: #FFFFFF;
    border: 1px solid rgba(0, 64, 128, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 32, 64, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ct-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 32, 64, 0.08);
}

.ct-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 117, 255, 0.08);
    color: var(--c-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ct-icon-orange {
    background: rgba(255, 122, 0, 0.08);
    color: #FF7A00;
}

.ct-icon-blue {
    background: rgba(0, 117, 255, 0.08);
    color: #0075FF;
}

.ct-info-text strong {
    display: block;
    font-size: 1.1rem;
    color: #1A1F2B;
    margin-bottom: 0.4rem;
}

.ct-info-text span,
.ct-info-text a {
    font-size: 0.95rem;
    color: #5E677A;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ct-info-text a:hover {
    color: var(--c-primary);
}

.ct-map-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: #1A1F2B;
    color: #FFFFFF;
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 1rem;
    width: fit-content;
}

.ct-live-dot {
    width: 8px;
    height: 8px;
    background: #00FF88;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 10px #00FF88;
}

.ct-live-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid #00FF88;
    animation: ctPulse 2s infinite;
}

@keyframes ctPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* ---------- Form Column ---------- */
.ct-form {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid rgba(0, 64, 128, 0.08);
    box-shadow: 0 30px 60px rgba(0, 32, 64, 0.05);
}

.ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.ct-field {
    margin-bottom: 1.5rem;
}

.ct-field label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1A1F2B;
    margin-bottom: 0.6rem;
}

.ct-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.ct-input-wrap svg {
    position: absolute;
    left: 1.2rem;
    color: #A1A9B8;
    pointer-events: none;
    transition: color 0.3s ease;
}

.ct-input-wrap input,
.ct-input-wrap select,
.ct-input-wrap textarea {
    width: 100%;
    padding: 1.1rem 1.2rem 1.1rem 3.2rem;
    background: #F8FAFF;
    border: 1px solid rgba(0, 64, 128, 0.08);
    border-radius: 12px;
    font-size: 1rem;
    color: #1A1F2B;
    transition: all 0.3s ease;
}

.ct-textarea-wrap textarea {
    padding-left: 1.2rem;
}

.ct-input-wrap input:focus,
.ct-input-wrap select:focus,
.ct-input-wrap textarea:focus {
    outline: none;
    background: #FFFFFF;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 4px rgba(0, 117, 255, 0.1);
}

.ct-input-wrap input:focus+svg {
    color: var(--c-primary);
}

.ct-submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--c-primary) 0%, #0056B3 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 117, 255, 0.2);
}

.ct-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 117, 255, 0.3);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .ct-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .ct-form-row {
        grid-template-columns: 1fr;
    }

    .ct-form {
        padding: 2rem;
    }
}


/* =========================================================
   FOOTER — Premium V2 Design
   ========================================================= */

.footer {
    background-color: #06090F;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0 1rem;
    color: #E2E8F0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.footer-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.footer-shard {
    position: absolute;
    opacity: 0.6;
    pointer-events: none;
    filter: blur(2px);
}

.footer-shard-1 {
    top: -50px;
    left: 5%;
    animation: footShardRotate 35s infinite linear;
}

.footer-shard-2 {
    bottom: -30px;
    right: 8%;
    animation: footShardRotate 45s infinite linear reverse;
}

@keyframes footShardRotate {
    0% {
        transform: rotate(0deg) translate(0, 0);
    }

    50% {
        transform: rotate(180deg) translate(30px, 40px);
    }

    100% {
        transform: rotate(360deg) translate(0, 0);
    }
}

.footer-lines {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: repeating-linear-gradient(-45deg,
            transparent,
            transparent 40px,
            rgba(255, 255, 255, 0.4) 40px,
            rgba(255, 255, 255, 0.4) 41px);
    pointer-events: none;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

/* ---------- Brand / About ---------- */
.footer-logo {
    display: block;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-desc {
    color: #94A3B8;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1.2rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #94A3B8;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--c-primary);
    color: #FFFFFF;
    border-color: var(--c-primary);
    transform: translateY(-3px);
}

/* ---------- Common Col ---------- */
.footer-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--c-primary);
}

/* ---------- Links ---------- */
.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul a {
    color: #94A3B8;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links ul a:hover {
    color: var(--c-primary);
    transform: translateX(5px);
}

/* ---------- Contact ---------- */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    color: #94A3B8;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-info-item svg {
    color: var(--c-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-info-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-info-item a:hover {
    color: #FFFFFF;
}

/* ---------- Newsletter ---------- */
.footer-news-form {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.4rem;
    border-radius: 12px;
    transition: border-color 0.3s ease;
    margin-top: 1rem;
}

.footer-news-form:focus-within {
    border-color: var(--c-primary);
}

.footer-news-form input {
    background: transparent;
    border: none;
    padding: 0.6rem 0.8rem;
    color: #FFFFFF;
    font-size: 0.9rem;
    width: 100%;
}

.footer-news-form input:focus {
    outline: none;
}

.footer-news-form button {
    background: var(--c-primary);
    color: #FFFFFF;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.footer-news-form button:hover {
    transform: scale(1.05);
    background: #0056B3;
}

/* ---------- Bottom Bar ---------- */
.footer-bottom {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p {
    color: #64748B;
    font-size: 0.88rem;
}

.footer-bottom p a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom p a:hover {
    color: #FFFFFF;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-about {
        grid-column: span 2;
    }
}

@media (max-width: 680px) {
    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-about {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ── LinkedIn Feeds Section ── */
.lf-section {
    background: #F8F9FB;
    padding: 4rem 5% 1rem;
    position: relative;
    overflow: hidden;
}

.lf-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #0A66C2 30%, var(--c-primary) 70%, transparent);
}

.lf-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Header */
.lf-header {
    text-align: center;
}

.lf-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #E8F0FE;
    color: #0A66C2;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
}

.lf-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #0A1628;
    margin-bottom: 0.8rem;
}

.lf-accent {
    color: var(--c-primary);
}

.lf-subtitle {
    color: #64748B;
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Slider */
.lf-slider-wrapper {
    position: relative;
}

.lf-slider-viewport {
    overflow: hidden;
    flex: 1;
    border-radius: 16px;
    padding: 2rem 0;
}

.lf-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Arrows */
.lf-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    color: #0A66C2;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 20;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.lf-prev {
    left: -27px;
}

.lf-next {
    right: -27px;
}

.lf-arrow:hover {
    background: #0A66C2;
    color: #FFFFFF;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 40px rgba(10, 102, 194, 0.25);
    border-color: #0A66C2;
}

.lf-arrow:active {
    transform: scale(0.95);
}

.lf-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    filter: grayscale(1);
    box-shadow: none;
    transform: none !important;
}

/* Dots */
.lf-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
}

.lf-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #CBD5E1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lf-dot.active {
    background: #0A66C2;
    transform: scale(1.25);
    width: 24px;
    border-radius: 10px;
}

/* Card — fixed width for slider */
.lf-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    flex: 0 0 calc((100% - 3rem) / 3);
    min-width: 0;
    overflow: hidden;
    height: auto;
}

.lf-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #CBD5E1;
}

.lf-card-body {
    padding: 1.25rem 1.5rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Post Image Support */
.lf-post-img-wrap {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
    background: #F8FAFC;
    border-top: 1px solid #F1F5F9;
}

.lf-post-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.lf-card:hover .lf-post-img {
    transform: scale(1.04);
}

/* Card Top Row */
.lf-card-top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lf-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    border: 1.5px solid #F1F5F9;
    flex-shrink: 0;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lf-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2px;
}

.lf-meta {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
    flex: 1;
}

.lf-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: #0A1628;
}

.lf-date {
    font-size: 0.7rem;
    color: #94A3B8;
}

.lf-li-icon {
    color: #0A66C2;
    opacity: 0.8;
}

/* Post Text */
.lf-text {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.25rem;
}

/* Card Footer */
.lf-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: #FBFCFD;
    border-top: 1px solid #F1F5F9;
}

.lf-stat {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: #64748B;
    font-weight: 500;
}

.lf-view-btn {
    font-size: 0.75rem;
    font-weight: 700;
    color: #0A66C2;
    text-decoration: none;
    transition: color 0.2s ease;
}

.lf-view-btn:hover {
    color: var(--c-primary);
}

/* Follow CTA */
.lf-cta {
    text-align: center;
    margin-top: 1rem;
}

.lf-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #0A66C2;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(10, 102, 194, 0.25);
}

.lf-follow-btn:hover {
    background: #094D92;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(10, 102, 194, 0.35);
}

/* Responsive */
@media (max-width: 1024px) {
    .lf-card {
        flex: 0 0 calc((100% - 1.5rem) / 2);
    }
}

@media (max-width: 768px) {
    .lf-arrow {
        display: none;
    }

    .lf-track {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
    }

    .lf-card {
        scroll-snap-align: start;
    }

    .lf-dots {
        display: none;
    }
}

@media (max-width: 640px) {
    .lf-card {
        flex: 0 0 100%;
    }

    .lf-title {
        font-size: 1.8rem;
    }
}

/* =========================================================
   E-LEARNING PAGE STYLES
   ========================================================= */

.el-why-section {
    padding: 10rem 4rem 4rem;
    background: #FFFFFF;
}

.el-container {
    max-width: 1200px;
    margin: 0 auto;
}

.el-header {
    text-align: center;
    margin-bottom: 4rem;
}

.el-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: #0A1628;
    margin-bottom: 1rem;
}

.el-subtitle {
    font-size: 1.1rem;
    color: #64748B;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.7;
}

.el-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.el-slider-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
}

.el-device-container {
    flex: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 640px;
    position: relative;
    padding: 2rem;
}

.el-device-frame {
    position: relative;
    background: #000;
    border: 10px solid #1A1F2B;
    box-shadow: 0 40px 80px rgba(10, 35, 81, 0.15);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

/* Portrait / Phone Mode */
.el-device-frame.is-portrait {
    width: 320px;
    height: 640px;
    border-radius: 40px;
    border: none;
    background: transparent;
    box-shadow: none;
}

/* Landscape / Browser Mode */
.el-device-frame.is-landscape {
    width: 100%;
    max-width: 800px;
    height: 540px;
    border-radius: 12px;
}

/* Browser Mockup Header */
.el-device-frame.is-landscape::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: #1A1F2B;
    z-index: 10;
}

.el-browser-dots {
    position: absolute;
    top: 10px;
    left: 15px;
    display: flex;
    gap: 6px;
    z-index: 11;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.el-device-frame.is-landscape .el-browser-dots {
    opacity: 1;
}

.el-dot-ui {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.el-dot-red {
    background: #FF5F56;
}

.el-dot-yellow {
    background: #FFBD2E;
}

.el-dot-green {
    background: #27C93F;
}

.el-phone-slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.el-phone-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: scale(1.05);
    background: #FFFFFF;
    /* Match app background */
    display: flex;
    align-items: center;
    justify-content: center;
}

.el-device-frame.is-landscape .el-phone-slide {
    padding-top: 30px;
    /* Offset for browser header */
}

.el-phone-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.el-phone-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.el-device-frame.is-portrait .el-phone-slide img {
    object-fit: cover;
}

.el-arrow {
    background: #F1F5F9;
    border: none;
    color: #64748B;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.el-arrow:hover {
    background: #0A66C2;
    color: #FFFFFF;
    transform: scale(1.1);
}

.el-text-box {
    padding-right: 2rem;
}

.el-feature-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #0A1628;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.el-feature-desc {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
}

/* Contact Section — Premium Redesign */
.el-contact-section {
    padding: 2rem;
    background: radial-gradient(circle at top right, #FFFFFF, #F8FAFF);
    position: relative;
    overflow: hidden;
}

.el-contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.el-contact-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    color: #0A1628;
    margin-bottom: 1rem;
}

.el-address-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 1280px;
    margin: 0 auto;
}

.el-addr-card {
    background: linear-gradient(180deg, #F8FAFF 0%, #FFFFFF 100%);
    border: 1px solid #E2E8F0;
    border-radius: 32px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center-align children */
    flex: 0 1 380px;
    min-width: 340px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 10px 30px rgba(10, 35, 81, 0.04);
}

.el-addr-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(10, 35, 81, 0.12);
    border-color: #0A66C2;
    background: #FFFFFF;
}

.el-addr-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0A66C2, #FF7A00);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.el-addr-card:hover::after {
    transform: scaleX(1);
}

.el-addr-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    width: 100%;
}

.el-addr-header .el-icon-box {
    width: 56px;
    height: 56px;
    background: #FFFFFF;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(10, 102, 194, 0.1);
    color: #0A66C2;
    transition: all 0.3s ease;
}

.el-addr-card:hover .el-icon-box {
    background: #0A66C2;
    color: #FFFFFF;
    transform: rotate(10deg);
}

.el-addr-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: #0A1628;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.el-addr-body {
    padding: 0;
    margin-bottom: 2rem;
}

.el-addr-body p {
    font-size: 1.05rem;
    color: #64748B;
    line-height: 1.6;
}

.el-phone-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: #FFFFFF;
    border-radius: 50px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
    width: auto;
}

.el-addr-card:hover .el-phone-wrap {
    background: #0A66C2;
    border-color: #0A66C2;
    box-shadow: 0 10px 20px rgba(10, 102, 194, 0.2);
}

.el-phone-wrap svg {
    color: #0A66C2;
    transition: color 0.3s ease;
}

.el-addr-card:hover .el-phone-wrap svg {
    color: #FFFFFF;
}

.el-phone {
    font-weight: 700;
    color: #0A1628 !important;
    font-size: 1.15rem !important;
    margin: 0 !important;
    transition: color 0.3s ease;
}

.el-addr-card:hover .el-phone {
    color: #FFFFFF !important;
}

@media (max-width: 768px) {
    .el-addr-card {
        flex: 1 1 100%;
    }
}