﻿/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arimo, sans-serif;
    
}
body, html {
    overflow-x: hidden;
}

p {
    font-family:Arimo;
    font-size:1.2rem;
}

body {
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

html {
    scroll-behavior: smooth;
}

.divider-content {
    border: none; /* Removes default border */
    border-top: 1px solid #a6abaa; /* Light gray line */
    margin: 30px 0; /* Adds 50px margin above and below the line */
    width: 100%; /* Ensures it spans the container */
}

#contact-section {
    padding-top: 60px; /* Adjust based on your fixed header height */
    margin-top: -60px; /* To prevent the space from being added */
}

.font-white {
    color: #fff;
}

.font-lt-gray {
    color: #b9c0c8;
}

.font-size-09 {
    font-size: 0.9em !important;
}

.font-size-1-1 {
    font-size: 1.1em !important;
}

.font-size-1-2 {
    font-size: 1.2em !important;
}

.font-size-2-2 {
    font-size: 2.2em !important;
}

.font-xl {
    font-size: x-large !important;
}
.half-size {
    font-size: 85%; /* Makes it half the size of the h1 */
    display: block;
}
.int-content h1 {
    line-height: .6em;
    padding:20px 0;
}

/* Hero Section */
.hero-section {
    height: 90vh; /* Full viewport height */
    background: url('/images/hero.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0; /* Ensure no margin pushes the hero down */
}

/* Hero Content Styling */
.hero-content {
    text-align: center;
    color: white;
    z-index: 1; /* Ensures hero content isn't covered */
    position: relative;
    padding-top: 70px; /* Adjust if needed to offset navbar height */
    padding: 20px;
    margin-bottom: 55px;
    max-width: 950px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Animation properties */
    opacity: 0;
    transform: translateY(50px); /* Start position */
    animation: slideUpFadeIn 1s ease-in-out forwards;
}

    /* Typography Styling */
    .hero-content h1 {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 2.8rem;
        
    }

    .hero-content h2 {
        font-weight: 700;
        font-size: 1.6rem;
        line-height: 2.6rem;
        margin-bottom: 15px;
    }
        .hero-content h2 a{
        color:white;
        text-decoration:none;
        }
            .hero-content h2 a:hover {
                color: #0094ff;
            }

    .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 55px;
        }




/* Keyframes for slide-up and fade-in effect */
@keyframes slideUpFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* Info Section */
.info-section {
    background-image: url('/images/bg-sec-2.jpg'); /* Replace with your image path */
    background-size: cover; /* Cover the whole section */
    background-position: center top; /* Center the image */
    background-repeat: no-repeat; /* Prevent image from repeating */
    background-color: #f8f9fa;
    position: relative;
    padding-top: 70px;
    padding-bottom: 50px;
    min-height:700px;
}

    /* Adjust container to ensure content isn't covered by the background image */
    .info-section .container-lg {
        /*background-color: rgba(0, 0, 0, 0.5);*/ /* Semi-transparent overlay for text readability */
        padding: 2rem; /* Add some padding for spacing */
        border-radius: 10px; /* Optional for aesthetic */
    }

    .info-section h2 {
        text-align: center;
        font-size: 2.1rem;
        font-family: Montserrat, san-serif;
        
        letter-spacing: -1.1px;
        font-weight: 700;
        color: #4d535d;
    }


    .info-section p {
        font-size: 1.4em;
        font-family: "Arimo", san-serif;
        padding:5px 0;
        font-weight: 400;
        color: #4d535d;
    }
.image-logo {
    max-width: 150px; /* Limits the image to 100px wide */
    height: auto; /* Maintains aspect ratio */
}

/* Services Buttons */

.service-buttons-section {
    padding: 50px 0 50px 0;
    background-color: #e8ebed;
    text-align: center;    
}

    .service-buttons-section h2 {
        color: #4d535d;
        font-family: Montserrat;
        font-weight: 700;
        letter-spacing: -1px;
        font-size: 2.0rem;
        margin-bottom: 25px;
    }

    

.service-buttons {
    max-width: 75%;
    margin: 0 auto; /* Centering the container */
}

.service-btn {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 12px 0;
    border: 1px solid #d3d4d6; /* Dark Gray Border */
    background-color: white;
    color: #767980; /* Dark Gray Font */
    font-size: .9rem; /* Small Font Size */
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 25px; /* Rounded Corners */
    transition: 0.3s ease-in-out;
}

    .service-btn:hover {
        background-color: #0099ff; /* Blue Hover Effect */
        color: white;
        border-color: #0099ff;
    }

/* Responsive Design */
@media (max-width: 992px) {
    .text-box-container {
        margin-top: 0; /* Reset margin on mobile */
        z-index: 1; /* Reset stacking context */
    }

    .info-image {
        margin-bottom: 20px; /* Add spacing between stacked elements */
    }
}

@media (max-width: 768px) {
    .text-box-container {
        margin-top: 0; /* Reset margin on mobile */
        z-index: 1; /* Reset stacking context */
    }

    .info-image {
        margin-bottom: 20px; /* Add spacing between stacked elements */
    }
}


/* Boxes Section */

/* Initial state for sliding cards */
.slide-in {
    opacity: 0;
    transform: translateX(50px); /* Start slightly off-screen */
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

    /* Active state when cards slide in */
    .slide-in.active {
        opacity: 1;
        transform: translateX(0); /* Return to the original position */
    }

    .slide-in:nth-child(1) {
        transition-delay: 0s;
    }

    .slide-in:nth-child(2) {
        transition-delay: 0.2s;
    }

    .slide-in:nth-child(3) {
        transition-delay: 0.4s;
    }

    .slide-in:nth-child(4) {
        transition-delay: 0.6s;
    }



.boxes-section {
    background-color: #335582;
    padding: 60px 0 60px 0;
}

.boxes-section h2 {
    font-size: 2.0rem;
    font-family: Montserrat, san-serif;
    letter-spacing: -1.1px;
    font-weight: 600;
    color: #fff;
}
.card {
    border: none;
    border-radius: 10px !important;
    position: relative; /* This is crucial for positioning the overlay */
    transition: all 0.3s ease; /* Adds smooth transition for the hover effect */
}

.card-img-top {
    border-radius: 10px 10px 0px 0px !important;
}

.card-title {
    color: #4d535d;
    font-weight: 700;
}

/* New styles for the hover effect */
.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2); /* Semi-opaque white overlay */
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px; /* Match the card's border-radius */
    pointer-events: none; /* Ensures the overlay doesn't interfere with clicks */
}

.card:hover::before {
    opacity: 1; /* Makes the overlay visible on hover */
}

/* Styles for the link wrapper to make the entire card clickable */
.card-link {
    text-decoration: none; /* Removes underline from the link */
    color: inherit; /* Inherits text color from parent */
    display: block; /* Ensures the link takes up the full size of the card */
}

/* Optional: If you want to change cursor to pointer on hover */
.card:hover {
    cursor: pointer;
}
.boxes-section h5 {
    font-size: 1.1rem;
}

.card-text {
    text-align: left;
    font-size: .9em;
    color: #4d535d;
}

/* Int-Hero Section */


.int-hero-section {
    position: relative;
    height: 60vh;    
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.int-hero-content h1 {
    font-weight: bold;
    text-align: center;
    justify-content: center;
    margin:100px 0 0 0;
}

.int-hero-content {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 15px;
    max-width: 600px;
}

/* Custom Section */
.custom-section {
    margin: 0 0 0 0;
    background-color: #e5eef0;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-box {
    max-width: 1600px;
    
    width: 100%;
    height: 100%;
    display: flex;
    background-color: rgba(0, 0, 0, 0.5); /* Optional overlay */
}
.custom-box-bg-1 {
    background: url('/images/bg-lifechanges.jpg') no-repeat center center / cover;
}
.custom-box-bg-2 {
    background: url('/images/bg-lifecapsule.jpg') no-repeat center center / cover;
}
.custom-box-bg-3 {
    background: url('/images/bg-completechanges.jpg') no-repeat center center / cover;
}

.box {
    position: relative; /* Ensure content is positioned relative to the box */      
    overflow: hidden; /* Prevent overflow of content */    
}

.image-half {
    flex: 1;
}

.content-half {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.logo {
    width: 300px;
    height: auto;
}
.logo-2 {
    width: 350px;
    height: auto;
}
.logo-3 {
    width: 275px;
    height: auto;
}

.content-half h2 {
    font-size: 1.6rem;
    font-weight: bold;
}
.content-half-left h2 {
    font-size: 1.6rem;
    font-weight: bold;
}

.content-half p {
    font-size: 1.1rem;
    line-height: 1.5;
}
.content-half-left {
    position: absolute; /* Position content within the box */
    left: 0; /* Align to the left */
    top: 50%; /* Center vertically */
    transform: translateY(-50%); /* Adjust for centering */
    width: 50%; /* Constrain content to the left half */
    margin-left: 30px; /* Add some padding for spacing */
    box-sizing: border-box; /* Include padding in width */
    color: white; /* Ensure text is visible */
    z-index: 2; /* Ensure it appears above the background */
}
/* Custom Button */
.btn-red {
    display: inline-block;
    padding: 20px 30px;
    font-size: 1em;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    background-color: #f0360a;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

    .btn-red:hover {
        background-color: #fa5c37;
        color: #ffffff;
        transform: scale(1.05); /* Slight grow effect on hover */
    }
.btn-light {
    display: inline-block;
    padding: 10px 20px;
    letter-spacing: .5px;
    font-size: .8rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid white;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

    .btn-light:hover {
        background-color: rgba(255, 255, 255, 0.3);
        border: 1px solid white;
        color: white;
        transform: scale(1.05); /* Slight grow effect on hover */
    }

.btn-dark {
    display: inline-block;
    padding: 10px 20px;
    letter-spacing: .5px;
    font-size: .8em;
    font-weight: 600;
    color: #4d535d;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #4d535d;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

    .btn-dark:hover {
        background-color: rgba(77, 83, 93, 0.95);
        color: #ffffff;
        border: 1px solid #368c9f;
        transform: scale(1.05); /* Slight grow effect on hover */
    }
.parent-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Interior Content */

.int-content {
    background-color: #f8f9fa; /* Light green background */
    padding: 0px 0 50px 0;
}

    .int-content h1 {
        font-size: 2.1rem;
        color: #4d535d;
        font-family:Montserrat;
        font-weight: 700;
        letter-spacing:-1px;
        text-align: center;
        justify-content: center;
        position: relative; /* Necessary for positioning the pseudo-element */
        margin: 50px 0; /* Ensures spacing below the h1 */
    }


    .int-content .lead {
        font-style: italic;
        font-size: 1.3rem;
        color: #989ca2;
    }

    .int-content h2 {
        font-family: Arimo;
        font-weight: 600;
        font-size: 1.6rem;
        letter-spacing: -.02rem;
    }
    .int-content h3 {
        font-size: 1.6rem;
        color: #4d535d;
        font-family: Montserrat;
        font-weight: 700;
        letter-spacing: -1px;
        position: relative; /* Necessary for positioning the pseudo-element */
        margin: 40px 0 10px 0; /* Ensures spacing below the h1 */
    }
    .int-content p {
        font-size:1.1rem;
        margin-top: 1.8rem;
        line-height: 1.8;
        color: #4d535d;
    }
    .final-p  {
        margin-bottom:50px;
    }
.int-content .divider {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 2rem; /* Adds space between the line and the text */
}

    /*.int-content .img-fluid {
        width: 100%;
        margin: 25px 0;*/ /* Remove any default margin */
    /*}*/



/* Base styling for the linked h3 */
.services-title a {
    font-family: Arimo;
    font-weight: 700;
    line-height:0px;
    position: relative;
    display: inline-block;
    font-size: 1.3rem;
    color: #0094ff;
    text-decoration: none !important; /* Ensures no underline */
}

    /* Add icon to the link using FontAwesome classes */
    .services-title a i {
        margin-left: 8px;
        transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
    }

/* Hover effect */
.services-title:hover a {
    color: #f0360a; /* Change text color on hover */
    text-decoration: none !important; /* Override Bootstrap */
}

    /* Hover effect for the arrow movement */
    .services-title:hover a i {
        transform: translateX(15px);
        color: #f0360a;
    }



/* Interior Content 2: Super Bonus Section */

.int-content2 {
    background-color: #335582;
    padding: 65px 0 100px 0;
} 

.int-content2 h3 {
    font-family: Arimo;
    font-size: 1.9rem; /* Set font size */
    color: #fff;
    line-height: 2.8rem;
    
}

    .int-content2 h3 a {
        transition: color 0.3s ease;
        font-weight: 700;
        text-decoration: none;
        color: #fff;
        background:none;
    }

        .int-content2 h3 a:hover {
            text-decoration: underline;
        }

/* Contact Form Section */
.contact-section {
   
}

    .contact-section h2 {
        font-size: 2.1rem !important;
        color: #4d535d !important;
        font-family: Montserrat !important;
        font-weight: 700 !important;
        letter-spacing: -1px !important;
        padding-bottom: 25px;
    }
    .contact-section h3 {
        font-size: 1.4rem !important;
        color: #4d535d !important;
        font-family: Montserrat !important;
        font-weight: 700 !important;
        letter-spacing: -1px !important;
        padding-bottom: 5px;
    }
    .contact-section p {
        font-size: 1.0rem !important;
        color: #4d535d !important;
        font-family: "Arimo", sans-serif;
        font-weight: 500 !important;
        line-height: 1.8rem;
        padding-bottom: 5px;
    }
section.contact-section h2 {
    font-size: 2.8rem !important;
}

/* Parallax Background */
.parallax-section {
    background-image: url('/images/bg-contact.jpg'); /* Your background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Enables the parallax effect */
    position: relative;
    overflow: hidden; /* Prevent scrolling artifacts */
}

/* Optional: Add padding to adjust the section height */
.parallax-section {
    padding: 100px 0;
}

    /* Ensure text content is readable */
    /*.parallax-section .contact-section {
        background: rgba(0, 0, 0, 0.5);*/ /* Optional: Adds a semi-transparent overlay behind text */
        /*color: white;*/ /* Ensures text is readable */
        /*border-radius: 10px;*/ /* Optional styling */
        /*padding: 30px;
    }*/


.contact-left {
    max-width:800px;
}
.contact-info-section p {
    font-size: .9em;
    font-family: "Arimo", sans-serif;
    font-weight: 400;
    color: #4d535d;
}
.label-custom {
    font-size:0.9rem;
    font-weight:600;
    margin-bottom:-3px;
    padding-left:3px;
}
.submit-custom {
    font-size: .8rem;
    padding: 10px 40px;
    border:none;
    border-radius: 0 !important; /* Changed to 0 to remove border-radius */
    display: block; /* Make the button behave like a block-level element */
    margin-left: auto; /* Center the button */
    margin-right: auto; /* Center the button */
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
    .submit-custom:hover {
        background-color: #fa5c37;
        color: #ffffff;
    }


.form-control {
    opacity: 0.75; /* Sets the opacity to 85% */
}

/* If you need to adjust text color for better contrast, you can do so here: */
/* .form-control {
    color: #333; Adjust text color if needed
} */
/* For WebKit browsers like Chrome and Safari */
::-webkit-input-placeholder {
    color: #b4b4b4;
    font-style: italic;
    font-size: .8rem;
}

/* For Firefox 19 and below */
:-moz-placeholder { /* Firefox 18- */
    color: #b4b4b4;
    opacity: 1;
    font-style: italic;
    font-size: .8rem;
}

/* For Firefox 19+ */
::-moz-placeholder {
    color: #b4b4b4;
    opacity: 1;
    font-style: italic;
    font-size: .8rem;
}

/* For Microsoft Edge and Internet Explorer 10-11 */
:-ms-input-placeholder {
    color: #b4b4b4;
    font-style: italic;
    font-size: .8rem;
}

/* For modern browsers that support the standard property */
::placeholder {
    color: #b4b4b4;
    font-style: italic;
    font-size: .8rem;
}

/* PDF Capsule Section */

.pdf-capsule-row {
    display: flex;
    justify-content: flex-start; /* Aligns capsules to the left */
    align-items: center;
    flex-wrap: wrap; /* Allows wrapping for smaller screens */
    gap: 15px; /* Adds consistent spacing between items */
    padding: 10px; /* Adds padding around the container */
}

.pdf-capsule {
    flex: 1 1 calc(25% - 15px); /* 4 items per row with spacing */
    max-width: 225px; /* Optional: Limits the size of each capsule */
    text-align: center; /* Centers the content inside each capsule */
    margin-bottom: 15px; /* Adds space between rows */
}

.pdf-link {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;    
    border: 2px solid lightgray;
    border-radius: 50px;
    text-decoration: none;
    background-color: white;
    transition: all 0.3s ease;
    color: #595959;
}

    .pdf-link:hover {
        background-color: #358c9f;
        color: white;
        border-color: #358c9f;
    }

.pdf-icon {
    margin-right: 6px;
    font-size: 1.4rem;
}

.pdf-title {
    font-size: .9rem;
    font-weight: 500;
}

/* Stack capsules vertically for mobile screens */
@media (max-width: 768px) {
    .pdf-capsule {
        flex: 1 1 100%; /* Full width on smaller screens */
        max-width: 100%; /* Ensure full width */
    }
    .pdf-icon {
        margin-right: 6px;
        font-size: 1.6rem;
    }

    .pdf-title {
        font-size: 1.2rem;
        font-weight: 500;
    }
        
}



    /* Footer Section */
.footer {
    background-color: #335582;
    background-image: url(/images/bg-footer.jpg);
    color: white;
    padding: 40px 0 10px 0;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover; /* 'cover' to fill or 'contain' if you prefer the image not to be cropped */
    background-size: auto;
}

    .footer a {
        color: #d2dae4;
    }

    .footer h6 {
        font-size: 1.6rem;
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .footer ul {
        list-style: none;
        padding-left: 0;
        line-height: 2.0;
        color: #d2dae4;
    }

    .footer li a {
        color: #d2dae4;
        text-decoration: none;
    }

    .footer li:hover a,
    .footer li:hover a::after {
        color: white;
        text-decoration: none;
    }
.ftr-phone {
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 2.5rem;
    margin-bottom: 15px;
}

.ftr-phone a {
    color: #d2dae4;
    text-decoration: none;
}

        .ftr-phone a:hover {
            color: #ffffff;
        }

.footer-sm p {
    font-size: .8rem;
    color: #d2dae4;
}

.footer-sm a {
    color: #d2dae4;
    text-decoration: none;
    transition: color 0.3s; /* Optional smooth transition */
}

        .footer-sm a:hover {
            color: white;
        }


.footer .divider {
    margin-top: 30px;
    margin-bottom: 20px; /* Adjusted margin */
    width: 75px;
    height: 1px;
    background-color: #454545;
}
/* Contact button */
.footer .btn-contact {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    border: 1px solid white;
    color: white;
    background-color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

    .footer .btn-contact:hover {
        background-color: white;
        color: black;
    }

/* By default, hide both sections */
.full-ftr, .mobile-ftr {
    display: none;
}

/* Show full-ftr for screens wider than or equal to 991px */
@media (min-width: 991px) {
    .full-ftr {
        display: flex;
    }
}

/* Show mobile-ftr for screens smaller than 991px */
@media (max-width: 990px) {
    .mobile-ftr {
        display: flex;
    }
}

.hero-image {
    position: relative;
    z-index: 1;
}

    .hero-image img {
        width: 100%;
        height: auto;
    }


/* navbar */

.navbar {
    background-color: rgba(0, 0, 0, 0.6) !important;
}

.navbar-brand img {
    width: 250px;
    transition: width 0.3s;
}

.navbar-collapse {
    justify-content: flex-end;
}

.top-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

    .top-nav a {
        color: white;
        text-decoration: none;
        margin-left: 15px;
    }

.navbar-nav {
    text-transform: uppercase;
    font-weight: 700;
}

.navbar-nav .nav-link {
    color: white;
    text-transform: uppercase;
    font-weight:700;
}

    .navbar-nav .nav-link:hover {
        color: #0094ff;
    }
.navbar-toggler {
    border: none; /* Removes any border around the button */
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
@media (max-width: 991px) {
    .navbar-brand img {
        width: 150px;
    }

    .navbar-nav {
        padding: 15px 0;
    }

    .nav-item {
        padding: 15px 0 0 10px;
    }

    .d-flex.justify-content-end {
        justify-content: flex-start !important; /* Changes alignment to start from the left */
        /* Optionally, you can adjust padding or margins here if necessary */
    }
}



@media (max-width: 991px) { 

    .int-content h1 {
        font-size: 2.0rem !important;
        line-height:2.4rem;
    }
    .half-size {
        font-size: 85%;
        display: block;
        margin-bottom: -2.0rem;
    }
    .int-content .lead {        
        font-size: 1.4rem;       
    }
    .int-content p {
        font-size: 1.2rem;
    
    }
    .services-title a {
        font-size:1.3rem;
        line-height:1.6rem;
    }
    .boxes-section {
        padding: 40px 0 60px 0;
    }
    .service-buttons {
        max-width: 100%;
        margin: 0 auto; /* Centering the container */
    }
    .parallax-section {
        background-attachment: scroll; /* Fallback for mobile */
        padding: 10px 0;
    }
    .int-content2 {
        background-color: #335582;
        padding: 50px 0 50px 0;
    }
     #contact-section {
        padding-top: 10px; /* Adjust based on your fixed header height */
        margin-top: -10px; /* To prevent the space from being added */
    }
    .btn-red {        
        padding: 20px 20px;
    }
    .col-md-2, .col-md-10 {
        /* Resetting column widths to full width on smaller screens */
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Ensuring elements stack */
    .row.col-md-12.mt-5 {
        flex-direction: column important!;
    }

    /* Adjusting the image for better mobile view */
    .image-logo {
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px; /* Space below the image */
    }
 

    /* Make sure the container is not using flex for mobile */
    .col-12.col-md-2.pe-5 {
        display: block;
    }
}
@media (max-width: 767px) {
    .img-contact img {
        padding-bottom:20px;
    }
}

    @media (max-width: 768px) {


        .hero-section {
            position: relative;
            height: 90vh;
            background: url('/images/hero-mob.jpg') no-repeat center center/cover;
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
        }



        .hero-content {
            padding: 30px;
        }

            .hero-content h1 {
                font-size: 1.6rem;
                line-height: 2.2rem;
                margin-top: 100px;
            }

            .hero-content h2 {
                font-size: 1.2rem;
                line-height: 1.8rem;
            }

            .hero-content p {
                font-size: 1rem;
            }


        .service-buttons {
            max-width: 100%;
            margin: 0 auto; /* Centering the container */
        }

        .service-btn {
            font-size: .8rem; /* Small Font Size */
        }



        .info-section .row.col-md-12.mt-5 > .col-md-2,
        .info-section .row.col-md-12.mt-5 > .col-md-10 {
            /* Ensure both stack vertically on mobile */
            width: 100% !important;
            max-width: 100%;
        }

        .info-section {
            padding-top: 20px;
            padding-bottom: 30px;
            min-height: 600px;
        }

            .info-section h2 {
                text-align: center;
                font-size: 2.1rem;
                font-family: Montserrat, san-serif;
                letter-spacing: -1.1px;
                font-weight: 700;
                color: #4d535d;
            }


            .info-section p {
                font-size: 1.2em;
                font-family: "Arimo", san-serif;
                padding: 10px 0;
                font-weight: 400;
                color: #4d535d;
            }

        .navbar-brand img {
            width: 150px;
        }

        .navbar-nav {
            padding: 20px 0;
        }

        .nav-item {
            padding: 15px 0 0 10px;
        }

        .d-flex.justify-content-end {
            justify-content: flex-start !important; /* Changes alignment to start from the left */
            /* Optionally, you can adjust padding or margins here if necessary */
        }

        .int-hero-section {
            position: relative;
            height: 35vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .int-content h1 {
            font-size: 1.6rem;
            margin: 15px 0 2px 0 !important; /* Ensures spacing below the h1 */
        }

        .boxes-section h2 {
                font-size: 1.8rem;
                line-height: 2.1rem;
            }
        .int-content p {
            font-size: 1.1rem;
            margin-top: 0;
            line-height: 1.8;
            color: #4d535d;
        }
        .int-content .lead {
            font-size: 1.2rem;
           
        }

        .contact-section h2 {
            font-size: 1.8rem;
            line-height: 2.1rem;
        }

        .int-content2 h3 {
            font-family: Arimo; 
            font-size: 1.5rem;
            color: #fff;
            line-height: 2.4rem;
        }

        .int-content2 {
            background-color: #335582;
            padding: 25px 0 20px 0;
        }

        .parallax-section {
            background-attachment: scroll; /* Fallback for mobile */
            padding: 10px 0;
        }

        #contact-section {
            padding-top: 10px; /* Adjust based on your fixed header height */
            /*margin-top: -10px;*/ /* To prevent the space from being added */
        }

        .btn-red {
            padding: 20px 15px;
        }
    }

/*.mobile-image-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
}

.mobile-img {
    width: 100%;
    height: auto;*/ /* this preserves the natural height */
    /*display: block;
}*/


/* Hide on screens larger than mobile (typically 768px and up) */
/*@media (min-width: 768px) {
    .mobile-image-section {
        display: none;
    }
}*/

/* Ensure full width on mobile */
/*@media (max-width: 767px) {
    .mobile-image-section {
        display: block;
    }
}*/


