/* =========================================
    Default Theme
    ----------------------------------------
    Fonts: Poppins & Open Sans
    ----------------------------------------
    Colors:
        Valentina:           #dd1036
        Pearl Black:         #303030
        Grey:                #212226
        White Smoke:         #f4f4f4
        White:               #fff
        Black:               #000 
                              #f9e2e6  
============================================ */


/* =========================================
                Html, Body
============================================ */

html,
body {
    height: 100%;
}

body {
    color: #212226;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}

p {
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 24px;
}

section {
    background: #fff;
    overflow: hidden;
}


/* =========================================
                Preloader
============================================ */

#preloader {
    background-color: #fff;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

#status {
    background-image: url("../img/preloader/preloader.gif");
    background-repeat: no-repeat;
    width: 70px;
    height: 70px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -35px;
    margin-left: -35px;
}


/* =========================================
                Home
============================================ */
#home {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Carousel Images */
#homecarousel .carousel-item img {
    height: 85vh;
    object-fit: cover;
    filter: brightness(0.5);
    transform-origin: center center;
}

#homecarousel .carousel-item.active img {
    animation: zoom 20s linear infinite;
}

/* Caption Styling */
#homecarousel .carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    text-align: center;
    color: #ffffff;
}

#homecarousel .carousel-caption h5 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
    animation-delay: 1s;
}

#homecarousel .carousel-item.active .carousel-caption h5 {
    animation: fadeInUp 1s both;
}

#homecarousel .carousel-caption p {
    font-size: 18px;
    max-width: 650px;
    margin: auto;
    opacity: 0.95;
    animation-delay: 1.5s;
}

#homecarousel .carousel-item.active .carousel-caption p {
    animation: fadeInUp 1s both;
}

/* Animations */
@keyframes zoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.3);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 50px, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

/* Indicators */
.home-carousel-indicators {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.home-carousel-indicators button {
    width: 35px;
    height: 4px;
    background-color: #dd1036;
    border: none;
    border-radius: 2px;
}

.home-carousel-indicators .active {
    background-color: #ffffff;
}

/* Controls */

#homecarousel .carousel-control-prev,
#homecarousel .carousel-control-next {
    width: 60px;
    /* Fixed width for better click target control */
    background: none;
    opacity: 1;
    position: absolute;
    top: 50%;
    bottom: auto;
    height: 60px;
    /* Fixed height matching icon area */
    transform: translateY(-50%);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10;
    /* Ensure it's above the image */
}

#homecarousel .carousel-control-prev i,
#homecarousel .carousel-control-next i {
    font-size: 60px;
    color: rgba(255, 255, 255, 0.5);
    background: none;
    width: auto;
    height: auto;
    display: block !important;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

#homecarousel .carousel-control-prev i:hover,
#homecarousel .carousel-control-next i:hover {
    background: none;
    color: #fff;
    transform: scale(1.1);
}




/* =========================================
                Buttons
============================================ */

.btn-general {
    font-family: 'Poppins', sans-serif;
    border-radius: 28px;
    font-size: 13px;
    text-transform: uppercase;
    margin: 0 6px;
    padding: 12px 46px 12px 46px;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.btn-home {
    color: #fff;
    border: 1px solid #fff;
}

.btn-home:hover,
.btn-home:focus {
    color: #fff;
    background-color: #dd1036;
    border: 1px solid #dd1036;
}

.btn-pink {
    color: #fff;
    border: 1px solid #dd1036;
    background-color: #dd1036;
}

.btn-pink:hover,
.btn-pink:focus {
    color: #fff;
    background-color: #212226;
    border: 1px solid #212226;
}

.btn-white {
    color: #212226;
    border: 1px solid #fff;
    background-color: #fff;
}

.btn-white:hover,
.btn-white:focus {
    color: #fff;
    background-color: #212226;
    border: 1px solid #212226;
}

.btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 3px 15px;
    border-radius: 4px;
    font-size: 22px;
    display: none;
}


/* =========================================
                Arrow Down
============================================ */

#arrow-down {
    position: absolute;
    left: 50%;
    bottom: 20px;
    color: #fff;
    font-size: 32px;
    width: 32px;
    height: 32px;
    text-align: center;
    margin-left: -16px;
    z-index: 1;
}

#arrow-down:hover,
#arrow-down:focus {
    color: #dd1036;
}


/* =========================================
                Content Boxes
============================================ */

.content-box-lg {
    padding: 120px 0;
}

.content-box-md {
    padding: 100px 0;
}

.content-box-sm {
    padding: 60px 0;
}


/* =========================================
                Stats
============================================ */

#stats {
    background: url("../img/stats/stats-bg.jpg") no-repeat fixed center;
    background-size: cover;
}

#stats .content-box-md {
    background: rgba(0, 0, 0, 0.8);
    padding: 50px 0;
}

#stats .stats-heading {
    margin-bottom: 20px;
}

#stats .stats-heading h2 {
    color: #fff;
}

.stats-item {
    background: rgba(61, 68, 68, 0.6);
    border-radius: 4px;
    min-height: 150px;
    padding: 25px 25px;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.stats-item i {
    font-size: 42px;
    color: #dd1036;
    margin: 0 0 6px 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.stats-item h3 {
    font-size: 32px;
    color: #fff;
    margin: 5px 0 5px 0;
}

.stats-item p {
    color: #fff;
    margin: 0;
}

.stats-item:hover {
    background: #dd1036;
}

.stats-item:hover i {
    color: #212226;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
}

/* =========================================
                About 01
============================================ */

#about-para p {
    margin-top: 30px;
}



#about-right img {
    margin: 0 auto;
}


/* =========================================
                About 02
============================================ */

#location {
    background-color: #f4f4f4;
}

#location .location-heading h2 {
    padding-bottom: 20px;

}

.location-item {
    background-color: #fff;

    padding: 20px 20px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.location-item i {
    font-size: 42px;
    margin: 0;
}

.location-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.location-item hr {
    width: 45px;
    height: 3px;
    background-color: #dd1036;
    margin: 0 auto;
    border: none;
}

.location-item p {
    margin-top: 20px;
}


/* Hover state */

.location-item:hover {
    background-color: #dd1036;
}

.location-item:hover i,
.location-item:hover h3,
.location-item:hover p {
    color: #fff;
}

.location-item:hover hr {
    background-color: #fff;
}

.location-item:hover i {
    transform: translateY(-10px);
}


/* SVG Styling */
.location-item .location-svg {
    fill: #dd1036;
    /* Default color matching the theme */
    transition: all 400ms ease-in-out;
}

.location-item .location-svg path {
    fill: inherit;
}

.location-item:hover .location-svg {
    filter: brightness(0) invert(1);
    transform: translateY(-10px);
}

/* Smooth transition */

.location-item,
.location-item i,
.location-item hr,
.location-item .location-svg {
    -webkit-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
}

.location-item {
    height: 100%;
}

.location-item i,
.location-item hr,
.location-item .location-svg {
    -webkit-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
}

.location-item h3,
.location-item p {
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

/* =========================================
                Services 01
============================================ */

#services {
    background-color: #f4f4f4;
}

#services .content-box-lg {
    padding-bottom: 60px;
}

#gallery .content-box-md {
    padding-top: 60px;
}


.service {
    margin: 35px 0;
    display: flex;
    justify-content: space-between;

}

.services-heading h2 span {
    color: #dd1036;


}

.service-item {
    flex: 1;
    /* This makes all items grow to fill the available space equally */
    padding: 10px;

    text-align: center;

    background-color: #fff;

    margin: 0 10px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.service-item hr {

    color: #dd1036;
    font-weight: 700;

}

.service img {

    margin: 10px;
    height: 60px;
    width: 60px;

    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}





.service-item:hover img {

    -webkit-transform: translatey(-20px);
    transform: translatey(-20px);
}



.service h5 {
    font-size: 20px;
    margin: 25px 10px;
    text-transform: uppercase;
}

.service p {
    line-height: normal;
}

#services-btn {
    align-content: right;
}

#services-btn .btn-general {

    margin: 0 3px;
    padding: 8px 36px;

}

/* =========================================
                Testimonials
============================================ */

#testimonials {
    background: #f4f4f4;
    padding-bottom: 45px;

}

.testimonial-heading {
    padding: 30px 0;
    margin-bottom: 50px;
}

.testimonial-heading span {
    color: #dd1036;
}

#testimonial-slider {
    background: #fff;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);

}



.testimonial {
    background-color: #fcf6f7;

    margin: 20px 20px 0 20px;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .1);
    box-shadow: 0 0 5px rgba(0, 0, 0, .1);


    padding: 20px;




}

.testimonial h3 {
    font-size: 32px;
    line-height: 35px;
}

.testimonial .stars {
    font-size: 20px;
    margin: 20px 0 10px 0;
}

.testimonial p {
    line-height: normal;
    margin-left: 10px;
    margin-top: 5px;
    margin-bottom: 20px;
}

.author .author-name-des {
    width: 200px;
    margin-top: 25px;
    text-align: left;
}

.author .author-name-des p {
    font-weight: 700;
    margin: 0;
}

/* =========================================
                Slider Buttons
============================================ */

.owl-theme .owl-nav [class*=owl-] {
    color: #dd1036;
    font-size: 40px;
    background: none;
    margin: 0;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: none;
    color: #dd1036;
}

/* =========================================
                Pricing
============================================ */
.pricing-heading {
    padding-bottom: 20px;
}

.pricing-heading span {
    color: #dd1036;
}

.pricing-table {
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 32px 21px;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-table>div:last-child {
    margin-top: auto;
}

.pricing-table:hover {
    background: #dd1036;
}

.pricing-table .type h4 {
    color: #dd1036;
    font-size: 24px;
    margin-bottom: 25px;

}

.pricing-table .price {
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 24px 0;
}

.pricing-table .price h3 {
    font-family: "Open Sans", sans-serif;
    font-size: 36px;
    font-weight: 100;
    margin: 0 0 0 24px;
    position: relative;
}

.pricing-table .price h3 span {
    font-family: "Poppins", sans-serif;
}

.pricing-table .price h3 span.dollar {
    font-size: 20px;
    font-weight: 300;
    position: absolute;
    left: -20px;
    top: 5px;
}



.pricing-table .price p {
    line-height: normal;
    font-weight: 200;
    margin: 0;
    padding: 0;
}

.pricing-table ul.package {
    list-style: none;
    padding: 20px 0;
}

.pricing-table ul.package li {
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 40px;
}

.pricing-table ul.package li i {
    width: 24px;
}

.pricing-table .btn-pink,
.pricing-table.black .btn-white {
    width: 96%;
}

.pricing-table:hover h4,
.pricing-table:hover h3,
.pricing-table:hover p,
.pricing-table:hover ul.package {
    color: #fff;
}

.pricing-table:hover .btn-pink {
    background: #fff;
    color: #212226;
    border: 1px solid #fff;
}

.pricing-table .btn-pink:hover,
.pricing-table .btn-pink:focus {
    background: #212226;
    color: #fff;
    border: 1px solid #212226;
}






/* =========================================
                Blog
============================================ */

#blog {
    background: #f4f4f4;
}

.blog-heading {
    padding-bottom: 20px;
}

.blog-heading span {
    color: #dd1036;
}

#blog-left p {
    margin: 25px 0;
}

#blog-btn {
    text-align: center;
}

#blog-btn a {
    margin-top: 20px;
}

.blog-post {
    background: #fff;
    padding: 20px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.blog-post h4 {
    line-height: 40px;
    margin: 0;
    padding: 10px 0;
}

.blog-post>p {
    line-height: 24px;
    margin: 0;
    font-weight: 300;
}

.blog-post a {
    display: inline-block;
    margin-top: 25px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #dd1036;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.blog-post a:hover {
    color: #212226;
}

/* =========================================
                Modern About Section
============================================ */

.modern-about-section {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.modern-about-section .sub-heading {
    color: #dd1036;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}

.modern-about-section .main-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #212226;
    margin-bottom: 30px;
}

.modern-about-section .main-heading span {
    color: #dd1036;
}

.modern-about-section .about-description p {
    font-size: 15px;
    line-height: 28px;
    color: #555;
    margin-bottom: 20px;
}

.modern-about-section .btn-general {
    margin-top: 10px;
}

.about-image-wrapper {
    position: relative;
    padding-left: 30px;
}

.about-image-wrapper .rounded-image {
    border-radius: 20px;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: 0;
    background: #dd1036;
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(238, 52, 106, 0.3);
    text-align: center;
    min-width: 180px;
}

.experience-badge .years {
    display: block;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.4;
    display: block;
}

@media (max-width: 991px) {
    .modern-about-section {
        padding: 60px 0;
    }

    .about-image-wrapper {
        margin-top: 60px;
        padding-left: 0;
    }

    .experience-badge {
        left: 20px;
        bottom: -20px;
        padding: 20px;
        min-width: 150px;
    }

    .experience-badge .years {
        font-size: 32px;
    }
}

.blog-post .post-meta {
    border-top: 1px solid #e0e0e0;
    margin-top: 30px;
    padding-top: 10px;
}

.blog-post .post-meta p {
    font-size: 11px;
    font-family: "Poppins", sans-serif;
    line-height: 24px;
    font-weight: 500;
    margin: 0;
}

/* =========================================
                Contact
============================================ */


/* Contact Left */

#contact-left p {
    margin: 25px 0 20px 0;
}

.contact-heading span {
    color: #dd1036;
}

/* Office/Address Cards */
.office {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border-bottom: 3px solid transparent;
    text-align: left;
}

.office:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-bottom-color: #dd1036;
}

.office h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #212226;
    position: relative;
    padding-bottom: 15px;
}

.office h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    transform: none;
    width: 50px;
    height: 2px;
    background: #dd1036;
}

ul.office-details {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

ul.office-details li {
    font-family: "Open Sans", sans-serif;
    margin-top: 15px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    text-align: left;
}

ul.office-details li span {
    text-align: left;
    max-width: 100%;
}

ul.office-details li span a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul.office-details li span a:hover {
    color: #dd1036;
}

ul.office-details li i {
    font-size: 18px;
    color: #dd1036;
    background: rgba(238, 52, 106, 0.1);
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 15px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    text-align: center;
}

.office:hover ul.office-details li i {
    background: #dd1036;
    color: #fff;
}

/* Contact Form Section */
#contact-form-section {
    background: #f4f4f4;
}

#contact-left ul.social-list li a {
    color: #212226;
    border: 1px solid #212226;
    text-align: center;
}

#contact-left ul.social-list li a:hover {
    color: #fff;
    border-color: transparent;
}


/* Contact Right */

#contact-right {
    padding: 25px 30px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

#contact-right h4 {
    font-size: 24px;
}

#contact-right p {
    margin-bottom: 25px;
}

#contact-right form .form-control {
    font-family: "Open Sans", sans-serif;
    padding: 15px 20px;
    font-size: 13px;
    line-height: 24px;
    border-radius: 4px;
    /* Optional: adds subtle curve */
}

#contact-right form textarea.form-control {
    min-height: 164px;
}

/* Contact New Styles */
#contact-left-text h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #212226;
}

#contact-left-text p {
    font-size: 14px;
    line-height: 26px;
    color: #555;
    color: #555;
    margin-bottom: 20px;
}

#contact-right select.form-control {
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    height: auto;
    /* Let padding define height */
    padding: 15px 20px;
    -webkit-appearance: none;
    /* Helps style select on some browsers */
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23212226%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    /* Custom arrow */
    background-repeat: no-repeat;
    background-position: right 20px top 50%;
    background-size: 10px auto;
}

@media (max-width: 991px) {
    #contact-left-text {
        text-align: center;
        margin-bottom: 40px;
    }

    ul.office-details {
        margin-bottom: 40px;
    }
}

/* =========================================
                Header & Navigation
============================================ */
.navbar {
    padding: 20px 0;
    transition: all 0.5s ease-in-out;
    background-color: transparent;
    /* Initially transparent for hero overlay */
}

/* Sticky Header State */
.navbar.scrolled {
    background-color: #fff;
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 60px;
    /* Adjust based on logo aspect ratio */
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 50px;
    /* Slightly smaller on scroll */
}

.nav-item {
    margin: 0 5px;
}

.nav-link {
    color: #fff !important;
    /* White text on hero image */
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 15px !important;
    position: relative;
    transition: all 0.3s ease;
}

/* Scrolled State Links */
.navbar.scrolled .nav-link {
    color: #212226 !important;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: #dd1036 !important;
}

/* Hover Effect (Underline) */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #dd1036;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* Header Button */
.header-btn .btn-general {
    padding: 10px 25px;
    font-size: 12px;
    border-radius: 4px;
    margin: 0;
}

/* Mobile Menu Toggler */
.navbar-toggler {
    border: none;
    outline: none !important;
    padding: 0;
}

.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='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar.scrolled .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(33, 34, 38, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Mobile Responsive Adjustments */
@media (max-width: 991px) {
    .navbar {
        background-color: #fff;
        /* Always white on mobile for readability */
        padding: 10px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .navbar-brand img {
        height: 45px;
    }

    .nav-link {
        color: #212226 !important;
        padding: 10px 0 !important;
        text-align: center;
    }

    /* Reduce underline width on mobile */
    .nav-link:hover::after,
    .nav-link.active::after {
        width: 50% !important;
    }

    .navbar-toggler-icon {
        /* Always dark toggler on mobile since bg is white */
        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(33, 34, 38, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }

    .header-btn {
        margin: 15px 0;
        text-align: center;
        width: 100%;
        margin-left: 0 !important;
        /* Override bootstrap ms-3 */
        display: block;
    }

    .navbar-collapse {
        background: #fff;
        padding: 10px;
        border-radius: 4px;
        max-height: 80vh;
        /* Allow scrolling if menu is long */
        overflow-y: auto;
        text-align: center;
    }

    .navbar-nav {
        /* Prevent left-shift interactions by ensuring container is consistent */
        width: 100%;
        align-items: stretch !important;
        /* Override align-items-center */
    }

    .nav-item {
        text-align: center;
        width: 100%;
    }

    /* Rework: Mobile styling with manual toggle support */
    .navbar-nav .dropdown-menu {
        position: static !important;
        float: none !important;
        display: none;
        /* Hidden by default, toggled via JS */
        width: 100% !important;
        /* Full width */
        background-color: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding-top: 5px;
        margin-top: 0;
        padding-left: 0;
        /* Removing indentation that might look like left-align */
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        text-align: center;
        /* Center dropdown items */
    }

    /* Helper class for manual toggle */
    .navbar-nav .dropdown-menu.show {
        display: block !important;
    }

    /* Style the parent link to look more like a header */
    .nav-item.dropdown .nav-link.dropdown-toggle {
        font-weight: 600;
        /* color: #dd1036 !important; REMOVED to match other items */
        color: #212226 !important;
        /* Use standard color */
    }

    .navbar-nav .dropdown-item {
        padding: 8px 0;
        color: #212226;
        font-size: 13px;
        /* Slightly smaller for sub-items */
        border-bottom: 1px solid #f0f0f0;
        /* Separator for clarity */
        text-align: center;
        /* Ensure centered */
    }

    /* About Us - What Sets Us Apart Spacing */
    #features {
        background-color: #f4f4f4;
        /* Match index page style for better contrast */
    }

    #features .col-lg-4,
    #features .col-md-4 {
        margin-bottom: 30px !important;
    }

    /* Remove extra row margin to keep consistent spacing between wrapped items */
    #features .row {
        margin-top: 0 !important;
    }

    /* Reduce vertical spacing for About Us sections */
    #our-story,
    #philosophy,
    #team,
    #features .content-box-lg {
        padding: 50px 0 !important;
    }

    /* Reduce vertical spacing for Career page sections */
    #career-description,
    #why-work-with-us,
    #current-openings {
        padding: 50px 0 !important;
    }

    /* Reduce vertical spacing for Contact page sections */
    #contact-info,
    #general-info,
    #contact-form-page {
        padding: 50px 0 !important;
    }

    /* FAQ Section - Remove top padding specifically */
    #faq {
        padding: 0 0 50px 0 !important;
    }
}

/* =========================================
                Dropdown Menu
============================================ */
.dropdown-menu {
    border: none;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    margin-top: 0;
    background-color: #fff;
}

.dropdown-item {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: #212226;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #f9f9f9;
    color: #dd1036;
}

/* Show dropdown on hover for desktop */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        animation: fadeInUp 0.3s ease-in-out;
    }
}

/* Animation for dropdown */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 10px, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* =========================================
                Footer
============================================ */
#footer {
    background: #212226;
    padding-top: 50px;
    color: #fff;
}

.footer-widgets {
    padding-bottom: 50px;
}

.footer-widget h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #dd1036;
}

.footer-logo {
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    /* Make logo white */
    max-width: 180px;
}

.footer-widget p {
    color: #acacac;
    font-size: 14px;
    line-height: 24px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #acacac;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.footer-links li a:hover {
    color: #dd1036;
    padding-left: 5px;
}

/* Contact Details */
.contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-details li {
    margin-bottom: 15px;
    color: #acacac;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
}

.contact-details li i {
    color: #dd1036;
    width: 25px;
    margin-top: 5px;
}

/* Social List */
.social-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.social-list li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-list li a:hover {
    background: #dd1036;
    transform: translateY(-3px);
}

/* Footer Copyright */
.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-copyright p {
    color: #acacac;
    margin: 0;
    font-size: 13px;
}

.copyright-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 20px;
}

.copyright-links li a {
    color: #acacac;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.copyright-links li a:hover {
    color: #dd1036;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .footer-widget {
        margin-bottom: 40px;
    }

    .footer-copyright .text-end {
        text-align: left !important;
        margin-top: 10px;
    }
}

/* =========================================
                Gallery
============================================ */
#gallery {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #fff;
}

.gallery-heading span {
    color: #dd1036;
}

.gallery-filter {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
}

.gallery-filter .filter-item {
    display: inline-block;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #212226;
    text-transform: uppercase;
    padding: 10px 20px;
    margin: 0 5px 10px;
    border: 1px solid #ddd;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.gallery-filter .filter-item:hover,
.gallery-filter .filter-item.active {
    background: #dd1036;
    color: #fff;
    border-color: #dd1036;
}

/* Gallery Grid */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    /* Transition for filtering animation */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
    opacity: 1;
}

/* Hidden state for filtering */
.gallery-item.hide {
    display: none;
}

.gallery-item.show {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-inner img {
    width: 100%;
    height: 250px;
    /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Hover Effect: Zoom Image */
.gallery-item:hover .gallery-inner img {
    transform: scale(1.1);
}

/* Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(33, 34, 38, 0.8);
    /* Dark overlay */
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.overlay-content p {
    color: #dd1036;
    font-size: 14px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
    /* Slight delay */
    margin: 0;
}

.gallery-item:hover .overlay-content h4,
.gallery-item:hover .overlay-content p {
    transform: translateY(0);
}

.gallery-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #dd1036;
    color: #fff;
    margin-top: 15px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
    text-align: center;
    font-size: 16px;
}

.gallery-item:hover .gallery-icon {
    transform: translateY(0);
}

.gallery-icon:hover {
    background: #fff;
    color: #dd1036;
}

/* =========================================
                Sticky WhatsApp Icon
============================================ */
.whatsapp-sticky {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    /* line-height removed for better flex centering */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    /* Prevent underline */
}

.whatsapp-sticky:hover {
    background-color: #dd1036;
    /* Pink hover color */
    color: #fff;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-sticky i {
    margin: 0;
}

#navbarDropdown::after {
    border: none;
    content: '';
}

/* Modern Contact Form */
.contact-modern-box {
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-modern-box h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #212226;
}

.modern-input {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 15px 20px;
    height: auto;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.modern-input:focus {
    background: #fff;
    border-color: #dd1036;
    box-shadow: none;
}

.modern-input::placeholder {
    color: #999;
}



/* =========================================
   Home V2 (Rewrite)
============================================ */

/* Main Container */
#homecarousel-v2 {
    position: relative;
    width: 100%;
    /* overflow: hidden; Not strictly needed unless effects spill out */
}

/* Images */
#homecarousel-v2 .carousel-item img {
    height: 85vh;
    object-fit: cover;
    filter: brightness(0.5);
}

/* Caption */
#homecarousel-v2 .carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    /* Centering caption vertically */
    z-index: 2;
    /* Below icons */
}

#homecarousel-v2 .carousel-caption h5 {
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    animation: fadeInUp 1s both;
}

#homecarousel-v2 .carousel-caption p {
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto;
    opacity: 0.95;
    animation: fadeInUp 1.5s both;
}

/* 
   New Arrows - STRICT Positioning 
*/
#homecarousel-v2 .carousel-control-prev,
#homecarousel-v2 .carousel-control-next {
    width: 5%;
    /* Narrow width to avoid blocking clicks */
    opacity: 0.8;
    z-index: 10;
    /* Reset any inherited crap */
    background: none !important;
    border: none !important;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    /* Flex-center vertically */
    justify-content: center;
    /* Flex-center horizontally */
}

/* The actual icon wrapper */
#homecarousel-v2 .custom-prev-icon,
#homecarousel-v2 .custom-next-icon {
    display: inline-block;
}

#homecarousel-v2 .custom-prev-icon i,
#homecarousel-v2 .custom-next-icon i {
    font-size: 60px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

#homecarousel-v2 .carousel-control-prev:hover i,
#homecarousel-v2 .carousel-control-next:hover i {
    color: #fff;
    transform: scale(1.1);
}

/* Indicators - Centered Bottom */
#homecarousel-v2 .carousel-indicators {
    bottom: 30px;
}

#homecarousel-v2 .carousel-indicators button {
    width: 35px;
    height: 4px;
    border-radius: 2px;
    background-color: #dd1036;
    /* Theme Pink */
    border: none;
    opacity: 0.6;
    margin: 0 5px;
    transition: opacity 0.3s ease;
}

#homecarousel-v2 .carousel-indicators button.active {
    background-color: #fff;
    opacity: 1;
}

/* =========================================
   Mobile Responsiveness Fixes
   ========================================= */

@media (max-width: 991px) {

    /* 1. Banner / Home Section */
    #homecarousel-v2 .carousel-item img {
        height: 60vh;
        /* Reduce height from 85vh to 60vh on mobile */
    }

    #homecarousel-v2 .carousel-caption h5 {
        font-size: 28px;
        /* Smaller font for title */
    }

    #homecarousel-v2 .carousel-caption p {
        font-size: 14px;
        /* Smaller font for text */
    }

    /* Adjust control arrows size and position */
    #homecarousel-v2 .carousel-control-prev,
    #homecarousel-v2 .carousel-control-next {
        width: 40px;
        /* Reset from 5% */
    }

    #homecarousel-v2 .custom-prev-icon i,
    #homecarousel-v2 .custom-next-icon i {
        font-size: 40px;
    }

    /* 2. Services Section */
    /* Change flex layout to block/stacked for mobile */
    .service .row {
        display: block;
        margin: 0;
    }

    .service-item {
        margin: 0 0 30px 0;
        /* Add bottom margin for spacing between stacked items */
        width: 100%;
        display: block;
    }

    #services .content-box-lg {
        padding: 60px 0;
        /* Reduce padding */
    }

    /* 3. Pricing Section */
    .pricing-table {
        margin-bottom: 30px;
        /* Spacing between stacked pricing tables */
    }

    /* 4. Footer Section */
    .footer-widget {
        margin-bottom: 40px;
        text-align: center;
        /* Center align widget content */
    }

    #footer .social-list {
        justify-content: center;
        /* Center align social icons */
    }

    /* Center align the pink underline for footer headings */
    .footer-widget h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Center align footer contact details (icon + text) */
    .contact-details li {
        justify-content: center;
    }

    #footer .footer-copyright {
        text-align: center;
    }

    #footer .footer-copyright .text-end {
        text-align: center !important;
        /* Override Bootstrap text-end class */
    }

    #footer .copyright-links {
        justify-content: center;
        /* Center align copyright links */
        display: flex;
        gap: 15px;
        padding: 0;
        margin-top: 10px;
    }

    /* Ensure padding adjustments for content boxes */
    .content-box-md {
        padding: 60px 0;
    }

    .content-box-sm {
        padding: 40px 0;
    }

    /* Blog Section */
    .blog-post {
        margin-bottom: 30px;
    }

    /* Missing Vertical Spacing for Stacked Items (Presence, Stats, Contact) */
    .location-item,
    .stats-item,
    .office {
        margin-bottom: 40px;
    }

    /* Target columns directly in #location and #contact to ensure spacing works even with flex/collapse issues */
    #location .row>div,
    #contact .row>div {
        margin-bottom: 30px;
    }

    /* Reduce internal padding for Contact boxes */
    .office {
        padding-bottom: 10px;
        /* Reduced from default/inherited */
    }

    /* Adjust list margin as requested */
    .office-details {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    /* "Who We Are" Section - Center Align */
    .modern-about-section .about-text-content,
    .modern-about-section {
        text-align: center;
    }

    .modern-about-section .sub-heading {
        display: block;
        /* Ensure it takes full width to center effectively */
    }

    /* Testimonials Section Padding */
    #testimonials {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    /* Gallery Section Padding */
    #gallery {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

@media (max-width: 576px) {

    /* Extra small devices adjustments */
    #homecarousel-v2 .carousel-item img {
        height: 50vh;
        /* Further reduce for phones */
    }

    .main-heading {
        font-size: 32px;
        /* Smaller main headings */
    }

    /* Center Align Section Titles */
    .location-heading,
    .stats-heading,
    .testimonial-heading {
        text-align: center;
    }

    .main-heading {
        font-size: 32px;
        /* Smaller main headings */
    }
}

/* =========================================
                About Us Page Custom
============================================ */

/* Philosophy Section */
.philosophy-quote {
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
}

/* Value Cards */
.value-card {
    background: #fff;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Soft, premium shadow */
    border-radius: 12px;
    /* Smooth rounded corners */
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.value-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.15);
    /* Pink tinted shadow on hover */
    border-color: transparent;
}

.value-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: #fdf2f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    transition: all 0.4s ease;
}

.value-card:hover .icon-wrapper {
    background: #dd1036;
    transform: rotateY(180deg);
}

.value-card i {
    font-size: 32px;
    color: #dd1036;
    transition: all 0.4s ease;
}

.value-card:hover i {
    color: #fff;
    transform: rotateY(-180deg);
    /* Counter rotation to keep icon facing forward if 3D, or just swap color */
}

.value-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #212226;
}

.value-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

/* Decorative bottom bar on hover */
.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #dd1036;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.value-card:hover::after {
    transform: scaleX(1);
}

/* Feature/Diff Section */
.feature-item {
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.feature-item h4 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

/* Team Section */
.team-member {
    margin-bottom: 30px;
    text-align: center;
}

.team-member img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #f4f4f4;
}

.team-member h4 {
    margin-bottom: 5px;
    font-weight: 600;
}

.team-member h5 {
    color: #dd1036;
    /* Pink accent matching site */
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* CTA */
#cta-section {
    background: #dd1036;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

#cta-section h2 {
    color: #fff;
    margin-bottom: 30px;
}

#cta-section .btn-general {
    background: #fff;
    color: #dd1036;
    border: 2px solid #fff;
}

#cta-section .btn-general:hover {
    background: transparent;
    color: #fff;
}

/* Hero Section (About Us) */
#about-hero {
    height: 400px;
    position: relative;
}

#about-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Overlay */
}

.hero-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 80%;
}

.hero-caption h1 {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-caption p {
    font-size: 18px;
    font-weight: 300;
}

/* =========================================
                Gallery Page Custom
============================================ */

/* Page Hero (Shared by pages other than About Us if reused, otherwise specific to this class/ID) */
#page-hero {
    height: 400px;
    position: relative;
}

#page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Overlay */
}

/* Brief Description Section */
#gallery-desc {
    padding: 80px 0;
    background: #fff;
}

#gallery-desc h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

#gallery-desc p.lead {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Update active state color for nav */
.navbar-light .navbar-nav .nav-link.active {
    color: #dd1036;
}

/* =========================================
                Career Page Custom
============================================ */

/* Career Hero */
#career-hero {
    height: 400px;
    position: relative;
}

#career-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* Job Card */
.job-card {
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.job-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: #dd1036;
}

.job-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Why Work With Us */
#why-work-with-us {
    background-color: #f9f9f9;
    padding: 100px 0;
    position: relative;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-us-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.why-us-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #dd1036;
    /* Pink Top Border */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-us-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.15);
    /* Soft pink shadow */
    border-color: rgba(233, 30, 99, 0.1);
}

.why-us-card:hover::before {
    transform: scaleX(1);
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(233, 30, 99, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.why-us-card:hover .card-icon-wrapper {
    background: #dd1036;
    transform: rotateY(180deg);
}

.card-icon-wrapper i {
    font-size: 32px;
    color: #dd1036;
    transition: all 0.4s ease;
}

.why-us-card:hover .card-icon-wrapper i {
    color: #fff;
    transform: rotateY(-180deg);
}

.why-us-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.why-us-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Current Openings */
#current-openings {
    background-color: #f8f9fa !important;
    /* Light gray background for contrast */
}

.location-column {
    background: #fff;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
    border-top: 4px solid #dd1036;
    /* Pink Top Accent */
    height: 100%;
    transition: all 0.3s ease;
}

.location-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(233, 30, 99, 0.08);
}

.location-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    position: relative;
}

/* Remove the old small underscore, use full border-bottom */
.location-title::after {
    display: none;
}

.job-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-item {
    display: flex;
    align-items: center;
    /* Center vertically */
    padding: 12px 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
    margin-bottom: 6px;
    color: #666;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

.job-item:hover {
    background: #fff5f8;
    /* Light pink hover */
    color: #dd1036;
    padding-left: 15px;
    /* Slide effect */
}

.job-item i {
    color: #dd1036;
    font-size: 8px;
    /* Small dot */
    margin-right: 15px;
    opacity: 0.6;
    transition: all 0.2s;
}

.job-item:hover i {
    opacity: 1;
    transform: scale(1.2);
}

/* How to Apply */
#how-to-apply {
    padding: 0;
    background: #fff;
    overflow: hidden;
}

.split-image-container {
    height: 100%;
    min-height: 500px;
    background: url(../img/contact-side.png) no-repeat center center/cover;
    position: relative;
}

.split-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    /* Slight overlay for image depth */
}

.apply-content-wrapper {
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.apply-card {
    margin-bottom: 40px;
}

.apply-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.apply-card h3 i {
    width: 50px;
    height: 50px;
    background: #fff0f5;
    color: #dd1036;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
}

.apply-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-left: 65px;
    /* Align with text start */
}

.email-link {
    color: #dd1036;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

.email-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: #dd1036;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}

.email-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* =========================================
                Blog & Blog Detail Custom
============================================ */

/* Blog Hero (Shared) */
#blog-hero {
    height: 400px;
    position: relative;
}

#blog-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* Blog Card */
.blog-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #dd1036;
    color: #fff;
    padding: 5px 15px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 20px;
}

.blog-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.blog-meta i {
    color: #dd1036;
    margin-right: 5px;
}

.blog-meta span {
    margin-right: 15px;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: #212226;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: #dd1036;
}

.blog-excerpt {
    color: #666;
    margin-bottom: 20px;
    flex: 1;
}

.read-more-btn {
    color: #dd1036;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}

.read-more-btn i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.read-more-btn:hover {
    color: #212226;
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

/* Sidebar Widgets (Shared) */
.sidebar-widget {
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.widget-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #dd1036;
}

.search-form .form-control {
    border: 1px solid #eee;
    padding: 12px 15px;
    border-radius: 0;
    background: #f9f9f9;
}

.search-form .form-control:focus {
    box-shadow: none;
    border-color: #dd1036;
}

.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.categories-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.categories-list a {
    color: #666;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    transition: color 0.3s;
}

.categories-list a:hover {
    color: #dd1036;
}

.recent-post-item {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
}

.recent-post-img {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    margin-right: 15px;
    border-radius: 4px;
    overflow: hidden;
}

.recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-info h5 {
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.4;
}

.recent-post-info h5 a {
    color: #212226;
    text-decoration: none;
}

.recent-post-info h5 a:hover {
    color: #dd1036;
}

.recent-post-date {
    font-size: 12px;
    color: #999;
}

.tags-list a {
    display: inline-block;
    background: #f4f4f4;
    color: #666;
    padding: 8px 15px;
    font-size: 12px;
    margin-right: 5px;
    margin-bottom: 10px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s;
}

.tags-list a:hover {
    background: #dd1036;
    color: #fff;
}

/* Blog Detail Specific */
.blog-detail-content {
    background: #fff;
    padding: 40px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.blog-featured-img {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 4px;
    overflow: hidden;
}

.blog-featured-img img {
    width: 100%;
    height: auto;
}

.blog-detail-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #212226;
}

.blog-detail-meta {
    font-size: 14px;
    color: #888;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.blog-detail-meta span {
    margin-right: 20px;
}

.blog-detail-meta i {
    color: #dd1036;
    margin-right: 5px;
}

.blog-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
}

.blog-text h2 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #212226;
}

.blog-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #212226;
}

.blog-text ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.blog-text ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
    list-style-type: square;
}

.blockquote {
    background: #f9f9f9;
    border-left: 5px solid #dd1036;
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    font-size: 18px;
    color: #333;
}

.author-bio {
    background: #f9f9f9;
    padding: 30px;
    margin-top: 50px;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

.author-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0;
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.author-info p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #666;
}

.social-share {
    margin-top: 30px;
    display: flex;
    align-items: center;
}

.social-share span {
    font-weight: 600;
    margin-right: 15px;
    color: #212226;
}

.social-share a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #eee;
    color: #555;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-share a:hover {
    background: #dd1036;
    color: #fff;
}

.related-posts {
    margin-top: 60px;
}

.related-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.related-card:hover {
    transform: translateY(-5px);
}

.related-img {
    height: 180px;
    overflow: hidden;
}

.related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-content {
    padding: 20px;
}

.related-content h4 {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.related-content h4 a {
    color: #212226;
    text-decoration: none;
}

.related-content h4 a:hover {
    color: #dd1036;
}

/* =========================================
                Contact Page Custom
============================================ */

/* Contact Hero */
#contact-hero {
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Office Card Styles */
.office-card {
    background: #fff;
    padding: 40px 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.office-card:hover {
    transform: translateY(-5px);
}

.office-card h4 {
    margin: 20px 0;
    font-weight: 600;
    color: #212226;
}

.office-card i.fa-map-marker {
    font-size: 40px;
    color: #dd1036;
    margin-bottom: 15px;
}

.office-card p {
    color: #666;
    margin-bottom: 10px;
}

/* General Card Styles */
.general-card {
    background: #fff;
    padding: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.general-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.general-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #212226;
}

.general-card p {
    font-size: 15px;
    color: #666;
}

/* FAQ Accordion Overrides */
.accordion-item {
    border: none;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.accordion-button:not(.collapsed) {
    color: #dd1036;
    background-color: #fdf2f5;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.accordion-button:focus {
    border-color: #dd1036;
    box-shadow: 0 0 0 0.25rem rgba(238, 52, 106, 0.25);
}

/* Additional Form Styling */
/* Note: Checking for conflicts with global form controls. Assuming these are desired for the contact page specifically or as a global upgrade if safe. */
.form-control {
    height: 50px;
    border-radius: 4px;
    border: 1px solid #eee;
    margin-bottom: 20px;
    padding: 10px 20px;
}

.form-control:focus {
    border-color: #dd1036;
    box-shadow: none;
}

textarea.form-control {
    height: 150px;
}

/* =========================================
    Architecture & Services Page Custom
============================================ */

/* Redesign: Architectural Layering for Service Description */
.layer-section {
    padding: 100px 0;
    background-color: #fdfdfd;
    overflow: hidden;
}

.layer-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 500px;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
    border-radius: 2px;
    overflow: hidden;
}

.layer-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures image fills the area beautifully */
    transition: transform 0.6s ease;
}

.layer-section:hover .layer-image-wrapper img {
    transform: scale(1.03);
}

.layer-content-col {
    display: flex;
    align-items: center;
}

.layer-content-card {
    background: #fff;
    padding: 60px 50px;
    margin-left: -100px;
    /* The premium overlap */
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    z-index: 10;
    position: relative;
}

.layer-content-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 4px;
    background: #dd1036;
}

.layer-content-card h5 {
    color: #dd1036;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.layer-content-card h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #222;
}

.layer-content-card .lead {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.layer-content-card p {
    color: #777;
    font-size: 15px;
    line-height: 1.8;
}

@media (max-width: 991px) {
    .layer-image-wrapper {
        min-height: 350px;
        margin-bottom: -40px;
        /* Pull content up slightly */
        width: 95%;
        /* Small offset for style */
    }

    .layer-content-col {
        display: block;
    }

    .layer-content-card {
        margin-left: 0;
        margin-right: 0;
        padding: 40px 30px;
        width: 95%;
        margin-left: auto;
        /* Align right to create stepped look */
    }
}

/* =========================================
     Shared Service Pages Styles
   (Construction, Interior, Painting, Plumbing)
============================================ */

/* Custom Button for 'Start a Project' */
.btn-start-project {
    color: #212226;
    border: 1px solid #212226;
    background: transparent;
    border-radius: 0;
    letter-spacing: 1px;
    font-size: 12px;
    padding: 12px 25px;
    transition: all 0.3s ease;
}

.btn-start-project:hover {
    color: #fff;
    background-color: #dd1036;
    border-color: #dd1036;
    text-decoration: none;
}

/* Location Item Hover Effects (Enhanced for Service Pages) */
.location-item:hover>i {
    color: #fff !important;
}

.location-item:hover {
    /* Ensure background changes on hover if not already set globally */
    /* background: #dd1036; - This is often handled by specific page logic or verify global */
}

.location-item ul {
    list-style-type: none;
    padding-left: 10px;
    font-size: 14px;
    color: #555;
    transition: all 400ms linear;
    text-align: left;
}

.location-item ul li {
    margin-bottom: 15px;
    transition: all 400ms linear;
}

.location-item ul li i {
    color: #dd1036;
    margin-right: 10px;
    font-size: 16px;
    transition: all 400ms linear;
}

.location-item:hover ul,
.location-item:hover ul li,
.location-item:hover ul li i {
    color: #fff;
    transform: none;
}

/* =========================================
    Plumbing Page Specific
============================================ */

/* Process Card */
.process-card {
    background: #fff;
    padding: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin-bottom: 30px;
    height: 100%;
    text-align: center;
    border-bottom: 4px solid #dd1036;
    transition: all 0.3s ease;
}

.process-card:hover {
    background: #dd1036;
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.2);
    border-bottom: 4px solid #fff;
}

.process-card:hover h4,
.process-card:hover p,
.process-card:hover .text-muted {
    color: #fff !important;
}

.process-card:hover i {
    color: #fff !important;
}

.process-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 15px;
}

/* Benefit Item */
.benefit-item {
    background: #fff;
    padding: 25px;
    border: 1px solid #eee;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    border-radius: 4px;
}

.benefit-item:hover {
    border-color: #dd1036;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.1);
}

.benefit-item i {
    color: #dd1036;
    margin-bottom: 15px;
}

.benefit-item h5 {
    font-weight: 600;
    margin: 0;
}

@media (max-width: 991px) {
    header .navbar-brand img {
        max-width: 150px;
        width: auto;
        height: auto;
        max-height: 80px !important;
    }

    /* Hide Our Story Image on Mobile */
    #our-story .story-img-wrapper {
        display: none;
    }
}

/* =========================================
    Tablet Specific Fixes (768px - 991px)
============================================ */
@media (min-width: 768px) and (max-width: 991px) {

    /* General Content Spacing */
    .content-box-lg,
    .content-box-md {
        padding: 80px 0;
    }

    /* Services Section - Flex Fix & Equal Spacing */
    .service {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
    }

    .service-item {
        flex: 1 0 45%;
        /* Allow items to grow/shrink, starting at 45% */
        max-width: 100%;
        /* Allow expanding to fill space */
        margin: 10px;
        /* Uniform margin */
        margin-bottom: 30px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
        /* Restored shadow */
        padding: 40px 30px;
        /* Big padding */
        border: 1px solid #f0f0f0;
        min-height: 320px;
        /* Taller box */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    /* Why Choose Us - Fixed Height */
    #stats .stats-item {
        min-height: 220px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }

    /* Testimonials - Center Align & Fix Padding */
    .testimonial {
        text-align: center;
        padding: 30px 15px;
    }

    /* Fix: Inner column was restricted to 50% (col-md-6), making it look empty. */
    .testimonial>div {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .testimonial .author .row {
        justify-content: center;
    }

    /* Fix: Determine that stars are inside a 4/8 column split. 
       Force columns to full width so center alignment works relative to the whole box. */
    .testimonial .col-lg-4,
    .testimonial .col-lg-8,
    .testimonial .col-md-4,
    .testimonial .col-md-8 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .testimonial .author-name-des {
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }

    .testimonial .stars {
        text-align: center !important;
        white-space: nowrap;
    }

    /* Contact Section: The columns were changed to col-md-6 for the first two.
       This will naturally put 2 in first row, 1 in second.
       To center the 3rd item which wraps to the next line: */
    #contact .row.text-center.mt-5 {
        justify-content: center;
    }

    #contact .col-md-6 {
        margin-bottom: 30px;
    }

    /* Reduce large gaps in features/rows */
    .row.mt-5 {
        margin-top: 30px !important;
    }

    /* Adjust Heading Sizes if needed */
    h2 {
        font-size: 28px;
    }

    /* Pricing Table Spacing */
    .pricing-col {
        margin-bottom: 30px;
    }
}