.hero-section {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100vh;
    width: 100vw;
    /* background-image: url('../images/hero-bg.png'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    margin: 0;
    padding: 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* Different background images for each hero section */
.hero-section.index {
    background-image: url('/assets/images/hero-bg.png');
}

.hero-section.services {
    background-image: url('/assets/images/services-bg.png');
}


.hero-section h1 {
    font-size: 6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #E1004B;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3), 
                 -2px -2px 5px rgba(255, 255, 255, 0.5);
}


.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%; /* Centered content wrapper */
    max-width: 1200px;
    margin: 0 auto;
}

.hero-left {
    flex: 0 0 33%;
    text-align: right;
    padding-right: 1.5rem;
}

.hero-right {
    flex: 0 0 67%;
    text-align: left;
    padding-left: 1.5rem;
    border-left: 4px solid rgba(255, 255, 255, 0.5); /* Vertical line separator */
}

/* Customize the text color and wrapping for the .hero-text */
.hero-text {
    color: #FFFFFF;
    font-size: 1.2rem;
    line-height: 1.5;
    word-wrap: break-word;
}

/* Responsive Design Adjustments */
@media (max-width: 768px) {
    .hero-content-wrapper {
        flex-direction: column;
        width: 90%;
        text-align: center;
    }

    .hero-left,
    .hero-right {
        flex: 1 1 100%;
        text-align: center;
        padding: 0;
        border-left: none;
        margin-bottom: 1rem;
    }
}




/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .hero-section .p {
        font-size: 1.5rem;
    }
}

.hero-section p {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 500;
    color: #000; /* Darker shade for readability */
    max-width: 800px;
    margin: 0 auto;
}


.hero-section .btn {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
}



.services-section .card {
    border: none;
}

.services-section i, .why-choose-us-section i {
    color: #007bff;
}


/* Meet the Founder and Why Choose Us Styling */
.founder-img, .why-choose-us-section .img-fluid {
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Full-width section background */
.why-choose-us-section {
    background-color: #f8f9fa; /* Light background color */
    padding: 60px 0;
    width: 100vw;
    margin-left: calc(50% - 50vw); /* Centers the full-width section */
}

/* Styling for the Founder Image and Why Us Image */
.founder-img, .why-choose-us-section .img-fluid {
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Styling for section titles and text */
.why-choose-us-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.why-choose-us-section p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.why-choose-us-section ul {
    padding-left: 20px;
    list-style-type: disc;
}

.why-choose-us-section li {
    margin-bottom: 0.5rem;
    color: #333;
}

/* Top-align the Founder text */
.founder-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.founder-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Icon list styling for Why Choose Us */
.why-us-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.why-us-item {
    display: flex;
    align-items: flex-start;
}

.why-us-icon {
    font-size: 1.5rem;
    color: #007bff;
    width: 30px; /* Fixed width for consistent alignment */
    margin-right: 10px;
    flex-shrink: 0;
}

.why-us-item p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

.why-us-item p strong {
    font-weight: 600;
    color: #333;
}


/* Scale the Why Us image to fill the right side */
.whyus-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.founder-img {
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Divider Line Styling */
.divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, #e0e0e0, #ffffff, #e0e0e0);
    margin: 40px 0;
}

@media (max-width: 768px) {
    /* Responsive adjustments for stacking */
    .why-choose-us-section .row {
        flex-direction: column;
    }
    
    .why-choose-us-section .founder-img, 
    .why-choose-us-section .whyus-img {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }
}



/* Floating Menu Ribbon */
.floating-menu {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #ffffff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 1rem;
}

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

.floating-menu .logo {
    height: 100px;
    margin-right: 10px;
}

.floating-menu .navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    margin-right: 1.5rem;
    text-transform: uppercase;
}

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

.floating-menu .navbar-text {
    font-size: 1rem;
    color: #333;
    display: flex;
    align-items: center;
}

.floating-menu .navbar-text i {
    margin-right: 5px;
}

/* Adding padding to the body to avoid overlap */
body {
    padding-top: 60px; /* Adjust based on the navbar height */
}

html {
    scroll-behavior: smooth;
}

/* Ensuring uniform height for service cards */
.service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: transform 0.3s;
}

/* Ensuring all cards have equal height */
.services-section .row {
    display: flex;
}

.services-section .col-md-3 {
    display: flex;
    flex-direction: column;
}

.services-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-section .lighttxt {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

/* Full-width background color for services-section */
.services-section.back {
    background-color: #001f3f;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: 2rem 0; /* Add padding as needed */
}


.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    height: 150px;
    width: 150px;
}

.service-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.9rem;
    color: #555;
    flex-grow: 1;
}

.service-card .btn-link {
    color: #007bff;
    font-weight: 500;
    text-decoration: none;
}

.service-card .btn-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Centering images in service cards */
.service-card {
    text-align: center;
}

.service-card .service-icon {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.about-section {
    background-color: #f8f9fa; /* Light background color */
    padding: 60px 0;
    width: 100vw;
    margin-left: calc(50% - 50vw); /* Centering full width */
}

.about-section .container {
    max-width: 1100px;
    padding: 0 15px;
}

.about-section h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.about-section p {
    font-size: 1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.6;
}

/* Contact Section Styling */
.contact-section {
    background-color: #ffffff; /* Light background color (was #f8f9fa) */
    padding: 60px 20px;
}

.contact-section h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.contact-section p {
    font-size: 1.5rem;
}

/* Contact Form Styling */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    font-weight: 600;
    color: #555;
}

.contact-form .form-control {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 0.75rem;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.contact-form .form-control:focus {
    border-color: #E1004B;
    outline: none;
    box-shadow: 0 0 5px rgba(225, 0, 75, 0.4);
}

/* Submit Button Styling */
.contact-form .btn-primary {
    background-color: #E1004B;
    border: none;
    border-radius: 5px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form .btn-primary:hover {
    background-color: #c1003d;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-section {
        padding: 40px 15px;
    }

    .contact-form {
        max-width: 100%;
    }
}

@media print {
    body {
        display: none;
    }
}


/* Styling for Service Section */
.service {
    margin-bottom: 2rem;
    padding: 2rem;
    color: #fff;
    text-align: center;
}

.service h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.service p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.service .mediumtxt {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}


/* Service Components Container */
.service-components {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

/* Card Styling Specific to Service Section */
.service .card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
    color: #333;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 300px;
}


.service .card h4 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
	color: black;
}

.service .card p {
    font-size: 1.25rem;
    line-height: 1.4;
	color: black;
}

.service .card i {
    font-size: 2rem; /* Icon size */
    color: #001f3f; /* Icon color, matching or contrasting the card background */
    margin-bottom: 0.5rem;
    display: block; /* Ensures it takes its own line */
}


/* Responsive Design Adjustments for Service Cards */
@media (max-width: 992px) {
    .service-components .card {
        flex: 1 1 45%; /* Two cards per row on medium screens */
    }
}

@media (max-width: 600px) {
    .service-components .card {
        flex: 1 1 90%; /* One card per row on small screens */
    }
}




/* Breadcrumbs */
.breadcrumb {
    background-color: transparent;
    padding: 1rem;
}

/* Services Section */
/* .services-section {
    background-color: #001f3f;
    color: #fff;
    padding: 2rem 0;
}*/
.services-section .card-type-2 {
    background-color: #fff;
    color: #333;
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}


/* Consultation Form */
.consultation-section {
    background-color: #f4f4f4;
    padding: 2rem 0;
}
.consult-form .form-check-label a {
    color: #007bff;
}


/* Consultation Form Wrapper */
.consult-form-wrapper {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px; /* Rounded corners */
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); /* Drop shadow on all sides */
    max-width: 800px;
    margin: 0 auto; /* Center the form */
}

.consult-form .form-group {
    margin-bottom: 1rem;
}

.consult-form label {
    font-weight: bold;
    color: #333;
}

.consult-form input[type="text"],
.consult-form input[type="email"] {
    border-radius: 6px;
    border: 1px solid #ccc;
    padding: 0.5rem;
}

.consult-form .form-check-label a {
    color: #007bff;
}

/* Button Styling */
.consult-form button[type="submit"] {
    background-color: #001f3f;
    border: none;
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

.consult-form button[type="submit"]:hover {
    background-color: #004080;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .consult-form .row .col-md-6 {
        flex: 1 1 100%;
        max-width: 100%;
    }
}


/* Why Partner with Us Section */
/* .why-partner-section {
    padding: 2rem 0;
    text-align: center;
}*/

.why-partner-section {
    background-color: #f4f4f4; /* Light background color for contrast */
    padding: 3rem 0;
}

.why-partner-section h2 {
    color: #001f3f;
}

.why-partner-section ul.fa-ul {
    list-style-type: none;
    padding: 0;
}

.why-partner-section .fa-li {
    margin-right: 0.5rem;
    color: #001f3f;
    font-size: 1.25rem;
}

.why-partner-section li {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #333;
}

.why-partner-section li strong {
    color: #001f3f; /* Highlighted color for section headings */
}

.why-partner-section i
{
    font-size: 2rem; /* Icon size */
    color: #001f3f; /* Icon color, matching or contrasting the card background */
    margin-bottom: 0.5rem;
    display: block; /* Ensures it takes its own line */
}



.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none; /* Ensure the modal is hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal.show {
    display: flex; /* Show the modal only when the "show" class is added */
}

.modal-content {
	background-color: #fff;
	padding: 20px;
	border-radius: 8px;
	width: 90%;
	max-width: 400px;
	text-align: center;
}

.close {
	color: #aaa;
	float: right;
	font-size: 24px;
	font-weight: bold;
	cursor: pointer;
}

.close:hover, .close:focus {
	color: #000;
	text-decoration: none;
}



/* Privacy Modal overlay */
#privacyModal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay */
    align-items: center;
    justify-content: center;
    z-index: 1000; /* High z-index to ensure it's above other elements */
}

/* Display the modal when shown */
#privacyModal.show {
    display: flex; /* Display modal as flexbox when shown */
}

/* Privacy Modal content styling */
#privacyModal .modal-content {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh; /* Constrain modal content height */
    overflow-y: auto; /* Enable scrolling inside the modal */
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3); /* Optional shadow for depth */
    position: relative;
    text-align: left;
}

/* Privacy Modal close button */
#privacyModal .modal-content .close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Privacy Modal scrollable body */
#privacyModal .modal-body {
    max-height: 65vh; /* Control height of scrollable area */
    overflow-y: auto; /* Enable scrolling if content exceeds modal height */
    padding-right: 1rem; /* Add padding to account for scrollbar */
}
