
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        
        /* Header Styles */
        .header-top {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            padding: 8px 0;
            text-align: center;
            font-size: 13px;
            overflow: hidden;
            white-space: nowrap;
        }
        
        .header-top .marquee {
            animation: marquee 30s linear infinite;
        }
        
        @keyframes marquee {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }
        
        .nav-container {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo img {
            border-radius: 50%;
            border: 3px solid #2a5298;
        }
        
        .logo h1 {
            color: #1e3c72;
            font-size: 22px;
            font-weight: bold;
        }
        
        .logo p {
            color: #666;
            font-style: italic;
            font-size: 14px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 20px;
        }
        
        .nav-link {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            transform: translateY(-2px);
        }
        
        /* Dropdown Menu Styles */
        .nav-item {
            position: relative;
        }
        
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 220px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border-radius: 10px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
            padding: 10px 0;
        }
        
        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-item {
            display: block;
            padding: 12px 20px;
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
            border-radius: 0;
        }
        
        .dropdown-item:hover {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            transform: translateX(5px);
        }
        
        /* Slideshow Styles */
        .slideshow-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            background: #000;
            height: 550px;
            overflow: hidden;
        }
        
        .slide {
            display: none;
            position: relative;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .slide.active {
            display: block;
        }
        
        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.4);
        }
        
        .slide-content {
            position: absolute;
            top: 50%;
            left: 50px;
            transform: translateY(-50%);
            color: white;
            max-width: 600px;
            z-index: 2;
        }
        
        .slide-content h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
            animation: slideInLeft 1s ease-out;
        }
        
        .slide-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
            animation: slideInLeft 1s ease-out 0.3s both;
        }
        
        .slide-btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(135deg, #ff6b6b, #ee5a52);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s ease;
            animation: slideInLeft 1s ease-out 0.6s both;
        }
        
        .slide-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255,107,107,0.3);
        }
        
        /* Navigation Arrows */
        .slide-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.8);
            border: none;
            font-size: 24px;
            padding: 15px 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 3;
            border-radius: 50%;
        }
        
        .slide-arrow:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }
        
        .prev-arrow {
            left: 20px;
        }
        
        .next-arrow {
            right: 20px;
        }
        
        /* Slide Dots */
        .slide-nav {
            text-align: center;
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
        }
        
        .slide-dot {
            height: 15px;
            width: 15px;
            margin: 0 5px;
            background-color: rgba(255,255,255,0.5);
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slide-dot.active,
        .slide-dot:hover {
            background-color: white;
            transform: scale(1.2);
        }
        
        /* Cards Grid */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .card:hover::before {
            transform: scaleX(1);
        }
        
        .card h3 {
            color: #1e3c72;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        
        .card p {
            color: #666;
            line-height: 1.6;
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, #000, #000);
            color: white;
            padding: 3rem 2rem 1rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 100%;
            margin: 0 auto;
        }
        
        .footer-section h3 {
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        
        .footer-section p,
        .footer-section a {
            color: #ccc;
            text-decoration: none;
            margin-bottom: 0.5rem;
            display: block;
            transition: color 0.3s ease;
        }
        
        .footer-section a:hover {
            color: white;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #ccc;
        }
        
        /* Animations */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .nav-container {
                padding: 1rem;
                flex-direction: column;
                gap: 1rem;
            }
            
            .nav-menu {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }
            
            .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: #f8f9fa;
                border-radius: 0;
                padding: 5px 0;
                margin-top: 5px;
            }
            
            .nav-item:hover .dropdown {
                transform: none;
            }
            
            .logo h1 {
                font-size: 18px;
            }
            
            .slideshow-container {
                height: 400px;
            }
            
            .slide-content {
                left: 20px;
                right: 20px;
                max-width: none;
            }
            
            .slide-content h2 {
                font-size: 2rem;
            }
            
            .slide-content p {
                font-size: 1rem;
            }
            
            .cards-grid {
                grid-template-columns: 1fr;
                padding: 2rem 1rem;
            }
            
            .slide-arrow {
                padding: 10px 15px;
                font-size: 18px;
            }
        }
        
        @media (max-width: 480px) {
            .header-top {
                font-size: 11px;
                padding: 5px 0;
            }
            
            .slide-content h2 {
                font-size: 1.5rem;
            }
            
            .slide-content {
                left: 15px;
                right: 15px;
            }
        }
    

    /* Scrolling Text Container */
        .scroll-container {
            width: 100%;
            overflow: hidden;
            background: rgba(0, 0, 0, 0.3);
            padding: 10px 0;
            margin: 30px 0;
            position: relative;
        }

        .scroll-text {
            display: inline-block;
            white-space: nowrap;
            font-size: 1.5rem;
            font-weight: bold;
            color: #ff1290;
            text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff;
            animation: scroll 15s linear infinite;
        }

        @keyframes scroll {
            0% { transform: translateX(100vw); }
            100% { transform: translateX(-100%); }
        }
