        :root {
            --primary: #4361ee;
            --primary-light: #4895ef;
            --primary-dark: #3a0ca3;
            --secondary: #f72585;
            --accent: #4cc9f0;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --light-gray: #e9ecef;
            --success: #4bb543;
            --gradient: linear-gradient(135deg, var(--primary), var(--primary-light));
            --gradient-secondary: linear-gradient(135deg, var(--secondary), #b5179e);
            --primary: #0EA5E9;
            --primary-dark: #0284C7;
            --primary-light: #38BDF8;
            --secondary: #06B6D4;
            --accent: #F59E0B;
            --dark: #0F172A;
            --gray: #64748B;
            --light: #F1F5F9;
            --white: #FFFFFF;
            --gradient: linear-gradient(135deg, #0EA5E9 0%, #06B6D4 100%);
            --gradient-alt: linear-gradient(135deg, #38BDF8 0%, #0EA5E9 100%);
            --shadow-sm: 0 2px 8px rgba(14, 165, 233, 0.1);
            --shadow-md: 0 4px 16px rgba(14, 165, 233, 0.15);
            --shadow-lg: 0 8px 32px rgba(14, 165, 233, 0.2);
            --radius: 16px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

        }

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

        body {
            font-family: 'Figtree', sans-serif;
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes slide-up {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        @keyframes fade-in {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slide-in-right {
            from { transform: translateX(100px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        @keyframes morph {
            0% { border-radius: 60% 40% 30% 70%/60% 30% 70% 40%; }
            50% { border-radius: 30% 60% 70% 40%/50% 60% 30% 60%; }
            100% { border-radius: 60% 40% 30% 70%/60% 30% 70% 40%; }
        }

        .animate-float { animation: float 6s ease-in-out infinite; }
        .animate-slide-up { animation: slide-up 0.8s ease-out forwards; }
        .animate-pulse { animation: pulse 3s infinite; }
        .animate-fade-in { animation: fade-in 1s ease-out forwards; }
        .animate-slide-in-right { animation: slide-in-right 0.8s ease-out forwards; }
        .animate-morph { animation: morph 8s ease-in-out infinite; }

        /* Button Styles */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 700;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            border: none;
            font-size: 16px;
            position: relative;
            overflow: hidden;
            text-decoration: none;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.7s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--gradient);
            color: white;
            box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(67, 97, 238, 0.4);
        }

        .btn-secondary {
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-5px);
        }

        .btn-accent {
            background: var(--gradient-secondary);
            color: white;
            box-shadow: 0 10px 20px rgba(247, 37, 133, 0.3);
        }

        .btn-accent:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(247, 37, 133, 0.4);
        }

        /* Card Styles */
        .card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .card:hover::before {
            transform: scaleX(1);
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        /* Navigation */
        nav {
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            z-index: 1000;
            transition: all 0.4s ease;
        }

        .nav-scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 20px;
            max-width: 1280px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
            position: relative;
        }

        .logo-img {
            height: 80px;
            transition: transform 0.4s ease;
            filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
        }

        .logo:hover .logo-img {
            transform: rotate(-5deg) scale(1.05);
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-title {
            font-size: 28px;
            font-weight: 900;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
            letter-spacing: -0.5px;
        }

        .logo-subtitle {
            font-size: 12px;
            font-weight: 700;
            color: var(--gray);
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            gap: 5px;
        }

        .nav-link {
            padding: 12px 20px;
            color: var(--dark);
            text-decoration: none;
            font-weight: 600;
            border-radius: 12px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--gradient);
            border-radius: 3px;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

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

        .nav-link:hover, .nav-link.active {
            color: var(--primary);
        }

        .nav-link i {
            font-size: 16px;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .language-switcher {
            display: flex;
            background: rgba(67, 97, 238, 0.1);
            border-radius: 12px;
            padding: 5px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }

        .lang-btn {
            padding: 8px 15px;
            border-radius: 10px;
            font-weight: 700;
            text-decoration: none;
            color: var(--gray);
            transition: all 0.3s ease;
        }

        .lang-btn.active {
            background: white;
            color: var(--primary);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            cursor: pointer;
            position: relative;
            z-index: 1002;
        }

        .hamburger span {
            display: block;
            height: 3px;
            width: 100%;
            background: var(--primary);
            border-radius: 3px;
            transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Hero Section */
        .hero {
            padding: 180px 0 120px;
            background: linear-gradient(135deg, #f0f4ff 0%, #e6f0ff 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: var(--gradient);
            border-radius: 50%;
            opacity: 0.05;
            animation: morph 15s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: var(--gradient-secondary);
            border-radius: 50%;
            opacity: 0.05;
            animation: morph 12s ease-in-out infinite reverse;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text {
            animation: slide-up 0.8s ease-out forwards;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(67, 97, 238, 0.1);
            color: var(--primary);
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 14px;
            margin-bottom: 20px;
            backdrop-filter: blur(10px);
        }

        .hero-title {
            font-size: 3.8rem;
            font-weight: 900;
            color: var(--dark);
            line-height: 1.1;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .hero-title span {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            position: relative;
        }

        .hero-title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(67, 97, 238, 0.2);
            z-index: -1;
            border-radius: 4px;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--gray);
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .hero-actions {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 60px;
        }

        .hero-visual {
            position: relative;
            animation: slide-in-right 0.8s ease-out forwards;
        }

        .floating-card {
            position: absolute;
            background: white;
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 15px;
            z-index: 2;
        }

        .floating-card:nth-child(1) {
            top: 10%;
            left: -10%;
            animation: float 6s ease-in-out infinite;
        }

        .floating-card:nth-child(2) {
            bottom: 20%;
            right: -5%;
            animation: float 7s ease-in-out infinite 1s;
        }

        .floating-card-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .floating-card-content h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: var(--dark);
        }

        .floating-card-content p {
            font-size: 0.9rem;
            color: var(--gray);
        }

        .hero-main-visual {
            position: relative;
            background: var(--gradient);
            border-radius: 30px;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(67, 97, 238, 0.2);
        }

        .hero-main-visual::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
        }

        .hero-main-visual i {
            font-size: 8rem;
            color: white;
            opacity: 0.8;
            z-index: 1;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        @media (min-width: 768px) {
            .hero-stats {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .stat-card {
            background: white;
            padding: 25px 20px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient);
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }

        .stat-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--gray);
            font-weight: 600;
        }

        /* Section Styles */
        .section {
            padding: 100px 0;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(67, 97, 238, 0.1);
            color: var(--primary);
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Institutions Section */
        .institutions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .institution-card {
            padding: 30px;
            text-align: center;
            position: relative;
        }

        .institution-icon {
            width: 80px;
            height: 80px;
            background: rgba(67, 97, 238, 0.1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: var(--primary);
            transition: all 0.4s ease;
        }

        .institution-card:hover .institution-icon {
            transform: scale(1.1) rotate(5deg);
            background: var(--gradient);
            color: white;
        }

        .institution-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .institution-details {
            font-size: 0.95rem;
            color: var(--gray);
            margin-bottom: 25px;
        }

        .institution-type {
            display: inline-block;
            background: rgba(67, 97, 238, 0.1);
            color: var(--primary);
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-top: 10px;
        }

        /* Swiper Custom Styles */
        .swiper-container {
            position: relative;
            padding: 0 10px;
        }

        .swiper {
            padding: 20px 10px 60px;
        }

        .swiper-slide {
            height: auto;
        }

        .swiper-button-next, .swiper-button-prev {
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 50%;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 20px;
            font-weight: bold;
            color: var(--primary);
        }

        .swiper-button-next:hover, .swiper-button-prev:hover {
            transform: scale(1.1);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            background: var(--gradient);
        }

        .swiper-button-next:hover:after, .swiper-button-prev:hover:after {
            color: white;
        }

        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: var(--light-gray);
            opacity: 1;
            transition: all 0.3s ease;
        }

        .swiper-pagination-bullet-active {
            background: var(--primary);
            transform: scale(1.2);
        }

        /* Job Card */
        .job-card {
            padding: 30px;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .job-header {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .job-logo {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            background: rgba(67, 97, 238, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--primary);
            margin-right: 20px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .job-card:hover .job-logo {
            transform: scale(1.1);
            background: var(--gradient);
            color: white;
        }

        .job-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
        }

        .job-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .job-company {
            font-size: 1rem;
            color: var(--gray);
            margin-bottom: 5px;
        }

        .job-details {
            margin-bottom: 25px;
            flex-grow: 1;
        }

        .job-detail {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            font-size: 0.95rem;
            color: var(--gray);
        }

        .job-detail i {
            margin-right: 10px;
            width: 16px;
            color: var(--primary);
        }

        .job-type {
            display: inline-block;
            background: rgba(67, 97, 238, 0.1);
            color: var(--primary);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        /* Announcement Card */
        .announcement-card {
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .announcement-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .announcement-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

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

        .announcement-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: linear-gradient(transparent, rgba(0,0,0,0.1));
        }

        .announcement-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .announcement-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .announcement-description {
            font-size: 0.95rem;
            color: var(--gray);
            margin-bottom: 25px;
            flex-grow: 1;
            line-height: 1.6;
        }

        .announcement-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.85rem;
            color: var(--gray);
            margin-bottom: 25px;
        }

        /* About Section */
        .about {
            background: linear-gradient(135deg, #f8fbff 0%, #f0f4ff 100%);
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: var(--gradient);
            border-radius: 50%;
            opacity: 0.05;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 60px;
            align-items: center;
        }

        @media (min-width: 992px) {
            .about-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        .about-text h2 {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .about-text h2 span {
            color: var(--primary);
            position: relative;
        }

        .about-text h2 span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(67, 97, 238, 0.2);
            z-index: -1;
            border-radius: 4px;
        }

        .about-text p {
            font-size: 1.1rem;
            color: var(--gray);
            margin-bottom: 35px;
            line-height: 1.7;
        }

        .about-features {
            margin-bottom: 35px;
        }

        .about-feature {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .about-feature i {
            width: 28px;
            height: 28px;
            background: var(--success);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .about-feature span {
            font-weight: 600;
            color: var(--dark);
            font-size: 1.05rem;
        }

        .about-visual {
            background: var(--gradient);
            border-radius: 25px;
            padding: 50px 40px;
            color: white;
            box-shadow: 0 20px 40px rgba(67, 97, 238, 0.3);
            position: relative;
            overflow: hidden;
        }

        .about-visual::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
        }

        .about-item {
            display: flex;
            align-items: center;
            margin-bottom: 35px;
            position: relative;
            z-index: 1;
        }

        .about-item:last-child {
            margin-bottom: 0;
        }

        .about-item-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-right: 25px;
            flex-shrink: 0;
        }

        .about-item-text h3 {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .about-item-text p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
            margin: 0;
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
        }

        .service-card {
            padding: 35px 30px;
            text-align: center;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: rgba(67, 97, 238, 0.1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--primary);
            margin: 0 auto 25px;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
            background: var(--gradient);
            color: white;
        }

        .service-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 18px;
        }

        .service-description {
            font-size: 1rem;
            color: var(--gray);
            line-height: 1.6;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 80px 0 40px;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: var(--gradient);
            border-radius: 50%;
            opacity: 0.05;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
        }

        .footer-logo img {
            height: 120px;
        }

        .footer-logo-text {
            font-size: 1.8rem;
            font-weight: 900;
            color: white;
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 25px;
            line-height: 1.7;
        }

        .footer-heading {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: white;
            position: relative;
            display: inline-block;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--gradient);
            border-radius: 3px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-link {
            margin-bottom: 15px;
        }

        .footer-link a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-link a:hover {
            color: white;
            transform: translateX(5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
            position: relative;
            z-index: 1;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 320px;
            height: 100vh;
            background: white;
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
            z-index: 1001;
            transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
            overflow-y: auto;
            padding: 30px 25px;
        }

        .mobile-menu.active {
            right: 0;
        }

        [dir="rtl"] .mobile-menu {
            right: auto;
            left: -100%;
        }

        [dir="rtl"] .mobile-menu.active {
            left: 0;
        }

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

        .mobile-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark);
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .mobile-close:hover {
            background: rgba(67, 97, 238, 0.1);
            color: var(--primary);
        }

        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 40px;
        }

        .mobile-nav-link {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 18px 20px;
            border-radius: 12px;
            color: var(--dark);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .mobile-nav-link:hover {
            background: rgba(67, 97, 238, 0.1);
            color: var(--primary);
            transform: translateX(5px);
        }

        .mobile-nav-link i {
            font-size: 1.3rem;
            width: 24px;
        }

        .mobile-actions {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 30px;
        }

        /* Responsive Styles */
        @media (max-width: 991px) {
            .nav-links, .nav-actions .btn {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 50px;
                text-align: center;
            }

            .hero-title {
                font-size: 3rem;
            }

            .section-title {
                font-size: 2.3rem;
            }

            .floating-card {
                display: none;
            }
        }

        @media (max-width: 767px) {
            .hero-actions {
                flex-direction: column;
                align-items: center;
            }

            .hero-actions .btn {
                width: 100%;
                max-width: 300px;
            }

            .hero-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-text h2 {
                font-size: 2.2rem;
            }

            .hero-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 575px) {
            .hero-title {
                font-size: 2.2rem;
            }

            .hero-stats {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 2rem;
            }

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



        /* ==================== HERO SLIDER SECTION ==================== */
        .hero-slider-section {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 650px;
            max-height: 900px;
            overflow: hidden;
            background: linear-gradient(135deg, #0c4a6e 0%, #075985 100%);
        }

        .heroSwiper {
            width: 100%;
            height: 100%;
        }

        .hero-slide-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-slide-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-slide-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            opacity: 0.95;
            z-index: 2;
        }

        .hero-slide-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(56, 189, 248, 0.15) 0%, transparent 50%),
                linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.3) 100%);
            z-index: 3;
        }

        .hero-slide-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .hero-slide-content {
            position: relative;
            z-index: 5;
            color: var(--white);
            max-width: 900px;
            padding: 0 30px;
            text-align: left;
        }

        [dir="rtl"] .hero-slide-content {
            text-align: right;
        }

        /* Hero Badge */
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 14px 32px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 35px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
            letter-spacing: 0.5px;
            text-transform: uppercase;
            animation: fadeInDown 0.8s ease-out;
        }

        .hero-badge i {
            font-size: 1.3rem;
            animation: pulse 2s ease-in-out infinite;
        }

        /* Hero Title */
        .hero-slide-title {
            font-size: 4.5rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 30px;
            text-shadow:
                2px 2px 4px rgba(0, 0, 0, 0.2),
                4px 4px 12px rgba(0, 0, 0, 0.15);
            letter-spacing: -1px;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .text-gradient {
            background: linear-gradient(135deg, #ffffff 0%, #bae6fd 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }

        /* Hero Description */
        .hero-slide-description {
            font-size: 1.4rem;
            line-height: 1.8;
            margin-bottom: 40px;
            opacity: 0.98;
            font-weight: 400;
            max-width: 700px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        /* Hero Meta */
        .hero-meta {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
            margin-bottom: 45px;
            animation: fadeInUp 0.8s ease-out 0.6s both;
        }

        .hero-meta-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 24px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-radius: 30px;
            font-size: 1.05rem;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: var(--transition);
        }

        .hero-meta-item:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        }

        .hero-meta-item i {
            font-size: 1.2rem;
        }

        /* Hero Actions */
        .hero-actions {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
            align-items: center;
            animation: fadeInUp 0.8s ease-out 0.8s both;
        }

        .btn-hero-primary {
            padding: 18px 45px;
            background: var(--white);
            color: var(--primary);
            font-size: 1.15rem;
            font-weight: 800;
            border-radius: 14px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow:
                0 10px 40px rgba(0, 0, 0, 0.25),
                0 4px 12px rgba(0, 0, 0, 0.15);
            border: none;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            letter-spacing: 0.3px;
        }

        .btn-hero-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .btn-hero-primary:hover::before {
            left: 100%;
        }

        .btn-hero-primary:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow:
                0 15px 50px rgba(14, 165, 233, 0.35),
                0 8px 20px rgba(14, 165, 233, 0.2);
            background: #f0f9ff;
        }

        .btn-hero-primary i {
            transition: transform 0.3s ease;
        }

        .btn-hero-primary:hover i {
            transform: translateX(5px);
        }

        [dir="rtl"] .btn-hero-primary:hover i {
            transform: translateX(-5px);
        }

        .btn-hero-secondary {
            padding: 18px 45px;
            background: transparent;
            color: var(--white);
            font-size: 1.15rem;
            font-weight: 800;
            border-radius: 14px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: var(--transition);
            border: 3px solid rgba(255, 255, 255, 0.6);
            text-decoration: none;
            letter-spacing: 0.3px;
        }

        .btn-hero-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        /* Swiper Navigation */
        .heroSwiper .swiper-button-next,
        .heroSwiper .swiper-button-prev {
            color: var(--white);
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            width: 65px;
            height: 65px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: var(--transition);
        }

        .heroSwiper .swiper-button-next:hover,
        .heroSwiper .swiper-button-prev:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .heroSwiper .swiper-button-next::after,
        .heroSwiper .swiper-button-prev::after {
            font-size: 24px;
            font-weight: 900;
        }

        .heroSwiper .swiper-pagination {
            bottom: 40px !important;
        }

        .heroSwiper .swiper-pagination-bullet {
            width: 14px;
            height: 14px;
            background: var(--white);
            opacity: 0.4;
            transition: var(--transition);
        }

        .heroSwiper .swiper-pagination-bullet-active {
            opacity: 1;
            width: 45px;
            border-radius: 7px;
            background: var(--white);
        }

        /* ==================== ANIMATED STATS SECTION ==================== */
        .animated-stats-section {
            background: var(--gradient);
            padding: 90px 0;
            margin-top: -100px;
            position: relative;
            z-index: 10;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .stat-item {
            text-align: center;
            color: var(--white);
            padding: 50px 30px;
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 25px;
            border: 2px solid rgba(255, 255, 255, 0.25);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        }

        .stat-item:hover {
            transform: translateY(-15px) scale(1.02);
            background: rgba(255, 255, 255, 0.18);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .stat-icon {
            font-size: 4rem;
            margin-bottom: 25px;
            opacity: 0.95;
            display: inline-block;
            transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .stat-item:hover .stat-icon {
            transform: scale(1.2) rotateY(360deg);
        }

        .stat-number {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 12px;
            line-height: 1;
            letter-spacing: -2px;
        }

        .stat-label {
            font-size: 1.3rem;
            font-weight: 700;
            opacity: 0.95;
            letter-spacing: 0.5px;
        }

        /* ==================== ANIMATIONS ==================== */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.15);
            }
        }

        /* ==================== RESPONSIVE DESIGN ==================== */
        @media (max-width: 1024px) {
            .hero-slide-title {
                font-size: 3.5rem;
            }

            .hero-slide-description {
                font-size: 1.2rem;
            }

            .stats-grid {
                grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
                gap: 25px;
            }
        }


