/* Body Customization */
body {
    background-image: url('../images/bhv.jpg'); /* Adjusted path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #333; /* Default text color */
    height: 100vh; /* Full height */
    margin: 0; /* Remove default margin */
    position: relative; /* Ensure relative positioning for overlay */
}

/* Overlay for Better Text Visibility */
body::before {
    content: '';
    position: absolute; /* Position overlay absolutely */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.5); /* Optional overlay */
    z-index: -1; /* Behind all content */
}

/* Navbar Customization */
.navbar {
    background-color: #ffffff !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-brand,
.navbar .nav-link {
    color: #333 !important;
}

.navbar .nav-link:hover,
.navbar .nav-item.active .nav-link {
    color: #333 !important;
}

/* Zoom Effect on Navbar Items */
.navbar-nav .nav-item .nav-link,
.navbar-brand {
    transition: transform 0.3s ease-out;
}

.navbar-nav .nav-item .nav-link:hover,
.navbar-brand:hover {
    transform: scale(1.1);
}

/* Jumbotron Customization */
.jumbotron {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 80px 20px;
}

/* Zoom Effect on Images in Jumbotron */
.jumbotron .zoom-image {
    overflow: hidden;
    position: relative;
}

.jumbotron .zoom-image img {
    transition: transform 0.3s ease-out;
}

.jumbotron .zoom-image:hover img {
    transform: scale(1.1);
}

/* Primary Button Customization */
.btn.btn-primary {
    background-color: #99a0c3;
    border-color: #99a0c3;
    color: #fff; /* Text color */
}

.btn.btn-primary:hover {
    background-color: #7f86a8; /* Darker shade on hover */
    border-color: #7f86a8;
}

/* Custom Styles for "About Us" Button */
.btn-custom-arrow {
    border: 2px solid #99a0c3;
    color: #99a0c3;
    background-color: transparent;
    position: relative;
    transition: background-color 0.3s, color 0.3s;
    padding: 10px 20px; /* Adjust padding as needed */
    text-decoration: none; /* Remove default underline */
    display: inline-block; /* Ensure it behaves like a block element */
}

.btn-custom-arrow:hover {
    color: #fff;
    background-color: #99a0c3;
}

/* Arrow Style */
.btn-custom-arrow .arrow:before {
    content: "\25BA";
    font-size: 14px;
    margin-left: 5px;
}

/* Animation for Welcome Heading */
@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.jumbotron .welcome-heading {
    animation: slideIn 1.8s ease-out forwards;
}

/* Timeline Customization */
.timeline {
    width: 80%;
    margin: 0 auto;
    padding: 40px ;
}

.timeline h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.timeline p {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 50px;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    order: 2;
}

.timeline-item:nth-child(even) .timeline-img {
    order: 1;
}

.timeline-item .timeline-content {
    width: 45%;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.timeline-item .timeline-content h3 {
    font-size: 2em;
    color: #99a0c3;
    margin-bottom: 10px;
}

.timeline-item .timeline-content p {
    font-size: 1em;
    color: #333;
}

.timeline-item .timeline-img {
    width: 45%;
}

/* Make Timeline Images Circular */
.timeline-item .timeline-img img {
    width: 100%;
    border-radius: 50%; /* Make it circular */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Footer Customization */
.footer {
    background-color: #99a0c3;
    color: black;
    padding: 20px 0;
    font-size: 14px;
}

.footer-container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-logo, .footer-links, .footer-contact {
    flex: 1;
    margin: 10px;
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    width: 200px;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 18px;
    font-weight: bold;
}

.footer-social {
    margin-top: 10px;
}

.footer-social p {
    margin-bottom: 5px;
}

.footer-social a img {
    width: 24px;
    height: 24px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 5px;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
}

.footer-links ul li a:hover {
    text-decoration: underline;
}

.footer-contact p {
    margin: 5px 0;
}

.footer-contact img {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    vertical-align: middle;
}

/* About Us Page Jumbotron Customization */
#about-jumbotron {
    background-image: url("../images/a7.jpeg"); /* Adjusted path to your image */
    background-size: cover;
    background-position: center;
    position: relative;
    color: white; /* Text color */
    height: 60vh; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#about-jumbotron::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.5); /* Dark overlay */
}

#about-jumbotron .container {
    position: relative;
    z-index: 1; /* Ensure content appears above overlay */
}

#about-jumbotron h1,
#about-jumbotron p {
    z-index: 1; /* Ensure content appears above overlay */
    color: black; /* Adjust text color to black */
}

#about-jumbotron hr {
    border-color: rgba(255, 255, 255, 0.5); /* Adjust line color */
}

/* Vision Section Customization */
#vision-section {
    background-color: #99a0c3;
    color: #fff; /* Text color */
    padding: 80px 0; /* Adjust padding as needed */
    text-align: center; /* Center align text */
}

#vision-section h2 {
    font-size: 2.5em; /* Adjust font size */
    margin-bottom: 20px; /* Space below heading */
}

#vision-section p {
    font-size: 1.2em; /* Adjust font size */
    margin-bottom: 30px; /* Space below paragraph */
}

#vision-section .container {
    position: relative; /* Ensure relative positioning */
    z-index: 1; /* Ensure content appears above overlay */
}

@media (max-width: 768px) {
    #vision-section h2 {
        font-size: 2em; /* Adjust font size for smaller screens */
    }
    
    #vision-section p {
        font-size: 1em; /* Adjust font size for smaller screens */
    }
    
    .footer-container {
        flex-direction: column; /* Stack items vertically on smaller screens */
    }
}

/* Carousel Customization */
.carousel-img {
    height: 200px; /* Adjust the height as needed */
    width: auto; /* Ensure images scale proportionally */
    margin: auto; /* Center the images horizontally */
    position: relative;
}
/* Container styling */
.client-page-logos {
    text-align: center; /* Center align the image within the container */
    margin: 20px; /* Add some margin around the container */
}

/* Image styling */
.client-page-logos img {
    width: 800px; /* Set to desired width */
    height: auto; /* Maintain aspect ratio */
    max-width: 100%; /* Ensure it scales down on smaller screens */
    margin: 0 auto; /* Center the image */
    display: block; /* Ensure margin auto works correctly */
}
/* Container styling */
.client-page-container {
    display: flex; /* Use flexbox layout */
    align-items: center; /* Center items vertically */
    justify-content: space-between; /* Space out the items horizontally */
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    gap: 20px; /* Add space between items */
}

/* Text styling */
.client-page-text {
    flex: 1; /* Allow text to take up available space */
    max-width: 50%; /* Optional: Limit text width */
}

/* Graph styling */
.client-page-graph {
    flex: 1; /* Allow image to take up available space */
    text-align: right; /* Align image to the right */
}

/* Image styling */
.client-page-graph img {
    max-width: 100%; /* Ensure image scales down properly */
    height: auto; /* Maintain aspect ratio */
}
