        /* Footer */
        .footer {
            background: linear-gradient(135deg, #001a33 0%, #000000 100%);
            border-radius: 15px;
            padding: 50px 30px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            margin-top: 50px;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 92, 27, 0.2);
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #FF5722, #ff9a3c);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            /* Changed to 4 columns to match index.html */
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-column {
            flex: 1;
            min-width: 200px;
        }

        .footer-logo {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
        }

        .footer-logo .circle {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #FF5722 0%, #FF9800 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.8rem;
            margin-bottom: 0;
            box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
            transition: transform 0.3s ease;
        }

        .footer-logo .circle:hover {
            transform: rotate(10deg) scale(1.1);
        }

        .footer-logo h4 {
            color: #FFFFFF;
            font-weight: 700;
            margin: 0 0 10px 0;
            font-size: 1.4rem;
        }

        .footer-logo p {
            color: #AAAAAA;
            line-height: 1.6;
            margin: 0;
            font-size: 0.95rem;
        }

        .footer-column h4 {
            color: #FF5722;
            margin-bottom: 20px;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #FF5722, #ff9a3c);
            border-radius: 3px;
        }

        .footer-column p {
            color: #CCCCCC;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            color: #FFFFFF;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-links a:hover {
            background: #FF5722;
            transform: translateY(-3px);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-column ul li a {
            color: #CCCCCC;
            text-decoration: none;
            transition: all 0.3s;
            display: flex;
            align-items: center;
        }

        .footer-column ul li a:hover {
            color: #FF5722;
            transform: translateX(5px);
        }

        .footer-column ul li a i {
            margin-right: 10px;
            font-size: 0.8rem;
            color: #FF5722;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .contact-item i {
            color: #FF5722;
            margin-top: 5px;
        }

        .contact-text {
            color: #CCCCCC;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #CCCCCC;
            font-size: 0.9rem;
        }

        .copyright a {
            color: #FF5722;
            text-decoration: none;
        }

        .copyright a:hover {
            text-decoration: underline;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                /* 2 columns on mobile */
            }
        }

        @media (max-width: 576px) {
            .footer-content {
                grid-template-columns: 1fr;
                /* 1 column on small screens */
            }
        }

        /* Hide mobile login on desktop */
        @media (min-width: 769px) {
            .mobile-login {
                display: none !important;
            }
        }

        /* Hide desktop login on mobile */
        @media (max-width: 768px) {
            .nav-buttons {
                display: none !important;
            }

            .mobile-login {
                display: block !important;
            }
        }

        /* Hamburger styling */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
            position: relative;
        }

        .menu-toggle span {
            width: 28px;
            height: 3px;
            background: #ffffff;
            border-radius: 3px;
            display: block;
            transition: all 0.3s ease;
        }

        /* Hamburger hover effect */
        .menu-toggle:hover span:nth-child(2) {
            width: 35px;
        }

        /* Mobile styles */
        @media (max-width: 780px) {

            /* Show mobile hamburger */
            .menu-toggle {
                display: flex;
            }

            /* Hide desktop login button */
            .nav-buttons {
                display: none;
            }

            /* Show mobile login button inside hamburger */
            .mobile-login {
                display: block;
                width: 100%;
                text-align: center;
                margin: 10px 0;
            }

            .mobile-login a {
                display: block;
                background: linear-gradient(135deg, #FF5722 0%, #FF9800 100%);
                color: #FFFFFF !important;
                font-weight: 600;
                border-radius: 30px;
                margin: 10px 20px;
                padding: 12px 20px !important;
                text-align: center;
                box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
                transition: all 0.3s ease;
                text-decoration: none;
            }

            .mobile-login a:hover {
                background: linear-gradient(135deg, #e64a19 0%, #F57C00 100%) !important;
                box-shadow: 0 6px 20px rgba(255, 87, 34, 0.6);
                transform: translateY(-3px);
            }

            /* Convert menu to mobile dropdown */
            .nav-menu {
                display: none;
                position: absolute;
                top: 50px;
                left: 0;
                width: 100%;
                background: #121722;
                padding: 15px 0;
                z-index: 1000;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
            }

            .nav-menu.active {
                display: block;
            }

            .nav-menu ul {
                flex-direction: column;
                text-align: center;
            }

            .nav-menu ul li {
                padding: 10px 0;
                border-top: 1px solid #1d2333;
            }
        }
    </style>
