/* General Styles */
body {
    background: #f8f9fa;
    color: #222;
    font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
}

/* Navbar & Footer */
.navbar, footer {
    background-color: #0033a1 !important;
}
.navbar .nav-link, .navbar-brand, footer {
    color: #fff !important;
    font-weight: bold;
}
.navbar .nav-link.active, .navbar .nav-link:hover {
    text-decoration: none;
    color: #000 !important;
}
footer a.text-white {
    font-weight: bold;
}
footer a.text-white:hover {
    color: #000 !important;
    text-decoration: none;
}

/* Hero Section */
.hero-section,
.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
    height: 500px;
}
.hero-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.carousel-caption {
    /* background: rgba(0, 51, 161, 0.6); */
    border-radius: 10px;
    padding: 1rem 2rem;
}

/* CEO Section */
.ceo-img {
    border: 4px solid #0033a1;
    transition: transform 0.3s;
}
.ceo-img:hover {
    transform: scale(1.05) rotate(-2deg);
}

/* Services Section */
.service-card {
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}
.service-card:hover, .service-card:focus {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,51,161,0.15);
}

/* News Section */
.news-item {
    transition: box-shadow 0.3s, transform 0.3s;
}
.news-item:hover {
    box-shadow: 0 8px 32px rgba(0,51,161,0.10);
    transform: scale(1.01);
}

/* Scroll Animation (for JS) */
.animate-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s, transform 0.7s;
}
.animate-scroll.visible {
    opacity: 1;
    transform: none;
}

/* Responsive Tweaks */
@media (max-width: 991.98px) {
    .hero-section .carousel-inner {
        height: 320px;
    }
    .ceo-img {
        max-width: 180px;
    }
}
@media (max-width: 575.98px) {
    .hero-section .carousel-inner {
        height: 180px;
    }
    .carousel-caption {
        padding: 0.5rem 1rem;
        font-size: 0.95rem;
    }
    .ceo-img {
        max-width: 120px;
    }
} 