


html {
    scroll-behavior: smooth;
}



.hero-section {
    position: relative;
    height: 95vh; 
    background-image: url('/img/hero.jpg'); 
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white; /* Text color */
}

.hero-content {
    text-align: center;
    max-width: 960px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5em;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 1em;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn-primary {
        padding: 8px 16px;
        font-size: 1rem;
    }
}

button {
    padding: 10px 20px;
    font-size: 18px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

button {
    padding: 10px 20px;
    font-size: 18px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

/* Navbar Styling */
.nav-link {
    color: #fff !important;
}

.nav-link:hover {
    color: #07255c !important;
    transition: color 0.3s;
}

/* Button Styling */
.btn-primary {
    background-color: #000000;
    border: none;
}


/* Hero Section */
#home h1 {
    font-size: 3rem;
    animation-duration: 2s;
}

#home p {
    font-size: 1.5rem;
    margin-top: 10px;
    animation-duration: 2.5s;
}


.navbar-nav .nav-link {
    color: #fff;
}

.navbar-nav .nav-link:hover {
    color: #007bff;
}


/* Section Headings */
h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    color: #007bff;
}

/* About Us and Services Images */
img.img-fluid {
    transition: transform 0.3s ease-in-out;
}

img.img-fluid:hover {
    transform: scale(1.05);
}



.service-item {
    transition: transform 0.3s ease-in-out, background-color 0.3s ease;
}

.service-item:hover {
    transform: scale(1.1);
    background-color: #333;
}

.testimonials-section {
    background-color: #f8f9fa;
}

.carousel-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Contact Us Section */
#contact-us {
    background-color: #f8f9fa;
    padding: 60px 0;
}

/* Contact Info Styling */
.contact-info {
    font-size: 1.1rem;
    color: #333;
}

.contact-info i {
    margin-right: 10px;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Social Media Links */
.social-links a {
    color: #007bff;
    text-decoration: none;
    margin-right: 15px;
}

.social-links a:hover {
    color: #0056b3;
}

/* Map Styling */
.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 1000;
}

#backToTop i {
    font-size: 1.5rem;
}

/* Footer */
/* Footer Styling */
.footer {
    background-color: #343a40;
    padding-top: 40px;
    color: #fff;
}

.footer h5 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-link {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* Social Media Links */
.social-links a {
    color: #adb5bd;
    margin-right: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #007bff;
    transform: scale(1.1);
}

/* Newsletter Form */
#newsletter-form .form-control {
    background-color: #495057;
    border: none;
    color: #fff;
}

#newsletter-form .form-control:focus {
    background-color: #495057;
    color: #fff;
    border: none;
    box-shadow: none;
}

#newsletter-form .btn {
    background-color: #007bff;
    border: none;
}

#newsletter-form .btn:hover {
    background-color: #0056b3;
}


.service-image {
    width: 100%;
    height: 300px;
    object-fit: cover; /* Ensures the image scales properly without distortion */
    border-radius: 10px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.8); /* Add a background for visibility */
    padding: 10px;
    border-radius: 50%;
}

/* Carousel control button hover effect */
.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: rgba(0, 0, 0, 1);
}

#about-us {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.about-content h3 {
    font-size: 1.8rem;
    font-weight: bold;
}

.about-features .feature-item {
    display: flex;
    align-items: flex-start;
}

.feature-item i {
    color: #007bff;
}

.milestone {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.milestone h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.milestone p {
    font-size: 1.1rem;
    font-weight: bold;
    color: #6c757d;
}

/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

 h3,h2, h5, h6{
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #0056b3;
}
h1,h4
    {
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        color: #ffffff;
}

p, a, li {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

a:hover {
    color: #0056b3;
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.sticky-header + * {
    margin-top: 10px;
}

.navbar-nav .nav-link {
    color: #fff;
}

.navbar-nav .nav-link:hover {
    color: #007bff;
}

.contact-box, .map-box {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-box h4, .map-box h4 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.contact-form-box {
    background-color: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form-box h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #333;
}

.contact-form-box p {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #6c757d;
}

.services-section {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.services-section h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.services-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-item {
    background-color: #222;
    padding: 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.service-item:hover {
    background-color: #555;
}

.service-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 20px;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Logo Image Styling */
.logo-img {
    height: 50px; /* Adjust height to match your design */
    width: auto;
    margin-right: 10px; /* Add some space between the logo and text */
    vertical-align: middle;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

/* Careers Section */
#careers {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

#careers h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

#careers p {
    font-size: 1rem;
    color: #555;
    text-align: center;
}

.table thead th {
    background-color: #f1f1f1;
    font-weight: bold;
    text-align: center;
}

.table tbody td {
    vertical-align: middle;
}

.job-link {
    color: #007bff;
    text-decoration: none;
}

.job-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Job Details Modal Styling */
.modal-content {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.job-details {
    font-family: 'Roboto', sans-serif;
    color: #333;
}

.job-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.job-info p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.job-info strong {
    color: #555;
    font-weight: 600;
}

.job-description p {
    font-size: 1rem;
    line-height: 1.6;
}

.text-primary {
    color: #007bff !important;
}

.text-muted {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 15px;
}