/* ===================================
   CSS VARIABLES
=================================== */
:root {
    --primary: #1a365d;
    --primary-light: #2b4a7c;
    --primary-dark: #0f2341;
    --primary-gradient: linear-gradient(135deg, #1a365d 0%, #2b5797 100%);

    --accent: #dc2626;
    --accent-light: #ef4444;
    --accent-dark: #b91c1c;

    --emerald-green: #50c878;
    --forest-green: #228b22;
    --bright-green: #00ff00;
    --lime-green: #32cd32;

    --light-yellow: #ffffe0;
    --light-goldenrod: #fafad2;
    --lemon-yellow: #fff44f;
    --golden-yellow: linear-gradient(135deg, #f9f295 0%, #e0aa3e 25%, #faf398 75%, #b88a44 100%);

    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 999px;

    --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 6px 18px rgba(26, 54, 93, 0.35);

    --transition-base: 250ms ease;
}

/* ===================================
   GLOBAL
=================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--gray-50);
    color: var(--gray-800);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* GLOBAL PAGE CONTAINER */

.container {
    max-width: 1400px;
    margin: auto;
    padding: 0 2%;
}

/* ===================================
   NAVBAR
=================================== */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 12px 8%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);

    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition-base);

    padding-left: 2%;
    padding-right: 2%;
}

/* NAVBAR ON SCROLL */

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

/* LOGO */

.logo-container {
    display: flex;
    max-width: 1400px;
    align-items: center;
    gap: 10px;
}

.logo-container img {
    height: 35px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-800);
}

.logo-text span {
    color: var(--accent);
}

/* NAV LINKS */

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
    position: relative;
    transition: var(--transition-base);
}

/* HOVER UNDERLINE */

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent);
    transition: var(--transition-base);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* NAVBAR SCROLLED STATE */

.navbar.scrolled {
    padding: 10px 6%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
}

/* SMALLER LOGO */

.navbar.scrolled .logo-container img {
    height: 25px;
}

.navbar.scrolled .logo-text {
    font-size: 18px;
}

/* LOGIN BUTTON */

.admin-login-btn {
    display: flex;
    align-items: center;
    gap: 6px;

    background: var(--primary-gradient);
    color: white;

    border: none;
    padding: 8px 16px;
    border-radius: var(--radius-full);

    font-size: 14px;
    font-weight: 500;
    cursor: pointer;

    box-shadow: var(--shadow-primary);
    transition: var(--transition-base);
}

.admin-login-btn:hover {
    transform: translateY(-2px);
}

.admin-login-btn svg {
    width: 18px;
}

/* HAMBURGER */

.hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* ===================================
   NOTIFICATION BAR
=================================== */

.notification-bar {
    background: var(--primary-dark);
    color: rgb(255, 240, 103);
    overflow: hidden;
    white-space: nowrap;
}

.notification-text {
    display: inline-block;
    padding: 10px;
    font-weight: 600;
    animation: marquee 18s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(100%)
    }

    to {
        transform: translateX(-100%)
    }
}

/* ===================================
   HERO
=================================== */

.hero {
    position: relative;
    padding: 140px 10%;
    text-align: center;
    /*background:linear-gradient(135deg,#1a365d,#2b5797);*/
    overflow: hidden;
}

/* glass card */

.hero h1,
.hero p,
.hero-buttons {
    position: relative;
    z-index: 2;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 40, .65);
    z-index: 1;
    /*top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:80%;
    height:70%;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(12px);
    border-radius:20px;
    border:1px solid rgba(255,255,255,0.2);*/
}

/* glowing circles */

.hero::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(220, 38, 38, 0.3);
    filter: blur(120px);
    top: -100px;
    right: -100px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #ffeded;
}

.hero p {
    max-width: 650px;
    margin: auto;
    margin-bottom: 30px;
    color: #cbd5e1;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-buttons a {
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition-base);
}

.hero-buttons a:first-child {
    background: var(--accent);
    color: white;
}

.hero-buttons a:last-child {
    background: white;
    color: var(--primary);
}

.hero-buttons a:hover {
    transform: translateY(-3px);
}

/* ===================================
   INDUSTRIES SECTION
=================================== */

.section {
    padding: 80px 2%;
    text-align: center;
}

.section h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

/* CARD GRID */

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}


/* ===================================
   INTERACTIVE CARD
=================================== */

.card {
    position: relative;
    padding: 30px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    isolation: isolate;

    transition:
        transform .35s ease,
        box-shadow .35s ease;

    /* mouse position for light effect */
    --x: 50%;
    --y: 50%;
}

.cards .card {
    transition-delay: calc(var(--i) * 0.1s);
}

/* ===================================
   MOUSE LIGHT EFFECT
=================================== */

.card::before {
    content: "";
    position: absolute;
    inset: 0;

    background: radial-gradient(250px circle at var(--x) var(--y),
            rgba(43, 87, 151, 0.35),
            rgba(26, 54, 93, 0.25),
            transparent 60%);

    opacity: 0;
    transition: opacity .35s ease;
}


/* ===================================
   LIQUID GRADIENT BACKGROUND
=================================== */

.card::after {
    content: "";
    position: absolute;
    inset: -50%;

    background: linear-gradient(120deg,
            #0f2341,
            #1a365d,
            #2b5797,
            #1a365d);

    background-size: 300% 300%;
    opacity: 0;

    animation: liquidGradient 8s linear infinite paused;
    transition: opacity .35s ease;
}

@keyframes liquidGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


/* ===================================
   RIPPLE EFFECT
=================================== */

.card .ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: rippleEffect .6s linear;
    background: rgba(255, 255, 255, .35);
    pointer-events: none;
}

@keyframes rippleEffect {

    0% {
        transform: scale(0);
        opacity: .7;
    }

    100% {
        transform: scale(4);
        opacity: 0;
    }

}


/* ===================================
   CARD CONTENT
=================================== */

.card * {
    position: relative;
    z-index: 1;
}

.card .icon {
    font-size: 32px;
    margin-bottom: 12px;
    transition: transform .25s ease;
}


/* ===================================
   HOVER EFFECT
=================================== */

.card:hover {
    transform: translateY(-10px) scale(1.03);

    box-shadow:
        0 25px 45px rgba(0, 0, 0, .18),
        0 0 30px rgba(43, 87, 151, .35);
}

.card:hover::before {
    opacity: 1;
}

.card:hover::after {
    opacity: .8;
    animation-play-state: running;
}

.card:hover h3,
.card:hover .icon {
    color: #fff;
}

/* ===================================
   SCROLL REVEAL
=================================== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity .7s ease,
        transform .7s ease;
}

/* visible state */

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* OPTIONAL VARIATIONS */

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all .7s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all .7s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(.9);
    transition: all .6s ease;
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

body.loaded .reveal {
    opacity: 1;
    transform: none;
}

/* ===================================
   ABOUT SECTION (PREMIUM)
=================================== */

.about-section {
    padding: 110px 6%;
    background:
        radial-gradient(circle at 20% 30%, rgba(43, 87, 151, .06), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(220, 38, 38, .05), transparent 40%);
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    flex-wrap: wrap;
}

/* ===================================
   PREMIUM ABOUT HERO
=================================== */

.about-hero {
    position: relative;
    height: 75vh;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 120px 10%;
    color: #fff;
}

/* VIDEO BACKGROUND */

.about-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* DARK + GRADIENT OVERLAY */

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(135deg,
            rgba(10, 25, 60, .75),
            rgba(30, 60, 120, .75));

    z-index: 1;
}

/* SOFT LIGHT EFFECT */

.about-hero::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(220, 38, 38, .25);
    filter: blur(180px);
    top: -200px;
    right: -150px;
    z-index: 1;
}

/* HERO CONTENT */

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding: 50px 45px;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .45);

    animation: heroFadeUp 1.2s ease;
}

/* TITLE */

.about-hero h1 {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 20px;
}

/* DESCRIPTION */

.about-hero p {
    font-size: 19px;
    line-height: 1.7;
    opacity: .95;
    max-width: 620px;
    margin: auto;
}

/* ANIMATION */

@keyframes heroFadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* RESPONSIVE */

@media(max-width:768px) {

    .about-hero {
        height: 65vh;
    }

    .about-hero-content {
        padding: 35px 28px;
    }

    .about-hero h1 {
        font-size: 36px;
    }

    .about-hero p {
        font-size: 16px;
    }

}

/* TEXT AREA */

.about-text {
    flex: 1;
    max-width: 540px;
}

.about-text h2 {
    font-size: 34px;
    margin-bottom: 18px;
    color: var(--gray-900);
}

.about-text p {
    margin-bottom: 26px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* LIST */

.about-list {
    list-style: none;
    margin-bottom: 32px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 500;
}

.check {
    color: var(--accent);
    font-size: 18px;
}

.about-list li:hover {
    color: var(--forest-green);
    transform: translateX(8px);
}

/* IMAGE */

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 440px;
    border-radius: 18px;

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .15);

    transition: transform .4s ease, box-shadow .4s ease;
}

.about-image img:hover {
    transform: translateY(-8px) scale(1.03);

    box-shadow:
        0 35px 60px rgba(0, 0, 0, .2);
}

/* BUTTON */

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 12px 22px;
    border-radius: 30px;

    background: var(--primary-gradient);
    color: white;

    font-weight: 600;
    font-size: 14px;

    transition: all .3s ease;
}

.view-more-btn svg {
    width: 18px;
    transition: transform .3s ease;
}

.view-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
}

.view-more-btn:hover svg {
    transform: translateX(4px);
}

/* ===============================
   STAGGER REVEAL
================================ */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s cubic-bezier(.22, .61, .36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   CLIENTS SECTION
=================================== */

.clients-section {
    padding: 110px 6%;
    text-align: center;
    background: #f8fafc;
}

.clients-section h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.clients-subtitle {
    color: #64748b;
    font-size: 16px;
}

/* SLIDER */

.logo-slider {
    overflow: hidden;
    margin-top: 60px;
    position: relative;
}

/* EDGE FADE EFFECT */

.logo-slider::before,
.logo-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, #f8fafc, transparent);
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, #f8fafc, transparent);
}

/* TRACK */

.logo-track {
    display: flex;
    gap: 40px;
    animation: logoScroll 28s linear infinite;
}

/* LOGO CARD */

.logo-item {
    min-width: 180px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    background: white;
    border-radius: 14px;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);

    transition: all .35s ease;
}

/* LOGO */

.logo-item img {
    max-width: 120px;
    filter: grayscale(100%);
    opacity: .65;
    transition: .35s;
}

/* HOVER */

.logo-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.logo-item:hover img {
    filter: none;
    opacity: 1;
}

.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

/* SCROLL */

@keyframes logoScroll {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}

/* ===================================
   TESTIMONIAL
=================================== */

.testimonial-section {
    padding: 110px 6%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 34px;
    margin-bottom: 60px;
    color: #f2f2f2;
}

/* CONTAINER */

.testimonial-container {
    position: relative;
    max-width: 820px;
    margin: auto;
    overflow: hidden;
}

/* TRACK */

.testimonial-track {
    display: flex;
    will-change: transform;
}

/* CARD */

.testimonial-card {
    min-width: 100%;
    padding: 50px 40px;

    background: white;
    border-radius: 18px;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, .08);

    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-card::before {
    content: "❝";
    font-size: 42px;
    color: #2b5797;
    margin-bottom: 10px;
}

/* AVATAR */

.client-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 18px;
}

/* TEXT */

.testimonial-card p {
    font-size: 17px;
    color: #475569;
    max-width: 600px;
    margin-bottom: 18px;
}

/* NAME */

.testimonial-card h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.testimonial-card span {
    color: #64748b;
    font-size: 14px;
}

/* ARROWS */

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    border: none;

    background: white;
    color: #1a365d;

    font-size: 20px;
    cursor: pointer;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all .25s ease;

    z-index: 5;
}

.arrow.left {
    left: 10px;
}

.arrow.right {
    right: 10px;
}

.arrow:hover {
    transform: translateY(-50%) scale(1.1);
    background: #2b5797;
    color: white;
}

/* DOTS */

.dots {
    margin-top: 30px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    margin: 0 6px;
    cursor: pointer;
}

.dot.active {
    background: #2b5797;
}

/* ===================================
   ANIMATED GRADIENT WAVE BACKGROUND
=================================== */

.wave-bg {
    position: absolute;
    inset: 0;
    z-index: -1;

    background: linear-gradient(120deg,
            #1a365d,
            #2b5797,
            #1a365d,
            #0f2341);

    background-size: 300% 300%;
    animation: gradientWave 12s ease infinite;
}

/* moving gradient */

@keyframes gradientWave {

    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }

}

.wave-bg::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: 0;
    width: 200%;
    height: 300px;

    background: rgba(255, 255, 255, 0.06);
    border-radius: 40%;

    animation: waveMove 10s linear infinite;
}

/* wave animation */

@keyframes waveMove {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}

/* ===================================
   FOOTER
=================================== */

.footer {
    background: var(--gray-900);
    color: var(--gray-300);
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 70px 8%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    padding-left: 2%;
    padding-right: 2%;
}

.footer-col h4 {
    color: white;
    margin-bottom: 18px;
    font-size: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--gray-400);
    transition: var(--transition-base);
}

.footer-col ul li a:hover {
    color: rgb(255, 230, 0);
}

/* COMPANY */

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo img {
    width: 45px;
}

.footer-company p {
    font-size: 14px;
    line-height: 1.6;
}

/* SOCIAL */

.footer-social {
    margin-top: 18px;
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: var(--gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    transition: .3s;
}

.footer-social a:hover {
    background: var(--accent);
    color: white;
}

/* CONTACT */

.footer-col p {
    margin-bottom: 10px;
    font-size: 14px;
}

/* FOOTER BOTTOM */

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding: 18px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--gray-400);
}

.footer-bottom-links a:hover {
    color: white;
}

/* ===================================
   RESPONSIVE MOBILE VIEW
=================================== */

@media (max-width: 768px) {

    /* -----------------------------------------
       HAMBURGER
    ----------------------------------------- */

    .hamburger {

        display: block;

        position: relative;

        z-index: 10002;

        font-size: 28px;

        line-height: 1;

        cursor: pointer;

        user-select: none;

        color: var(--primary);

        transition:
            transform 0.3s ease;

    }


    .hamburger.active {

        transform: rotate(90deg);

    }


    /* -----------------------------------------
       MOBILE NAV PANEL
    ----------------------------------------- */

    .nav-links {

        position: fixed;

        top: 0;

        left: 0;

        width: 290px;

        max-width: 82vw;

        height: 100vh;

        box-sizing: border-box;

        background: #ffffff;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        justify-content: flex-start;

        gap: 6px;

        padding: 90px 20px 30px;

        margin: 0;

        box-shadow:
            10px 0 35px rgba(0, 0, 0, 0.15);

        z-index: 10001;

        overflow-y: auto;

        /*
         * IMPORTANT:
         * Menu starts outside the LEFT edge.
         */

        transform: translateX(-105%);

        /*
         * LEFT → RIGHT animation
         */

        transition:
            transform 0.38s cubic-bezier(
                0.4,
                0,
                0.2,
                1
            );

    }


    /* -----------------------------------------
       OPEN MENU
    ----------------------------------------- */

    .nav-links.active {

        transform: translateX(0);

    }


    /* -----------------------------------------
       MOBILE LINKS
    ----------------------------------------- */

    .nav-links a {

        width: 100%;

        box-sizing: border-box;

        padding: 13px 15px;

        margin: 0;

        border-radius: 8px;

        font-size: 15px;

        font-weight: 500;

        color: var(--gray-700);

        transition:
            background 0.2s ease,
            color 0.2s ease,
            transform 0.2s ease;

    }


    .nav-links a:hover {

        background: var(--gray-100);

        color: var(--primary);

        transform: translateX(5px);

    }


    /* Remove desktop underline */

    .nav-links a::after {

        display: none;

    }


    /* -----------------------------------------
       LOGIN BUTTON
    ----------------------------------------- */

    .nav-links .admin-login-btn {

        width: 100%;

        justify-content: center;

        margin-top: 15px;

        padding: 11px 16px;

    }


    /* -----------------------------------------
       DARK OVERLAY
    ----------------------------------------- */

    body.menu-open::before {

        content: "";

        position: fixed;

        inset: 0;

        background:
            rgba(15, 23, 42, 0.38);

        z-index: 999;

        animation:
            menuOverlayFade 0.25s ease forwards;

    }


    /* -----------------------------------------
       STOP BACKGROUND SCROLL
    ----------------------------------------- */

    body.menu-open {

        overflow: hidden;

    }

    .about-container {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 30px;
    }

    .arrow.left {
        left: 10px;
    }

    .arrow.right {
        right: 10px;
    }

}


/* =========================================================
   OVERLAY
========================================================= */

@keyframes menuOverlayFade {

    from {

        opacity: 0;

    }

    to {

        opacity: 1;

    }
}


/* =====================
    Adjust Speed of Clients for Different Screens
====================== */

/* Large screens */
@media (min-width:1400px) {
    .logo-track {
        animation: logoScroll 34s linear infinite;
    }
}

/* Laptops */
@media (max-width:1200px) {
    .logo-track {
        animation: logoScroll 26s linear infinite;
    }
}

/* Tablets */
@media (max-width:900px) {
    .logo-track {
        animation: logoScroll 22s linear infinite;
    }
}

/* Mobile */
@media (max-width:600px) {
    .logo-track {
        animation: logoScroll 18s linear infinite;
    }
}

/* =============== ABOUT US PAGE =================

/* ===================================
   ABOUT HERO
=================================== */

.about-hero {
    padding: 140px 6% 120px;
    text-align: center;
    background: linear-gradient(135deg, #1a365d, #2b5797);
    color: white;
}

.about-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.about-hero h1 span {
    color: var(--lemon-yellow);
}

.about-hero p {
    max-width: 650px;
    margin: auto;
    font-size: 18px;
    opacity: .9;
}


/* ===================================
   GENERAL SECTION
=================================== */

.section {
    padding: 100px 6%;
}

.section h2 {
    font-size: 34px;
    margin-bottom: 25px;
    text-align: center;
}

.section p {
    max-width: 800px;
    margin: auto;
    text-align: center;
    color: #475569;
    line-height: 1.7;
}


/* ===================================
   DIRECTOR SECTION
=================================== */

.director-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.director-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.director-message h2 {
    text-align: left;
}

.director-message p {
    text-align: left;
    margin: 20px 0;
}

.director-message h4 {
    margin-top: 15px;
    color: #2b5797;
}

.director-message span {
    font-size: 15px;
    color: #ec3700;
}

/* ===================================
   STATS SECTION
=================================== */

.stats-section {
    padding: 100px 6%;
    background: #f8fafc;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);

    transition: .3s;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.stat-card h2 {
    font-size: 42px;
    color: #2b5797;
    margin-bottom: 10px;
}

.stat-card p {
    color: #64748b;
    font-weight: 500;
}

/* ===================================
   MISSION & VISION
=================================== */

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.mission-card {
    background: white;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: .3s;
}

.mission-card h3 {
    margin-bottom: 15px;
    color: #1a365d;
}

.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}


/* ===================================
   CORE VALUES
=================================== */

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: .3s;
}

.value-card h4 {
    margin-bottom: 10px;
    color: #1a365d;
}

.value-card p {
    font-size: 14px;
    color: #64748b;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}


/* ===================================
   CTA SECTION
=================================== */

.about-cta {
    padding: 100px 6%;
    text-align: center;
    background: linear-gradient(135deg, #1a365d, #2b5797);
    color: white;
}

.about-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.about-cta p {
    margin-bottom: 30px;
    opacity: .9;
}

.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background: #ff4d4d;
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.btn-primary:hover {
    background: #e63946;
    transform: translateY(-3px);
}


/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:1000px) {

    .director-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .director-message h2,
    .director-message p {
        text-align: center;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

}

@media(max-width:600px) {

    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-hero h1 {
        font-size: 34px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

}

/* ===================================
   GLOBAL RECRUITMENT MAP
=================================== */

.global-map-section {
    padding: 100px 10%;
    background: #f9fbff;
    text-align: center;
}

.section-header h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.section-header p {
    max-width: 650px;
    margin: auto;
    color: #555;
}

/* MAP WRAPPER */

.map-wrapper {
    position: relative;
    margin-top: 60px;
}

.world-map {
    width: 100%;
    max-width: 1000px;
    opacity: .9;
}

/* MARKERS */

.map-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    text-align: center;
}

/* circle */

.map-marker span {
    width: 5px;
    height: 5px;
    background: #e11d48;
    border-radius: 50%;
    display: block;
    margin: auto;
    box-shadow: 0 0 0 0 rgba(225, 29, 72, .6);
    animation: pulse 2s infinite;
}

/* label */

.map-marker p {
    margin-top: 8px;
    font-size: 10px;
    font-weight: 600;
    color: #222;
}

/* PULSE EFFECT */

@keyframes pulse {

    0% {
        box-shadow: 0 0 0 0 rgba(225, 29, 72, .6);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(225, 29, 72, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(225, 29, 72, 0);
    }

}

/* ===================================
   COUNTRY POSITIONS
=================================== */

.uae {
    top: 49.5%;
    left: 62.2%;
}

.qatar {
    top: 49%;
    left: 61%;
}

.saudi {
    top: 50%;
    left: 59%;
}

.oman {
    top: 52%;
    left: 63%;
}

.kuwait {
    top: 46%;
    left: 60%;
}

.singapore {
    top: 62%;
    left: 75%;
}

.poland {
    top: 30%;
    left: 53%;
}

.romania {
    top: 32%;
    left: 55%;
}

.slovakia {
    top: 31%;
    left: 54%;
}

.germany {
    top: 30%;
    left: 51%;
}

.russia {
    top: 25%;
    left: 70%;
}

.israel {
    top: 45%;
    left: 57%;
}

.northamerica {
    top: 28%;
    left: 18%;
}

.japan {
    top: 42%;
    left: 84.5%;
}

.india {
    top: 50%;
    left: 68.5%;
}

/* ===================================
   PREMIUM GALLERY
=================================== */

.gallery-section {
    padding: 40px 10%;
    background: #f8fafc;
    text-align: center;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.section-header h2 span {
    color: var(--accent-dark);
}

.section-header p {
    max-width: 650px;
    margin: auto;
    color: #555;
}

/* ===================================
   GALLERY FILTERS
=================================== */

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 22px;
    border: none;
    background: #f1f5f9;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.filter-btn:hover {
    background: #2563eb;
    color: white;
}

.filter-btn.active {
    background: #2563eb;
    color: white;
    box-shadow: 0 8px 18px rgba(37, 99, 235, .3);
}

/* GRID */

.gallery-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* ITEM */

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    transition: all .4s ease;
}

.gallery-item.hide {
    opacity: 0;
    transform: scale(.9);
    pointer-events: none;
    position: absolute;
}

.gallery-grid {
    position: relative;
}

/* IMAGE / VIDEO */

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform .5s ease;
}

/* HOVER ZOOM */

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.08);
}

/* OVERLAY */

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .4s;
}

.gallery-overlay i {
    color: white;
    font-size: 26px;
    background: rgba(255, 255, 255, .2);
    padding: 16px;
    border-radius: 50%;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* VIDEO PLAY ANIMATION */

.gallery-item.video video {
    pointer-events: none;
}

.gallery-item.video:hover video {
    filter: brightness(.8);
}

/* RESPONSIVE */

@media(max-width:768px) {

    .gallery-item img,
    .gallery-item video {
        height: 200px;
    }

}

#galleryLightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    animation: fadeIn .35s ease;
}

#galleryLightbox img,
#galleryLightbox video {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    animation: zoomIn .35s ease;
}

.close-lightbox {
    position: absolute;
    top: 40px;
    right: 60px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes zoomIn {
    from {
        transform: scale(.8)
    }

    to {
        transform: scale(1)
    }
}

/* ===================================
   PREMIUM RECRUITMENT PROCESS
=================================== */
/* REMOVE DEFAULT BODY SPACE */
body {
    margin: 0;
    padding: 0;
}

/* HERO SECTION FULLSCREEN */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* full viewport height */
    overflow: hidden;
}

/* VIDEO FIT PERFECTLY */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 🔥 THIS MAKES IT FIT PERFECTLY */
}

/* DARK OVERLAY */
.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
}

/* ===================================
   CONTACT HERO
=================================== */

.contact-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a, #1e293b, #020617);
}

/* GRADIENT GLOW */

.contact-hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #22c55e33, transparent 70%);
    top: -100px;
    left: -100px;
    filter: blur(80px);
}

.contact-hero::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #2563eb33, transparent 70%);
    bottom: -100px;
    right: -100px;
    filter: blur(80px);
}

/* HERO CONTENT */

.contact-hero-content {
    position: relative;
    max-width: 750px;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-hero span {
    color: #22c55e;
}

.contact-hero p {
    font-size: 18px;
    line-height: 1.7;
    opacity: .9;
    margin-bottom: 30px;
}

/* BUTTONS */

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #22c55e;
    padding: 14px 30px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn-primary:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid white;
    padding: 12px 28px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.btn-outline:hover {
    background: white;
    color: #0f172a;
}

/* PARTICLES LAYER */

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/* ===================================
   CONTACT SECTION
=================================== */

.contact-section{
    padding:90px 8%;
    background:#fff;
}

.contact-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:flex-start;
}

/* LEFT SIDE */

.contact-info{
    position:relative;
}

.contact-info::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    left:-120px;
    top:-120px;
    background:radial-gradient(circle,#22c55e22,transparent);
    filter:blur(90px);
    z-index:-1;
}

.contact-info h2{
    font-size:38px;
    margin-bottom:12px;
    color:#1e293b;
}

.contact-info h2 span{
    color:var(--forest-green);
}

.contact-info>p{
    color:#64748b;
    line-height:1.8;
    margin-bottom:35px;
}

/* CONTACT CARDS */

.contact-cards-vertical{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-card-v{
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:22px 24px;
    border-radius:16px;
    background:#fff;
    border:1px solid #e5e7eb;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.35s;
}

.contact-card-v:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
    border-color:var(--forest-green);
}

.contact-card-v i{
    width:58px;
    height:58px;
    min-width:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:22px;
    background:#22c55e15;
    color:var(--forest-green);
    transition:.35s;
}

.contact-card-v:hover i{
    background:var(--forest-green);
    color:#fff;
    transform:rotate(8deg);
}

.contact-card-v h3{
    margin:0 0 6px;
    font-size:18px;
    font-weight:700;
    color:#1e293b;
}

.contact-card-v p{
    margin:0;
    font-size:15px;
    line-height:1.7;
    color:#64748b;
}

/* CONTACT FORM */

/* =========================================
   CONTACT FORM
========================================= */

.contact-form {
    background: #f8fafc;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}


/* =========================================
   FORM ROW
========================================= */

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
}


/* Each field inside a row */

.form-row > * {
    flex: 1;
    min-width: 0;
}


/* =========================================
   INPUT + TEXTAREA
========================================= */

.contact-form input,
.contact-form textarea {
    display: block;
    width: 100%;
    box-sizing: border-box;

    padding: 14px 16px;

    border: 1px solid #dbe3eb;
    border-radius: 10px;

    background: #ffffff;
    color: #1e293b;

    font-size: 15px;
    font-family: 'Poppins', sans-serif;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


/* Placeholder */

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #94a3b8;
}


/* =========================================
   FOCUS
========================================= */

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;

    border-color: var(--forest-green);

    background: #ffffff;

    box-shadow:
        0 0 0 4px rgba(34, 197, 94, 0.12);
}


/* =========================================
   TEXTAREA
========================================= */

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}


/* =========================================
   FULL WIDTH FIELD
========================================= */

.contact-form .full-width {
    width: 100%;
    margin-bottom: 20px;
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 5px;

    background: var(--forest-green);
    color: #ffffff;

    border: none;

    padding: 14px 30px;

    border-radius: 10px;

    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.contact-submit-btn:hover {
    background: #14532d;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(20, 83, 45, 0.20);
}


.contact-submit-btn:active {
    transform: translateY(0);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .contact-form {
        padding: 25px 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 18px;
        margin-bottom: 18px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 14px;
        padding: 13px 14px;
    }

    .contact-submit-btn {
        width: 100%;
    }

}

/* MAP */

.contact-map {
    margin-top: 80px;
}

.contact-map iframe {
    width: 100%;
    height: 380px;
    border-radius: 16px;
}

/* ================================
FLOATING CONTACT WIDGET
================================ */

.contact-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* MAIN BUTTON */

.contact-main {
    width: 60px;
    height: 60px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
    animation: pulse 2s infinite;
}

/* OPTIONS */

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: .3s;
}

.contact-options.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* BUTTON STYLE */

.contact-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .2);
    transition: .3s;
}

.contact-btn:hover {
    transform: scale(1.1);
}

/* COLORS */

.whatsapp {
    background: #25D366;
}

.call {
    background: #2563eb;
}

.email {
    background: #f59e0b;
}

/* PULSE ANIMATION */

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, .7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* ==============================
   TABLET
============================== */

@media (max-width: 1024px) {

    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form {
        padding: 35px;
    }

    .contact-hero h1 {
        font-size: 40px;
    }

}


/* ==============================
       MOBILE
    ============================== */

@media (max-width: 768px) {

    .contact-hero {
        padding: 120px 20px 80px;
        text-align: center;
    }

    .contact-hero h1 {
        font-size: 30px;
        line-height: 1.3;
    }

    .contact-hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons a {
        width: 100%;
        max-width: 260px;
        margin: auto;
        text-align: center;
    }

    /* CONTACT SECTION */

    .contact-section {
        padding: 70px 20px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* CONTACT INFO */

    .contact-info h2 {
        font-size: 28px;
    }

    .contact-info p {
        font-size: 15px;
    }

    /* CONTACT CARDS */

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-card {
        padding: 25px 20px;
    }

    /* FORM */

    .contact-form {
        padding: 28px;
    }

    .form-row {
        flex-direction: column;
        gap: 12px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 15px;
        padding: 12px 14px;
    }

    .contact-submit-btn {
        width: 100%;
        padding: 14px;
    }

    /* MAP */

    .contact-map {
        margin-top: 50px;
    }

    .contact-map iframe {
        height: 260px;
    }

}


/* ==============================
       SMALL PHONES
    ============================== */

@media (max-width: 480px) {

    .contact-hero h1 {
        font-size: 26px;
    }

    .contact-hero p {
        font-size: 15px;
    }

    .contact-card h3 {
        font-size: 16px;
    }

    .contact-card p {
        font-size: 13px;
    }

    .contact-form {
        padding: 22px;
    }

    .contact-map iframe {
        height: 220px;
    }

}

/* =============================
   JOB TABLE SECTION
============================= */

.jobs-section {
    padding: 40px 10%;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.section-header span {
    color: var(--forest-green);
}

.section-header p {
    color: #666;
}

/* TABLE */

.table-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    background: white;
}

.jobs-table {
    width: 100%;
    min-width: 1000px;
    border-collapse: collapse;
    font-size: 14px;
}

.jobs-table thead {
    background: #111827;
    color: white;
    text-align: center;
}

.jobs-table th,
.jobs-table td {
    padding: 18px 20px;
    text-align: left;
    white-space: nowrap;
}

.jobs-table tbody tr {
    border-bottom: 1px solid #eee;
    transition: .2s;
}

.jobs-table tbody tr:hover {
    background: #f3f4f6;
}

/* APPLY BUTTON */

.apply-btn {
    background: var(--forest-green);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: .3s;
}

.apply-btn:hover {
    background: #14532d;
}

/* PAGINATION */

.pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.page-btn {
    padding: 8px 18px;
    border: none;
    background: #111827;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

.page-btn:hover {
    background: #374151;
}

/* =============================
   LAPTOP (≤1200px)
============================= */

@media (max-width:1200px) {

    .jobs-section {
        padding: 60px 6%;
    }

    .jobs-table {
        min-width: 900px;
    }

    .jobs-table th,
    .jobs-table td {
        padding: 16px 18px;
    }

}


/* =============================
       TABLET (≤992px)
    ============================= */

@media (max-width:992px) {

    .jobs-section {
        padding: 60px 5%;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .jobs-table {
        min-width: 850px;
        font-size: 13px;
    }

    .jobs-table th,
    .jobs-table td {
        padding: 14px 16px;
    }

    .apply-btn {
        padding: 7px 14px;
        font-size: 12px;
    }

}


/* =============================
       MOBILE (≤768px)
    ============================= */

@media (max-width:768px) {

    .jobs-section {
        padding: 50px 20px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .section-header p {
        font-size: 14px;
    }

    .table-wrapper {
        overflow-x: auto;
    }

    /* table scroll for mobile */

    .jobs-table {
        min-width: 720px;
    }

    .jobs-table th,
    .jobs-table td {
        padding: 12px 14px;
        font-size: 12px;
    }

    .apply-btn {
        padding: 6px 12px;
        font-size: 11px;
    }

    .pagination {
        gap: 10px;
        flex-wrap: wrap;
    }

    .page-btn {
        padding: 6px 14px;
        font-size: 12px;
    }

}


/* =============================
       SMALL PHONES (≤480px)
    ============================= */

@media (max-width:480px) {

    .section-header h2 {
        font-size: 22px;
    }

    .jobs-table {
        min-width: 650px;
    }

    .jobs-table th,
    .jobs-table td {
        font-size: 11px;
    }

    .apply-btn {
        padding: 5px 10px;
        font-size: 10px;
    }

}

/* ===================================
   FUTURE OPENINGS CTA
=================================== */

.upload-cv-section {
    padding: 90px 10%;
    background: linear-gradient(135deg, #0f172a, #1e293b, #020617);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

/* GLOW EFFECT */

.upload-cv-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #22c55e33, transparent 70%);
    top: -150px;
    left: -150px;
    filter: blur(100px);
}

.upload-cv-section::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #2563eb33, transparent 70%);
    bottom: -150px;
    right: -150px;
    filter: blur(100px);
}

/* CARD */

.future-cta {
    position: relative;
    z-index: 2;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    padding: 50px 60px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
    max-width: 700px;
    width: 100%;
    transition: .35s;
}

.future-cta:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, .45);
}

/* TEXT */

.future-cta p {
    font-size: 18px;
    color: #d1d5db;
    margin-bottom: 15px;
}

/* CTA LINK */

.future-cta a {
    font-size: 20px;
    font-weight: 600;
    color: #22c55e;
    text-decoration: none;
    display: inline-block;
    transition: .3s;
}

.future-cta a:hover {
    color: #4ade80;
    transform: translateX(6px);
}

/* ===================================
       TABLET
    =================================== */

@media(max-width:900px) {

    .future-cta {
        padding: 40px 35px;
    }

    .future-cta p {
        font-size: 16px;
    }

    .future-cta a {
        font-size: 18px;
    }

}

/* ===================================
       MOBILE
    =================================== */

@media(max-width:600px) {

    .upload-cv-section {
        padding: 70px 20px;
    }

    .future-cta {
        padding: 35px 25px;
    }

    .future-cta p {
        font-size: 15px;
    }

    .future-cta a {
        font-size: 17px;
    }

}

/* ==============================
   APPLICATION FORM
============================== */

/* ==============================
   LIGHT PREMIUM BACKGROUND
============================== */

.application-section {
    padding: 80px 10%;
    background: linear-gradient(135deg, #f0fdf4, #ecfeff, #f8fafc);
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* SOFT GLOW */

.application-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #22c55e22, transparent 70%);
    top: -100px;
    left: -100px;
    filter: blur(80px);
}

.application-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #3b82f622, transparent 70%);
    bottom: -100px;
    right: -100px;
    filter: blur(80px);
}

.app-container {
    width: 100%;
    max-width: 1400px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(14px);
    padding: 50px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 25px 80px rgba(0, 0, 0, .4);
    color: #111827;
}

/* ==============================
   JOB APPLIED INFO
============================== */

.job-applied-info {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-size: 14px;
    color: #065f46;
    box-shadow: 0 5px 20px rgba(34, 197, 94, 0.08);
}

.job-applied-info p {
    margin: 4px 0;
}

.job-applied-info strong {
    color: #047857;
}

.job-applied-info span {
    font-weight: 500;
}

.job-applied-info h3 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 6px;
}

.job-applied-info h3 span {
    color: #ef4444;
    font-weight: 700;
}

/* HEADER */

.app-container h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
}

.app-container h2 span {
    color: var(--forest-green);
}

.app-container p {
    text-align: center;
    color: #454a58;
    margin-bottom: 35px;
}

/* GRID */

.form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

/* FORM GROUP FIX */

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
}

.form-group span {
    color: #ef4444;
}

/* VALIDATION STATES */

.form-group.success input,
.form-group.success select {
    border-color: #22c55e;
}

.form-group.error input,
.form-group.error select {
    border-color: #ef4444;
}

/* ICON */

.form-group i {
    position: absolute;
    right: 12px;
    top: 38px;
    font-size: 14px;
    display: none;
}

.form-group.success i {
    display: block;
    color: #22c55e;
}

.form-group.error i {
    display: block;
    color: #ef4444;
}

/* ERROR TEXT */

.error-msg {
    font-size: 12px;
    color: #ef4444;
    display: none;
    margin-top: 2px;
}

.form-group.error .error-msg {
    display: block;
}

/* INPUTS */

.application-form input,
.application-form select,
.application-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: white;
    color: #111;
    font-size: 14px;
    outline: none;
    transition: .3s;
}

.application-form input::placeholder,
.application-form textarea::placeholder {
    color: #474d5a;
}

.application-form input:focus,
.application-form textarea:focus,
.application-form select:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

/* UPLOAD GRID */

.upload-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.upload-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    border: 1px dashed #e5e7eb;
}

.upload-box label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    color: #474d5a;
}

.upload-box span {
    color: #ef4444;
}

.upload-box input {
    border: none;
    background: transparent;
}

/* BUTTON */

.apply-submit {
    margin-top: 30px;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.apply-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, .4);
}

/* DISABLED STATE */

.apply-submit:disabled {
    background: linear-gradient(135deg, #9ca3af, #6b7280);
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.7;
}

.apply-submit:disabled:hover {
    transform: none;
}

/* ==============================
       TABLET
    ============================== */

@media(max-width:900px) {

    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .upload-grid {
        grid-template-columns: 1fr;
    }

}

/* ==============================
       MOBILE
    ============================== */

@media(max-width:600px) {

    .application-section {
        padding: 60px 20px;
    }

    .app-container {
        padding: 30px 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

}

/* ==============================
   CLIENTS SECTION
============================== */

.clients-section {
    padding: 40px 10%;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    text-align: center;
}

.clients-section h2 {
    text-align: center;
    margin-bottom: 10px;
}

.clients-section h2 span {
    color: var(--accent-dark);
}

/* GRID */

/* ===========================
   CLIENTS
=========================== */

.clients-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    margin-top:45px;
}

.client-card{
    position:relative;
    background:#fff;
    border-radius:16px;
    padding:25px;
    border:1px solid #ececec;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
    height:180px;
    transition:all .35s ease;
}

.client-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.client-logo{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
    height:100%;
}

.client-logo img{
    max-width:160px;
    max-height:80px;
    width:auto;
    height:auto;
    object-fit:contain;
    transition:.35s;
}

.client-card:hover .client-logo img{
    transform:scale(.92);
    filter:blur(2px) brightness(.45);
}

/* Overlay */

.client-overlay{
    position:absolute;
    inset:0;
    background:rgba(15,23,42,.75);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;

    opacity:0;
    visibility:hidden;
    transition:.35s ease;
}

.client-card:hover .client-overlay{
    opacity:1;
    visibility:visible;
}

.client-overlay h4{
    color:#fff;
    font-size:18px;
    font-weight:700;
    margin-bottom:8px;
}

.client-overlay span{
    color:#dbeafe;
    font-size:14px;
    display:flex;
    align-items:center;
    gap:6px;
}

.client-overlay i{
    color:#38bdf8;
}

/* ===========================
   TABLET
=========================== */

@media (max-width:992px){

    .clients-grid{
        grid-template-columns:repeat(3,1fr);
        gap:20px;
    }

    .client-card{
        height:165px;
        padding:20px;
    }

    .client-logo img{
        max-width:130px;
        max-height:65px;
    }

    .client-overlay h4{
        font-size:16px;
    }

    .client-overlay span{
        font-size:13px;
    }
}

/* ===========================
   MOBILE
=========================== */

@media (max-width:768px){

    .clients-grid{
        grid-template-columns:repeat(2,1fr);
        gap:16px;
    }

    .client-card{
        height:145px;
        padding:15px;
        border-radius:12px;
    }

    .client-logo img{
        max-width:100px;
        max-height:55px;
    }

    .client-overlay{
        padding:12px;
    }

    .client-overlay h4{
        font-size:14px;
        margin-bottom:5px;
    }

    .client-overlay span{
        font-size:12px;
    }
}

/* ===========================
   SMALL MOBILE
=========================== */

@media (max-width:480px){

    .clients-grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .client-card{
        height:125px;
        padding:10px;
    }

    .client-logo img{
        max-width:85px;
        max-height:45px;
    }

    .client-overlay{
        padding:10px;
    }

    .client-overlay h4{
        font-size:12px;
        line-height:1.3;
    }

    .client-overlay span{
        font-size:10px;
    }

    .client-overlay i{
        font-size:10px;
    }
}

/* =========================================================
   UNIVERSAL PUBLIC TOAST SYSTEM
========================================================= */

#publicToastContainer {

    position: fixed;

    top: 24px;
    right: 24px;

    z-index: 99999;

    width: min(
        390px,
        calc(100vw - 32px)
    );

    display: flex;

    flex-direction: column;

    gap: 12px;

    pointer-events: none;

}


/* =========================================================
   TOAST
========================================================= */

.public-toast {

    position: relative;

    width: 100%;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 16px 18px;

    background: rgba(255, 255, 255, 0.96);

    border: 1px solid #e2e8f0;

    border-radius: 16px;

    box-shadow:
        0 20px 45px rgba(15, 23, 42, 0.12),
        0 5px 15px rgba(15, 23, 42, 0.06);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    overflow: hidden;

    pointer-events: auto;

    transform:
        translateX(120%);

    opacity: 0;

    animation:
        publicToastSlideIn
        0.45s cubic-bezier(
            0.22,
            1,
            0.36,
            1
        )
        forwards;

}


/* =========================================================
   ICON
========================================================= */

.toast-icon {

    flex-shrink: 0;

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    font-size: 17px;

}


/* =========================================================
   CONTENT
========================================================= */

.toast-content {

    flex: 1;

    min-width: 0;

}


.toast-title {

    font-size: 13px;

    font-weight: 700;

    color: #0f172a;

    line-height: 1.3;

    margin-bottom: 3px;

}


.toast-message {

    font-size: 12px;

    line-height: 1.5;

    color: #64748b;

    word-break: break-word;

}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.toast-close {

    flex-shrink: 0;

    width: 28px;
    height: 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: none;

    background: transparent;

    color: #94a3b8;

    border-radius: 8px;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;

}


.toast-close:hover {

    background: #f1f5f9;

    color: #334155;

}


/* =========================================================
   SUCCESS
========================================================= */

.toast-success {

    border-color: #a7f3d0;

}


.toast-success .toast-icon {

    background: #ecfdf5;

    color: #10b981;

}


/* =========================================================
   ERROR
========================================================= */

.toast-error {

    border-color: #fecaca;

}


.toast-error .toast-icon {

    background: #fef2f2;

    color: #ef4444;

}


/* =========================================================
   WARNING
========================================================= */

.toast-warning {

    border-color: #fde68a;

}


.toast-warning .toast-icon {

    background: #fffbeb;

    color: #f59e0b;

}


/* =========================================================
   INFO
========================================================= */

.toast-info {

    border-color: #bfdbfe;

}


.toast-info .toast-icon {

    background: #eff6ff;

    color: #3b82f6;

}


/* =========================================================
   PROGRESS BAR
========================================================= */

.toast-progress {

    position: absolute;

    left: 0;
    bottom: 0;

    height: 3px;

    width: 100%;

    transform-origin: left;

    animation:
        publicToastProgress
        4.5s
        linear
        forwards;

}


.toast-success .toast-progress {

    background: #10b981;

}


.toast-error .toast-progress {

    background: #ef4444;

}


.toast-warning .toast-progress {

    background: #f59e0b;

}


.toast-info .toast-progress {

    background: #3b82f6;

}


/* =========================================================
   EXIT ANIMATION
========================================================= */

.public-toast.toast-exit {

    animation:
        publicToastSlideOut
        0.35s
        cubic-bezier(
            0.4,
            0,
            1,
            1
        )
        forwards;

}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes publicToastSlideIn {

    from {

        opacity: 0;

        transform:
            translateX(120%)
            scale(0.96);

    }

    to {

        opacity: 1;

        transform:
            translateX(0)
            scale(1);

    }

}


@keyframes publicToastSlideOut {

    from {

        opacity: 1;

        transform:
            translateX(0)
            scale(1);

    }

    to {

        opacity: 0;

        transform:
            translateX(120%)
            scale(0.96);

    }

}


@keyframes publicToastProgress {

    from {

        transform:
            scaleX(1);

    }

    to {

        transform:
            scaleX(0);

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

    #publicToastContainer {

        top: 16px;

        right: 16px;

        left: 16px;

        width: auto;

    }


    .public-toast {

        padding: 14px 15px;

        border-radius: 14px;

    }


    .toast-icon {

        width: 36px;
        height: 36px;

        border-radius: 10px;

        font-size: 15px;

    }


    .toast-title {

        font-size: 12px;

    }


    .toast-message {

        font-size: 11px;

    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .public-toast {

        animation: none;

        opacity: 1;

        transform: none;

    }

    .toast-progress {

        animation: none;

    }

}