/********** Template CSS **********/
:root {
    --primary: #c1edcc;
    --secondary: #797270;
    --light: #f8faf9;
    --dark: #453f3c;
    --accent: #b0c0bc;
    --muted: #a7a7a9;
}

/* Override Bootstrap's old primary color */
.bg-primary {
    background-color: var(--primary) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-outline-primary {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.border-primary {
    border-color: var(--primary) !important;
}

.link-primary {
    color: var(--primary) !important;
}

.nav-pills .nav-link.active {
    background-color: var(--primary) !important;
}

.form-check-input:checked {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.progress-bar {
    background-color: var(--primary) !important;
}

.list-group-item.active {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.page-link {
    color: var(--primary) !important;
}

.page-item.active .page-link {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.dropdown-item.active {
    background-color: var(--primary) !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 500;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 3.5rem;
    height: 3.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: #453f3c;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(69,63,60,0.18);
    opacity: 0.92;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 8px 32px rgba(69,63,60,0.25);
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
    background-size: 80% 80%;
    background-repeat: no-repeat;
    background-position: center;
    filter: none;
}

.carousel-caption {
    border-radius: 0;
}

/* Increased hero section height */
#header-carousel .carousel-item {
    height: 80vh;
    min-height: 600px;
}

#header-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 500px;
        height: 70vh;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 576px) {
    #header-carousel .carousel-item {
        min-height: 400px;
        height: 60vh;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Features ***/
.feature-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature-item {
    border-color: rgba(0, 0, 0, .03) !important;
}


/*** About ***/
.about {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/about.jpg) left center no-repeat;
    background-size: cover;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 36px;
    height: 46px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 3px;
    border-left: 30px solid #FFFFFF;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Service ***/
.service-item .service-text {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
    transition: .5s;
    z-index: 2;
}

.service-item:hover .service-text {
    top: -1.5rem;
}

.service-item .service-text h5 {
    transition: .5s;
}

.service-item:hover .service-text h5 {
    color: var(--primary);
}

.service-item .service-btn {
    position: absolute;
    width: 80%;
    height: 3rem;
    left: 10%;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: .5s;
    z-index: 1;
}

.service-item:hover .service-btn {
    bottom: -1.5rem;
}








/*** Footer ***/
.footer {
    color: #B0B9AE;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: #B0B9AE;
}

.copyright {
    background: #111111;
}

.copyright a:hover {
    color: var(--primary) !important;
}

/* Text-Based Logo Styling */
.text-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 8px 0;
    min-height: 50px;
    max-width: 100%;
}

.text-logo:hover {
    transform: scale(1.02);
    text-decoration: none;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(1.2rem, 4vw, 2.2rem);
    color: var(--dark);
    line-height: 1;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    margin-bottom: -2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.logo-subtitle {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: clamp(0.6rem, 2.5vw, 1rem);
    color: var(--secondary);
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Topbar logo styling */
.container-fluid.bg-primary .text-logo .logo-text {
    color: var(--dark);
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.container-fluid.bg-primary .text-logo .logo-subtitle {
    color: var(--secondary);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.2);
}

.container-fluid.bg-primary .text-logo:hover .logo-text {
    text-shadow: 3px 3px 6px rgba(255, 255, 255, 0.4);
}

.container-fluid.bg-primary .text-logo:hover .logo-subtitle {
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}

/* Enhanced Responsive breakpoints */
@media (min-width: 1400px) {
    .text-logo {
        min-height: 60px;
    }
    .logo-text {
        font-size: 2.2rem;
    }
    .logo-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 1399px) and (min-width: 1200px) {
    .text-logo {
        min-height: 55px;
    }
    .logo-text {
        font-size: 1.8rem;
    }
    .logo-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .text-logo {
        min-height: 50px;
    }
    .logo-text {
        font-size: 1.6rem;
    }
    .logo-subtitle {
        font-size: 0.8rem;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .text-logo {
        min-height: 45px;
    }
    .logo-text {
        font-size: 1.4rem;
    }
    .logo-subtitle {
        font-size: 0.75rem;
    }
}

@media (max-width: 767px) and (min-width: 576px) {
    .text-logo {
        min-height: 40px;
        padding: 6px 0;
    }
    .logo-text {
        font-size: 1.2rem;
    }
    .logo-subtitle {
        font-size: 0.7rem;
    }
}

@media (max-width: 575px) and (min-width: 480px) {
    .text-logo {
        min-height: 35px;
        padding: 5px 0;
    }
    .logo-text {
        font-size: 1.1rem;
    }
    .logo-subtitle {
        font-size: 0.65rem;
    }
}

@media (max-width: 479px) and (min-width: 375px) {
    .text-logo {
        min-height: 32px;
        padding: 4px 0;
    }
    .logo-text {
        font-size: 1rem;
    }
    .logo-subtitle {
        font-size: 0.6rem;
    }
}

@media (max-width: 374px) {
    .text-logo {
        min-height: 30px;
        padding: 3px 0;
    }
    .logo-text {
        font-size: 0.9rem;
    }
    .logo-subtitle {
        font-size: 0.55rem;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .text-logo {
        min-height: 25px;
        padding: 2px 0;
    }
    .logo-text {
        font-size: 0.9rem;
    }
    .logo-subtitle {
        font-size: 0.5rem;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-text {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    .logo-subtitle {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Print styles */
@media print {
    .text-logo {
        transform: none !important;
    }
    .text-logo:hover {
        transform: none !important;
    }
}

/* Navbar logo specific adjustments */
.navbar .text-logo {
    margin-right: 1rem;
}

.navbar-brand.text-logo {
    margin-right: 0;
}

/* Ensure logo doesn't interfere with navbar toggler on mobile */
@media (max-width: 991.98px) {
    .navbar .text-logo {
        margin-right: 0.5rem;
        max-width: 200px;
    }
    
    .navbar-brand.text-logo {
        max-width: 180px;
    }
}

@media (max-width: 575px) {
    .navbar .text-logo {
        max-width: 150px;
    }
    
    .navbar-brand.text-logo {
        max-width: 130px;
    }
}

/* Enhanced Service Cards */
.service-detail-card {
    background: linear-gradient(135deg, var(--light) 0%, #ffffff 100%);
    border: 2px solid var(--accent);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(69, 63, 60, 0.1);
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(69, 63, 60, 0.15);
    border-color: var(--primary);
}

.service-detail-card h3 {
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 1rem;
    border-bottom: 3px solid var(--primary);
    padding-bottom: 0.5rem;
}

.service-detail-card .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--dark);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Enhanced Feature Items */
.feature-item {
    background: linear-gradient(135deg, var(--light) 0%, #ffffff 100%);
    border: 2px solid var(--accent) !important;
    border-radius: 15px !important;
    transition: all 0.3s ease;
    margin-bottom: 0.4rem;
}

.feature-item:hover {
    border-color: var(--primary) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(69, 63, 60, 0.12);
}

.feature-item .btn-square {
    background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
    color: var(--dark) !important;
}

/* Enhanced Service Items */
.service-item {
    background: linear-gradient(135deg, var(--light) 0%, #ffffff 100%);
    border: 2px solid var(--accent);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(69, 63, 60, 0.15);
}

/* Enhanced FAQ Styling */
.accordion-item {
    border: 2px solid var(--accent);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: linear-gradient(135deg, var(--light) 0%, #ffffff 100%);
    color: var(--dark);
    font-weight: 600;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--dark);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(193, 237, 204, 0.25);
}

/* Enhanced Contact Section */
.contact-info-card {
    background: linear-gradient(135deg, var(--light) 0%, #ffffff 100%);
    border: 2px solid var(--accent);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(69, 63, 60, 0.12);
}

.contact-info-card .btn-square {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--dark);
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, var(--dark) 0%, #2a2523 100%) !important;
}

/* Enhanced Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    color: var(--dark);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(69, 63, 60, 0.2);
}

/* Enhanced Hero Section */
.carousel-caption {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.65) 0%, rgba(69, 63, 60, 0.7) 100%);
    border-radius: 0 !important;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    border: 1.5px solid rgba(255,255,255,0.12);
}

.carousel-caption p,
.carousel-caption h1 {
    text-shadow: 0 2px 12px rgba(0,0,0,0.45), 0 1px 0 rgba(69,63,60,0.15);
}

.carousel-caption h1 {
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    font-size: 3.5rem;
}

.carousel-caption p {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.carousel-caption .btn {
    font-size: 1.25rem;
    padding: 1rem 2.5rem;
    box-shadow: 0 4px 24px rgba(193,237,204,0.25);
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(.4,2,.6,1);
}

.carousel-caption .btn-primary {
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--dark);
    border: none;
    font-weight: 700;
    text-shadow: 0 1px 8px rgba(0,0,0,0.12);
}

.carousel-caption .btn-primary:hover {
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
    color: var(--dark);
    box-shadow: 0 8px 32px rgba(193,237,204,0.35);
    transform: translateY(-2px) scale(1.04);
}

@media (max-width: 768px) {
    .carousel-caption {
        padding: 1.2rem 0.7rem;
        border-radius: 12px;
    }
    .carousel-caption h1 {
        font-size: 2.1rem;
    }
    .carousel-caption p {
        font-size: 1.1rem;
    }
    .carousel-caption .btn {
        font-size: 1rem;
        padding: 0.7rem 1.5rem;
    }
}

/* Enhanced Section Headers */
.section-title {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--dark);
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Section Headings - Dark Color */
.section-title {
    color: var(--dark) !important;
}

h6.section-title {
    color: var(--dark) !important;
}

/* All Icons - Dark Color */
.service-icon i,
.feature-item .btn-square i,
.service-detail-card .service-icon i,
.contact-info-card .btn-square i,
.service-area-list i,
.list-unstyled i,
.fa,
.fas,
.far,
.fab {
    color: var(--dark) !important;
}

/* Service Item Icons */
.service-item .service-icon i {
    color: var(--dark) !important;
}

/* Feature Item Icons */
.feature-item .btn-square {
    background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
}

.feature-item .btn-square i {
    color: var(--dark) !important;
}

/* Service Detail Card Icons */
.service-detail-card .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--dark);
}

.service-detail-card .service-icon i {
    color: var(--dark) !important;
}

/* FAQ Icons and Text */
.accordion-button {
    color: var(--dark) !important;
}

.accordion-button:not(.collapsed) {
    color: var(--dark) !important;
}

/* Enhanced Service Area */
.service-area-list {
    background: linear-gradient(135deg, var(--light) 0%, #ffffff 100%);
    border: 2px solid var(--accent);
    border-radius: 15px;
    padding: 2rem;
}

.service-area-list ul {
    list-style: none;
    padding: 0;
}

.service-area-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--accent);
    transition: all 0.3s ease;
}

.service-area-list li:hover {
    color: var(--primary);
    padding-left: 1rem;
}

.service-area-list li:last-child {
    border-bottom: none;
}

/* Enhanced Button Styles */
.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--dark);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(69, 63, 60, 0.2);
}

/* Enhanced Call to Action */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    position: relative;
    overflow: hidden;
}

/* Enhanced Button Styles */
.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--dark);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(69, 63, 60, 0.2);
}

.btn-outline-dark {
    border: 2px solid var(--dark);
    color: var(--dark);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background: var(--dark);
    color: var(--light);
    border-color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(69, 63, 60, 0.2);
}

/* Enhanced Text Styling */
.text-decoration-none {
    text-decoration: none !important;
}

/* Enhanced Image Border */
.img-border {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(69, 63, 60, 0.15);
}

.img-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0.1;
    z-index: 1;
}

.img-border img {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
}

.img-border:hover img {
    transform: scale(1.05);
}

/* About Us Vertical Image Styling */
.about .img-border {
    max-width: 400px;
    margin: 0 auto;
}

.about .img-border img {
    aspect-ratio: 3/4;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* About section layout adjustments */
.about-section {
    align-items: center;
}

.about-content {
    padding-left: 2rem;
}

@media (max-width: 991.98px) {
    .about .img-border {
        max-width: 350px;
        margin-bottom: 2rem;
    }
    
    .about-content {
        padding-left: 0;
    }
}

@media (max-width: 576px) {
    .about .img-border {
        max-width: 300px;
    }
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--dark);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(193,237,204,0.15);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    animation-delay: 0.2s;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 0.7rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

.hero-highlight {
    color: var(--primary);
    background: linear-gradient(90deg, var(--primary) 60%, var(--accent) 100%);
    border-radius: 8px;
    padding: 0 0.4em;
    box-shadow: 0 2px 8px rgba(193,237,204,0.18);
    display: inline-block;
}

.hero-subheading {
    color: #e6f7ee;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.7rem;
    text-shadow: 0 1px 8px rgba(0,0,0,0.18);
    animation-delay: 0.4s;
}

.hero-trust-row {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 1.2rem;
    animation-delay: 0.6s;
}

.hero-trust-row.justify-content-end {
    justify-content: flex-end;
}

.hero-trust-item {
    background: rgba(255,255,255,0.13);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 1.1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 1px 6px rgba(193,237,204,0.10);
    transition: background 0.2s;
}

.hero-trust-item i {
    color: var(--primary) !important;
    font-size: 1.1em;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-badge {
        font-size: 0.95rem;
        padding: 0.3rem 0.8rem;
    }
    .hero-subheading {
        font-size: 1rem;
    }
    .hero-trust-row {
        gap: 0.6rem;
    }
    .hero-trust-item {
        font-size: 0.95rem;
        padding: 0.4rem 0.7rem;
    }
}

.carousel-control-prev {
    margin-left: 1.2rem;
}

.carousel-control-next {
    margin-right: 1.2rem;
}

@media (max-width: 768px) {
    .carousel-control-prev {
        margin-left: 0.5rem;
    }
    .carousel-control-next {
        margin-right: 0.5rem;
    }
}

.why-choose-row {
    display: flex;
    flex-wrap: wrap;
}

.why-choose-row > [class*='col-'] {
    display: flex;
}

.service-detail-card {
    flex: 1 1 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

@media (max-width: 991.98px) {
    .why-choose-row {
        display: block;
    }
    .why-choose-row > [class*='col-'] {
        display: block;
    }
    .service-detail-card {
        height: auto;
    }
}