/* Set global font styles */
body {
    font-family: 'Raleway', sans-serif;
}

h1, h2, h5 {
    font-family: 'Roboto', sans-serif;
}

/* Hero section styling to match the uploaded image */
/* Custom modal styling */
.modal-body .row {
    display: flex;
    align-items: center;
}

.modal-body img {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer styling */
.footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}
.services-section {
    background-color: #10131a;
    color: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
}

.highlight {
    color: #00FFFF; /* Light Cyan for emphasis */
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease-in-out;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
}
.services-section {
    background-color: #10131a;
    color: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
}

.highlight {
    color: #00FFFF; /* Light Cyan for emphasis */
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease-in-out;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
}
.services-section {
    background-color: #10131a;
    color: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
}

.highlight {
    color: #00FFFF; /* Light Cyan for emphasis */
}

.services-section {
    background-color: #10131a;
    color: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
}

.highlight {
    color: #00FFFF; /* Light Cyan for emphasis */
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease-in-out;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.service-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-card:hover .service-text {
    color: #FFD700; /* Highlight color on hover */
}


.why-choose-us-section {
    position: relative;
    /* background: url('../images/people.jpg') no-repeat center center/cover; */
    background-color: #1da1f2;
    background-attachment: fixed;
    padding: 60px 0;
    color: #fff;
    background-image: linear-gradient(to right, #2098f5 0%, #082c4e 100%); /* Adjust colors as needed */
}

.why-choose-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(89, 238, 243, 0.6); Black overlay with opacity */
    filter: grayscale(100%);
    z-index: 1;
}

.why-choose-us-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.why-choose-us-content {
    text-align: left;
    padding-left: 30px;
    position: relative;
    z-index: 2; /* Ensures text is on top of the overlay */
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    z-index: 2;
}

.highlight {
    color: #ffcc00; /* Light blue color for highlight */
}

.description {
    font-size: 1.2rem;
    line-height: 1.8;
    z-index: 2;
}







/* Our Clients Section */
.our-clients-section {
    position: relative;
    background: url('../images/rocket.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    padding: 60px 0;
    color: #fdf8f8;
    height: auto;
    min-height: 600px; /* Ensures same height as Why Choose Us */
}

.our-clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(255, 250, 250, 0.6); Black overlay with opacity */
    filter: grayscale(100%);
    z-index: 1;
}

.our-clients-section .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #FF6347; /* Tomato color for high visibility */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); /* Stronger shadow for better readability */
    opacity: 1; /* Ensure no transparency */
}

.our-clients-section .highlight {
    color: #00BFFF;
}

.our-clients-section .description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #10131a;
}

.client {
    text-align: center;
    position: relative;
    z-index: 2; /* Make sure content is above the background */
}

.client-logo img {
    width: 60%;
    height: auto;
    transition: transform 0.5s ease-in-out;
}

.client-logo img:hover {
    transform: scale(1.1); /* Slight zoom animation on hover */
}

/* Animation for client logos */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.client {
    animation: fadeInUp 1s ease-in-out;
}





/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .navbar-nav {
        margin-top: 20px;
    }

    .modal-body {
        flex-direction: column;
    }
}



/* Scrollable Banner Section */
/* Scrollable Banner Section */
/* Scrollable Banner Section */
/* Style for left-aligned animated text */
/* Style for left-aligned animated text */
/* Banner Section Base Styles */
#banner {
    position: relative;
    background-color: #f8f9fa;
}

.carousel-inner img {
    max-height: 500px;
}

.carousel-caption {
    position: absolute;
    top: 30%;
    left: 5%;
    right: auto;
    text-align: left;
}

.animated-text-left h1 {
    font-size: 4rem; /* 'Together.' double the size of other text */
    font-weight: bold;
    color: #ffcc01; /* Custom color for 'Together.' */
    opacity: 0;
    animation: fadeInLeft 2s ease-in-out forwards;
}

.animated-text-left p {
    font-size: 1.5rem;
    color: #ffffff;
    opacity: 0;
    animation: fadeInLeft 2s ease-in-out 0.5s forwards; /* Slight delay for smoother appearance */
}

/* General Carousel Text Styling for Third Image */
.animated-text h3 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    animation: fadeInUp 2s ease-in-out forwards;
    opacity: 0;
}

.animated-text p {
    font-size: 1.2rem;
    color: #ffffff;
    animation: fadeInUp 2s ease-in-out 0.5s forwards;
    opacity: 0;
}

/* Animation Keyframes */
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .animated-text-left h1 {
        font-size: 2.5rem; /* Reduce 'Together.' size for small screens */
    }

    .animated-text-left p {
        font-size: 1.2rem; /* Adjust text size */
    }

    .animated-text h3 {
        font-size: 1.8rem; /* Smaller font for third image heading */
    }

    .animated-text p {
        font-size: 1rem;
    }
}

/* Optional Carousel Styling (arrows and indicators) */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(100%);
}






/* Custom Navbar Styles */
.custom-navbar {
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent background */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for a raised look */
    transition: background-color 0.3s ease, padding 0.3s ease;
}

/* Shrinking Effect on Scroll */
.custom-navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95); /* Less transparency when scrolled */
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: #007bff; /* Company color */
    transition: color 0.3s ease;
}

.navbar-brand:hover {
    color: #0056b3; /* Darker hover color */
}

.nav-link {
    font-size: 1rem;
    margin: 0 15px;
    color: #333;
    transition: color 0.3s ease;
    text-transform: uppercase; /* Gives it a modern, professional look */
    font-weight: 500;
    position: relative;
}

/* Underline Hover Effect */
.nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #007bff;
    transition: width 0.3s ease;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #007bff;
}

.btn-custom {
    background-color: #007bff;
    border: none;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    border-radius: 30px; /* Rounded button for a modern look */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-custom:hover {
    background-color: #0056b3;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2); /* Slight shadow effect on hover */
}

/* Smooth Scroll Effect */
html {
    scroll-behavior: smooth;
}

/* Shrinking Navbar on Scroll */
body {
    padding-top: 70px; /* Adjusts for fixed navbar height */
}

@media (max-width: 768px) {
    .nav-link {
        margin: 0 5px;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }
}





/* Contact Us Section Styles */
#contact {
    background-color: #082c4e;
    padding: 60px 0;
}

#contact h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff; /* White color for headings */
}

#contact p, #contact ul li {
    color: #e0e0e0; /* Light gray for paragraphs and list items */
    font-size: 1.1rem;
    line-height: 1.7;
}

#contact h5 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-form .form-label {
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-form input, .contact-form textarea {
    background-color: #ffffff;
    border: 2px solid #ffffff;
    padding: 15px;
    font-size: 1.1rem;
    border-radius: 5px;
    color: #333;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: #007bff; /* Focus effect for form inputs */
    background-color: #f1f1f1;
    outline: none;
}

.contact-form button {
    background-color: #ffffff;
    color: #082c4e;
    border: none;
    font-size: 1.2rem;
    padding: 15px;
    border-radius: 30px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-form button:hover {
    background-color: #007bff;
    color: #ffffff;
}

.contact-form button:focus {
    outline: none;
}

/* Form Fields Hover & Focus Effects */
.contact-form input:hover, .contact-form textarea:hover {
    border-color: #007bff;
}



/* General Styling for the About Us Section */
/* General Styling for the About Us Section */
/* General Styling for the About Us Section */
#about {
    padding: 60px 0;
}

#about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

#about h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #3197f0;
    margin: 15px auto 0;
    border-radius: 2px;
}

#about .text-section {
    padding-right: 15px; /* Add padding to ensure text does not touch the image */
}

#about .text-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

#about .text-section p strong {
    color: #3197f0;
}

#about .image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; /* Ensure the container takes full height of its column */
}

#about .img-styled {
    max-width: 100%; /* Ensure image does not overflow its container */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#about .img-styled:hover {
    transform: scale(1.05);
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #about {
        padding: 30px 0;
    }

    #about .text-section, #about .image-container {
        padding: 0;
        margin-bottom: 20px;
    }

    #about .img-styled {
        width: 100%;
        height: auto;
    }
}
