@charset "utf-8";
/* CSS Document */

/* Import Google Fonts */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rye', cursive;
}

.grecaptcha-badge { visibility: hidden; }

.small-btn {
    font-size: 0.8rem!important;
    padding: 4px 10px!important;
}

.btn-secondary:hover {
    background-color: #03B0EF;
    color: #fff;
    border-color: #03B0EF;
}

/*-------------------------------------<NavBar>----------------------------------------------*/
.top-bar {
    height: 40px; /* Explicitly set top bar height */
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
    z-index: 10;
}
.top-bar a {
    color: #fff;
    text-decoration: none;
}
.top-bar a:hover {
    color: #1E2F62;
    text-decoration: none;
}
.navbar {
    position: relative;
    z-index: 9;
    padding-top: 20px; /* Adjust spacing to accommodate logo */
}
.logo {
    height: 275px !important;
    max-height: none;
    width: auto;
    position: absolute;
    top: calc(50% + 95px); /* Moves the logo further down */
    transform: translateY(-50%);
    left: 15px;
    z-index: 11;
}
@media (max-width: 992px) {
    .logo {
        height: 100px !important;
        top: calc(50% + 10px); /* Moves the logo slightly down on mobile */
        transform: translateY(-50%);
    }
}
/* Exact match for 125% scaling on 1920x1080 */
@media (min-width: 1536px) and (max-width: 1600px) and (min-resolution: 120dpi) {
    .logo {
        height: 200px !important;
        top: calc(50% + 60px);
        transform: translateY(-50%);
    }
}

/*-------------------------------------</NavBar>----------------------------------------------*/

/*-------------------------------------<Hero>----------------------------------------------*/
.hero-img {
    height: calc(100vh - 100px); /* Adjust height based on navbar */
    object-fit: cover;
    width: 100%;
    filter: brightness(50%);
}
.text-shadow {
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.75);
}
.hero-content {
    max-width: 90%; /* Prevents squishing on mobile */
}
.hero-offer {
    font-size: 2rem; /* Larger text */
    font-weight: bold;
    color: #ffcc00; /* Bright yellow text */
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.75); /* Ensure visibility */
    background: transparent; /* Remove button-like background */
    padding: 0; /* No padding to avoid button shape */
    border-radius: 0; /* No rounded corners */
    display: block; /* Ensures proper spacing */
    margin-top: 15px;
}
#hero .btn-secondary {
    background-color: #ED1C24;
    color: #fff;
    border-color: #ED1C24;
}
#hero .btn-secondary:hover {
    background-color: #03B0EF;
    color: #fff;
    border-color: #03B0EF;
}

@media (max-width: 576px) {
    .hero-content {
        width: 100%;
        padding: 0 15px;
    }
    .hero-content .btn {
        width: 100%; /* Ensures buttons are full width on small screens */
        white-space: nowrap; /* Prevents text from wrapping */
    }
    .hero-offer {
        font-size: 1.5rem; /* Adjust size slightly for mobile */
        padding: 8px 15px;
    }
}
/*-------------------------------------</Hero>----------------------------------------------*/

/*-------------------------------------<Hero2 Section>----------------------------------------------*/
    .hero2-section {
        position: relative;
        min-height: 550px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .hero2-section .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
    }
    .text-shadow {
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.75);
    }
    .badge.bg-success {
        font-size: 1.1rem;
        padding: 10px 15px;
    }
#hero2 .btn-secondary {
    background-color: #ED1C24;
    color: #fff;
    border-color: #ED1C24;
}
#hero2 .btn-secondary:hover {
    background-color: #03B0EF;
    color: #fff;
    border-color: #03B0EF;
}
/*-------------------------------------</Hero2 Section>----------------------------------------------*/

/*-------------------------------------<Hero Form Section>----------------------------------------------*/
.hero-form-section {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 175px;
    padding-bottom: 50px;
}
.hero-form-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.hero-form-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    /*max-width: 450px;*/
    margin: 0 auto;
}
.form-head {
    color: #19499D;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}
.hero-form-container .form-control {
    border-radius: 5px;
    font-size: 1rem;
}
.hero-form-container .btn-primary {
    background-color: #19499D;
    border-color: #19499D;
    font-size: 1.1rem;
    padding: 10px 20px;
}
.hero-form-container .btn-primary:hover {
    background-color: #153b7c;
    border-color: #153b7c;
}
#hero-form .btn-secondary {
    background-color: #ED1C24;
    color: #fff;
    border-color: #ED1C24;
}
#hero-form .btn-secondary:hover {
    background-color: #03B0EF;
    color: #fff;
    border-color: #03B0EF;
}
.hero-form-container .small {
    font-size: 0.75rem!important; /* Makes the Google policies text smaller */
}
@media (max-width: 992px) {
    .hero-form-section {
        text-align: center;
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .hero-form-container {
        max-width: 100%;
        margin-top: 20px;
    }
}
/* Exact match for 125% scaling on 1920x1080 */
@media (min-width: 1536px) and (max-width: 1600px) and (min-resolution: 120dpi) {
    .hero-form-section {
        padding-top: 100px;
    }
}
/*-------------------------------------</Hero Form Section>----------------------------------------------*/


/*-------------------------------------<One-Liner Section>----------------------------------------------*/
.one-liner-section {
    padding: 60px 0 60px 0;
    background-color: #fff; /* Light gray background for contrast */
}

.one-liner-section .subheading {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: bold;
    color: #19499D; /* Match brand colors */
}

.one-liner-section .heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000; /* Keep it readable */
    margin-top: 10px;
}

.one-liner-section .description {
    font-size: 1.1rem;
    color: #444;
    max-width: 90%;
    line-height: 1.6;
}

.one-liner-section .cta-buttons {
    margin-top: 20px;
}

.one-liner-section .btn-primary {
    background-color: #19499D;
    border-color: #19499D;
    font-size: 1.1rem;
    padding: 10px 20px;
}

.one-liner-section .btn-primary:hover {
    background-color: #153b7c;
    border-color: #153b7c;
}

.one-liner-section .btn-secondary {
    background-color: transparent;
    border: 2px solid #19499D;
    color: #19499D;
    font-size: 1.1rem;
    padding: 10px 20px;
}

.one-liner-section .btn-secondary:hover {
    background-color: #03B0EF;
    color: #fff;
}

.one-liner-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Prevent overflow on mobile */
.ratio iframe {
    border-radius: 10px;
}
.ratio-9x195 {
  position: relative;
  width: 100%;
  padding-top: calc(100% * 19.5 / 9); /* aspect-ratio: 9 / 19.5 */
}

.ratio-9x195 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 992px) {
    .one-liner-section .text-center {
        text-align: center !important;
    }

    .one-liner-section .description {
        max-width: 100%;
    }

    .one-liner-section .cta-buttons {
        display: flex;
        /*flex-direction: column;*/
        gap: 10px;
    }

    .one-liner-section img {
        margin-top: 20px;
    }
}
/*-------------------------------------</One-Liner Section>----------------------------------------------*/

/*-------------------------------------<Book-Promo Bar>----------------------------------------------*/
    .book-promo-bar {
        background: url('../img/tx-bg.webp') no-repeat left center;
        background-size: contain;
        background-color: #323864;
        margin-top: 60px;
        padding: 60px 0;
        position: relative;
    }
    .book-promo-bar::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1; /* Moves overlay behind content */
    }
    .promo-box {
        background: #ED1C24;
        color: #ffffff;
        padding: 20px 50px;
        border-radius: 5px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
        position: absolute;
        left: 50%;
        top: -125px;
        transform: translate(-50%, -50%);
        width: 65%;
        /*max-width: 70%;*/
        text-align: center;
        z-index: 2; /* Ensures promo box stays on top */
    }
    .promo-heading {
        font-size: 2rem;
        font-weight: bold;
    }
    .promo-subheading {
        font-size: 1.3rem;
        font-weight: 500;
    }
    .promo-description {
        font-size: 1rem;
    }
    .steps {
        margin-top: 60px;
        position: relative;
        z-index: 2; /* Ensures steps and buttons are clickable */
    }
    .step h3 {
        font-size: 1.75rem;
        font-weight: bold;
        margin-bottom: 10px;
    }
    .step p {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    .step .btn {
        margin: 5px;
        font-size: 1.1rem;
        padding: 10px 20px;
        position: relative;
        z-index: 3; /* Ensures buttons remain clickable */
    }
#book-promo .btn-secondary {
    background-color: #transparent;
    color: #fff;
    border-color: #03B0EF;
}
#book-promo .btn-secondary:hover {
    background-color: #03B0EF;
    color: #fff;
    border-color: #03B0EF;
}
    
    @media (max-width: 768px) {
       .book-promo-bar::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1; /* Moves overlay behind content */
        } 
        .steps {
            flex-direction: column;
        }
        .step {
            margin-bottom: 20px;
        }
        .promo-box {
            position: relative;
            left: auto;
            top: 0;
            transform: none;
            width: 95%;
            max-width: 100%;
            text-align: center;
            margin-top: 20px;
        }
        
    }
/*-------------------------------------</Book-Promo Bar>----------------------------------------------*/

/*-------------------------------------<Before After Section>----------------------------------------------*/
.before-after-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}
/* Ensure the before-after container has a proper height */
.before-after-slider {
    position: relative;
    width: 100%;
    min-height: 300px; /* Ensures container height is sufficient */
    overflow: hidden;
}

/* Ensure images are positioned correctly */
.ba-slider {
    position: relative;
    width: 100%;
    height: 100%; /* Ensures it takes up full height */
    display: flex; /* Allows better image positioning */
    align-items: center; /* Center images vertically */
}

/* Ensure images are displayed properly */
.ba-slider img {
    width: 100%;
    height: auto; /* Change this from auto to 100% if needed */
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover; /* Makes sure it fills the space */
    border-radius: 8px;
}

/* Ensure Before image stays visible */
.ba-slider img.before-img {
    z-index: 1;
}

/* Ensure After image overlays properly */
.ba-slider img.after-img {
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

/* Hover Effect */
.ba-slider:hover img.after-img {
    opacity: 1;
}


/*-------------------------------------</Before After Section>----------------------------------------------*/

/*-------------------------------------<Services Section>----------------------------------------------*/
.services-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #01AFEF, #FFF);
}
.service-card {
    border: none;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}
.service-card:hover {
    transform: translateY(-5px);
}
.service-icon {
    font-size: 3rem;
    color: #19499D;
    margin-bottom: 15px;
}
.card-title {
    font-size: 1.5rem;
    font-weight: bold;
}
.card-text {
    font-size: 1rem;
}
.hidden-row {
    display: none;
}
#services .btn-secondary:hover {
    background-color: #03B0EF;
    color: #fff;
    border-color: #03B0EF;
}
#toggleServices.btn-secondary:hover {
    background-color: #ED1C24;
    color: #fff;
    border-color: #03B0EF;
}

/*-------------------------------------</Services Section>----------------------------------------------*/

/*-------------------------------------<Services List Section>----------------------------------------------*/
    .services-list-section {
        padding: 60px 0;
        background: linear-gradient(to bottom, #01AFEF, #FFF);
    }
    .services-list {
        list-style: none;
        padding: 0;
        font-size: 1.1rem;
        font-weight: bold;
        columns: 2;
        column-gap: 30px;
    }
    .services-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }
    .services-list i {
        color: #19499D;
        font-size: 1.5rem;
    }
    .cta-buttons {
        margin-top: 20px;
    }
    .btn-primary {
        background-color: #19499D;
        border-color: #19499D;
        font-size: 1.1rem;
        padding: 10px 20px;
    }
    .btn-primary:hover {
        background-color: #153b7c;
        border-color: #153b7c;
    }
    .btn-secondary {
        background-color: transparent;
        border: 2px solid #19499D;
        color: #19499D;
        font-size: 1.1rem;
        padding: 10px 20px;
    }
    .btn-secondary:hover {
        background-color: #19499D;
        color: #fff;
    }
    @media (max-width: 768px) {
        .services-list {
            columns: 1;
        }
    }
/*-------------------------------------</Services List Section>----------------------------------------------*/

/*-------------------------------------<Local Section>----------------------------------------------*/
    .local-section {
        padding: 60px 0 60px 0;
        background-color: #fff;
        position: relative;
    }

/*-------------------------------------</Local Section>----------------------------------------------*/

/*-------------------------------------<Process Section>----------------------------------------------*/
    .process-section {
        padding: 60px 0 5px 0;
        background-color: #fff;
        position: relative;
    }

/*-------------------------------------</Process Section>----------------------------------------------*/

/*-------------------------------------<Pricing Section>----------------------------------------------*/
    .pricing-section {
        padding: 60px 0 60px 0;
        background-color: #fff;
        position: relative;
    }
#pricing .btn-secondary:hover {
    background-color: #03B0EF;
    color: #fff;
    border-color: #03B0EF;
}
/*-------------------------------------</Pricing Section>----------------------------------------------*/

/*-------------------------------------<Why Choose Us Section>----------------------------------------------*/
    .choose-section {
        padding: 80px 0;
        background-color: #f8f9fa;
    }
    .section-description {
        font-size: 1.1rem;
        color: #444;
        max-width: 90%;
        line-height: 1.6;
    }
    .checklist {
        list-style: none;
        padding: 0;
        font-size: 1.1rem;
    }
    .checklist li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }
    .checklist i {
        color: #19499D;
        font-size: 1.5rem;
    }
    .choose-image {
        max-width: 100%;
        border-radius: 8px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    }
    .cta-buttons {
        margin-top: 20px;
    }
    .btn-primary {
        background-color: #19499D;
        border-color: #19499D;
        font-size: 1.1rem;
        padding: 10px 20px;
    }
    .btn-primary:hover {
        background-color: #153b7c;
        border-color: #153b7c;
    }
    .btn-secondary {
        background-color: transparent;
        border: 2px solid #19499D;
        color: #19499D;
        font-size: 1.1rem;
        padding: 10px 20px;
    }
    #why-choose-us .btn-secondary:hover {
        background-color: #03B0EF;
        color: #fff;
    }
    @media (max-width: 992px) {
        .text-lg-start {
            text-align: center !important;
        }
        .section-description {
            max-width: 100%;
        }
        .checklist {
            text-align: left;
            display: inline-block;
        }
        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .choose-image {
            margin-top: 20px;
        }
    }
/*-------------------------------------</Why Choose Us Section>----------------------------------------------*/

/*-------------------------------------<Reviews Section>----------------------------------------------*/
    .reviews-section {
        padding: 60px 0 60px 0;
        background-color: #CFE2FF;
        text-align: center;
        position: relative;
    }
    .reviews-wrapper {
        position: relative;
        min-height: 380px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .reviews-pile {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        max-width: 900px;
        margin-bottom: 30px;
    }
    .review-card {
        position: absolute;
        width: 450px;
        background: #fff;
        padding: 15px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
        border-radius: 8px;
        transition: transform 0.3s ease-in-out;
        cursor: pointer;
    }
    .review-card:nth-child(1) {
        top: 0;
        left: 10%;
        transform: rotate(-5deg) translateX(-50px);
    }
    .review-card:nth-child(2) {
        top: 0;
        right: 10%;
        transform: rotate(5deg) translateX(50px);
    }
    .review-card:nth-child(3) {
        top: 50px;
        left: 10%;
        transform: rotate(-3deg);
    }
    .review-card:nth-child(4) {
        top: 50px;
        right: 10%;
        transform: rotate(3deg);
    }
    .review-card:nth-child(5) {
        top: 100px;
        left: 50%;
        transform: translateX(-50%) rotate(0deg);
        z-index: 5;
    }
    .review-card:hover {
        transform: scale(1.1) rotate(0deg);
        z-index: 10;
    }
    .review-content {
        text-align: left;
    }
    .review-stars {
        color: #FFD700;
        font-size: 1.5rem;
    }
    .review-text {
        font-size: 1.2rem;
        margin: 10px 0;
    }
    .review-author {
        font-size: 0.9rem;
        font-weight: bold;
        text-align: right;
    }
    #reviews .btn-primary {
        background-color: #19499D;
        border-color: #19499D;
        font-size: 1.1rem;
        padding: 10px 20px;
        position: relative;
        z-index: 10;
    }
    #reviews .btn-primary:hover {
        background-color: #03B0EF;
        border-color: #153b7c;
    }
    .reviews-btn-container {
        position: relative;
        z-index: 5;
    }

@media (max-width: 768px) {
    .reviews-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow: hidden; /* Prevents horizontal scrolling */
        width: 100%;
    }

    .reviews-pile {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%; /* Ensures it fills the container */
        max-width: 380px; /* Prevents stretching */
        padding: 0 10px; /* Adds slight padding to prevent overflow */
    }

    .review-card {
        position: relative;
        width: 100%; /* Ensures full width within container */
        max-width: 340px; /* Keeps them within screen width */
        margin: 5px auto; /* Adds space while keeping overlap */
        transform: none; /* Resets off-screen movement */
    }

    /* Messy Layout with More Rotation */
    .review-card:nth-child(1) { 
        transform: translateY(-10px) rotate(-7deg); left: -10px;
    }
    .review-card:nth-child(2) { 
        transform: translateY(-20px) rotate(6deg); left: 8px;
    }
    .review-card:nth-child(3) { 
        transform: translateY(-30px) rotate(-5deg); left: -5px;
    }
    .review-card:nth-child(4) { 
        transform: translateY(-40px) rotate(4deg); left: 12px;
    }
    .review-card:nth-child(5) { 
        transform: translateY(-50px) rotate(-3deg); left: -7px;
        margin-bottom: 60px; /* Keeps the last review from overlapping the button */
    }

    /* Button Placement - Ensures it's always below reviews */
    .reviews-btn-container {
        position: relative;
        margin-top: 20px;
        z-index: 10;
    }
}




/*-------------------------------------</Reviews Section>----------------------------------------------*/

/*-------------------------------------<Locations Section>----------------------------------------------*/
   .locations-section {
        padding: 60px 0;
        background-color: #f8f9fa;
    }
    .locations-list ul {
        list-style: none;
        padding: 0;
        font-size: 1.1rem;
        font-weight: bold;
        columns: 2;
    }
    .locations-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }
    .locations-list i {
        color: #19499D;
        font-size: 1.5rem;
    }
    .map-container {
        max-width: 100%;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    }
    .cta-buttons {
        margin-top: 20px;
        text-align: left;
    }
    .btn-primary {
        background-color: #19499D;
        border-color: #19499D;
        font-size: 1.1rem;
        padding: 10px 20px;
    }
    .btn-primary:hover {
        background-color: #153b7c;
        border-color: #153b7c;
    }
    .btn-secondary {
        background-color: transparent;
        border: 2px solid #19499D;
        color: #19499D;
        font-size: 1.1rem;
        padding: 10px 20px;
    }
    .btn-secondary:hover {
        background-color: #03B0EF;
        color: #fff;
    }
.hidden-location {
    display: none;
}

    @media (max-width: 768px) {
        .row.align-items-center {
            flex-direction: column;
        }
        .cta-buttons {
            text-align: center;
        }
        .locations-list ul {
            columns: 1;
        }
    }
/*-------------------------------------</Locations Section>----------------------------------------------*/

/*-------------------------------------<Promo Bar>----------------------------------------------*/
    .promo-bar {
        background: #ED1C24; /* Red Background */
        padding: 20px 0;
    }
    .promo-heading {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 0;
    }
    .promo-subheading {
        font-size: 1.5rem;
        font-weight: 500;
        margin-bottom: 0;
    }
    .promo-bar .btn {
        margin: 5px;
        font-size: 1.1rem;
        padding: 10px 20px;
    }
.promo-bar .btn-outline-light:hover {
    background-color: #191C32;
    border-color: #191C32;
    color: #fff;
}

    @media (max-width: 768px) {
        .promo-heading {
            font-size: 1.5rem;
        }
        .promo-subheading {
            font-size: 1rem;
        }
        .promo-bar .btn {
            display: block;
            width: 100%;
            margin: 10px 0;
        }
    }
/*-------------------------------------</Promo Bar>----------------------------------------------*/

/*-------------------------------------<FAQ Section>----------------------------------------------*/
    .faq-section {
        padding: 60px 0;
        background-color: #f8f9fa;
    }
    .accordion-button {
        font-size: 1.2rem;
        font-weight: bold;
    }
    .accordion-body {
        font-size: 1rem;
    }
/*-------------------------------------</FAQ Section>----------------------------------------------*/

/*-------------------------------------<Contact Section>----------------------------------------------*/
.contact-section {
    padding: 80px 0;
    background-color: #191C32;
    color: #f8f9fa;
}
.contact-section p {
    color: #f8f9fa;
}
.contact-section a {
    text-decoration: none;
}
    .contact-details {
        list-style: none;
        padding: 0;
        font-size: 1.1rem;
    }
    .contact-details li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }
    .contact-details i {
        color: #03B0EF;
        font-size: 1.5rem;
    }
    .contact-form {
        background: #f8f9fa;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    }
    .btn-primary {
        background-color: #19499D;
        border-color: #19499D;
        font-size: 1.1rem;
        padding: 10px 20px;
    }
    .btn-primary:hover {
        background-color: #153b7c;
        border-color: #153b7c;
    }
.contact-form .small {
    font-size: 0.75rem; /* Makes the Google policies text smaller */
}
    @media (max-width: 992px) {
        .text-lg-start {
            text-align: center !important;
        }
    }
/*-------------------------------------</Contact Section>----------------------------------------------*/

/*-------------------------------------<Footer>----------------------------------------------*/
footer {
    background-color: #101223;
    color: #F8F9FA;
}
footer a{
    text-decoration: none;
}

/*-------------------------------------</Footer>----------------------------------------------*/
