

.custom-header {
    background-color: #F4F9FD; 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.09); 
   
    position: sticky; 
    top: 0;
    z-index: 1000; 
}

.custom-header .navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #333333; /* Dark gray for better contrast */
}

.custom-header .navbar-brand:hover {
    color: #007bff; /* Changes color on hover for interactivity */
}

.custom-header .navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    margin-left: 15px;
}

.custom-header .navbar-nav .nav-link:hover {
    color: #007bff; /* Hover color for links */
}

.custom-header .btn-primary {
    background-color: #007bff; /* Bootstrap primary color */
    border: none;
    padding: 0.5rem 1.25rem;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.custom-header .btn-primary:hover {
    background-color: #0056b3; /* Darker shade on hover */
}

/* Apply Poppins font globally */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}





/*-----------------------------------------------------*/



/* Hero Section Styles */
.hero-section {
    background-color: #F4F9FD; /* Light gray background */
    color: #333333; /* Dark gray (almost black) text for better readability */
    height: 90vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px; /* Horizontal padding for smaller screens */
    box-sizing: border-box;
}

.hero-section .container {
    max-width: 800px; /* Limit the width for better readability */
}

.hero-section h1 {
    font-weight: 700;
    font-size: 3rem;
    color: #333333; /* Ensure heading color is set to dark gray */
}



.hero-section h3 {
    font-weight: 600;
    font-size: 1.75rem;
    color: #555555; /* Slightly lighter than h1 for hierarchy */
}

.hero-section p {
    font-weight: 400;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #666666; /* Even lighter for paragraph text */
}

.hero-section .btn-primary {
    background-color: #007bff; /* Bootstrap primary color */
    border: none;
    padding: 0.75rem 2.5rem;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.hero-section .btn-primary:hover {
    background-color: #0056b3; /* Darker shade on hover */
}


/* Features Section Styles */
.features-section {
    background-color: #ffffff; /* White background for contrast */
}

.features-section h2 {
    font-weight: 700;
    color: #333333; /* Dark gray for headings */
}

.features-section p {
    color: #555555; /* Medium gray for paragraphs */
}

.features-section .list-unstyled li {
    display: flex;
    align-items: flex-start;
}

.features-section .list-unstyled li i {
    margin-top: 4px; /* Aligns icon with text */
}



/*-----------------------------------------------------*/


/* Redesigned Info Boxes Section Styles */
.info-section {
    background-color: #F4F9FD; /* Light gray background for the section */
    padding: 60px 60px; /* Adjust padding as needed */
}

.info-box {
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px; /* Fixed height to make boxes square */
    text-align: center; /* Center text horizontally */
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer; /* Indicates that the box is interactive */
}

.info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 123, 255, 0.2);
}

/* Icon Styling */
.info-box .icon {
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.info-box .bi {
    font-size: 2rem; /* Larger icons */
}

/* Specific Styles for Each Box */

/* Left and Right Boxes: White Background with Black Text */
.info-box-left,
.info-box-right {
    background-color: #ffffff; /* White background */
    color: #000000; /* Black text */
}

.info-box-left .icon,
.info-box-right .icon {
    background-color: #ffffff; /* White icon background */
}

.info-box-left .bi,
.info-box-right .bi {
    color: #007BFF; /* Bootstrap primary color for icons */
}

/* Center Box: Blue Background with White Text */
.info-box-center {
    background-color: #007BFF; /* Blue background */
    color: #ffffff; /* White text */
}



.info-box-center .bi {
    color: #ffffff; /* White icon for better contrast on blue background */
}









/* Contact Us Section Styles */
.contact-section {
    background-color: white; /* Light gray background for consistency */
    padding: 60px 0; /* Top and bottom padding */
}

.contact-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 20px;
}

.contact-section .section-subtitle {
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 50px;
}











/*-----------------------------------------------------*/

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section h3 {
        font-size: 1.5rem;
    }

    .hero-section p {
        font-size: 1rem;
    }
}

