/* Custom Navbar Styling */
.navbar {
    background-color: #14202C !important;
    border-bottom: 3px solid #2E8B9E;
    padding: 0.75rem 1rem;
}

.navbar-brand {
    color: #ffffff !important;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: #f0f0f0 !important;
    transform: translateY(-2px);
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Navbar Links */
.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

/* CTA Button */
.navbar .btn-primary {
    background-color: #D4A054;
    color: #14202C;
    border: none;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    transition: all 0.3s ease;
}

.navbar .btn-primary:hover {
    background-color: #E5B165;
    color: #14202C;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(212, 160, 84, 0.3);
}

/* Navbar Toggler */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.3);
}

.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");
}

/* Sticky Navbar Shadow */
.navbar.sticky-top {
    transition: box-shadow 0.3s ease;
}

.navbar.sticky-top.shadow-sm {
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.15) !important;
}

/* Mobile Menu Styling */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(20, 32, 44, 0.98);
        border-radius: 0.5rem;
        margin-top: 1rem;
        padding: 1rem;
        border: 1px solid #2E8B9E;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        margin: 0.25rem 0;
    }
}

/* Footer Styling */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    border-top: 3px solid #508ec3;
}

.footer h5 {
    color: #508ec3;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer a {
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #508ec3 !important;
    transform: translateX(5px);
}

.footer .social-links a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer .social-links a:hover {
    transform: translateY(-3px) scale(1.1);
}

/* Hero Section */
.hero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.min-vh-50 {
    min-height: 50vh;
}

/* Card Hover Effects */
.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
}

/* Responsive Typography */
@media (max-width: 767.98px) {
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
}

/* Custom Scrollbar for Webkit Browsers */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #508ec3;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2c5aa0;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card, .hero-section {
    animation: fadeIn 0.6s ease-in-out;
}
