* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e40af;
    --secondary-color: #0ea5e9;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --menu-speed: 0.28s;
    --apply-metallic-gradient: linear-gradient(135deg, #e6b12e 0%, #f59e0b 100%);
    --apply-glass-opacity: 0.22;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(13px, 0.95rem + 0.15vw, 16px);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVIGATION BAR ===== */
.navbar {
    background: rgba(255, 255, 255, 0.7);
    padding: 1rem 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: none;
    border-bottom: none;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-light);
    box-shadow: 0 5px 15px rgba(15, 23, 42, 0.2);
    animation: slideInDown 0.6s ease-out;
}

/* Modern fintech logo mark: blue -> teal gradient */
.logo-mark {
    width: 48px;
    height: 48px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 6px 18px rgba(14, 165, 233, 0.16);
}

.logo-text {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.6px;
    animation: slideInDown 0.8s ease-out;
}

.logo:hover .logo-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.3);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    flex-wrap: nowrap;
    /* keep items on single line */
    list-style: none;
    align-items: center;
    gap: 0.9rem;
    margin: 0;
    margin-left: auto;
    white-space: nowrap;
    /* prevent text wrap */
    overflow-x: visible;
    /* allow items to show full text */
}

/* When nav has .no-scroll, prevent horizontal scrolling (used on hover of CTA) */
.nav-menu.no-scroll {
    overflow-x: hidden !important;
}

/* CTA in nav (desktop: right aligned; mobile overrides below) */
.nav-cta {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    /* right-align CTA on desktop */
}

.nav-cta .apply-btn {
    width: auto;
    padding: 6px 10px;
    /* smaller to fit content */
    font-size: 16px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 12px;
    transition: color 120ms ease, background 120ms ease;
    position: relative;
    padding: 4px 6px;
    display: inline-block;
    white-space: nowrap;
    /* keep single-line */
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transition: transform 120ms ease, opacity 120ms ease;
    border-radius: 2px;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    opacity: 0.0;
}

.nav-link:hover {
    color: #ffffff;
    /* slight gradient background on hover */
    background: linear-gradient(90deg, rgba(30, 64, 175, 0.95), rgba(14, 165, 233, 0.95));
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(2, 6, 23, 0.08);
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
    opacity: 1.0;
}

/* Apply Now Button */
.apply-btn {
    background: linear-gradient(135deg, var(--accent-color), #fbbf24);
    color: var(--text-dark);
    border: none;
    padding: 8px 14px;
    font-size: 0.95rem;
    font-weight: 800;
    border-radius: 12px;
    cursor: pointer;
    transition: none;
    /* disable hover animations */
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    transform-style: preserve-3d;
    perspective: 800px;
    box-shadow: 0 14px 40px rgba(30, 64, 175, 0.18), 0 6px 18px rgba(15, 23, 42, 0.12) inset;
}

.apply-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02));
    transform: translateZ(40px) scale(1);
    pointer-events: none;
}

.apply-btn::after {
    content: '';
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: -8px;
    height: 8px;
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.15);
    filter: blur(8px);
    z-index: -1;
}

.apply-btn:hover {
    /* no transform/animation on hover; apply multi-stop gradient background */
    transform: none;
    box-shadow: 0 20px 50px rgba(30, 64, 175, 0.22), 0 6px 20px rgba(15, 23, 42, 0.12) inset;
    background: linear-gradient(90deg, #06b6d4 0%, #1e40af 50%, #7c3aed 100%);
    color: #ffffff;
}

.apply-btn:active {
    transform: translateY(-2px) rotateX(2deg) scale(0.995);
}

/* Apply Now: Metallic variant */
.apply-btn--metallic {
    background: var(--apply-metallic-gradient);
    color: #1b1b1b;
    box-shadow: 0 26px 48px rgba(30, 30, 30, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.apply-btn--metallic::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.02));
}

/* Apply Now: Glass variant */
.apply-btn--glass {
    background: rgba(255, 255, 255, var(--apply-glass-opacity));
    color: var(--text-dark);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(6px) saturate(120%);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.14), 0 6px 12px rgba(0, 0, 0, 0.06) inset;
}

.apply-btn--glass::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
}

/* Glass variant: on hover use the same multi-stop gradient without animation */
.apply-btn--glass:hover {
    background: linear-gradient(90deg, #06b6d4 0%, #1e40af 50%, #7c3aed 100%);
    color: #ffffff;
    transform: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    width: 44px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
}

.menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
    position: absolute;
}

.menu-toggle span:nth-child(1) {
    top: 8px;
    left: 10px;
}

.menu-toggle span:nth-child(2) {
    top: 16px;
    left: 10px;
}

.menu-toggle span:nth-child(3) {
    top: 24px;
    left: 10px;
}

/* Overlay menu styles */
/* Overlay menu styles removed */

/* REMOVE: overlay menu styles removed when menu deleted */

/* Responsive: Mobile Menu */
@media (max-width: 900px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        max-height: 58vh;
        background: var(--text-light);
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 20px 40px;
        gap: 18px;
        transform: translateX(100%);
        transition: transform var(--menu-speed) cubic-bezier(.2, .9, .2, 1);
        box-shadow: -12px 0 30px rgba(15, 23, 42, 0.08);
        overflow-y: auto;
        overflow-x: hidden;
        scrollbar-width: thin;
        z-index: 999;
        overscroll-behavior: contain;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-close-item {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        margin-bottom: 8px;
    }

    .nav-close {
        border: none;
        background: transparent;
        color: var(--text-dark);
        font-size: 1.2rem;
        cursor: pointer;
        padding: 4px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-cta {
        display: flex;
        width: 100%;
        margin-top: auto;
        padding-top: 8px;
    }

    .nav-cta .apply-btn {
        width: 100%;
        justify-content: center;
        padding: 10px 14px;
        font-size: 14px;
    }
}

@media (min-width: 901px) {
    .nav-close-item {
        display: none;
    }

    .nav-link {
        color: var(--text-dark);
    }

    .apply-btn {
        margin-left: 0;
    }

    .nav-cta {
        justify-content: flex-start;
    }

    .nav-cta .apply-btn {
        width: 100%;
        padding: 10px 14px;
        font-size: 14px;
    }
}

/* Desktop: pin Apply button to top-right and remove it from menu flow */
@media (min-width: 901px) {

    /* Show Apply CTA inline on desktop */
    .nav-menu>.nav-cta {
        display: flex;
    }

    .apply-btn.fixed-top {
        display: none;
        /* legacy fixed top not used */
    }
}

/* Smaller screens tweak */
/* Desktop: pin Apply button to top-right and remove it from menu flow */
@media (min-width: 901px) {

    /* Show Apply CTA inline on desktop */
    .nav-menu>.nav-cta {
        display: flex;
    }

    .apply-btn.fixed-top {
        display: none;
        /* legacy fixed top not used */
    }
}

/* Smaller screens tweak */
@media (max-width: 480px) {
    .slider-container {
        height: 420px;
    }

    .slide-title {
        font-size: 2.2rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-30px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideTransition {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== HERO SECTION WITH SLIDER ===== */
.hero {
    position: relative;
    overflow: hidden;
}

/* ===== WHAT WE DO SECTION ===== */
.what-we-do {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: url('http://www.apjcams.com/images/what_we_do_bg.png') center/cover no-repeat;
}

.what-we-do::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 58, 138, 0.72) 100%); */
    z-index: 0;
}

.what-we-do .container {
    position: relative;
    z-index: 1;
}

.section-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.section-label {
    display: inline-block;
    margin-bottom: 10px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 35%, #06b6d4 70%, #f59e0b 100%);
    color: #ffffff !important;
    font-weight: 800;
    border-radius: 999px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.35);
    transform: perspective(500px) rotateX(8deg) rotateY(-6deg);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.section-heading h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: #1e40af;
}

.section-heading p {
    font-size: 1rem;
    color: #1e40af;
    font-style: italic;
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.what-card {
    background: linear-gradient(144deg, #ffffff 50%, #ffffff70 100%);
    border: 1px solid rgba(219, 234, 254, 0.95);
    border-radius: 22px;
    padding: 28px 24px;
    box-shadow: -5px -5px 10px rgba(0, 0, 0, 0.3);
    /* box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08); */
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    transform-style: preserve-3d;
    text-align: center;
    transform: translate3d(-6px, -6px, 0);
}

.what-card:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.3);
    /* box-shadow: 0 24px 50px rgba(30, 64, 175, 0.16); */
    border-color: #93c5fd;
}

/* .what-card:hover::after {
    transform: translate3d(-6px, 0, 0);
    background: rgba(59, 130, 246, 0.12);
} */

.what-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    margin: 0 auto 16px;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 50%, #14b8a6 100%);
    box-shadow: 0 14px 26px rgba(37, 99, 235, 0.23), inset 0 2px 4px rgba(255, 255, 255, 0.32);
    /* transform: perspective(800px) rotateX(12deg) rotateY(-8deg); */
    border: 1px solid rgba(255, 255, 255, 0.45);
    position: relative;
}

.what-icon::before {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    pointer-events: none;
}

.what-icon::after {
    content: '';
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: -10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.22);
    filter: blur(8px);
    z-index: -1;
}

/* .what-card:hover .what-icon {
    transform: translateZ(10px) scale(1.02);
    box-shadow: 0 22px 38px rgba(37, 99, 235, 0.3), inset 0 3px 6px rgba(255, 255, 255, 0.45);
} */

.what-card--business .what-icon {
    background: linear-gradient(135deg, #2563eb 0%, #38bdf8 35%, #22d3ee 75%, #0ea5e9 100%);
}

.what-card--individual .what-icon {
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 35%, #fb7185 70%, #f97316 100%);
}

.what-card--lenders .what-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #fb923c 35%, #ef4444 70%, #dc2626 100%);
}

.what-card--education .what-icon {
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 35%, #34d399 70%, #84cc16 100%);
}

.what-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
    color: var(--text-dark);
    text-align: center;
}

.what-card ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    text-align: center;
}

.what-card li {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    color: #334155;
    font-size: 14px;
}

.what-card li i {
    color: var(--success-color);
}

@media (max-width: 900px) {
    .what-we-do-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ADVANTAGES SECTION ===== */
.advantage-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
}

.advantage-heading {
    margin-bottom: 32px;
}

.advantage-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
    justify-items: center;
}

.advantage-left,
.advantage-right {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
}

.advantage-left {
    padding-right: 10px;
}

.advantage-image-wrap {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 24px;
}

.advantage-image-wrap::after {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 0;
    height: 18px;
    background: rgba(15, 23, 42, 0.18);
    border-radius: 50%;
    filter: blur(16px);
    z-index: 0;
}

.advantage-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    max-width: 500px;
    min-height: 360px;
    display: block;
    object-fit: contain;
    margin-top: 55px;
}

.advantage-right {
    display: grid;
    gap: 8px;
    width: 100%;
    max-width: 520px;
    align-self: center;
    margin-top: -116px;
}

.advantage-row {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 6px;
    background: #ffffff;
    border: 1px solid #dbeafe;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    min-height: 70px;
}

.advantage-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 14px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.advantage-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.advantage-content h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    text-transform: capitalize;
    margin-bottom: 6px;
}

.advantage-content p {
    font-size: 0.72rem;
    line-height: 1.55;
    color: #475569;
}

@media (max-width: 900px) {
    .advantage-layout {
        grid-template-columns: 1fr;
    }

    .advantage-left {
        padding-right: 0;
    }

    .advantage-right {
        margin-top: 0;
    }

    .advantage-row {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .advantage-content {
        text-align: center;
    }

    .advantage-image {
        max-width: 420px;
        min-height: auto;
    }
}

@media (max-width: 600px) {
    .advantage-row {
        flex-direction: column;
        gap: 10px;
    }

    .how-it-works-content {
        grid-template-columns: 1fr;
        max-width: 320px;
    }

    .how-step-card {
        max-width: 100%;
    }
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    padding: 40px 0;
    /* background:
        linear-gradient(135deg, rgba(248, 251, 255, 0.94) 0%, rgba(238, 246, 255, 0.94) 100%),
        url('images/how_it_work_bg.png') center/cover no-repeat; */
    background: url('http://www.apjcams.com/images/how_it_work_bg.png') center/cover no-repeat;
}

.how-it-works h2 {

    color: #fff !important;
}

.how-it-works .section-heading {
    margin-bottom: 36px;
}

.how-it-works-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    align-items: stretch;
    justify-content: center;
    margin: 60px auto 30px;
    max-width: 1200px;
    width: 100%;
}

.how-step-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #dbeafe;
    border-top: 4px solid #2563eb;
    border-radius: 20px;
    padding: 36px 16px 20px;
    box-shadow: 0 14px 24px rgba(15, 23, 42, 0.12);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 270px;
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
}

.how-step-card:nth-child(1) {
    border-top-color: #2563eb;
}

.how-step-card:nth-child(2) {
    border-top-color: #7c3aed;
}

.how-step-card:nth-child(3) {
    border-top-color: #ef4444;
}

.how-step-card:nth-child(4) {
    border-top-color: #0f766e;
}

.how-step-card:nth-child(5) {
    border-top-color: #ca8a04;
}

.step-circle {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
    z-index: 2;
}

.step-circle--1 {
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
}

.step-circle--2 {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

.step-circle--3 {
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
}

.step-circle--4 {
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
}

.step-circle--5 {
    background: linear-gradient(135deg, #ca8a04 0%, #f59e0b 100%);
}

.step-card-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 130px;
    padding: 8px 0;
}

.step-card-image img {
    width: 100%;
    max-width: 120px;
    height: 110px;
    object-fit: contain;
    display: block;
}

.step-card-title {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0f172a;
    line-height: 1.4;
}

.how-it-works-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 28px;
    border-radius: 18px;
    overflow: hidden;
    /* background: rgba(255, 255, 255, 0.9); */
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 18px 16px;
    min-height: 85px;
}

.benefit-item--border {
    position: relative;
}

.benefit-item--border::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: #ffffff;
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.benefit-text {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.3;
}

@media (max-width: 900px) {
    .how-it-works-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .how-it-works-benefits {
        grid-template-columns: 1fr;
    }

    .benefit-item--border {
        border-right: none;
        /* border-bottom: 1px solid #ffffff; */
    }

    .benefit-item--border::after {
        content: '';
        position: absolute;
        right: 0;
        top: 25%;
        height: 50%;
        width: 0px;
        /* background: #ffffff;*/
    }
}

@media (max-width: 600px) {
    .how-it-works-content {
        grid-template-columns: 1fr;
    }

    .how-step-card {
        min-height: auto;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Full Width Slider Container */
.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    background: #000;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slides */
.slider-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slider-slide.active {
    opacity: 1;
    z-index: 10;
}

.slide-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.02);
}

.slide-content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    z-index: 2;
    animation: slideTransition 0.8s ease-out;
}

.slide-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    animation: slideInDown 0.8s ease-out;
}

.slide-tagline {
    font-size: 1rem;
    font-weight: 300;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: slideInUp 0.8s ease-out 0.2s backwards;
}

/* Slider Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav:active {
    transform: translateY(-50%) scale(0.95);
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid var(--text-light);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Hero Content Below Slider */
.hero-content {
    padding: 80px 20px 50px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-color);
    animation: slideInDown 0.8s ease-out;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: #64748b;
    animation: slideInUp 1s ease-out 0.2s backwards;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 1.2s ease-out 0.4s backwards;
}

.cta-button {
    padding: 16px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button.primary {
    background: var(--accent-color);
    color: var(--text-dark);
    box-shadow: 0 5px 20px rgba(245, 158, 11, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.6);
    background: #fbbf24;
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-3px);
}

/* ===== CHANNEL PARTNER SECTION ===== */
.channel-partner {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fbff 0%, #eef7ff 100%);
}

.channel-partner-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 28px;
    padding: 42px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.channel-partner .section-label {
    margin-bottom: 16px;
}

.channel-partner h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.channel-partner-intro {
    font-size: 1.05rem;
    color: #334155;
    margin-bottom: 28px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.channel-partner-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 28px;
}

.channel-partner-grid h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    text-align: center;
}

.channel-list {
    list-style: none;
    padding-left: 0;
    max-width: 320px;
    margin: 0 auto;
}

.channel-list li {
    padding: 10px 0 10px 24px;
    position: relative;
    color: #334155;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
}

.channel-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .channel-partner-card {
        padding: 28px 20px;
    }

    .channel-partner-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 0;
    background: linear-gradient(135deg, #f8fbff 0%, #eef7ff 100%);
}

.about-single {
    width: 100%;
    padding: 80px 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 249, 255, 0.95));
}

.about-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.about-single h2 {
    font-size: 2.7rem;
    color: var(--primary-color);
    margin-bottom: 14px;
    animation: slideInDown 0.8s ease-out;
}

.about-subheading {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin: 22px 0 10px;
    text-align: left;
    font-weight: 700;
}

.about-vision-subtitle {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--accent-color);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.about-vision-text {
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.9;
    margin-bottom: 18px;
    text-align: left;
    animation: slideInUp 0.8s ease-out 0.2s backwards;
}

.about-value-list {
    margin: 0 0 18px 22px;
    padding: 0;
    text-align: left;
    list-style: none;
}

.about-value-item {
    position: relative;
    margin-bottom: 8px;
    padding-left: 18px;
    color: #334155;
    font-size: 0.9rem;
}

.about-value-item::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.vision-highlight {
    color: var(--primary-color);
    font-weight: 700;
    background: linear-gradient(120deg, rgba(14, 165, 233, 0.16), rgba(245, 158, 11, 0.14));
    padding: 2px 6px;
    border-radius: 6px;
}

.about-signature {
    margin-top: 28px;
    padding: 22px 24px;
    border-left: 4px solid var(--accent-color);
    background: rgba(255, 255, 255, 0.85);
    border-radius: 14px 14px 14px 14px;
    text-align: center;
    display: inline-block;
    min-width: 320px;
    border-right: 4px solid var(--accent-color);

}

.about-signature .signature-name {
    font-weight: bolder;
    font-size: large;
    color: var(--primary-color);
    margin-bottom: 4px;
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    /* margin-bottom: 15px; */
    animation: slideInDown 0.8s ease-out;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 10px;
    animation: slideInUp 0.8s ease-out 0.2s backwards;
}

/* ===== PRODUCTS SECTION ===== */
.products {
    padding: 80px 20px;
    background: var(--text-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--light-bg);
    padding: 35px 25px;
    border-radius: 12px;
    border-top: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    animation: bounceIn 0.6s ease-out;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(30, 64, 175, 0.2);
    border-top-color: var(--accent-color);
}

.product-card.featured {
    border-top-color: var(--accent-color);
    transform: scale(1.03);
}

.product-card.featured:hover {
    transform: scale(1.03) translateY(-12px);
}

.badge {
    position: absolute;
    top: -15px;
    left: 25px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    animation: slideInDown 0.6s ease-out;
}

.product-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--text-light);
    transition: var(--transition);
}

.product-card:hover .product-icon {
    transform: scale(1.1) rotate(10deg);
}

.product-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    text-align: center;
}

.product-card p {
    color: #64748b;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.7;
}

.product-features {
    list-style: none;
    margin-bottom: 25px;
}

.product-features li {
    padding: 10px 0;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.product-features i {
    color: var(--success-color);
    font-weight: bold;
}

.product-btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
}

.product-btn:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 64, 175, 0.3);
}

/* ===== PARTNER SECTION ===== */
.partner {
    padding: 80px 20px;
    background: var(--light-bg);
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-card {
    background: var(--text-light);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: scaleIn 0.6s ease-out;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(30, 64, 175, 0.15);
}

.partner-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: var(--text-light);
}

.partner-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.partner-card p {
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.7;
}

.partner-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent-color);
    color: var(--text-dark);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}

.partner-btn:hover {
    background: #fbbf24;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

/* ===== TECHNOLOGY SECTION ===== */
.technology {
    padding: 80px 20px;
    background: var(--text-light);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-card {
    background: linear-gradient(135deg, var(--light-bg), #f1f5f9);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    animation: slideInUp 0.6s ease-out;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.12);
}

.tech-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.2rem;
    color: var(--text-light);
    transition: var(--transition);
}

.tech-card:hover .tech-icon {
    transform: scale(1.1);
}

.tech-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.tech-card p {
    color: #64748b;
    line-height: 1.7;
}

/* ===== INSIGHTS SECTION ===== */
.insights {
    padding: 80px 20px;
    background: var(--light-bg);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.insight-card {
    background: var(--text-light);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: slideInUp 0.6s ease-out;
}

.insight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.15);
}

.insight-date {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.insight-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.5;
}

.insight-card p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.7;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.read-more:hover {
    gap: 12px;
    color: var(--accent-color);
}

/* ===== STATS SECTION ===== */
.stats {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
    color: var(--text-light);
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    animation: zoomIn 0.8s ease-out;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    animation: slideInDown 1s ease-out;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 40px 20px;
    background: var(--text-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-content--single {
    grid-template-columns: 1fr;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    align-items: start;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    padding: 24px 16px;
    min-height: 220px;
    background: #f8fbff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
    animation: slideInLeft 0.6s ease-out;
    text-decoration: none;
    color: inherit;
}


.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-light);
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-details h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-details p {
    color: #64748b;
    margin: 0;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--accent-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: slideInRight 0.6s ease-out;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.submit-btn {
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 64, 175, 0.3);
}

/* ===== APPLY SECTION ===== */
.apply-section {
    padding: 10px 20px 60px;
    background: var(--text-light);
    text-align: center;
}

.apply-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.apply-options {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 22px;
}

.apply-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid #dbeafe;
    border-radius: 999px;
    background: #f8fbff;
    color: #334155;
    font-weight: 600;
}

.apply-option input {
    accent-color: var(--primary-color);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.apply-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(30, 64, 175, 0.2);
}

.apply-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(30, 64, 175, 0.25);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 50px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 2rem;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.7;
}

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    transform: scale(1.1);
}
.logo-img{
    height: 50px;
    width: auto;
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 16px;
    }

    .slider-container {
        height: 480px;
    }

    .slide-title {
        font-size: clamp(1.7rem, 2.8vw, 2.3rem);
    }

    .hero-title {
        font-size: clamp(2.1rem, 3.4vw, 2.9rem);
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-heading h2 {
        font-size: clamp(1.7rem, 3vw, 2.2rem);
    }

    .what-we-do-grid {
        gap: 28px;
    }

    .advantage-layout {
        gap: 24px;
    }

    .how-it-works-content {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .nav-container {
        padding: 0 14px;
    }

    .navbar {
        background: rgba(255, 255, 255, 0.95);
    }

    .slider-container {
        height: 420px;
    }

    .slide-bg {
        background-size: cover;
        background-position: center center;
    }

    .slide-title {
        font-size: 1.8rem;
        padding: 0 20px;
    }

    .slide-tagline {
        font-size: 1rem;
        padding: 0 20px;
    }

    .slider-nav {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .slider-prev {
        left: 15px;
    }

    .slider-next {
        right: 15px;
    }

    .hero-content {
        padding: 50px 16px 40px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 5.5vw, 2.4rem);
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        max-width: 360px;
        margin: 0 auto;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .what-we-do-grid,
    .products-grid,
    .partner-grid,
    .tech-grid,
    .insights-grid {
        grid-template-columns: 1fr;
    }

    .advantage-layout {
        grid-template-columns: 1fr;
    }

    .advantage-left {
        padding-right: 0;
    }

    .advantage-right {
        margin-top: 0;
    }

    .advantage-row {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 14px;
    }

    .how-it-works-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .apply-options {
        flex-direction: column;
        align-items: stretch;
    }

    .apply-option {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 320px;
    }

    .slide-bg {
        background-size: cover;
        background-position: center center;
        transform: scale(1.05);
    }

    .slide-title {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .slide-tagline {
        font-size: 0.95rem;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .nav-menu {
        width: min(85vw, 280px);
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .apply-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .logo img {
        height: 42px;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-heading h2,
    .section-title {
        font-size: 1.6rem;
    }

    .section-heading p {
        font-size: 0.95rem;
    }

    .what-card,
    .partner-card,
    .product-card,
    .tech-card,
    .insight-card,
    .contact-item {
        padding: 20px 16px;
    }

    .how-it-works-content {
        grid-template-columns: 1fr;
    }

    .how-step-card {
        min-height: auto;
        padding: 32px 14px 18px;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .about,
    .products,
    .partner,
    .technology,
    .insights,
    .contact,
    .apply-section {
        padding: 50px 16px;
    }

    .stats .container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .social-links {
        flex-wrap: wrap;
    }
}