
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


body {
    scroll-behavior: smooth;
    font-family: "Inter", sans-serif;
    /* color: #0a1a2a; */
    color: #484444;
    font-optical-sizing: auto;
    font-weight: normal;
    line-height: 27px;
}

/* Navigation */
.navbar {
    /* background: #ffffffee; */
    border-top: 5px solid #4169e1;
    background: #fff;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-top: 5px;
}

.navbar::before{
    content: "";
    width: 100%;
    height: 5px;
    background: #001f54;
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
}

.navbar-brand img {
    height: 48px;
}

/* Hero Section */
#home {
    height: 100vh;
    background: linear-gradient(135deg, #007bff, #00b2ff);
    color: white;
    display: flex;
    align-items: center;
}

#home h1 {
    font-size: 3rem;
    font-weight: 700;
}

/* Section Styles */
section {
    padding: 80px 0;
}

#services .card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

#services .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background: #0056d2;
    color: white;
    padding: 30px 0;
    text-align: center;
}


#home.hero-section {
    position: relative;
    background: url('images/hero_img.jpg') center center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
}

#home .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 50, 120, 0.65);
    z-index: 1;
}

#home .hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-weight: 700;
    font-size: 2.7rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
}

#navMenu a{
    text-transform: uppercase;
    /* color: #0b6ffd; */
    font-weight: 600;
    color: #484444;
}

    #navMenu a:hover{
        color: #0b6ffd;
    }

.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: #0b6ffd; 
    transition: 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.service-card {
    border-radius: 12px;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.service-card i {
    transition: 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.15);
}

.service-card h4{
    color: #484444
}

.logo_name{
    letter-spacing: 1px;
    color: #001f53;
    font-weight: 700;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
}
