:root {
    --secondary: #fad400;
    --primary: #b90404;
    --light: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

.bg-success {
    background-color: var(--primary) !important;
}

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

.btn-custom {
    background-color: var(--secondary) !important;
    transition: all 0.2s ease;
    color: black !important;
    font-weight: 500;
}

.btn-custom:hover {
    transform: scale(0.97);
    background-color: var(--secondary) !important;
    border-color: var(--primary) !important;
    color: var(--primary) !important;
    border-width: 2px;
}

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

.top-nav {
    transition: all 0.5s ease-in-out;
    height: auto;
    display: flex;
    align-items: center;
}
.top-nav a{
    font-size: 15px !important;
}

body.scrolled .top-nav {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
}

.navbar .container,
.navbar-container {
    max-width: 75%;
    transition: all 0.5s ease-in-out;
}
.navbar-brand img{
    height: 70px !important;
        transition: transform 0.3s ease;
}

.navbar button{
    transform: scale(1.2);
}

.nav-link {
    color: #000;
    transition: transform 0.25s ease-out;
}

.nav-link:hover,
.nav-link.active,
.bkgrnd {
    background-color: #ffff9c;
    color: var(--primary) !important;
    border-radius: 12px;
    transform: translateY(-2px);
}

.bnts:hover {
    background-color: var(--secondary) !important;
    color: black !important;
    border-color: var(--secondary) !important;
}

@media (max-width: 575px) {
    .tabs-section .row {
        display: flex;
    }

    .tabs-section .col-3,
    .tabs-section .col-9 {
        height: 450px;
        overflow-y: auto;
    }
}

body.scrolled .navbar .container,
body.scrolled .navbar-container {
    max-width: 100%;
}

body.scrolled .navbar.sticky-top {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .top-nav {
        display: none !important;
    }

    .navbar .container,
    .navbar-container {
        max-width: 100% !important;
    }
}

@media (min-width: 991px) {
    .dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: 0;
        background-color: #ffff9c;
    }

    .dropdown>a.dropdown-toggle {
        pointer-events: none;
    }
}

.carousel-img {
    height: 550px !important;
    object-fit: cover;
    background-color: #000;
    filter: brightness(0.75);
}

.carouselcaption {
    position: absolute;
    top: 10rem;
    left: 12%;
    text-align: start !important;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    padding: 1.5rem 2rem;
    border-radius: 0.5rem;
    width: 900px;
}

@media (max-width: 768px) {
    .carousel-img {
        height: 450px !important;
        object-fit: cover;
        filter: brightness(0.8);
    }

    .carouselcaption {
        font-size: 0.9rem;
        top: 15%;
        left: 8%;
        width: auto;
    }

    .h-lg-50 {
        height: auto !important;
    }
}

.breadcrumbform {
    position: relative;
    margin-top: -55px !important;
    height: auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-card,
.feature-card {
    border-top: 3px solid transparent;
    transition: all 0.3s ease;
    border-radius: 0.8rem;
    background-color: var(--primary);
}

.stat-card:hover,
.feature-card:hover {
    border-top: 6px solid var(--secondary);
    transform:scale(1.08);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.price-slider {
    width: max-content;
    animation: slideLeft 30s linear infinite;
    background-color: rgba(224, 252, 224, 0.705);
    height: 100px;
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.price-slider:hover {
    animation-play-state: paused;
}

.hero-header {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(
        120deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.037)
    ),
    linear-gradient(
        135deg,
        var(--primary) 40%,
        var(--secondary) 100%
    );
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-header h1 {
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-header .breadcrumb {
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 18px;
    border-radius: 30px;
    margin-top: 20px !important;
    backdrop-filter: blur(6px);
    width: fit-content !important;
    
}

.hero-header .breadcrumb a {
    opacity: 0.9;
}

.hero-header .breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}


.stckywidgt {
    position: sticky !important;
    top: 90px !important;
    z-index: 99 !important;
}

.h-lg-50 {
    height: 35%;
}

.service-scroll-up,
.service-scroll-down {
    position: relative;
    overflow: hidden;
}

.scroll-content {
    display: flex;
    flex-direction: column;
    animation-duration: 12s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.service-scroll-up .scroll-content {
    animation-name: scroll-upwards;
}

.service-scroll-down .scroll-content {
    animation-name: scroll-downwards;
}

.cta-button:hover {
    opacity: 0.9 !important;
}

.carrd {
    background-color: #ffffff !important;
    height: 75px;
    margin: 6px 0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.costomhight {
    height: 300px;
}

@keyframes scroll-upwards {
    0% {
        transform: translateY(50%);
    }

    100% {
        transform: translateY(-100%);
    }
}

@keyframes scroll-downwards {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(50%);
    }
}

@media (max-width: 991px) {
    .costomhight {
        height: 200px;
    }

    .carrd {
        height: 60px;
        margin: 4px 0;
    }

    .carrd h6 {
        font-size: 0.95rem;
    }

    .fs-3 {
        font-size: 1.25rem !important;
    }

    .fs-4 {
        font-size: 1.1rem !important;
    }

    .fs-5 {
        font-size: 1.0rem !important;
    }
}

@media (max-width: 575px) {
    .costomhight {
        height: 160px;
    }

    .carrd {
        height: 50px;
        margin: 3px 0;
    }

    .carrd h6 {
        font-size: 0.85rem;
    }

    .fs-3 {
        font-size: 1.1rem !important;
    }

    .fs-4 {
        font-size: 1rem !important;
    }

    .fs-5 {
        font-size: 0.9rem !important;
    }

    @keyframes scroll-upwards {
        0% {
            transform: translateY(25%);
        }

        100% {
            transform: translateY(-100%);
        }
    }

    @keyframes scroll-downwards {
        0% {
            transform: translateY(-100%);
        }

        100% {
            transform: translateY(25%);
        }
    }
}

footer {
    position: relative;
    overflow: hidden;
    background-color: var(--primary);
    color: #fff;
    padding: 60px 0 30px;
}

.footer-city-link{
    display: inline-block;
    transition: transform 0.2s ease;
    color: var(--primary) ;
}

.footer-city-link:hover{
    transform: translateX(4px) !important;
    color: var(--secondary);
}

.bg-text {
    bottom: 150px;
    transform: translateX(-50%) translateY(10%);
    font-size: 350px;
    color: rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    line-height: 1;
}

footer .container,
footer hr,
footer button {
    position: relative;
    z-index: 1;
}

.footer-link {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    transition: transform 0.25s ease, color 0.25s ease;
}

.footer-link:hover {
    color: var(--secondary);
    transform: translateX(5px) !important;
}


@media (max-width: 992px) {
    .bg-text {
        font-size: 200px;
    }
}

@media (max-width: 576px) {
    .bg-text {
        font-size: 130px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 35vh;
        min-height: 250px;
        max-height: none;
    }

    .display-3 {
        font-size: 2rem !important;
    }

    .fas-5 {
        font-size: 0.9rem !important;
    }

    .breadcrumb-item {
        font-size: medium;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 25vh !important;
        min-height: 200px;
    }

    .display-3 {
        font-size: 1.75rem !important;
    }

    .breadcrumb-item {
        font-size: small;
    }

}

.icon-wrapper {
    width: 80px;
    height: 80px;
}

.shadow-lg-hover {
    transition: all 0.3s ease;
}

.shadow-lg-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

@media (max-width: 768px) {
    .content-section {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .content-section {
        padding: 1rem;
    }
}

.faqicon {
    font-size: 300px !important;
}

.input-group-text {
    background-color: #f8f9fa;
    border-right: none;
}

.input-group .form-control:focus {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    border-color: var(--primary);
}

textarea.form-control {
    resize: none;
}

@media (max-width: 767px) {
    .btn-lg {
        width: 100%;
        font-size: 1rem;
    }

    .input-group-text {
        font-size: 1rem;
    }
}

.square-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
}

.square-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.bold h3 {
    font-weight: 700 !important;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.bold span {
    margin-bottom: 0;
    line-height: 1.3;
    display: flex;
    text-align: center;
    color: #000;
    font-weight: 600 !important;
}

.quote-wrapper {
    margin-top: -40px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.quote-row {
    background: rgba(255, 255, 255, 0.97);
}

.quote-field {
    display: flex;
    align-items: center;
    position: relative;
    min-height: 90px;
    padding-left: 25px;
    border: 1px solid #dee2e6;
}

.quote-input {
    font-size: 1.15rem;
    padding: 0.75rem 1.5rem 0.75rem 2.5rem;
    height: 100%;
}

.form-icon {
    position: absolute;
    left: 10px;
    font-size: 1.2rem;
    color: #6c757d;
}

.quote-btn-box {
    min-height: 90px;
}

.quote-btn {
    font-size: 1.15rem;
    min-height: 60px;
    white-space: normal;
    margin-right: 10px;
}

.btn-primary {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary);
    font-weight: 600;
    padding: 10px 25px;
}

.btn-outline-light {
    border-width: 2px;
    font-weight: 600;
    padding: 10px 25px;
}

.btn-primary:hover {
    background-color: #cfbd01;
    border-color: #cfbd01;
    color: var(--primary);
}

.certification-badge {
    background-color: var(--secondary);
    color: var(--primary);
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 15px;
}

.service-card {
    transition: all 0.3s;
    height: 100%;
}

@media(max-width:768px) {
    .width100 {
        width: 100%;
    }
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-img {
    object-fit: cover;
    height: 200px;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.card-title {
    margin-bottom: 5px;
    color: #000;
    font-size: 1.1rem;
    line-height: 1.3;
    word-wrap: break-word;
    white-space: normal;
}

@media (max-width: 576px) {
    .card-title {
        font-size: 1rem;
        line-height: 1.4;
        text-align: center;
    }

    .card-text {
        display: none;
    }
}

@media (max-width: 450px) {
    .card-title {
        font-size: smaller !important;
    }
}

.btn-outline-secondary:hover {
    background-color: #ffc107 !important;
    border-color: #ffc107 !important;
    color: #212529 !important;
}

.service-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
}

.section-titles {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 15px;
}

.section-subtitle {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
}

.service-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 1rem;
    height: 100%;
    transition: all 0.3s ease;
    border-top: 5px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-card:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover:before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: inline-block;
    padding: 2px 12px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 12px;
}

.w-60 {
    width: 60px !important;
    height: 60px !important;
}

.service-icoon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: flex;
    padding: 2px 12px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 12px;
    width: fit-content;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

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

.service-list li {
    padding: 5px 0;
    padding-left: 30px;
    position: relative;
    color: #000;
    ;
}

.service-list li:before {
    content: '\f26e';
    font-family: 'bootstrap-icons';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
}

.highlight-box {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--primary);
}

.highlight-title {
    color: var(--primary);
    font-weight: 600;
}

@media (max-width:768px) {
    .highlight-title {
        font-size: 19px;
    }
}

.image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.image-container img {
    width: 100%;
    height: 75%;
    transition: transform 0.5s ease;
}

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

@media (max-width: 768px) {
    .service-section {
        padding: 0.5rem 0;
    }

    .service-card {
        margin-bottom: 0.5rem;
    }

    .highlight-box {
        padding: 1.5rem;
    }

    .quote-wrapper {
        display: none;
    }
}

.services-subtitle {
    color: #000;
    font-weight: 500;
    margin-bottom: 1rem;
}

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 0 0;
}

.service-item p {
    margin: 0;
    color: #000;
    font-size: 1.1rem;
}

.additional-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-item {
    margin-bottom: 12px;
}

@media (max-width: 576px) {
    .additional-image {
        height: 250px;
    }
}

.content-card {
    padding: 40px;
    height: 100%;
}

.highlight {
    color: #000;
    font-weight: 600;
}

.cta-box {
    background: var(--primary);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    margin-top: 30px;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.search-tag {
    background: #e9ecef;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #495057;
}

@media (max-width: 768px) {
    .relocation-section {
        padding: 20px 0;
    }

    .content-card {
        padding: 25px;
    }
}

.why-chooose img {
    width: 350px;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: #f2baba;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.benefit-item i {
    color: var(--primary);
    margin-right: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.benefit-item p {
    margin: 0;
    color: #000;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .benefit-item {
        margin-bottom: 15px;
        padding: 12px;
    }
}

.rateus {
    background-color: var(--primary);
    min-width: 280px;
    max-width: 320px;
}

@media (max-width: 576px) {
    .row.g-4 {
        gap: 12px !important;
    }

}

.testimonial-card {
    background-color: var(--light);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 315px;
}

.testimonial-img {
    width: 80px;
    height: 80px;
}

.testimonial-imgg {
    width: 100px;
    height: 80px;
}

.addrss h3 {
    color: var(--primary);
}

.addrss-form {

    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

@media (max-width: 998px) {
    .addrss-form {
        margin-top: 20px !important;
        margin-bottom: 20px;
        position: relative;
        z-index: 2;
    }
}

@media (max-width: 576px) {
    .addrss-form {
        margin-top: 20px !important;
        margin-bottom: 20px;
        position: relative;
        z-index: 2;
    }
}

.social-icon {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

footer .social-icon:hover {
    background-color: var(--secondary);
    transform: scale(1.2);
}

.service-card {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.year-badge {
    padding: 0.4rem 1rem;
    border-radius: 50px;
}

.abot-img {
    max-height: 250px !important;
}

.gtt {
    display: none;
    width: 60px;
    height: 60px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 1);
}

.info-header a {
    text-decoration: none !important;
    color: #fff !important;
}

.logo {
    height: 100px;
    width: 125px;
}

.breadcrumb-item::before {
    color: white !important;
}

.bg-custom-tab {
    background-color: rgb(255, 224, 224);
}

.center-image {
    margin-left: auto;
    margin-right: auto;
    width: 400px;
    height: 400px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.content-icon {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: block;
}

.icon-colour i {
    color: var(--primary);
}

.tab-pane span {
    color: var(--primary) !important;
}

@media (max-width: 768px) {

    .content-icon {
        font-size: 4rem;
        margin-bottom: 1rem;
    }

    .col-12 {
        width: 100% !important;
    }
}

@media (max-width: 576px) {

    .content-icon {
        font-size: 3rem;
    }

    .fs-5 {
        font-size: 1rem !important;
    }
}

.table th {
    font-size: 1.1rem;
    padding: 1rem 0.75rem;
    background-color: var(--primary) !important;
    color: white !important;
}

.table td {
    padding: 1rem 0.75rem;
    vertical-align: middle;
    background-color: rgb(224, 255, 224);
}

@media (max-width: 768px) {

    .table th,
    .table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
}

.accordion-item {
    border: none;
    border-radius: 12px !important;
    margin-bottom: 1rem;
    box-shadow: var(--primary);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 5px var(--primary);
}

.accordion-button {
    background-color: var(--primary) !important;
    color: #fff;
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: white;
    border-bottom: 3px solid var(--secondary) !important;
}

.accordion-body {
    padding: 1.5rem;
    background-color: rgba(250, 212, 0,0.6);
    color: #000;
}

.badge-offer {
    background: linear-gradient(45deg, #FF512F, #F09819);
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
}

@media (max-width: 768px) {
    .accordion-button {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }

    .accordion-body {
        padding: 1.25rem;
    }
}

.our-service-page {
    background-color: #f7f9fc;
    padding-bottom: 100px;
}

.section-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-weight: 700;
}

.citycard {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.citycard:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.card-content {
    display: flex;
    align-items: center;
    padding: 15px;
    transition: background-color 0.3s ease;
    color: var(--primary);
}

.citycard:hover .card-content {
    background-color: var(--primary);
    color: #fff;
}

.imgrows i {
    font-size: 24px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.citycard:hover .imgrows i {
    color: #fff;
}

.cityname {
    font-size: 14px;
    padding-left: 10px;
}

.cityname b {
    font-size: 15px;
}

@media only screen and (max-width: 768px) {
    .citycard {
        margin-bottom: 20px;
    }

    .cityname {
        font-size: 16px;
    }
}

.imageform img {
    width: 550px !important;
}

@media only screen and (max-width: 768px) {
    .imageform img {
        width: 320px;
        height: 320px;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.fab-wrapper.call {
    margin-bottom: 65px;
    animation: bounce 1.5s infinite;
}

.shadowCustom {
    box-shadow: 0 1px 5px rgba(0, 0, 0, 1);
}

.fab-wrapper.whatsapp {
    margin-bottom: 15px;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #fff;
    border-bottom: 2px solid #0d6efd;
}

.accordion-button::after {
    transition: transform 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    transition: box-shadow 0.3s ease;
}

table {
    width: auto;
    border-collapse: collapse;
    margin: 20px 0;
}

.note {
    background-color: rgb(255, 210, 210);
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
    font-style: italic;
    width: auto;
}

.modal-title {
    color: var(--primary);
}

.modal-titlee {
    color: var(--primary);
}

@media(max-width:768px) {
    .modal-titlee {
        display: flex;
        justify-content: center !important;
    }
}

.card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .address-item {
        text-align: center !important;
        margin-bottom: 1.5rem;
    }

    .address-item:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .card {
        margin-bottom: 1rem;
    }
}

.clickable {
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.service-card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
}

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

.btn-servic {
    background-color: var(--primary) !important;
    color: white !important;
    transition: all 0.3s ease !important;
}

.btn-servic:hover {
    background-color: var(--secondary) !important;
    color: #000 !important;
    transform: scale(1.05) !important;
}

.card-bodyy a {
    display: flex;
    flex-direction: column;
}

.btn-wrapper {
    margin-top: 2rem;
}

.service-iconn {
    font-size: 2.5rem;
    color: var(--primary);
    display: inline-block;
    padding: 2px 12px;
    height: fit-content;
    width: fit-content;
    border-radius: 12px;
}

.card-titlee {
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.st-service-area {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #f9f9f9;
}

.st__service__box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 15px 0;
}

.st__service__box:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.st__service__thumb img {
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    transition: transform 0.3s ease;
}

.st__service__box:hover .st__service__thumb img {
    transform: scale(1.1);
}

.st__service__content {
    padding: 10px;
    background: linear-gradient(135deg, var(--primary));
    text-align: center;
    color: #fff;
    border-radius: 0 0 10px 10px;
}

.st__service__content span {
    font-size: 18px;
    font-weight: 600;
}

@media only screen and (max-width: 768px) {
    .col-md-6 {
        margin-top: 20px;
    }
}