/* CSS Reset */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

        /* Header & Navigation */
        header {
            background: linear-gradient(-45deg, #1a365d, #2d4a7c, #3a5f8c, #4a76a8);
            background-size: 400% 400%;
            animation: shimmer 8s ease infinite;
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        @keyframes shimmer {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
		.container img {
			margin: 23px;
		}
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            text-align: center;
            flex-grow: 1;
        }

        .logo-image {
            max-height: 78px;
            cursor: pointer;
            transition: transform 0.3s;
            background-image: url('/assets/css/logo.webp');
            height: 78px;
            width: 250px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            
            
            
            
        }

        .logo-image:hover {
            transform: scale(1.05);
        }

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            order: 3; /* Move to the end on mobile */
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav li {
            margin-left: 1.5rem;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        nav a:hover {
            color: #ffcc00;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #ffcc00;
            transition: width 0.3s;
        }

        nav a:hover::after {
            width: 100%;
        }

        /* Main Content */
        main {
            padding: 2rem 0;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #1a365d 0%, #2d4a7c 100%);
            color: white;
            padding: 4rem 0;
            text-align: center;
            border-radius: 10px;
            margin-bottom: 3rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .hero h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease-out, textShimmer 3s infinite;
        }

        @keyframes textShimmer {
            0%, 100% {
                text-shadow: 0 0 5px rgba(255, 255, 255, 0.7), 0 0 10px rgba(255, 204, 0, 0.5);
            }
            50% {
                text-shadow: 0 0 10px rgba(255, 255, 255, 0.9), 0 0 20px rgba(255, 204, 0, 0.7), 0 0 30px rgba(255, 204, 0, 0.5);
            }
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .cta-button {
            display: inline-block;
            background-color: #ffcc00;
            color: #1a365d;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            box-shadow: 0 4px 0 #d4a900, 0 6px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.3s;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 0 #d4a900, 0 8px 15px rgba(0, 0, 0, 0.3);
        }

        .cta-button:active {
            transform: translateY(2px);
            box-shadow: 0 2px 0 #d4a900, 0 3px 5px rgba(0, 0, 0, 0.2);
        }

        /* Features Section */
        .features {
            margin-bottom: 3rem;
        }

        .features h2 {
            text-align: center;
            margin-bottom: 2rem;
            font-size: 2rem;
            color: #1a365d;
            animation: textShimmer 4s infinite;
        }

        /* Carousel Styles */
        .carousel-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .carousel {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .carousel-item {
            min-width: 100%;
            padding: 2rem;
            background: white;
            text-align: center;
        }

        .carousel-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            color: #1a365d;
        }

        .carousel-item h3 {
            color: #1a365d;
            margin-bottom: 1rem;
            font-size: 1.5rem;
            animation: textShimmer 4s infinite;
        }

        .carousel-item p {
            color: #666;
            line-height: 1.6;
        }

        .carousel-nav {
            display: flex;
            justify-content: center;
            margin-top: 1.5rem;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ccc;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .carousel-dot.active {
            background-color: #1a365d;
        }

        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(26, 54, 93, 0.7);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
            z-index: 10;
        }

        .carousel-arrow:hover {
            background-color: rgba(26, 54, 93, 0.9);
        }

        .carousel-arrow.prev {
            left: 10px;
        }

        .carousel-arrow.next {
            right: 10px;
        }

        /* Text Sections */
        .text-section {
            background: white;
            padding: 3rem 0;
            margin-bottom: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .section-content {
            width: 90%;
            max-width: 1000px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .section-header h2 {
            color: #1a365d;
            font-size: 2rem;
            margin-bottom: 1rem;
            animation: textShimmer 4s infinite;
        }

        .section-header p {
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }

        .content, .content-block {
            margin-bottom: 2.5rem;
        }

        .content h3, .content-block h3 {
            color: #1a365d;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            border-left: 4px solid #ffcc00;
            padding-left: 1rem;
            animation: textShimmer 4s infinite;
        }

        .content p, .content-block p {
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .table {
            margin: 1.5rem 0;
            overflow-x: auto;
        }

        .under-table {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: white;
        }

        th, td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #eaeaea;
        }

        th {
            background-color: #1a365d;
            color: white;
            font-weight: 600;
        }

        tr:nth-child(even) {
            background-color: #f8f9fa;
        }

        tr:hover {
            background-color: #f0f4ff;
        }

        ol, ul {
            margin: 1.5rem 0;
            padding-left: 2rem;
        }

        li {
            margin-bottom: 0.5rem;
            line-height: 1.6;
            position: relative;
        }

        /* Animated Lists */
        .animated-list li {
            opacity: 0;
            transform: translateX(-20px);
            animation: slideInRight 0.5s forwards;
        }

        .animated-list li:nth-child(1) { animation-delay: 0.1s; }
        .animated-list li:nth-child(2) { animation-delay: 0.2s; }
        .animated-list li:nth-child(3) { animation-delay: 0.3s; }
        .animated-list li:nth-child(4) { animation-delay: 0.4s; }
        .animated-list li:nth-child(5) { animation-delay: 0.5s; }

        /* Sidebar */
        aside {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 2rem;
        }

        aside h2 {
            color: #1a365d;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            border-bottom: 2px solid #ffcc00;
            padding-bottom: 0.5rem;
            animation: textShimmer 4s infinite;
        }

        aside ul {
            list-style: none;
            padding-left: 0;
        }

        aside li {
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eaeaea;
        }

        aside li:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        aside a {
            color: #1a365d;
            text-decoration: none;
            transition: color 0.3s;
            display: block;
        }

        aside a:hover {
            color: #ffcc00;
        }

        /* Footer */
        footer {
            background-color: #1a365d;
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 2rem;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 1.5rem;
        }

        .footer-section h3 {
            color: #ffcc00;
            margin-bottom: 1rem;
            font-size: 1.2rem;
            animation: textShimmer 4s infinite;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section li {
            margin-bottom: 0.5rem;
        }

        .footer-section a {
            color: #e2e8f0;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #ffcc00;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: #2d4a7c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
        }

        .social-links a:hover {
            background-color: #ffcc00;
        }

        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2d4a7c;
            font-size: 0.9rem;
            color: #a0aec0;
        }

        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: #ffcc00;
            color: #1a365d;
            border: none;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
        }

        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-content {
                justify-content: space-between;
            }

            .nav-toggle {
                display: block;
                order: 3; /* This ensures it's on the right */
            }

            .logo {
                order: 1;
                flex-grow: 0;
                text-align: left;
            }

            nav {
                order: 2;
            }

            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #1a365d;
                padding: 1rem 0;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                z-index: 100;
            }

            nav ul.active {
                display: flex;
            }

            nav li {
                margin: 0;
                text-align: center;
            }

            nav a {
                display: block;
                padding: 0.8rem 1rem;
            }

            .hero h2 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .carousel-arrow {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }

            .footer-content {
                flex-direction: column;
            }

            .footer-section {
                min-width: 100%;
            }
        }