/* General Navbar Styles */
.navbar {
    padding: 10px 30px;
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 15px; /* Reduce padding for smaller screens */
    }
    .navbar-nav .nav-item {
        margin-left: 10px; /* Reduce spacing on smaller screens */
    }
}

.navbar-light .navbar-nav .nav-link {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #ffcc00; /* Yellow color from your sidebar */
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.1);
}

.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0,0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Jumbotron Section */
.jumbotron {
    background-color: #ffffff;
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
}

@media (max-width: 768px) {
    .jumbotron {
        padding: 10% 5%; /* Better spacing on small screens */
    }
}

/* Features */
.feature {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.feature:hover {
    transform: scale(1.05);
}

/* Icons */
.icon {
    font-size: 50px;
    color: #007bff;
    margin-bottom: 15px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(45deg, #1E2A47, #4A90E2);
    color: #fff;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Text Visibility */
.hero-section .lead {
    color: #f8f9fa;
    font-size: 1.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    opacity: 1 !important;
    animation: fadeIn 2s ease-in-out;
}


@media (max-width: 768px) {
    .btn {
        width: 100%; /* Ensure buttons are full width on smaller screens */
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 2s ease-in-out;
}

.slide-in-left {
    animation: slideInLeft 1s ease-out;
}

.slide-in-right {
    animation: slideInRight 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
