        :root {
            --primary-color: #00d4c8;
            --secondary-color: #1a2639;
            --dark-blue: #002147;
            --light-gray: #f8f9fa;
            --dark-gray: #6c757d;
        }

        /* General Styles */
        body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            color: #333;
            background-color: var(--light-gray);
        }

        /* Navigation Bar */
        .navbar {
            background-color: var(--secondary-color);
            padding: 15px 0;
            transition: all 0.3s ease;
        }

        .navbar-scrolled {
            background-color: rgba(26, 38, 57, 0.95);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .logo {
            height: 50px;
            transition: all 0.3s ease;
        }
     /* Updated Footer Styles */
     .footer {
            background-color: #1a2639;
            color: white;
            padding: 50px 0 0;
        }

        .footer-main {
            padding-bottom: 30px;
        }

        .copyright-section {
            background-color: #002147;
            padding: 20px 0;
            text-align: center;
        }

        .copyright-text {
            color: #ccc;
            margin: 0;
            font-size: 14px;
        }

        .copyright-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 10px;
            flex-wrap: wrap;
        }

        .copyright-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .copyright-links a:hover {
            color: #00d4c8;
        }

        /* Mobile Footer Layout */
        .mobile-footer-order {
            display: flex;
            flex-direction: column;
        }

        .mobile-footer-order .download-section {
            order: 1;
        }

        .mobile-footer-order .policy-section {
            order: 2;
        }

        .mobile-footer-order .contact-section {
            order: 3;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .footer-section {
                width: 100%;
                text-align: center;
                margin-bottom: 30px;
            }

            .footer-heading:after {
                left: 50%;
                transform: translateX(-50%);
            }

            .contact-info {
                justify-content: center;
            }

            .social-icons {
                justify-content: center;
            }

            .footer-links {
                text-align: center;
            }

            .app-download {
                justify-content: center;
            }
        }
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            font-size: 16px;
            margin-left: 15px;
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .navbar-nav .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
        }

        .navbar-nav .nav-link:hover:after {
            width: 100%;
        }

        /* Button Styles */
        .btn {
            padding: 10px 25px;
            border-radius: 5px;
            font-weight: 500;
            transition: all 0.3s ease;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 0.5px;
            border: none;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .student-login {
            background: linear-gradient(135deg, #ff9800, #ff5722);
            color: white;
        }

        .student-login:hover {
            background: linear-gradient(135deg, #ff5722, #ff9800);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
        }

        .subadmin-login {
            background: linear-gradient(135deg, #ff9800, #e65100);
            color: white;
        }

        .subadmin-login:hover {
            background: linear-gradient(135deg, #e65100, #ff9800);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(230, 81, 0, 0.3);
        }

        .admin-login {
            background: linear-gradient(135deg, var(--primary-color), #00796b);
            color: white;
        }

        .admin-login:hover {
            background: linear-gradient(135deg, #00796b, var(--primary-color));
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 212, 200, 0.3);
        }

        /* Hero Section */
        .hero-section {
            background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                              url('https://www.webfashionearning.com/public/frontend/assets1/images/banner/Home.jpg');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            color: white;
        }

        .hero-content {
            text-align: left;
            padding: 20px;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 30px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 600px;
        }

        .hero-buttons .btn {
            margin-right: 15px;
            margin-bottom: 15px;
            padding: 12px 30px;
            font-weight: 600;
        }

        .login-btn {
            background: linear-gradient(135deg, var(--primary-color), #009688);
            color: white;
        }

        .login-btn:hover {
            background: linear-gradient(135deg, #009688, var(--primary-color));
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 212, 200, 0.3);
        }

        .signup-btn {
            background: linear-gradient(135deg, #00bcd4, #0097a7);
            color: white;
        }

        .signup-btn:hover {
            background: linear-gradient(135deg, #0097a7, #00bcd4);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
        }

        .shop-btn {
            background: linear-gradient(135deg, #4caf50, #2e7d32);
            color: white;
        }

        .shop-btn:hover {
            background: linear-gradient(135deg, #2e7d32, #4caf50);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
        }

        /* Footer */
        .footer {
            background-color: var(--secondary-color);
            color: white;
            padding: 50px 0 0;
        }

        .footer-main {
            padding-bottom: 30px;
        }

        .footer-logo {
            height: 60px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .footer-logo:hover {
            transform: scale(1.05);
        }

        .footer-text {
            color: #ccc;
            margin-bottom: 20px;
            font-size: 14px;
            line-height: 1.6;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 5px;
            border: 1px solid white;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background-color: white;
            color: var(--secondary-color);
            transform: translateY(-3px);
        }

        .footer-heading {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-heading:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: var(--primary-color);
            bottom: 0;
            left: 0;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }

        .footer-links li:hover {
            transform: translateX(5px);
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 16px;
            display: block;
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

        .contact-info {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .contact-info i {
            color: var(--primary-color);
            font-size: 18px;
            margin-top: 3px;
        }

        .contact-info p {
            margin: 0;
            color: #ccc;
        }

        .download-section {
            /*background: rgba(255, 255, 255, 0.1);*/
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
        }

        .download-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            color: white;
        }

        .app-download {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .app-btn {
            height: 45px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .app-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Copyright Section */
        .copyright-section {
            background-color: var(--dark-blue);
            padding: 20px 0;
            text-align: center;
        }

        .copyright-text {
            color: #ccc;
            margin: 0;
            font-size: 14px;
        }

        .copyright-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 10px;
        }

        .copyright-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .copyright-links a:hover {
            color: var(--primary-color);
        }

        /* Mobile Accordion Footer */
        .footer-accordion {
            display: none;
        }

        .footer-accordion-btn {
            background: transparent;
            border: none;
            color: white;
            width: 100%;
            text-align: left;
            padding: 15px 0;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .footer-accordion-btn:hover {
            color: var(--primary-color);
        }

        .footer-accordion-btn i {
            transition: all 0.3s ease;
        }

        .footer-accordion-btn.active i {
            transform: rotate(180deg);
        }

        .footer-accordion-content {
            padding: 0 15px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: rgba(0, 0, 0, 0.1);
            border-radius: 0 0 5px 5px;
        }

        /* WhatsApp Chat Button */
        .whatsapp-chat {
            position: fixed;
            bottom: 70px;
            right: 20px;
            z-index: 999;
        }

        .whatsapp-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #25D366;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            position: relative;
            transition: all 0.3s ease;
        }

        .whatsapp-btn:hover {
            transform: scale(1.1);
        }

        .whatsapp-text {
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            white-space: nowrap;
            font-size: 12px;
            font-weight: 500;
            color: white;
        }

        /* Mobile Bottom Navigation */
        .mobile-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #263143;
            z-index: 1000;
            box-shadow: inset -2px 3px 10px 17px rgb(0 0 0 / 10%);
        }
        .mobile-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 10px 0;
            color: white;
            text-decoration: none;
            font-size: 12px;
            transition: all 0.3s ease;
        }

        .mobile-nav-item i {
            font-size: 20px;
            margin-bottom: 5px;
        }

        .mobile-nav-item:hover, .mobile-nav-item:active {
            background-color: rgba(0, 0, 0, 0.1);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                padding: 20px;
                border-radius: 5px;
                margin-top: 10px;
            }
            
            .login-buttons {
                display: flex;
                flex-direction: column;
                gap: 10px;
                margin-top: 15px;
            }
            
            .login-buttons .btn {
                width: 100%;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .hero-content {
                text-align: center;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-buttons {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            
            .hero-buttons .btn {
                width: 200px;
                margin-right: 0;
            }

            .footer-section {
                display: none;
            }

            .footer-accordion {
                display: block;
            }

            .footer-heading:after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .contact-info {
                justify-content: center;
            }
            
            .social-icons {
                justify-content: center;
            }
            
            .footer-links {
                text-align: center;
            }
            
            .mobile-nav {
                display: flex;
            }
            
            body {
                padding-bottom: 60px;
            }
            
            .whatsapp-chat {
                bottom: 80px;
            }
            
            .download-section {
                text-align: center;
            }
            
            .app-download {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-section {
                height: 400px;
            }
@media (max-width: 768px) {
    .hero-buttons {
        display: flex
;
        /* flex-direction: column; */
        align-items: center;
        margin: -19px;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    @media (max-width: 768px) {
        .hero-buttons {
            display: flex
;
            flex-direction: row;
            align-items: center;
            margin: -19px;
            gap: 16px;
            align-content: stretch;
        }
    }
}



            .app-download {
                flex-direction: column;
                align-items: center;
            }

            .copyright-links {
                flex-direction: column;
                gap: 5px;
            }
        }
