/* Navbar Styling */
.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    color: #0048DD; /* Dark Blue Brand Color */
}

.navbar-nav .nav-link {
    color: #333333; /* Dark text */
    font-size: 1rem;
    padding: 10px;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: #0048DD; /* Highlight active link */
    font-weight: 600;
}

.btn-primary {
    background-color: #0048DD; /* Button Color */
    border: none;
    padding: 8px 20px;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0036B5;
}


.btn-lg {
    font-size: 1.25rem; /* Adjust size as needed */
    padding: 0.75rem 1.5rem; /* Adjust padding as needed */
    border-radius: 0.5rem; /* Adjust border-radius as needed */
}





/* Infinite Animation */
@keyframes infinitePulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.animated-button {
    animation: infinitePulse 2s infinite;
}



/* Hero Banner Section */
.hero-banner {
    background-image: url('img/banner.jpg'); /* Use your image path here */
    background-size: cover;
    background-position: center;
    height: 100vh;
    max-height: 800px;;
    position: relative;
}

.hero-banner-inner {
    background-image: url('img/banner-inner.jpg'); /* Use your image path here */
    background-size: cover;
    background-position: center;
    height: 100vh;
    max-height: 300px;;
    position: relative;
}

/* Dark Overlay */
.hero-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 1;
}

/* Centered content */
.hero-banner .container {
    position: relative;
    z-index: 2;
}

.hero-banner h1 {font-size:5em !important;}








/* Section Styling */
.about-us {
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.image-container img {
    
    max-width: 100%; /* Ensure responsive images */
    height: auto; /* Maintain aspect ratio */
}

.content {
    text-align: left; /* Align text to the left for readability */
}

.content h1 {
    font-size: 3rem; /* Larger heading size */
    margin-bottom: 20px;
}

.content h4 {
    font-size: 1.75rem; /* Slightly larger smaller heading size */
    margin-bottom: 15px;
}

.content p {
    font-size: 1.25rem; /* Larger paragraph font size */
    margin-bottom: 30px;
}

.pointer-item {
    font-size: 1.125rem; /* Larger font size for pointers */
}

.pointer-item i {
    font-size: 1.75rem; /* Larger size for icons */
    color: #0048DD; /* Icon color */
}

.pointer-item span {
    font-size: 1.125rem; /* Larger font size for text next to icons */
}


/* Section Styling */
.services {
    background-color: #0048DD; /* Background color for the section */
}

.service-item {
    background: #fff; /* White background for each service box */
    padding: 30px; /* Increased padding */
    border-radius: 0px; /* No border-radius */
    box-shadow: 0 4px 8px rgba(0,0,0,0.15); /* Subtle shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensure the box fills its container height */
}

.service-item:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 8px 16px rgba(0,0,0,0.2); /* More pronounced shadow on hover */
}

.service-item i {
    color: #0048DD; /* Icon color */
}

.service-item h4 {
    font-size: 1.5rem; /* Heading size for services */
    margin-top: 10px;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 1rem; /* Font size for service descriptions */
    margin-bottom: 20px; /* Space between paragraph and button */
}

.service-item a {
    text-decoration: none;
    color: #fff;
    background-color: #0048DD;
    border-radius: 0.25rem;
    padding: 10px 20px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

.service-item a:hover {
    background-color: #0038a8; /* Darker shade on hover */
}

.service-item a i {
    margin-left: 8px;
}


.s-box-20240907-1 {
    background-color: #fff;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.s-box-20240907-1:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}



.feature-icon {
    width: 60px;
    height: 60px;
}

h5 {
    color: #08003A;
}

p {
    color: #6c757d;
}

.feature-content {
    text-align: left;
}


/* Footer Styling */
.footer {
    background-color: #0048DD; /* Footer background color */
    color: #fff; /* Text color */
}

.footer h5 {
   
    margin-bottom: 1rem; /* Space below headings */
}

.footer p {
    
    line-height: 1.6; /* Line height for better readability */
}

.footer ul {
    padding-left: 0;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: #d1e0ff; /* Light color on hover */
}

.footer .text-center {
    font-size: 0.875rem;
    margin-top: 1rem;
}








/* Responsive Font Sizes */
@media (max-width: 768px) {

    .content h1, .content h4, .content p {
        font-size: 1.5rem; /* Adjust font size for smaller screens */
    }

    .pointer-item i {
        font-size: 1.5rem; /* Adjust icon size for smaller screens */
    }

    .navbar-collapse {
        background-color: #ffffff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    .navbar-nav .nav-item {
        margin: 10px 0;
    }


    .hero-banner h1 {
        font-size: 2rem;
    }
    .hero-banner p {
        font-size: 1rem;
    }

    .about-card img {
        width: 100px;
        height: 100px;
    }
}

