/* Custom Font Faces */
@font-face {
    font-family: 'Urbanist';
    src: url('fonts/Urbanist-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Urbanist';
    src: url('fonts/Urbanist-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

/* Applying the Fonts */
body,
p,
label,
form,
input,
button,
textarea {
    font-family: 'Urbanist', Arial, sans-serif;
    font-weight: 500;
    /* Default to medium */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Urbanist', Arial, sans-serif;
    font-weight: bold;
}

/* Custom Styles */
body {
    line-height: 1.6;
    /* color: #0B1957; */
    background-color: #2b58c8;
}

.bg-light {
    /* background-color: #F8F3EA !important; */
    background-color: #00154b !important;
}

.container h1, .container h2 {
    margin-top: 10px;
    color: #fffc3b;
}

.container h4 {
    color: #fffc3b;
    font-weight: 500;
}

.bg-primary {
    background-color: #0B1957 !important;
}

/* #region HOME PAGE--------------------------------------------------------------------*/
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center; /* Align items vertically in the center */
}

/* Style for the logo */
.navbar-brand {
    margin-right: 20px; /* Add space between the logo and the nav items */
}

.navbar-brand img {
    height: 40px;
}

/* Default navigation styles */
.navbar.navbar-dark.bg-primary {
    background-color: #5784E6;
}

/* Styles when scrolled */
.navbar.scrolled {
    background-color: #0B1957;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Custom Styles for Navigation Links */
.navbar .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin-left: 20px; /* Add some space between the nav items */
}

.navbar .nav-link:hover {
    color: #d1e8ff !important;
}

 
/* Full-width Carousel */
.carousel {
    padding-top: 78px;
    position: relative;
    width: 100vw; /* Full viewport width */
    left: 50%;
    margin-left: -50vw; /* Center the carousel */
    box-sizing: border-box;
}

.carousel-inner {
    width: 100%;
}

.carousel-item img {
    object-fit: cover; /* Maintain image aspect ratio */
}

.carousel-container {
    position: relative; /* Establish a positioning context */
}

.overlay {
    position: absolute;
    top: 13.5%;
    left: 0;
    width: 100vw; /* Full width of the viewport */
    height: 86.5%; /* Full height of the carousel */
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 10; /* Ensure it is below the text but above the carousel */
    margin-left: calc(-50vw + 50%); /* Adjust overlay to match carousel position */
}

.custom-padding {
    position: absolute; /* Position this container absolutely */
    top: 50%; /* Center it vertically */
    left: 50%; /* Center it horizontally */
    transform: translate(-50%, -50%); /* Adjust for the width and height of the container */
    z-index: 10; /* Ensure it appears above the overlay */
    color: white; /* Change text color for visibility over the images */
    text-align: center; /* Center align the text */
}

.custom-padding h1 {
    color: white;
}

/* Ensure buttons are centered on the left and right sides */
.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%; /* Center vertically */
    transform: translateY(-50%); /* Adjust for button height */
    z-index: 15; /* Higher z-index to ensure buttons are clickable */
}

/* Position the previous button to the left */
.carousel-control-prev {
    left: 15px; /* Adjust as necessary for spacing */
}

/* Position the next button to the right */
.carousel-control-next {
    right: 15px; /* Adjust as necessary for spacing */
}


/* Example for other content */
.content {
    padding: 20px;
    background-color: #F8F3EA;
    min-height: 100vh;
}

.container {
    padding-top: 30px;
}

.container p, footer{
    text-align: justify;
    color: white;
}

.container-fluid footer{
    text-align: justify;
    color: #fffc3b;
}

/* Custom Styles1 for the Section1 */
.custom-container1 {
    position: relative; 
    background: url('./images/Section1.png') no-repeat center center;
    background-size: cover; 
    background-attachment: fixed; /* Keeps the background fixed in place */
    padding: 50px; /* Keep the same padding */
    color: #ffffff;
    z-index: 1; 
}

.custom-container1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(30, 30, 30, 0.8);
    z-index: -1; 
    opacity: 0.7; 
}


.custom-heading1 {
    color: #fffc3b;
    font-weight: bold;
    text-align: left;
    font-size: 50px;
}

.custom-text-heading1 {
    color: #ffffff;
    font-weight: bold;
    text-align: left;
    font-size: large;
}

.custom-subheading1 {
    color: #fffc3b;
    font-weight: 500;
}

.custom-text1 {
    color: #ffffff;
    line-height: 1.6;
}

.custom-text1 p{
    color: #ffffff;
    line-height: 1.6;
    font-size: 30x;
}

/* Custom Card Design */
.custom-card1 {
    background-color: rgba(0, 0, 0, 0.8); /* Dark translucent background */
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    margin-bottom: 20px;
}

.custom-btn1 {
    background-color: #e4edff;
    color: #000000;
    padding: 10px 20px;
    border: none;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.custom-btn1:hover {
    background-color: #ffef74;
    color: #000000;
    text-decoration: none;
}

/* Full content is hidden initially */
.full-content {
    display: none;
}

/* Ensure the layout and responsiveness */
.row, .col-md-6 {
    margin-bottom: 20px;
}


/* Custom Styles for the Section */
.custom-container {
    background: linear-gradient(135deg,#89aeff, #1957dc, #001d9d, #6a1b9a); /* Gradient from light blue to dark blue to purple */
    padding-left: 10%; /* Custom padding */
    padding-right: 10%;
    border-radius: 20px; /* Rounded corners */
    color: #ffffff; /* Text color for readability */
}

.custom-heading {
    color: #fffc3b; /* Custom heading color */
    font-weight: bold;
    text-align: center; /* Center alignment */
}

.custom-subheading {
    color: #fffc3b; /* Custom subheading color */
    font-weight: 500;
}

.custom-text {
    color: #ffffff; /* Custom text color */
    text-align: justify; /* Optional: Justify text for a cleaner look */
    line-height: 1.6; /* Improved readability */
}

.custom-btn {
    background-color: #e4edff; /* Custom button background color */
    color: #000000; /* Button text color */
    padding: 10px 20px; /* Custom padding for button */
    border: none; /* Remove border */
    border-radius: 15px; /* Optional: Rounded button corners */
    text-decoration: none; /* Remove underline */
    font-weight: 500; /* Button text weight */
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

.custom-btn:hover {
    background-color: #ffef74; /* Darker shade on hover */
    color: #000000; /* Keep text color white on hover */
    text-decoration: none; /* Remove underline */
}

/* Maintain the layout and responsiveness with Bootstrap */
.row, .col-md-6 {
    margin-bottom: 20px; /* Ensure spacing between columns */
}

/* Free Consultation Section Custom Styles */
/* Custom Styles1 for the Section1 */
.custom-container2 {
    position: relative; 
    background: url('./images/Section3.png') no-repeat center center;
    background-size: cover; 
    background-attachment: fixed; /* Keeps the background fixed in place */
    padding: 50px; /* Keep the same padding */
    color: #ffffff;
    z-index: 1; 
}

.custom-container2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(46, 46, 46, 0.6);
    z-index: -1; 
    opacity: 0.7; 
}

.custom-heading2 {
    color: #fffc3b;
    font-weight: bold;
    text-align: left;
    font-size: 50px;
}

.custom-description2 {
    color: #ffffff;
    line-height: 1.6;
    font-size: 20px;
}

.custom-card-wrapper {
    display: grid; /* Use grid layout */
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
    gap: 20px; /* Add space between cards */
    justify-items: center; /* Center items in their grid cells */
    position: relative; /* Position relative to be above the background */
    margin-top: 40px; /* Add margin for spacing */
}

.custom-card2 {
    display: flex;
    flex-direction: column; /* Stack content vertically */
    align-items: center; /* Center-align content */
    background-color: #ffffff; /* White background for the card */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow */
    border-radius: 20px; /* Rounded corners for the card */
    overflow: hidden;
    transition: transform 0.3s ease;
    width: 400px; /* Increased width for square cards */
    height: 400px; /* Increased height for square cards */
}

.custom-card2:hover {
    transform: translateY(-5px); /* Lift effect on hover */
}

.custom-card-content {
    flex: 1; /* Take available space */
    padding: 10px; /* Adjust padding as needed */
    text-align: center; /* Center text in cards */
}

.custom-subheading2 {
    font-size: 20px; /* Adjusted font size for better fitting */
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.custom-text2 {
    font-size: 14px; /* Adjusted font size for better fitting */
    line-height: 1.4;
    color: #666;
}

.custom-card-img {
    width: 100%; /* Full width for images */
    height: 300px; /* Fixed height for images */
    background-color: #eee; /* Placeholder background for image area */
    overflow: hidden; /* Prevent overflow */
}

.custom-card-img img {
    width: 100%;
    height: 100%; /* Maintain image aspect ratio */
    object-fit: cover; /* Ensures the image covers the container */
}

.custom-btn2 {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffb400;
    color: #fff;
    text-transform: uppercase;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.custom-btn2:hover {
    background-color: #ffa500;
    text-decoration: none;
}

/* Remove the padding from the section to avoid affecting the overlay */
#home {
    padding: 0; /* Remove all padding */
}

body {
    overflow-x: hidden; /* Prevent horizontal scrolling due to carousel overflow */
}

blockquote {
    border-left: 5px solid #5784E6;
    padding-left: 15px;
    font-style: italic;
}

/* Feedback Section Styling */
.container-feedback {
    background-color: #f4f7fa;
    padding: 50px 0; /* Reduced padding top and bottom */
}

.container4 {
    width: 100%; /* Full width of the container */
    max-width: 1400px; /* Set a max width for the content to avoid it stretching too much */
    margin: 0 auto; /* Center the content horizontally */
    padding-left: 5%; /* Space between the content and the sides of the screen */
    padding-right: 5%; /* Same padding for the right side */
}

.header4 {
    font-size: 2.5em;
    text-align: center;
    color: #333;
    font-weight: bold;
    margin-bottom: 40px;
}

.feedback-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto; /* Enables horizontal scrolling */
    scroll-behavior: smooth; /* Smooth scrolling */
    padding-bottom: 20px; /* Padding to prevent the scrollbar from overlapping the content */
    padding-left: 2%; /* Slight padding to keep the cards from touching the edges */
}

.feedback-carousel::-webkit-scrollbar {
    height: 10px; /* Adjust the height of the scrollbar */
}

.feedback-carousel::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3); /* Custom scrollbar thumb */
    border-radius: 10px; /* Rounded scrollbar */
}

.feedback-card {
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 300px; /* Minimum width for each card */
    max-width: 350px; /* Maximum width for each card */
    flex-shrink: 0; /* Ensures cards stay the same width during scrolling */
}

.feedback-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feedback-card blockquote {
    margin: 0;
    padding: 0;
    font-style: italic;
    color: #555;
    padding-left: 15px;
}

.feedback-subheading {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #0056b3;
    text-transform: uppercase; /* Optional: Makes the subheading stand out more */
    letter-spacing: 0.5px; /* Optional: Adds spacing between letters */
}


form .form-control {
    border: 1px solid #5784E6;
    border-radius: 15px;
    background-color: #f3f9ff;
}

form .btn-primary {
    background-color: #5784E6;
    border: none;
}

.carousel-item img {
    height: 500px;
    object-fit: cover;
}

.custom-lead-form {
    background-color: white; /* Set background color to white */
    padding-left: 10%; /* Custom left padding */
    padding-right: 10%; /* Custom right padding */
    border-radius: 20px; /* Optional: Rounded corners */
}

.custom-lead-form h2{
    color: #0B1957; /* Set heading color */
}


#leadForm form .form-group label {
    font-weight: bold;
    color: #0B1957;
}

#leadForm form .btn-primary {
    background-color: #5784E6;
    border: none;
    padding: 10px 20px;
}

#leadForm .text-center {
    margin-top: 20px;
    color: #000000;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .custom-heading1{
        font-size: 45px;
        margin-bottom: 20px;
    }

    .custom-card-wrapper {
        grid-template-columns: 1fr; /* Stack cards vertically on small screens */
    }

    .custom-card2 {
        width: 100%; /* Full width for mobile */
        height: auto; /* Auto height for flexibility */
    }

    .custom-card-img {
        height: auto; /* Auto height for images on mobile */
    }

    .custom-card-content {
        padding: 15px; /* Adjust padding if needed */
    }

    .custom-heading2 {
        font-size: 45px; /* Smaller heading for mobile */
        margin-bottom: 20px;
    }

    .custom-description2 {
        font-size: 18px; /* Smaller description for mobile */
    }

    .custom-text2 {
        font-size: 14px; /* Smaller text for mobile */
    }

    /* -------------------- */

    /* .service-heading {
        font-size: 45px;
        margin-bottom: 20px;
    } */

    .container.custom-padding h1{
        margin-top: 75px;
        font-size: 33px;
    }

    .container.custom-padding a {
        margin-top: 20px;
    }

    .carousel {
        padding-top: 137px;
        padding-bottom: 100px;
    }

    .overlay {
        top: 25.5%;
        height: 56%;
    }

    .carousel-item img {
        height: 300px; /* Adjust image height for smaller screens */
    }

    /* -------------------- */

    .feedback-carousel {
        gap: 10px; /* Adjust gap between cards for smaller screens */
    }

    .feedback-card {
        min-width: 250px; /* Smaller card width on mobile */
    }

    /* -------------------- */

    .carousel-item img {
        height: 300px;
    }
}

/* #endregion */

/* #region SERVICES PAGE----------------------------------------------------------------*/
.service-container {
    position: relative; 
    background: url('./images/service-container.png') no-repeat center center;
    background-size: cover; 
    background-attachment: fixed; /* Keeps the background fixed in place */
    padding: 50px; /* Keep the same padding */
    color: #ffffff;
    z-index: 1; 
}

.service-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(28, 28, 28, 0.7);
    z-index: -1; 
    opacity: 0.7; 
}

.service-heading {
    color: #fffc3b;
    font-weight: bold;
    text-align: left;
    font-size: 70px;
}

.service-heading-description {
    color: #ffffff;
    font-weight: bold;
    text-align: left;
    font-size: large;
}

.service-subheading1 {
    color: #fffc3b;
    font-weight: 500;
    margin-bottom: 0%;
}

.service-text1{
    color: #ffffff;
}

.service-card1 {
    background-color: rgba(0, 0, 0, 0.8); 
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
    margin: 10px; /* Equal margin for left and right */
    flex: 1; /* Allows the card to grow and take equal space */
}

/* Button styles */
.service-btn1 {
    background-color: #e4edff;
    color: #000000;
    padding: 10px 20px;
    border: none;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.service-btn1:hover {
    background-color: #ffef74;
    color: #000000;
    text-decoration: none;
}

/* Equal margin for card columns */
.d-flex.justify-content-center {
    margin-bottom: 20px; /* To create spacing between the rows */
}

/* Flexbox adjustments for the row */
.row {
    display: flex;
    flex-wrap: wrap; /* Allow cards to wrap into next line if needed */
    justify-content: center; /* Center the cards in the row */
}

.card {
    flex: 1 1 calc(50% - 20px); /* Two cards per row, accounting for margins */
    box-sizing: border-box; /* Ensure padding and margins are included in width calculations */
}

/* Practice Optimization Consult Section Styles */
.consult-container {
    position: relative;
    background: url('./images/practice-optimization-consult.png') no-repeat center center/cover; /* Background image */
    padding: 60px 20px;
    text-align: center;
    color: #ffffff; /* Default white text to stand out against the background */
    z-index: 1;
}

.consult-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay for readability */
    z-index: -1;
}

.consult-content {
    position: relative;
    z-index: 2; /* Ensure content stays above the overlay */
}

.consult-heading {
    font-size: 42px;
    color: #fffc3b; /* Standout color */
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase; /* Add emphasis */
}

.consult-subheading {
    font-size: 26px;
    color: #ffffff;
    margin-bottom: 20px;
}

.consult-description {
    font-size: 18px;
    color: #ffffff;
    margin-right: 100px;
    margin-left: 100px;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Cards Container */
.consult-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Cards Container */
.consult-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Individual Card Styles */
.consult-card {
    background-color: rgba(255, 255, 255, 0.9); /* Slightly transparent white */
    width: 320px; /* More squarish width */
    height: 400px; /* More squarish height */
    padding: 20px;
    border-radius: 15px; /* Curved square appearance */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Subtle shadow */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.consult-card:hover {
    transform: translateY(-10px); /* Lifts the card on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Card Title */
.consult-card-title {
    color: #333;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Card Text */
.consult-card-text {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

/* Image Container */
.consult-card-image {
    width: 100%; 
    height: 300px; /* Ensures the image fills the bottom portion */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px; /* Rounded corners on the bottom */
    overflow: hidden;
    margin-top: 10px; /* Provides some separation between content and image */
}

/* Image Styling */
.consult-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the card fully */
    border-radius: 0 0 15px 15px; /* Follows the card's bottom rounded corners */
}

.consult-btn-container {
    margin-top: 20px;
}

.consult-btn {
    background-color: rgba(255, 255, 255, 0.85); /* Semi-transparent button */
    color: #333;
    padding: 12px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

.consult-btn:hover {
    background-color: #fffc3b;
    color: #000;
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .service-heading {
        font-size: 45px;
        margin-bottom: 20px;
    }

    .service-card1 {
        margin: 0;
    }

    .consult-heading {
        font-size: 32px;
    }

    .consult-subheading {
        font-size: 22px;
    }

    .consult-description {
        margin-right: 10px;
        margin-left: 10px;
    }

    .consult-description, .consult-points {
        font-size: 16px;
    }

    .consult-cards-container {
        flex-direction: column;
        align-items: center;
    }

    .consult-card {
        width: 90%; /* Adjusts the width for smaller screens */
    }
}


.services-lead-form {
    background-color: white; /* Set background color to white */
    padding-left: 10%; /* Custom left padding */
    padding-right: 10%; /* Custom right padding */
    border-radius: 20px; /* Optional: Rounded corners */
}

.services-lead-form h2{
    color: #0B1957; /* Set heading color */
}


#servicesleadForm form .form-group label {
    font-weight: bold;
    color: #0B1957;
}

#servicesleadForm form .btn-primary {
    background-color: #5784E6;
    border: none;
    padding: 10px 20px;
}

#servicesleadForm .text-center {
    margin-top: 20px;
    color: #000000;
}


/* #endregion */

/* #region CONTACT US PAGE */
.contact-container {
    position: relative; 
    background: url('./images/contact-us.png') no-repeat center center;
    background-size: cover; 
    background-attachment: fixed; /* Keeps the background fixed in place */
    padding: 50px; /* Keep the same padding */
    color: #ffffff;
    z-index: 1; 
}

.contact-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(28, 28, 28, 0.3);
    z-index: -1; 
    opacity: 0.7; 
}

/* Header Styling */
.contact-header {
    font-size: 50px;
    color: #fffc3b;
    margin-bottom: 15px;
    font-weight: bold;
    text-align: center;
}

.contact-header-description {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 25px;
    margin-left: 22%;
    margin-right: 22%;
    text-align: center;
}

/* Contact Details Section */
.row.text-center {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.call-us, .email-us, .office-hours {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 25px;
    width: 250px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.call-us:hover, .email-us:hover, .office-hours:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Contact Info Heading */
h5 {
    font-size: 22px;
    color: #000000;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Icons below each header */
.call-us img, .email-us img, .office-hours img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

/* Contact Info Paragraph */
.call-us p, .email-us p, .office-hours p {
    font-size: 16px;
    color: #000000;
}

.contact-icon {
    margin-top: 20px;
    margin-bottom: 30px;
}

/* Media Query for Responsive Design */
@media (max-width: 768px) {
    .row.text-center {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .call-us, .email-us, .office-hours {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-header {
        font-size: 41px;
    }
    
    .contact-header-description {
        font-size: 16px;
        margin-left: 0%;
        margin-right: 0%;
    }
}

/* Form Section */
.contact-lead-form {
    background-color: white; /* Set background color to white */
    padding-left: 10%; /* Custom left padding */
    padding-right: 10%; /* Custom right padding */
    border-radius: 20px; /* Optional: Rounded corners */
}

.contact-lead-form h2{
    color: #0B1957; /* Set heading color */
}

#contactleadForm form .form-group label {
    font-weight: bold;
    color: #0B1957;
}

#contactleadForm form .btn-primary {
    background-color: #5784E6;
    border: none;
    padding: 10px 20px;
}

#contactleadForm .text-center {
    margin-top: 20px;
    color: #000000;
}


/* #endregion */