        :root {
            --primary: #0f0f3d;
            --secondary: #5a189a;
            --accent: #ff007c;
            --success: #00f5d4;
            --light: #e0e0e0;
            --dark: #0a0a0a;
            --gradient-primary: linear-gradient(135deg, #0f0f3d 0%, #5a189a 100%);
            --gradient-secondary: linear-gradient(135deg, #5a189a 0%, #c77dff 100%);
            --gradient-accent: linear-gradient(135deg, #ff007c 0%, #ff4d6d 100%);
            --gradient-light: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }
        
        /* TOP BAR */
        .top-bar {
            background: var(--gradient-primary);
            color: white;
            font-size: 0.9rem;
        }
        
        .top-bar a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            margin: 0 5px;
            transition: color 0.3s ease;
        }
        
        .top-bar a:hover {
            color: var(--success);
        }
        
        .top-bar strong {
            color: var(--success);
        }
        
        /* HEADER */
        header {
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        header h4 {
            color: var(--primary);
            font-size: 1.8rem;
        }
        
        header small {
            color: var(--secondary);
            font-weight: 500;
        }
        
        .search-box {
            width: 300px;
        }
        
        .search-box .form-control {
            border-radius: 25px;
            border: 2px solid var(--light);
            padding: 8px 20px;
            transition: all 0.3s ease;
        }
        
        .search-box .form-control:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 0.25rem rgba(255, 0, 124, 0.25);
        }
        
        /* NAVIGATION */
        .main-nav {
            background: var(--gradient-primary);
            padding: 0;
        }
        
        .main-nav .navbar-nav {
            gap: 5px;
        }
        
        .main-nav .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            padding: 10px 15px !important;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .main-nav .nav-link:hover,
        .main-nav .nav-link.active {
            color: white !important;
            background: rgba(255, 255, 255, 0.15);
        }
        
        .main-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 20px;
            right: 20px;
            height: 2px;
            background: var(--accent);
            transform: scaleX(0);
            transition: transform 0.3s ease;
            
        }
        
        .main-nav .nav-link:hover::after {
            transform: scaleX(1);
        }
        
        .main-nav .navbar-toggler {
            border-color: rgba(255, 255, 255, 0.5);
            padding: 5px 10px;
        }
        
        .main-nav .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        /* HERO SECTION - SPLIT LAYOUT */
        .hero-section {
            margin-top: 0;
        }
        
        /* CAROUSEL PART */
        .carousel-part {
            height: 100%;
        }
        
        .carousel-container {
            height: 100%;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);

            
        }
        
        .slider-img {
            height: 400px;
            object-fit: cover;
            filter: brightness(0.9);
            transition: transform 0.5s ease;
        }

        .carousel-item:hover .slider-img {
            transform: scale(1.05);
        }
        
        .carousel-caption {
            background: rgba(15, 15, 61, 0.85);
            padding: 20px;
            border-radius: 10px;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 600px;
            backdrop-filter: blur(5px);
        }
        
        .carousel-caption h3 {
            color: white;
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        
        .carousel-caption p {
            color: var(--light);
            font-size: 1rem;
            margin-bottom: 15px;
        }
        
        .carousel-indicators button {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            border: none;
        }
        
        .carousel-indicators button.active {
            background-color: var(--accent);
        }
        
        .carousel-control-prev,
        .carousel-control-next {
            width: 40px;
            height: 40px;
            background: rgba(15, 15, 61, 0.8);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            margin: 0 10px;
        }
        
        /* WHAT'S NEW PART */
        .whats-new-part {
            height: 100%;
        }
        
        .whats-new-card {
            height: 100%;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            border: none;
        }

        .whats-new-card:hover {
            transform: perspective(1000px) rotateY(0deg);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }
        
        .whats-new-header {
            background: var(--gradient-accent);
            color: white;
            padding: 20px;
            border-bottom: none;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .whats-new-header::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
            transform: translateX(-100%);
            animation: shine 3s infinite;
        }
        
        @keyframes shine {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        
        .news-item {
            padding: 10px 11px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            padding-left: 55px;
            cursor: pointer;
        }
        
        .news-item:last-child {
            border-bottom: none;
        }
        
        .news-item::before {
            content: '\f0a9';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--accent);
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .news-item:hover {
              background: rgba(90, 24, 154, 0.05);
            transform: translateX(8px);
            border-left: 3px solid var(--accent);
        }
        
        .news-item:hover::before {
            transform: translateY(-50%) translateX(3px);
        }
        
        .news-item a {
            text-decoration: none;
            color: var(--primary);
            display: block;
        }
        
        .news-item strong {
            display: block;
            font-size: 1rem;
            margin-bottom: 5px;
        }
        
        .news-item small {
            color: #666;
            font-size: 0.85rem;
        }

      

        .circulars-section {
            background: var(--gradient-light);
            padding: 15px 0;
            margin: 15px 0;
            border-radius: 10px;
        }
        .circulars-header {
            background: var(--gradient-primary);
            color: white;
            padding: 12px 15px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            white-space: nowrap;
            text-align: center;
            box-shadow: 0 3px 10px rgba(15, 15, 61, 0.2);
        }

        .marquee-container {
            background: white;
            padding: 12px 15px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            height: 100%;
        }

        .marquee-container a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            margin: 0 12px;
            padding: 4px 8px;
            border-radius: 4px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .marquee-container a:hover {
            color: var(--accent);
            background: rgba(255, 0, 124, 0.1);
        }

            /* WELCOME SECTION */
        .welcome-section {
            padding: 80px 0;
            background: white;
            position: relative;
            overflow: hidden;
        }

        .welcome-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-accent);
            animation: progressBar 10s linear infinite;
        }
        
        @keyframes progressBar {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .section-title {
            color: var(--primary);
            margin-bottom: 40px;
            font-size: 2.5rem;
            position: relative;
            display: inline-block;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--gradient-accent);
            border-radius: 2px;
            animation: underlineExpand 1s ease-out forwards;
        }
        
        @keyframes underlineExpand {
            from { width: 0; }
            to { width: 80px; }
        }

        .welcome-section p {
            color: #030303;
            margin-bottom: 10px;
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: justify;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }
        
        .welcome-section p:nth-child(2) { animation-delay: 0.2s; }
        .welcome-section p:nth-child(3) { animation-delay: 0.4s; }
        .welcome-section p:nth-child(4) { animation-delay: 0.6s; }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .components-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-left: 5px solid var(--accent);
            transition: all 0.5s ease;
            opacity: 0;
            animation: flipIn 1s ease forwards 0.8s;
        }
        
        @keyframes flipIn {
            from {
                opacity: 0;
                transform: perspective(1000px) rotateX(-90deg);
            }
            to {
                opacity: 1;
                transform: perspective(1000px) rotateX(0deg);
            }
        }
        
        .components-card:hover {
            transform: perspective(1000px) rotateX(0deg);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .components-card h4 {
            color: var(--secondary);
            margin-bottom: 20px;
            font-size: 1.5rem;
        }

        .component-item {
            background: rgba(6, 2, 11, 0.05);
            padding: 15px;
            margin: 10px 0;
            border-radius: 10px;
            border-left: 3px solid var(--secondary);
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .component-item:hover {
            background: rgba(90, 24, 154, 0.1);
            transform: translateX(10px);
            border-left-color: var(--accent);
        }
        
        .component-number {
            background: var(--gradient-accent);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.9rem;
        }
        
           .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .program-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            cursor: pointer;
            opacity: 0;
            transform: translateY(20px);
            animation: cardAppear 0.6s ease forwards;
        }
        
        .program-card:nth-child(1) { animation-delay: 1s; }
        .program-card:nth-child(2) { animation-delay: 1.1s; }
        .program-card:nth-child(3) { animation-delay: 1.2s; }
        .program-card:nth-child(4) { animation-delay: 1.3s; }
        .program-card:nth-child(5) { animation-delay: 1.4s; }
        
        @keyframes cardAppear {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .program-card:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            background: var(--gradient-primary);
            color:var(--light);
        }
        
        .program-card:hover h5,
        .program-card:hover .program-icon {
            color: white;
        }
        
        .program-icon {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }
        
        .program-card h5 {
            color: var(--primary);
            font-size: 1.2rem;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }

           .stats-card {
            background: var(--gradient-primary);
            color: white;
            border-radius: 15px;
            padding: 30px;
            margin: 40px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            opacity: 0;
            animation: zoomIn 1s ease forwards 1.5s;
        }
        
        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        .stats-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
            background-size: cover;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            margin: 10px 0;
            color: var(--success);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        
        .stat-item {
            margin: 15px 0;
            position: relative;
            z-index: 1;
        }

        .btn3{
             color: var(--secondary);
        }
        .btn2 {
            background: var(--gradient-accent);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            transition: all 0.4s ease;
            color: white;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

            /* Custom buttons */
        .btn {
            background: var(--gradient-primary);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            transition: all 0.4s ease;
            color: white;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }
        
        .btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-accent);
            transform: translateX(-100%);
            transition: transform 0.4s ease;
            z-index: 1;
        }
        
        .btn:hover::after {
            transform: translateX(0);
            
        }
        
        .btn span {
            position: relative;
            z-index: 2;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(90, 24, 154, 0.3);
            color: #e0e0e0;
        }
        
        .btn-accent {
            background: var(--gradient-accent);
        }
        
        .btn-accent::after {
            background: var(--gradient-primary);
        }
        
        
        /* IMPORTANT LINKS SECTION */
        .card-header {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 15px 20px;
            border-bottom: none;
        }
        
        .bg-primary {
            background: var(--gradient-primary) !important;
            border: none;
        }
        
        .list-group-item {
            padding: 15px 20px;
            border-left: none;
            border-right: none;
            border-color: rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            color: var(--primary);
            position: relative;
            padding-left: 40px;
        }
        
        .list-group-item::before {
            content: '\f054';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--accent);
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }
        
        .list-group-item:hover {
            background: rgba(90, 24, 154, 0.05);
            transform: translateX(5px);
        }
        
        .list-group-item:hover::before {
            transform: translateY(-50%) translateX(3px);
        }
        
        .shadow-sm {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08) !important;
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .shadow-sm:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
        }

          /* VIDEO SECTION */
        .video-section {
            padding: 30px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            position: relative;
            overflow: hidden;
        }
        
        .video-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,50 C150,100 350,0 500,50 S850,0 1000,50 V100 H0 Z" fill="white"/></svg>');
            background-size: 100% 100%;
            transform: rotate(180deg);
        }
        
        .video-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transform: perspective(1000px) rotateY(-10deg);
            transition: all 0.5s ease;
        }
        
        .video-container:hover {
            transform: perspective(1000px) rotateY(0deg);
        }
        
        .video-container iframe {
            width: 100%;
            height: 400px;
            border: none;
        }
        
        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: var(--gradient-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            opacity: 0.9;
            transition: all 0.3s ease;
            z-index: 10;
        }
        
        .play-button:hover {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1.1);
        }
        
        /* QUOTES SECTION */
        .quotes-section {
            padding: 80px 0;
            background: var(--gradient-light);
            position: relative;
        }

        .quote-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            position: relative;
            border-top: 5px solid var(--accent);
            transform-style: preserve-3d;
            transition: all 0.5s ease;
        }
        
        .quote-card.animate {
            animation: slideInRight 0.8s ease forwards;
        }
        
        .quote-card:nth-child(2).animate {
            animation-delay: 0.2s;
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* GALLERY SECTION */
        .gallery-section {
            padding: 80px 0;
            background: white;
        }
        
        .gallery-main {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            height: 450px;
        }
        
        .gallery-main-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        
        .gallery-main:hover .gallery-main-img {
            transform: scale(1.1);
        }
        
        .gallery-nav {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
            z-index: 10;
        }
        
        .gallery-nav-btn {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .gallery-nav-btn.active,
        .gallery-nav-btn:hover {
            background: var(--accent);
            transform: scale(1.2);
        }
        
        .gallery-thumbs {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .gallery-thumb {
            width: 120px;
            height: 80px;
            object-fit: cover;
            border-radius: 10px;
            cursor: pointer;
            opacity: 0.6;
            transition: all 0.3s ease;
            transform: perspective(1000px) rotateY(0deg);
        }
        
        .gallery-thumb:hover,
        .gallery-thumb.active {
            opacity: 1;
            transform: perspective(1000px) rotateY(10deg);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        
       /* FOOTER */
        footer.bg-dark {
            background: var(--gradient-primary) !important;
            color: white;
            padding: 60px 0 20px;
            position: relative;
            overflow: hidden;
        }
        
        footer.bg-dark::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-accent);
        }
        
        .footer-column h3 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent);
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            transition: all 0.3s ease;
            padding: 5px 0;
        }
        
        .footer-links a:hover {
            color: var(--success);
            transform: translateX(10px);
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: var(--accent);
            transform: translateY(-3px) rotate(10deg);
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

         /* IMPORTANT LINKS SECTION */
        .important-links-section {
            padding: 40px 0;
        }
        
        .links-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
        }
        
        .links-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .links-header {
            background: var(--gradient-primary);
            color: white;
            padding: 20px;
            border-bottom: none;
            font-size: 1.2rem;
            font-weight: 600;
            position: relative;
        }
        
        .links-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-accent);
        }
        
        .link-item {
            padding: 18px 20px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            padding-left: 45px;
            cursor: pointer;
        }
        
        .link-item:last-child {
            border-bottom: none;
        }
        
        .link-item::before {
            content: '\f35a';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--accent);
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .link-item:hover {
            background: rgba(90, 24, 154, 0.05);
            transform: translateX(5px);
        }
        
        .link-item:hover::before {
            transform: translateY(-50%) rotate(45deg);
            color: var(--secondary);
        }
        
        /* Custom buttons */
        .btn-primary {
            background: var(--gradient-primary);
            border: none;
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(90, 24, 154, 0.4);
        }
        
        .btn-accent {
            background: var(--gradient-accent);
            border: none;
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-accent:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 0, 124, 0.4);
            color: white;
        }
        
        /* Responsive Design */
         @media (max-width: 768px) {
            .search-box {
                width: 100%;
                margin-top: 15px;
            }
            
            header .container {
                flex-direction: column;
                text-align: center;
            }
            
            header .d-flex {
                flex-direction: column;
                gap: 10px;
            }
            
            .slider-img {
                height: 250px;
            }
            
            .carousel-caption {
                bottom: 20px;
                padding: 15px;
            }
            
            .carousel-caption h3 {
                font-size: 1.4rem;
            }
            
            .carousel-caption p {
                font-size: 0.9rem;
            }
            
            .main-nav .nav-link {
                padding: 12px 15px !important;
            }
            
            .whats-new-header {
                padding: 15px;
                font-size: 1.1rem;
            }
            
            .news-item {
                padding: 12px 15px 12px 30px;
            }

            .circulars-section {
                padding: 12px 0;
                margin: 12px 0;
            }
            
            .circulars-header {
                font-size: 1rem;
                padding: 10px 12px;
                margin-bottom: 10px;
            }
            
            .marquee-container {
                padding: 10px 12px;
            }
            
            .marquee-container a {
                margin: 0 8px;
                font-size: 0.9rem;
            }
            
            marquee {
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 576px) {
            .top-bar .container {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .slider-img {
                height: 200px;
            }
            
            .carousel-caption {
                display: none;
            }
            
            .list-group-item {
                padding: 12px 15px 12px 35px;
            }
            
            .list-group-item::before {
                left: 15px;
            }

            .circulars-header {
                width: 100%;
                text-align: center;
            }
            
            .marquee-container {
                overflow-x: auto;
                white-space: nowrap;
                padding: 8px 10px;
            }
            
            marquee {
                animation: none !important;
            }
            
            .marquee-container a {
                display: inline-block;
                margin: 0 6px;
                font-size: 0.85rem;
            }
        }
