:root {
    --deep-blue: #0B1B2B;
    --bright-orange: #FF6A00;
    --gold-yellow: #FFC400;
    --accent-blue: #0073FF;
    --light-gray: #f8f9fa;
    --dark-navy: #0a192f;
    --gradient-blue: linear-gradient(135deg, #0073FF 0%, #00C6FF 100%);
    --orange-gold-gradient: linear-gradient(135deg, #FF6A00 0%, #FFC400 100%);
    --primary-blue: #0B1B2B;
    --accent-orange: #FF6A00;
    --highlight-yellow: #FFC400;
    --light-bg: #f8f9fa;
    --dark-bg: #0a192f;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.h-55{
    height: 60px;
}

/* Header Styles */
.navbar {
    background-color: var(--deep-blue);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    color: white !important;
    font-size: 1.8rem;
}

.navbar-brand span {
    color: var(--bright-orange);
}

.nav-link {
    color: white !important;
    margin: 0 10px;
    font-weight: 500;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-yellow) !important;
}

.btn-primary-custom {
    background-color: var(--bright-orange);
    border: none;
    color: white;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background-color: var(--gold-yellow);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 106, 0, 0.3);
}

.btn-gradient-blue {
    background: var(--gradient-blue);
    border: none;
    color: white;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s;
}

.btn-gradient-blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 115, 255, 0.3);
}

/* Footer */
footer {
    background: var(--deep-blue);
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background: var(--bright-orange);
    bottom: -5px;
    left: 0;
}

.footer-links {
    list-style: none;
    padding-left: 0px;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold-yellow);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--bright-orange);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s;
    color: white;
}

.social-icon:hover {
    background-color: var(--gold-yellow);
    color: var(--deep-blue);
    transform: translateY(-5px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    opacity: 0.7;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}