        :root {
            --jws-orange: #FF6B00;
            --jws-orange-light: #FF8C42;
            --jws-orange-dark: #E55A00;
            --jws-orange-glow: rgba(255, 107, 0, 0.3);
            --jws-slate: #778899;
            --jws-slate-light: #8A9BA8;
            --jws-slate-dark: #5A6D7E;
            --jws-slate-bg: #F8FAFC;
            --jws-white: #FFFFFF;
            --jws-black: #1A1A1A;
            --jws-gradient: linear-gradient(135deg, #FF6B00 0%, #FF8C42 100%);
            --jws-gradient-slate: linear-gradient(135deg, #778899 0%, #8A9BA8 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #5A6D7E;
            background-color: var(--jws-white);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: #4A5568;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: #F1F5F9;
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--jws-gradient);
            border-radius: 5px;
        }
        
        /* Top Announcement Bar */
        .announcement-bar {
            background: var(--jws-gradient-slate);
            color: white;
            padding: 10px 0;
            font-size: 0.9rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .announcement-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            animation: shimmer 3s infinite;
        }
        
        @keyframes shimmer {
            100% { left: 100%; }
        }
        
        /* Modern Navigation */
        .navbar {
            padding: 15px 0;
            background: var(--jws-white) !important;
            box-shadow: 0 4px 20px rgba(119, 136, 153, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            padding: 10px 0;
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.98) !important;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
        }
        
        .navbar-brand img {
            height: 65px;
            transition: all 0.3s;
        }
        
        .nav-item {
            margin: 0 5px;
            position: relative;
        }
        
        .nav-link {
            font-weight: 600;
            color: var(--jws-slate-dark) !important;
            padding: 10px 15px !important;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--jws-gradient);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-link:hover::before,
        .nav-link.active::before {
            width: 80%;
        }
        
        .nav-link:hover,
        .nav-link.active {
            color: var(--jws-orange) !important;
            background: rgba(255, 107, 0, 0.05);
        }
        
        .dropdown-menu {
            border: none;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(119, 136, 153, 0.15);
            padding: 10px;
            min-width: 220px;
            border-top: 3px solid var(--jws-orange);
            background: white;
        }
        
        .dropdown-item {
            padding: 12px 20px;
            border-radius: 8px;
            margin: 2px 0;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            color: var(--jws-slate-dark);
        }
        
        .dropdown-item:hover {
            background: var(--jws-gradient);
            color: white !important;
            transform: translateX(5px);
        }
        
        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            background: linear-gradient(rgba(90, 109, 126, 0.9), rgba(90, 109, 126, 0.7)), url('../img/background.jpeg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(255, 107, 0, 0.2) 0%, transparent 50%);
            animation: pulse 4s infinite alternate;
        }
        
        @keyframes pulse {
            0% { opacity: 0.2; }
            100% { opacity: 0.4; }
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            padding: 40px 0;
        }
        
        .hero-badge {
            display: inline-block;
            background: var(--jws-gradient-slate);
            color: white;
            padding: 10px 25px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(119, 136, 153, 0.3);
            animation: float 3s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }
        
        .hero-title {
            font-size: 4rem;
            font-weight: 800;
            color: white;
            margin-bottom: 25px;
            line-height: 1.2;
        }
        
        .hero-title span {
            color: var(--jws-orange-light);
            position: relative;
        }
        
        .hero-title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: var(--jws-orange);
            opacity: 0.3;
            z-index: -1;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
            max-width: 600px;
        }
        
        .cta-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .btn-primary {
            background: var(--jws-gradient);
            border: none;
            padding: 16px 35px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            color: white;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(255, 107, 0, 0.4);
            color: white;
        }
        
        .btn-primary::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        
        .btn-primary:hover::after {
            width: 300px;
            height: 300px;
        }
        
        .btn-outline-light {
            border: 2px solid white;
            background: transparent;
            padding: 16px 35px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            color: white;
        }
        
        .btn-outline-light:hover {
            background: white;
            color: var(--jws-orange);
            transform: translateY(-5px);
        }
        
        /* Stats Section */
        .stats-section {
            background: var(--jws-white);
            padding: 100px 0;
            position: relative;
        }
        
        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--jws-gradient-slate);
        }
        
        .stat-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(119, 136, 153, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 107, 0, 0.1);
        }
        
        .stat-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(255, 107, 0, 0.15);
        }
        
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--jws-gradient);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        
        .stat-card:hover::before {
            transform: scaleX(1);
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            background: var(--jws-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
            margin-bottom: 15px;
        }
        
        /* Programs Section */
        .programs-section {
            background: var(--jws-slate-bg);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .programs-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: rgba(255, 107, 0, 0.1);
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.3;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-badge {
            display: inline-block;
            background: var(--jws-gradient);
            color: white;
            padding: 8px 25px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }
        
        .section-title {
            font-size: 3rem;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            color: var(--jws-slate-dark);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--jws-gradient);
            border-radius: 2px;
        }
        
        .program-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(119, 136, 153, 0.1);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            border: 1px solid rgba(119, 136, 153, 0.1);
        }
        
        .program-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(255, 107, 0, 0.15);
            border-color: var(--jws-orange-light);
        }
        
        .program-image {
            height: 250px;
            width: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .program-card:hover .program-image {
            transform: scale(1.05);
        }
        
        .program-content {
            padding: 30px;
            position: relative;
        }
        
        .program-icon {
            width: 50px;
            height: 50px;
            background: var(--jws-gradient);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            position: absolute;
            top: -30px;
            left: 30px;
            box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
        }
        
        /* About Section */
        .about-section {
            padding: 100px 0;
            background: var(--jws-white);
            position: relative;
        }
        
        .about-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(119, 136, 153, 0.1);
            position: relative;
            border: 1px solid rgba(119, 136, 153, 0.1);
        }
        
        .about-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to right, transparent 50%, rgba(255, 107, 0, 0.1));
        }
        
        .feature-list li {
            padding: 15px 0;
            border-bottom: 1px solid rgba(119, 136, 153, 0.1);
            display: flex;
            align-items: center;
        }
        
        .feature-list li i {
            color: var(--jws-orange);
            font-size: 1.2rem;
            margin-right: 15px;
            background: rgba(255, 107, 0, 0.1);
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* News Section */
        .news-section {
            background: var(--jws-slate-bg);
            padding: 100px 0;
            position: relative;
        }
        
        .news-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(119, 136, 153, 0.1);
            transition: all 0.4s ease;
            height: 100%;
            border: 1px solid rgba(119, 136, 153, 0.1);
        }
        
        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(255, 107, 0, 0.15);
            border-color: var(--jws-orange-light);
        }
        
        .news-image {
            height: 200px;
            width: 100%;
            object-fit: cover;
        }
        
        .news-content {
            padding: 25px;
        }
        
        .news-date {
            color: var(--jws-orange);
            font-weight: 600;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        /* Partners Section */
        .partners-section {
            padding: 80px 0;
            background: var(--jws-white);
        }
        
        .partner-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .partner-item {
            background: white;
            padding: 30px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(119, 136, 153, 0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .partner-item:hover {
            transform: translateY(-10px);
            border-color: var(--jws-orange);
            box-shadow: 0 20px 40px rgba(255, 107, 0, 0.1);
        }
        
        .partner-item img {
            max-width: 100%;
            max-height: 60px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .partner-item:hover img {
            filter: grayscale(0%);
            opacity: 1;
        }
        
        /* Modern Footer */
        .footer {
            background: var(--jws-slate-dark);
            color: rgba(255, 255, 255, 0.8);
            padding-top: 80px;
            position: relative;
            overflow: hidden;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--jws-gradient);
        }
        
        .footer::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -100px;
            width: 300px;
            height: 300px;
            background: rgba(255, 107, 0, 0.1);
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.2;
        }
        
        .footer-logo {
            height: 80px;
            margin-bottom: 20px;
            
        }
        
        .footer-title {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--jws-orange);
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            display: block;
            padding: 10px 0;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 0;
        }
        
        .footer-links a:hover {
            color: var(--jws-orange-light);
            padding-left: 15px;
        }
        
        .footer-links a:hover::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--jws-orange);
        }
        
        .footer-contact i {
            color: var(--jws-orange-light);
            width: 30px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: var(--jws-gradient);
            transform: translateY(-5px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px 0;
            margin-top: 50px;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            background: rgba(0, 0, 0, 0.1);
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: var(--jws-gradient);
            color: white;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 15px 30px rgba(255, 107, 0, 0.4);
        }
        
        /* Floating Elements */
        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }
        
        .floating-element {
            position: absolute;
            background: rgba(255, 107, 0, 0.1);
            border-radius: 50%;
            opacity: 0.1;
            animation: float-around 20s infinite linear;
        }
        
        @keyframes float-around {
            0% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(100px, 100px) rotate(120deg); }
            66% { transform: translate(-50px, 150px) rotate(240deg); }
            100% { transform: translate(0, 0) rotate(360deg); }
        }
        
        /* Text Colors */
        .text-orange {
            color: var(--jws-orange) !important;
        }
        
        .text-slate {
            color: var(--jws-slate) !important;
        }
        
        /* Background Colors */
        .bg-orange {
            background-color: var(--jws-orange) !important;
        }
        
        .bg-slate {
            background-color: var(--jws-slate) !important;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .navbar-collapse {
                background: white;
                padding: 20px;
                border-radius: 15px;
                box-shadow: 0 20px 40px rgba(119, 136, 153, 0.1);
                margin-top: 15px;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .btn-primary,
            .btn-outline-light {
                padding: 14px 25px;
                font-size: 1rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: flex-start;
            }
        }

.introduction{
    padding: 60px;
}
.introduction img{
    width: 100%;
}
.introduction p{
    text-align: justify;
    line-height: 1.7;
}


