:root {
            --primary: #2563eb;
            --primary-light: #3b82f6;
            --primary-dark: #1d4ed8;
            --secondary: #7c3aed;
            --accent: #06b6d4;
            --success: #10b981;
            --warning: #f59e0b;
            --danger: #ef4444;
            --dark: #0f172a;
            --gray-900: #1e293b;
            --gray-800: #334155;
            --gray-700: #475569;
            --gray-600: #64748b;
            --gray-500: #94a3b8;
            --gray-400: #cbd5e1;
            --gray-300: #e2e8f0;
            --gray-200: #f1f5f9;
            --gray-100: #f8fafc;
            --white: #ffffff;
            --gradient-1: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
            --gradient-2: linear-gradient(135deg, #06b6d4 0%, #2563eb 100%);
            --gradient-3: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
            --gradient-4: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
            --gradient-5: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--gray-800);
            background: var(--white);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

        /* ===== WELCOME SLIDER SECTION ===== */
        .welcome-section {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--white);
            opacity: 1;
            visibility: visible;
            transition: all 0.5s ease;
            max-width: 100vw;
            overflow-x: hidden;
        }

        .welcome-section.hidden {
            opacity: 0;
            visibility: hidden;
            z-index: -1;
        }

        .welcome-container {
            width: 100%;
            height: 100%;
            position: relative;
            max-width: 100vw;
            overflow-x: hidden;
        }

        .swiper {
            max-width: 100vw;
            overflow-x: hidden;
        }

        .swiper-wrapper {
            display: flex;
            max-width: 100vw;
        }

        .swiper-slide {
            width: 100%;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            max-width: 100vw;
        }

        /* Slide Backgrounds */
        .slide-1 {
            background-image: url("bg.avif");
            background-size: cover;
            background-position: center;
        }

        .slide-2 {
            background-image: url("bg.avif");
            background-size: cover;
            background-position: center;
        }

        .slide-3 {
            background-image: url("bg.avif");
            background-size: cover;
            background-position: center;
        }

        .slide-4 {
            background-image: url("bg.avif");
            background-size: cover;
            background-position: center;
        }

        .slide-content {
            text-align: center;
            color: white;
            z-index: 10;
            padding: 40px;
            animation: slideInContent 0.8s ease forwards;
            max-width: 100%;
        }

        @keyframes slideInContent {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .slide-icon {
            font-size: 5rem;
            margin-bottom: 30px;
            animation: bounceIcon 1.5s ease-in-out infinite;
        }

        @keyframes bounceIcon {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        .slide-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            letter-spacing: -1px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .slide-subtitle {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.95;
            line-height: 1.8;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .slide-features {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.2);
            padding: 12px 20px;
            border-radius: 50px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .feature-item i {
            font-size: 1.2rem;
        }

        /* Slide Decorations */
        .slide-decoration {
            position: absolute;
            opacity: 0.1;
            pointer-events: none;
        }

        .decoration-1 {
            width: 400px;
            height: 400px;
            background: white;
            border-radius: 50%;
            top: -50px;
            right: -100px;
            animation: float 6s ease-in-out infinite;
        }

        .decoration-2 {
            width: 300px;
            height: 300px;
            background: white;
            border-radius: 30%;
            bottom: -50px;
            left: -100px;
            animation: float 8s ease-in-out infinite reverse;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(20px);
            }
        }

        /* Swiper Navigation */
        .swiper-pagination {
            bottom: 30px !important;
        }

        .swiper-pagination-bullet {
            background: rgba(255, 255, 255, 0.6) !important;
            width: 12px !important;
            height: 12px !important;
            transition: all 0.3s ease;
        }

        .swiper-pagination-bullet-active {
            background: white !important;
            width: 30px !important;
            border-radius: 10px !important;
        }

        .swiper-button-next,
        .swiper-button-prev {
            background: rgb(255, 254, 254);
            width: 50px;
            height: 50px;
            color: black;
            border-radius: 50%;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            transition: all 0.3s ease;
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: rgba(255, 255, 255, 0.993);
            border-color: white;
        }

        .swiper-button-next::after,
        .swiper-button-prev::after {
            font-size: 1.2rem;
            color: rgb(0, 0, 0);
        }

        .welcome-skip-btn {
            position: absolute;
            top: 30px;
            right: 30px;
            background: rgba(247, 244, 244, 0.96);
            color: rgb(5, 4, 4);
            border: 1px solid rgba(255, 255, 255, 0.5);
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 640;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            z-index: 100;
            height: 70px;
            width: 110px;
        }

        .welcome-skip-btn:hover {
            background: rgba(255, 255, 255, 0.5);
            border-color: white;
            transform: translateY(-2px);
        }

        .welcome-progress {
            position: absolute;
            top: 0;
            left: 0;
            height: 3px;
            background: white;
            width: 0%;
            animation: progress 20s linear;
        }

        @keyframes progress {
            0% {
                width: 0%;
            }

            100% {
                width: 100%;
            }
        }

        /* ===== MODERN NAVBAR ===== */
        .navbar {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-bottom: 1px solid transparent;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1050;
            width: 100%;
        }

        .navbar.scrolled {
            box-shadow: var(--shadow-lg);
            border-bottom: 1px solid var(--gray-200);
        }

        .navbar .container {
            padding: 0.875rem 1.5rem;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
            padding: 0;
            margin: 0;
        }

        .logo-icon {
            width: 48px;
            height: 48px;
            background: var(--gradient-1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .logo-icon img {
            width: 100%;
            height: 100%;
            /* object-fit: cover; */
            border-radius: 14px;
        }

        .logo-icon:hover {
            transform: scale(1.05) rotate(-2deg);
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
            letter-spacing: -0.5px;
            line-height: 1;
        }

        .logo-subtitle {
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 2px;
        }

        .navbar-toggler {
            border: none;
            padding: 8px;
            border-radius: 10px;
            background: var(--gray-100);
            transition: all 0.3s ease;
        }

        .navbar-toggler:focus {
            box-shadow: none;
            background: var(--gray-200);
        }

        .navbar-nav {
            gap: 0.25rem;
            align-items: center;
        }

        .nav-link {
            color: var(--gray-700) !important;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.625rem 1.125rem !important;
            border-radius: 10px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 6px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--gradient-1);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: calc(100% - 24px);
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary) !important;
            background: rgba(37, 99, 235, 0.05);
        }

        .nav-cta {
            background: var(--gradient-1) !important;
            color: white !important;
            padding: 0.75rem 1.5rem !important;
            border-radius: 12px;
            font-weight: 600;
            box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
            transition: all 0.3s ease;
            margin-left: 0.5rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-cta::after {
            display: none;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
            background: var(--gradient-1) !important;
        }

        /* ===== HERO SECTION ===== */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 140px 0 100px;
            background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 150%;
            background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -20%;
            width: 60%;
            height: 100%;
            background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: white;
            padding: 10px 20px;
            border-radius: 100px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--primary);
            box-shadow: var(--shadow-md);
            border: 1px solid var(--gray-200);
            margin-bottom: 24px;
            animation: float 3s ease-in-out infinite;
        }

        .hero-badge i {
            color: var(--warning);
        }

        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 24px;
            letter-spacing: -1px;
            line-height: 1.1;
        }

        .hero-title .highlight {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--gray-600);
            margin-bottom: 32px;
            line-height: 1.7;
            max-width: 600px;
        }

        .hero-features {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 40px;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            background: white;
            padding: 12px 20px;
            border-radius: 12px;
            font-weight: 500;
            color: var(--gray-700);
            box-shadow: var(--shadow);
            border: 1px solid var(--gray-200);
            transition: all 0.3s ease;
        }

        .hero-feature:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .hero-feature i {
            color: var(--success);
            font-size: 1.1rem;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .btn-hero-primary {
            background: var(--gradient-1);
            color: white;
            padding: 16px 32px;
            border-radius: 14px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
            transition: all 0.3s ease;
            border: none;
        }

        .btn-hero-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.45);
            color: white;
        }

        .btn-hero-secondary {
            background: white;
            color: var(--gray-700);
            padding: 16px 32px;
            border-radius: 14px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: var(--shadow-md);
            border: 2px solid var(--gray-200);
            transition: all 0.3s ease;
        }

        .btn-hero-secondary:hover {
            transform: translateY(-3px);
            border-color: var(--primary);
            color: var(--primary);
        }

        .hero-image {
            position: relative;
        }

        .hero-image-main {
            border-radius: 24px;
            box-shadow: var(--shadow-xl);
            width: 100%;
            max-width: 550px;
            transform: perspective(1000px) rotateY(-5deg);
            transition: all 0.5s ease;
        }

        .hero-image-main:hover {
            transform: perspective(1000px) rotateY(0deg);
        }

        .floating-card {
            position: absolute;
            background: white;
            padding: 20px 24px;
            border-radius: 16px;
            box-shadow: var(--shadow-xl);
            display: flex;
            align-items: center;
            gap: 14px;
            animation: floatCard 4s ease-in-out infinite;
        }

        @keyframes floatCard {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .floating-card.card-1 {
            top: 10%;
            right: -30px;
            animation-delay: 0s;
        }

        .floating-card.card-2 {
            bottom: 15%;
            left: -30px;
            animation-delay: 1s;
        }

        .floating-card-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
        }

        .floating-card-text h5 {
            font-size: 1rem;
            color: var(--dark);
            margin-bottom: 2px;
        }

        .floating-card-text p {
            font-size: 0.85rem;
            color: var(--gray-500);
            margin: 0;
        }

        /* ===== PORTAL SECTION ===== */
        .portal-section {
            padding: 100px 0;
            background: var(--white);
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gray-100);
            color: var(--primary);
            padding: 8px 18px;
            border-radius: 100px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .section-description {
            font-size: 1.125rem;
            color: var(--gray-600);
            max-width: 700px;
            margin: 0 auto 50px;
            line-height: 1.7;
        }

        .portal-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .portal-card {
            background: white;
            border-radius: 24px;
            padding: 40px 35px;
            border: 2px solid var(--gray-200);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .portal-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-1);
            transform: scaleX(0);
            transition: all 0.4s ease;
        }

        .portal-card:hover::before {
            transform: scaleX(1);
        }

        .portal-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary);
        }

        .portal-icon {
            width: 90px;
            height: 90px;
            background: var(--gradient-1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 28px;
            box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
            transition: all 0.4s ease;
        }

        .portal-card:hover .portal-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
        }

        .portal-icon i {
            font-size: 2.5rem;
            color: white;
        }

        .portal-card h3 {
            font-size: 1.5rem;
            color: var(--dark);
            margin-bottom: 14px;
        }

        .portal-card p {
            color: var(--gray-600);
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 28px;
        }

        .portal-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--gray-100);
            color: var(--primary);
            padding: 14px 28px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .portal-link:hover {
            background: var(--primary);
            color: white;
            transform: translateX(5px);
            box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
        }

        .portal-link i {
            transition: all 0.3s ease;
        }

        .portal-link:hover i {
            transform: translateX(5px);
        }

        /* ===== WHY CHOOSE SECTION ===== */
        .why-section {
            padding: 100px 0;
            background: var(--gray-100);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .why-card {
            background: white;
            border-radius: 20px;
            padding: 32px 28px;
            border: 2px solid var(--gray-200);
            transition: all 0.3s ease;
            display: flex;
            gap: 20px;
        }

        .why-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .why-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
        }

        .why-icon i {
            font-size: 1.5rem;
            color: white;
        }

        .why-content h4 {
            font-size: 1.2rem;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .why-content p {
            color: var(--gray-600);
            font-size: 0.95rem;
            margin: 0;
            line-height: 1.6;
        }

        /* ===== SERVICES SECTION ===== */
        .services-section {
            padding: 100px 0;
            background: var(--white);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            border-radius: 24px;
            padding: 40px 35px;
            border: 2px solid var(--gray-200);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-1);
            opacity: 0;
            transition: all 0.4s ease;
            z-index: 0;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: transparent;
        }

        .service-card:hover * {
            position: relative;
            z-index: 1;
        }

        .service-card:hover .service-icon {
            background: white;
            color: var(--primary);
        }

        .service-card:hover .service-icon i {
            color: var(--primary);
        }

        .service-card:hover h3,
        .service-card:hover p,
        .service-card:hover li {
            color: white;
        }

        .service-card:hover li i {
            color: #a7f3d0;
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-1);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
            transition: all 0.4s ease;
        }

        .service-icon i {
            font-size: 1.8rem;
            color: white;
            transition: all 0.4s ease;
        }

        .service-card h3 {
            font-size: 1.4rem;
            color: var(--dark);
            margin-bottom: 14px;
            transition: all 0.4s ease;
        }

        .service-card>p {
            color: var(--gray-600);
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 20px;
            transition: all 0.4s ease;
        }

        .service-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .service-card ul li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            color: var(--gray-700);
            font-size: 0.95rem;
            border-bottom: 1px solid var(--gray-200);
            transition: all 0.4s ease;
        }

        .service-card:hover ul li {
            border-color: rgba(255, 255, 255, 0.2);
        }

        .service-card ul li:last-child {
            border-bottom: none;
        }

        .service-card ul li i {
            color: var(--success);
            font-size: 1rem;
            transition: all 0.4s ease;
        }

        /* ===== ABOUT SECTION ===== */
        .about-section {
            padding: 100px 0;
            background: var(--gray-100);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 60px;
        }

        .about-text h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 24px;
        }

        .about-text p {
            color: var(--gray-600);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 24px;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            border-radius: 24px;
            box-shadow: var(--shadow-xl);
            width: 100%;
        }

        .about-stats {
            position: absolute;
            bottom: -30px;
            right: -30px;
            background: white;
            padding: 24px 32px;
            border-radius: 20px;
            box-shadow: var(--shadow-xl);
            text-align: center;
        }

        .about-stats h4 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 4px;
        }

        .about-stats p {
            color: var(--gray-600);
            font-size: 0.9rem;
            margin: 0;
        }

        .disciplines-section {
            margin-top: 40px;
        }

        .disciplines-title {
            font-size: 1.5rem;
            color: var(--dark);
            margin-bottom: 24px;
            text-align: center;
        }

        .disciplines-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
        }

        .discipline-tag {
            background: white;
            border: 2px solid var(--gray-200);
            padding: 12px 22px;
            border-radius: 100px;
            font-weight: 500;
            color: var(--gray-700);
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .discipline-tag:hover {
            border-color: var(--primary);
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
        }

        /* ===== VISION MISSION ===== */
        .vm-section {
            padding: 100px 0;
            background: var(--white);
        }

        .vm-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .vm-card {
            background: var(--gradient-1);
            border-radius: 24px;
            padding: 50px 45px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .vm-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
            pointer-events: none;
        }

        .vm-card.secondary {
            background: var(--gradient-3);
        }

        .vm-card h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .vm-card h3 i {
            font-size: 2rem;
        }

        .vm-card p {
            font-size: 1.1rem;
            line-height: 1.8;
            opacity: 0.95;
        }

        .vm-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .vm-card ul li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 1.05rem;
        }

        .vm-card ul li:last-child {
            border-bottom: none;
        }

        .vm-card ul li i {
            color: #a7f3d0;
            font-size: 1.2rem;
            margin-top: 3px;
        }

        /* ===== STATS SECTION ===== */
        .stats-section {
            padding: 80px 0;
            background: var(--gradient-1);
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=2071') center/cover;
            opacity: 0.1;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .stat-item {
            text-align: center;
            color: white;
        }

        .stat-icon {
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            backdrop-filter: blur(10px);
        }

        .stat-icon i {
            font-size: 1.8rem;
        }

        .stat-number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
            font-weight: 500;
        }

        /* ===== TRAINING SECTION ===== */
        .training-section {
            padding: 100px 0;
            background: var(--gray-100);
        }

        .training-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
        }

        .training-card {
            background: white;
            border-radius: 20px;
            padding: 35px 30px;
            border: 2px solid var(--gray-200);
            text-align: center;
            transition: all 0.3s ease;
        }

        .training-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .training-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
        }

        .training-icon i {
            font-size: 1.8rem;
            color: white;
        }

        .training-card h4 {
            font-size: 1.25rem;
            color: var(--dark);
            margin-bottom: 12px;
        }

        .training-card p {
            color: var(--gray-600);
            font-size: 0.95rem;
            margin: 0;
            line-height: 1.6;
        }

        /* ===== CONTACT SECTION ===== */
        .contact-section {
            padding: 100px 0;
            background: var(--white);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 50px;
            margin-top: 50px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-card {
            display: flex;
            gap: 20px;
            background: var(--gray-100);
            padding: 28px;
            border-radius: 20px;
            border: 2px solid var(--gray-200);
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            transform: translateX(8px);
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
        }

        .contact-icon {
            width: 56px;
            height: 56px;
            background: var(--gradient-1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
        }

        .contact-icon i {
            font-size: 1.4rem;
            color: white;
        }

        .contact-details h5 {
            font-size: 1.15rem;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .contact-details p {
            color: var(--gray-600);
            margin: 0;
            line-height: 1.6;
        }

        .contact-details a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .contact-details a:hover {
            color: var(--primary-dark);
        }

        .map-container {
            border-radius: 24px;
            overflow: hidden;
            border: 2px solid var(--gray-200);
            height: 100%;
            min-height: 450px;
            box-shadow: var(--shadow-lg);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* ===== FOOTER ===== */
        footer {
            background: var(--dark);
            color: white;
            padding: 70px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-brand .logo-icon {
            margin-bottom: 20px;
        }

        .footer-brand p {
            color: var(--gray-400);
            line-height: 1.8;
            margin-bottom: 24px;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-links a {
            width: 46px;
            height: 46px;
            background: var(--gray-800);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-4px);
            box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
        }

        .footer-section h4 {
            font-size: 1.2rem;
            margin-bottom: 24px;
            color: white;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-section ul li {
            margin-bottom: 14px;
        }

        .footer-section ul li a {
            color: var(--gray-400);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-section ul li a:hover {
            color: white;
            padding-left: 8px;
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: var(--gray-400);
            margin-bottom: 16px !important;
        }

        .footer-contact li i {
            color: var(--primary);
            margin-top: 4px;
        }

        .footer-bottom {
            border-top: 1px solid var(--gray-800);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-bottom p {
            color: var(--gray-500);
            margin: 0;
        }

        .footer-links {
            display: flex;
            gap: 24px;
        }

        .footer-links a {
            color: var(--gray-500);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
        }

        /* ===== SCROLL TO TOP ===== */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 54px;
            height: 54px;
            background: var(--gradient-1);
            border-radius: 14px;
            display: none;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
            transition: all 0.3s ease;
            z-index: 1000;
            font-size: 1.2rem;
        }

        .scroll-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(37, 99, 235, 0.5);
        }

        .scroll-top.show {
            display: flex;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1200px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 992px) {
            .logo-subtitle {
                display: none;
            }

            .logo-title {
                font-size: 1.3rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .vm-grid {
                grid-template-columns: 1fr;
            }

            .hero-image {
                display: none;
            }

            .floating-card {
                display: none;
            }

            /* Welcome Slider Mobile */
            .slide-content {
                padding: 30px 20px;
            }

            .slide-title {
                font-size: 2.2rem;
                margin-bottom: 20px;
            }

            .slide-subtitle {
                font-size: 1.05rem;
                margin-bottom: 25px;
            }

            .slide-icon {
                font-size: 4rem;
                margin-bottom: 25px;
            }

            .slide-features {
                gap: 12px;
                margin-top: 25px;
            }

            .feature-item {
                padding: 10px 18px;
                font-size: 0.9rem;
            }

            .welcome-skip-btn {
                padding: 10px 24px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 768px) {
            /* Navbar Mobile */
            .navbar .container {
                padding: 0.75rem 1rem;
            }

            .navbar-collapse {
                background: white;
                margin-top: 15px;
                padding: 20px;
                border-radius: 16px;
                box-shadow: var(--shadow-lg);
            }

            .nav-cta {
                margin-left: 0;
                margin-top: 10px;
                width: 100%;
                justify-content: center;
            }

            /* Hero Section Mobile */
            .hero-section {
                padding: 100px 0 60px;
                min-height: auto;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .hero-features {
                gap: 10px;
            }

            .hero-feature {
                font-size: 0.9rem;
                padding: 10px 16px;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn-hero-primary,
            .btn-hero-secondary {
                width: 100%;
                justify-content: center;
            }

            /* Sections Mobile */
            .section-title {
                font-size: 1.8rem;
            }

            .section-description {
                font-size: 1rem;
            }

            .portal-grid,
            .services-grid {
                grid-template-columns: 1fr;
            }

            .why-card {
                flex-direction: column;
                text-align: center;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .stats-section {
                padding: 60px 0;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            /* Welcome Slider Tablet/Mobile */
            .welcome-section {
                overflow-x: hidden;
            }

            .swiper-slide {
                height: 100vh;
                width: 100vw;
                padding: 0 15px;
            }

            .slide-content {
                padding: 20px 15px;
                max-width: 100%;
                width: 100%;
            }

            .slide-title {
                font-size: 1.9rem;
                margin-bottom: 16px;
                line-height: 1.2;
            }

            .slide-subtitle {
                font-size: 1rem;
                margin-bottom: 20px;
                padding: 0 10px;
            }

            .slide-icon {
                font-size: 3.5rem;
                margin-bottom: 20px;
            }

            .slide-icon img {
                width: 100px;
                height: 100px;
            }

            .slide-features {
                flex-direction: column;
                gap: 10px;
                margin-top: 20px;
                width: 100%;
                max-width: 350px;
                margin-left: auto;
                margin-right: auto;
            }

            .feature-item {
                width: 100%;
                justify-content: center;
                padding: 12px 20px;
                font-size: 0.9rem;
            }

            .feature-item i {
                font-size: 1.1rem;
            }

            /* Swiper Navigation Mobile */
            .swiper-button-next,
            .swiper-button-prev {
                width: 40px;
                height: 40px;
            }

            .swiper-button-next::after,
            .swiper-button-prev::after {
                font-size: 1rem;
            }

            .swiper-button-prev {
                left: 10px;
            }

            .swiper-button-next {
                right: 10px;
            }

            .swiper-pagination {
                bottom: 20px !important;
            }

            .swiper-pagination-bullet {
                width: 10px !important;
                height: 10px !important;
            }

            .swiper-pagination-bullet-active {
                width: 25px !important;
            }

            /* Decorations Mobile */
            .decoration-1,
            .decoration-2 {
                display: none;
            }

            /* Skip button Mobile */
            .welcome-skip-btn {
                top: 15px;
                right: 15px;
                padding: 10px 20px;
                font-size: 0.85rem;
            }

            /* Link buttons in slides Mobile */
            .slide-content a {
                padding: 12px 24px !important;
                font-size: 0.95rem !important;
                margin-top: 20px !important;
            }
        }

        @media (max-width: 576px) {
            /* Logo Mobile */
            .logo-icon {
                width: 40px;
                height: 40px;
            }

            .logo-title {
                font-size: 1.2rem;
            }

            /* Hero Mobile */
            .hero-section {
                padding: 90px 0 50px;
            }

            .hero-title {
                font-size: 1.8rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .hero-badge {
                font-size: 0.85rem;
                padding: 8px 16px;
            }

            /* Portal Cards Mobile */
            .portal-card {
                padding: 30px 20px;
            }

            .portal-icon {
                width: 70px;
                height: 70px;
            }

            .portal-icon i {
                font-size: 2rem;
            }

            /* Service Cards Mobile */
            .service-card {
                padding: 30px 20px;
            }

            /* About Stats Mobile */
            .about-stats {
                position: static;
                margin-top: 20px;
            }

            /* VM Cards Mobile */
            .vm-card {
                padding: 35px 25px;
            }

            .vm-card h3 {
                font-size: 1.5rem;
                flex-direction: column;
                text-align: center;
            }

            /* Training Cards Mobile */
            .training-card {
                padding: 25px 20px;
            }

            /* Contact Cards Mobile */
            .contact-card {
                padding: 20px;
            }

            /* Scroll to Top Mobile */
            .scroll-top {
                bottom: 20px;
                right: 20px;
                width: 48px;
                height: 48px;
            }

            /* Welcome Slider Small Mobile */
            .slide-content {
                padding: 15px 10px;
            }

            .slide-title {
                font-size: 1.6rem;
                margin-bottom: 14px;
            }

            .slide-subtitle {
                font-size: 0.95rem;
                margin-bottom: 18px;
                padding: 0 5px;
                line-height: 1.6;
            }

            .slide-icon {
                font-size: 3rem;
                margin-bottom: 18px;
            }

            .slide-icon img {
                width: 85px;
                height: 85px;
            }

            .slide-features {
                gap: 8px;
                margin-top: 18px;
                max-width: 100%;
                padding: 0 10px;
            }

            .feature-item {
                padding: 10px 16px;
                font-size: 0.85rem;
            }

            .feature-item i {
                font-size: 1rem;
            }

            /* Swiper Navigation Small Mobile */
            .swiper-button-next,
            .swiper-button-prev {
                width: 35px;
                height: 35px;
            }

            .swiper-button-next::after,
            .swiper-button-prev::after {
                font-size: 0.9rem;
            }

            .swiper-button-prev {
                left: 5px;
            }

            .swiper-button-next {
                right: 5px;
            }

            .swiper-pagination {
                bottom: 15px !important;
            }

            .swiper-pagination-bullet {
                width: 8px !important;
                height: 8px !important;
                margin: 0 3px !important;
            }

            .swiper-pagination-bullet-active {
                width: 20px !important;
            }

            .welcome-skip-btn {
                top: 10px;
                right: 10px;
                padding: 8px 16px;
                font-size: 0.8rem;
            }

            /* Slide link buttons Small Mobile */
            .slide-content a {
                padding: 10px 20px !important;
                font-size: 0.9rem !important;
                margin-top: 15px !important;
                white-space: normal !important;
                text-align: center;
            }

            .slide-content a i {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 400px) {
            .slide-title {
                font-size: 1.4rem;
            }

            .slide-subtitle {
                font-size: 0.9rem;
            }

            .slide-icon {
                font-size: 2.5rem;
            }

            .slide-icon img {
                width: 75px;
                height: 75px;
            }

            .feature-item {
                padding: 8px 14px;
                font-size: 0.8rem;
            }

            .slide-content a {
                padding: 9px 18px !important;
                font-size: 0.85rem !important;
            }

            .welcome-skip-btn {
                padding: 7px 14px;
                font-size: 0.75rem;
            }

            .hero-title {
                font-size: 1.6rem;
            }

            .section-title {
                font-size: 1.6rem;
            }
        }

        /* Landscape orientation on mobile */
        @media (max-height: 600px) and (orientation: landscape) {
            .slide-content {
                padding: 10px 15px;
            }

            .slide-icon {
                font-size: 2.5rem;
                margin-bottom: 8px;
            }

            .slide-icon img {
                width: 60px;
                height: 60px;
            }

            .slide-title {
                font-size: 1.3rem;
                margin-bottom: 8px;
            }

            .slide-subtitle {
                font-size: 0.85rem;
                margin-bottom: 10px;
            }

            .slide-features {
                margin-top: 10px;
                gap: 6px;
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
            }

            .feature-item {
                padding: 6px 12px;
                font-size: 0.75rem;
            }

            .swiper-pagination {
                bottom: 10px !important;
            }

            .welcome-skip-btn {
                top: 8px;
                right: 8px;
                padding: 6px 12px;
                font-size: 0.7rem;
            }

            .slide-content a {
                padding: 8px 16px !important;
                font-size: 0.8rem !important;
                margin-top: 10px !important;
            }
        }

        /* Prevent horizontal overflow */
        body,
        html,
        .welcome-section,
        .welcome-container,
        .swiper,
        .swiper-wrapper,
        .swiper-slide {
            max-width: 100vw;
            overflow-x: hidden;
        }