/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    padding-top: 70px; /* For fixed navbar */
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Navigation Bar */
.navbar {
    background: linear-gradient(135deg, #1a1a1a, #2e2e2e);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    padding: 15px 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar-brand img {
    width: 45px;
    height: 45px;
    margin-right: 10px;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: #00aaff !important;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 10px 20px;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: #00aaff;
    bottom: 0;
    left: 50%;
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover {
    color: #00aaff !important;
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* Navbar on Scroll */
.navbar.scrolled {
    background: #1a1a1a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    outline: none;
    padding: 10px;
    background-color: #00aaff;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.navbar-toggler:hover {
    background-color: #0077cc;
}

.navbar-toggler-icon {
    background-color: #fff;
    padding: 5px;
    border-radius: 3px;
}

/* Dropdown Menu */
.dropdown-menu {
    background-color: #2e2e2e;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.dropdown-item {
    color: #fff;
    padding: 12px 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #00aaff;
    color: #fff;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: url('../images/banner.jpg') no-repeat center center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    text-align: center;
    padding: 20px;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-section p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section .btn {
    padding: 12px 30px;
    font-size: 1.2rem;
    background-color: #00aaff;
    border: none;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-section .btn:hover {
    background-color: #0077cc;
    transform: translateY(-3px);
}

/* Section Titles */
section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

/* Cards */
.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card img {
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.card-title {
    font-weight: bold;
    font-size: 1.4rem;
    color: #00aaff;
    margin-bottom: 15px;
}

.card-text {
    font-size: 1rem;
    color: #555;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Footer */
/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a, #2e2e2e);
    color: #ddd;
    padding: 50px 0;
    text-align: center;
    font-size: 1rem;
    position: relative;
}

footer h5 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #bbb;
}

footer a {
    color: #00aaff;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #0077cc;
    text-decoration: underline;
}

/* Quick Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00aaff;
}

/* Social Media Icons */
.footer-social-icons a {
    font-size: 1.5rem;
    color: #ccc;
    margin: 0 10px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social-icons a:hover {
    color: #00aaff;
    transform: translateY(-5px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #444;
    margin-top: 30px;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #aaa;
}

/* Buttons */
.btn-primary {
    background-color: #00aaff;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #0077cc;
    transform: translateY(-3px);
}

/* Utility Classes */
.text-primary {
    color: #00aaff !important;
}

.bg-light-gray {
    background-color: #f4f4f4;
}

/* Hero Carousel Styling */
#heroCarousel .carousel-item {
    height: 100vh;
    background-color: #222; /* Fallback background color */
}

#heroCarousel .carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

#heroCarousel .carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

#heroCarousel .carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

#heroCarousel .carousel-caption p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 10px;
}
/* Logo Image */
.navbar-brand .logo-img {
    width: 60px;      /* Increase the width */
    height: 60px;     /* Increase the height */
    transition: transform 0.3s ease, filter 0.3s ease; /* Smooth transition for hover effects */
}

/* Logo Text */
.navbar-brand .logo-text {
    font-size: 2rem;          /* Larger font size */
    font-weight: bold;        /* Bold font */
    color: #00aaff !important; /* Highlight color */
    letter-spacing: 1px;      /* Spacing between letters */
    text-transform: uppercase; /* Uppercase text */
    transition: color 0.3s ease;
}

/* Logo Hover Effects */
.navbar-brand:hover .logo-img {
    transform: scale(1.1);    /* Slightly enlarge the logo on hover */
    filter: brightness(1.2);  /* Increase brightness */
}

.navbar-brand:hover .logo-text {
    color: #ffdd57 !important; /* Change text color on hover */
}
