﻿
:root {
    --primary: #0a0e23;
    --secondary: #141a3a;
    --accent: #ff6f00;
    --accent-light: #ff8f33;
    --accent-dark: #e65c00;
    --text: #ffffff;
    --text-secondary: #b8c2d9;
    --card-bg: #1e2347;
    --gradient: linear-gradient(135deg, #ff6f00 0%, #ff3e00 100%);
}


.navbar-custom {
    background: var(--secondary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 0.8rem 1rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
    border-bottom: 1px solid rgba(255, 111, 0, 0.2);
}

.navbar-brand {
    font-weight: 700;
    color: var(--text) !important;
}

    .navbar-brand img {
        height: 40px;
        margin-right: 10px;
    }

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem;
    position: relative;
    transition: all 0.3s ease;
}

    .nav-link:hover, .nav-link:focus {
        color:rgb(277, 111, 55) !important;
    }

    .nav-link.active {
        color: var(--text) !important;
        font-weight: 600;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--gradient);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .nav-link:hover::after, .nav-link.active::after {
        width: 70%;
    }


.dropdown-menu {
    background-color: #1e2347;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-item {
    color: white !important;
    padding: 0.5rem 1.5rem;
}

    .dropdown-item:hover {
        background-color:transparent !important;
        color:rgb(277, 111, 55) !important;
    }

.btnnav-accent {
    background: var(--gradient);
    color: white;
    border: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}
@media (max-width: 1024px){
    .btnnav-accent {
        background: var(--gradient);
        color: white;
        border: none;
        font-weight: 600;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
}
@media (min-width:320px) and (max-width:400px){
    .btnnav-accent{
        padding:0.5rem;
    }
}


.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 111, 0, 0.4);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

.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.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
footer {
    width: 100%; /* Full width footer */
    background-color: var(--secondary);
    padding: 3rem 1rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    width: 100%; /* Full width content */
    margin: 0;
    padding: 0 2rem; /* Side padding for spacing */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2.5rem;
    align-items: start;
}

.footer-col h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
}

    .footer-col h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -5px;
        width: 40px;
        height: 2px;
        background: var(--accent);
    }

.footer-about p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    margin-top: 30px;
    font-size: 0.95rem;
}

.footer-about .social-links {
    display: flex;
    gap: 0.8rem;
}

    .footer-about .social-links a {
        color: var(--text-secondary);
        background: rgba(255, 255, 255, 0.05);
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

        .footer-about .social-links a:hover {
            background: var(--accent);
            color: white;
        }

.footer-col ul {
    list-style: none;
    padding: 0px;
}

    .footer-col ul li {
        margin-bottom: 0.6rem;
    }

        .footer-col ul li a {
            color: var(--text-secondary);
            font-size: 0.9rem;
            text-decoration: none;
            transition: 0.3s;
        }

            .footer-col ul li a:hover {
                color: var(--accent);
                padding-left: 5px;
            }

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-info i {
    color: var(--accent);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

    .footer-bottom p {
        color: var(--text-secondary);
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

.legal-links {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
}

    .legal-links a {
        color: var(--text-secondary);
        font-size: 0.85rem;
        transition: color 0.3s;
    }

        .legal-links a:hover {
            color: var(--accent);
        }

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
        background-color: #1e2347;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color:#1e2347;
        padding: 1rem;
        margin-top: 0.5rem;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .nav-link {
        padding: 0.8rem 0 !important;
        margin: 0.3rem 0;
    }

        .nav-link::after {
            display: none;
        }

    .dropdown-menu {
        margin-left: 1rem;
        background-color: #1e2347;
        border: none;
    }
}
.navbar-nav .dropdown-menu {
    position: static;
    background-color: #272c48;
}
 @media (max-width: 991.98px) {
            .navbar-collapse

        {
            background: var(--secondary);
            padding: 1rem;
            margin-top: 0.5rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .mega-menu {
            position: static;
            width: 100%;
            box-shadow: none;
            border: none;
            padding: 0;
        }

        .mega-menu-content {
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .mega-menu-section {
            padding: 0;
            margin-bottom: 1rem;
        }

        .feature-card {
            margin-top: 1rem;
        }

        .cta-wrapper {
            margin-left: 0;
            margin-top: 1rem;
        }

        .cta-buttons {
            flex-direction: column;
            width: 100%;
        }

        }