@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Mulish', sans-serif;
}

h2 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 800;
    color: #0C0C0C;
}

.top-bar {
    background: #6A2875;
    color: #fff;
    font-size: 0.95rem;
}

.top-bar a {
    color: #fff;
    margin-left: 10px;
}

.logo-img {
    width: 60%;
    height: auto;
}

.phone-icon img {
    width: 60px;
    height: 50px;
}

.call-text {
    color: #6d3687;
    font-weight: 800;
    font-size: 20px;
}

.navbar-nav li a {
    font-size: 0.79rem !important;
    font-weight: 700;
    color: #1B467D !important;

}

.navbar-toggler {
    width: 20px;
    height: 20px;
    position: relative;
    transition: 0.5s ease-in-out;

}


.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
    border: 0;
}

.toggler-icon {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: #000000;
    border-radius: 1px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.25s ease-in;
}

.middle-bar {
    margin-top: 0px;
}

.navbar-toggler .top-bar {
    margin-top: 0;
    transform: rotate(135deg);
}

.navbar-toggler .middle-bar {
    opacity: 0;
    filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
    margin-top: 0px;
    transform: rotate(-135deg);
}

.navbar-toggler.collapsed .top-bar {
    margin-top: -10px;
    transform: rotate(0deg);
}

.navbar-toggler.collapsed .middle-bar {
    opacity: 1;
    filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar {
    margin-top: 10px;
    transform: rotate(0deg);
}


.navbar-nav li a {
    font-size: 16px;
    font-weight: 700;
    color: #1B467D !important;
    text-decoration: none;
}

.sub-menu {
    display: none;
}

.sub-menu li {
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 10px;

}

/* --- Submenu Styling Fix --- */
ul.sub-menu {
    min-width: 283px;
    /* Adjust to your preferred width */
    background: #fff;
    padding: 8px 0;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
    ul.sub-menu {
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        min-width: 100vw !important;
        margin: 0 !important;
        background: #fff;
        padding: 8px 0;
        border-radius: 0 !important;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        transform: none !important;
    }

    /* Ensure list items have proper padding */
    ul.sub-menu li {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media (max-width: 991.98px) {

    /* Reduce gap between main menu items */
    .menu-item,
    li.menu-item,
    nav li,
    .navigation li {
        margin-bottom: 4px !important;
        padding-top: 4px !important;
        padding-bottom: 4px !important;
    }

    /* If menu items are in a flex/grid container */
    .menu,
    ul.menu,
    nav ul {
        gap: 4px !important;
    }
}

/* Align text and arrow properly */
ul.sub-menu li {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    /* keeps text on left, arrow on right */
    padding: 6px 14px;
    font-size: 15px;
    /* uniform text size */
    line-height: 1.4;
}

/* Link styling */
ul.sub-menu li a {
    color: #00215b;
    /* adjust color as per site theme */
    text-decoration: none;
    flex: 1;
    white-space: nowrap;
    font-size: 14px;
    /* ensure font size applies to links too */
}

/* Optional: adjust arrow alignment if it's a pseudo element or icon */
ul.sub-menu li::after {
    margin-left: 8px;
    font-size: 12px;
    color: #00215b;
    position: relative;
    top: 1px;
    /* subtle vertical alignment fix */
}

/* Hover effect */
ul.sub-menu li:hover {
    background-color: #f3f3f3;
}


.sub-menu li::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px #1B467D;
    border-right: solid 2px #1B467D;
    transform: rotate(45deg);
    margin: 8px 0;
}

.top-bar a {
    text-decoration: none;
}

.menu-item-has-children {
    position: relative;
}

.menu-item-has-children:hover .sub-menu {
    display: block;
    position: absolute;
    padding: 10px;
    background: #ffffff;
    box-shadow: 5px 5px 18px #cfcfcf;
    z-index: 999;
    width: 168px;
}

.menu-item-has-children::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px #1B467D;
    border-right: solid 2px #1B467D;
    transform: rotate(135deg);
    position: absolute;
    right: -15px;
    top: 8px;
}

.call-text a {
    text-decoration: none;
    color: #6d3687;
}

.call-section h6 {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    padding: 0;
    color: #1B467D;
}

.btn-purple {
    background: #6d3687;
    color: #fff;
    border-radius: 4px;
    font-weight: 500;
}

.btn-purple:hover {
    background: #532a6b;
    color: #fff;
}

.about-section {
    background: #fff;
    position: relative;
}

.feature-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgb(0 0 0 / 14%);
	height:480px;
}

.feature-icon {
    font-size: 2rem;
    color: #6d3687;
}

.hero-section {
    position: relative;
    height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
    background: #000;
    overflow: hidden;
}

.card-text p {
    width: 100% !important;
}

/* Slider container */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: slideAnimation 18s infinite;
}

.hero-slider img:nth-child(1) {
    animation-delay: 0s;
}

.hero-slider img:nth-child(2) {
    animation-delay: 6s;
}

.hero-slider img:nth-child(3) {
    animation-delay: 12s;
}

@keyframes slideAnimation {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    5% {
        opacity: 1;
        transform: scale(1.05);
    }

    30% {
        opacity: 1;
        transform: scale(1.1);
    }

    35% {
        opacity: 0;
        transform: scale(1.15);
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

/* Content always stable */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content span {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    padding-bottom: 25px;
    display: inline-block;
}

.hero-content h1 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 800;
    width: 60%;
}

.hero-content p {
    font-size: 1.2rem;
    margin: 15px 0;
}

.btn-custom {
    background-color: #6A2875;
    color: #fff;
    padding: 15px 50px;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
    font-size: 18px;
    display: inline-block;
    margin-top: 20px;
}

.btn-custom:hover {
    background-color: #5a189a;
}

.about-label,
.faq-label,
.testi-label,
.support-label {
    color: #6d3687;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 1px;
    position: relative;
}

.testi-label::after {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background: #6d3687;
    margin-top: 8px;
    border: solid 3px #6d3687;
    position: absolute;
    left: 22%;
    bottom: 9px;
}

.testi-label::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background: #6d3687;
    margin-top: 8px;
    border: solid 3px #6d3687;
    position: absolute;
    left: -3%;
    bottom: 9px;
}

.faq-label::after {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background: #6d3687;
    margin-top: 8px;
    border: solid 3px #6d3687;
    position: absolute;
    left: 64%;
    bottom: 9px;
}

.faq-label::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background: #6d3687;
    margin-top: 8px;
    border: solid 3px #6d3687;
    position: absolute;
    left: 35%;
    bottom: 9px;
}

.about-label::after {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background: #6d3687;
    margin-top: 8px;
    border: solid 3px #6d3687;
    position: absolute;
    left: -11px;
    bottom: 9px;
}

.about-label::after {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background: #6d3687;
    margin-top: 8px;
    border: solid 3px #6d3687;
    position: absolute;
    left: -11px;
    bottom: 9px;
}

.about-label::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background: #6d3687;
    border: solid 3px #6d3687;
    position: absolute;
    bottom: 9px;
    left: 23%;
}

.support-label::after {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background: #6d3687;
    margin-top: 8px;
    border: solid 3px #6d3687;
    position: absolute;
    left: 41%;
    bottom: 9px;
}

.support-label::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background: #6d3687;
    margin-top: 8px;
    border: solid 3px #6d3687;
    position: absolute;
    left: -11px;
    bottom: 9px;
}

.about-title {
    font-size: 2rem;
    line-height: 1.2;
}


.text-purple {
    color: #6d3687;
}

.about-desc {
    color: #444;
    font-size: 1rem;
}

.btn-purple {
    background: #6d3687;
    color: #fff;
    border-radius: 4px;
    font-weight: 500;
}

.btn-purple:hover {
    background: #532a6b;
    color: #fff;
}

.about-badge {
    position: absolute;
    left: 1%;
    top: 26%;
    z-index: 2;
}

.about-badge img {
    width: 70%;
}

.about-images {
    position: relative;
    width: 100%;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.about-img {
    opacity: 0;
    transform: translateX(60px);
    animation: none;
}

.about-heart {
    right: -14%;
    top: -20%;
    z-index: 3;
    width: 30%;
}

.featurs h6 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 800;
    padding: 5px 0;
}

.featurs {
    margin-bottom: 50px;
}

.about-img-3 {
    position: absolute;
    left: 0;
    bottom: 0;
    left: 10%;
    bottom: 10%;
    width: 42%;
}

.about-img-1 {
    position: absolute;
    left: 8%;
    top: 8%;
    width: 28%;
}

.about-img-2 {
    width: 60%;
}

.accordion-body {
    text-align: left;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-right {
    animation: slideInRight 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.about-section.in-view .about-img {
    animation-play-state: running;
}

.services-section {
    background: #f7f3f6;
}

.services-label,
.transforing-label {
    color: #6d3687;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 1px;
    position: relative;
}

.services-label::after {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background: #6d3687;
    margin-top: 8px;
    border: solid 3px #6d3687;
    position: absolute;
    left: 41%;
    bottom: 9px;
}

.services-label::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background: #6d3687;
    margin-top: 8px;
    border: solid 3px #6d3687;
    position: absolute;
    left: 59%;
    bottom: 9px;
}

.transforing-label::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background: #6d3687;
    margin-top: 8px;
    border: solid 3px #6d3687;
    position: absolute;
    left: 61.5%;
    bottom: 9px;
}

.transforing-label::after {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background: #6d3687;
    margin-top: 8px;
    border: solid 3px #6d3687;
    position: absolute;
    left: 38%;
    bottom: 9px;
}

.services-title {
    font-size: 2rem;
    line-height: 1.2;
    width: 55%;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-card h6 {
    font-size: 18px;
    font-weight: 800 !important;
    margin: 15px 0;
}

.service-card p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #5E5F71;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Number of lines to show */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(109, 54, 135, 0.12);
}

.service-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: auto;
}

.testimonial-card img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.carousel-inner {
    overflow: visible;
}


.testimonial-card .author {
    font-weight: 600;
}

.rev_img img {
    width: 170px;

}

.testimonial-card .role {
    font-size: 0.9rem;
    color: gray;
}

.carousel-indicators {
    position: absolute;
    right: 0;
}

.carousel-indicators [data-bs-target] {
    background-color: #6d3687;
    height: 10px;
    width: 10px;
}

.carousel-indicators {
    justify-content: end;
}

.faq-section .accordion .accordion-item {
    border: none;
    border-bottom: solid 1px #D3D3D3;
}

.faq-section .accordion-button {
    background: #F6F6F6;

}

button:focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: "–";
    color: #5e2d82;
}

.faq-accordion .accordion-button::after {
    content: "+";
    font-size: 1.2rem;
    font-weight: bold;
    color: #5e2d82;
    background-image: none !important;
    transform: none !important;
}

.faq-accordion .accordion-button {
    background-color: #f7f3f6 !important;
    box-shadow: none;
    font-weight: 500;
    color: #000;
    border-radius: 0 !important;
}

.accordion-collapse {
    transition: height 0.4s ease, opacity 0.4s ease;
    overflow: hidden;
}

.accordion-collapse.collapsing {
    opacity: 0;
}

.accordion-collapse.collapse.show {
    opacity: 1;
}

.faq-section::after {
    content: "";
    display: block;
    width: 250px;
    height: 250px;
    background: url(../images/Image-home.png) no-repeat center;
    position: absolute;
    bottom: 0;
    right: 0;
    background-size: contain;

}

.faq-section {
    position: relative;
    padding: 10vh 0 35vh 0vh;
}

.footer {
    background-color: #723B7C;
    position: relative;
}

.footer::before {
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/footer-bg.png) no-repeat center;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    z-index: -1;
}

.sub_footer {
    background-color: #723B7C;
    border-top: solid 1px #fff;
}

.sub_footer p {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    padding: 12px 0;
    text-align: center;
}

.get_touch {
    padding: 5vh;
    background-color: #A86BB3;
    border-radius: 10px;
    box-shadow: inset 0 0 25px #723b7c73;
}

.footer h2 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.footer p {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    padding: 12px 0;
}

.footer ul {
    padding: 0;
}

.footer ul li {
    list-style: none;
}

.footer ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    display: block;
    padding: 6px 0;
}

.footer p span {
    font-weight: 700;
    font-size: 16px;
}

.footer_social a i {
    color: #fff;
    background: #ffffff7d;
    padding: 10px;
    border: solid 1px #fff;
    border-radius: 5px;
}

.footer_links {
    padding: 5vh 0 0 16vh;
}

.footer_location {
    padding: 5vh 0 0 0;
}

.footer h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer_touch {
    display: grid;
    grid-template-columns: 2fr 1fr;
    background-color: #A86BB3;
    border-radius: 10px;
    margin-top: -28vh;
    margin-bottom: 6vh;
    align-items: flex-end;
}

.ftr_high {
    max-width: 130vh;
    margin: 0 auto;
}

.footer_touch p {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

.right_cnt img {
    width: 50vh;
}

.footer_touch .left_cnt {
    padding: 5vh;
}

.left_cnt a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #723B7C;
    background: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 2vh;
}

.mbl_img {
    display: none;
}

.trans_card img,
.car_transport img {
    width: 100%;
}

/* tranportneeds start */
.trnaport_hero {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.trnaport_hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.trnaport_hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.trnaport_hero-content p {
    font-size: 1rem;
}

.trnaport_hero-content a {
    text-decoration: none;
    color: #fff;
}

.car_transport {
    padding: 50px 0;
}

.transforming {
    padding: 50px 0;
    background-color: #F2EBE9;
    text-align: center;
}

.transforming .trans_card {
    background-color: #fff;
    box-shadow: 0 0 10px #ccc;
    height: 595px;
}

.trans_card h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 800;
    color: #0C0C0C;
}

.tran_content {
    padding: 20px;
}

.trans_card p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #5E5F71;
}

.support {
    padding: 50px 0;
}

.support img {
    width: 100%;
}

.tavel_ind {
    padding: 50px 0;
    background-color: #F2EBE9;
}

.tavel_ind img {
    width: 100%;
}

.tavel_ind_bg {
    position: relative;
    /* background: url(../bethel-disablity/images/travel-independently.png)no-repeat center/cover; */
    height: 500px;
    display: flex;
    text-align: left;
    color: #fff;
    align-items: end;
    justify-content: left;
}

.tvael_content {
    width: 40%;
    margin: 0 0 50px 50px;
}

.tvael_content p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #fff;
}

.tvael_content h4 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 400;
    font-family: 'Autography';
}

.tvael_content h2 {
    font-size: 35px;
    line-height: 45px;
    font-weight: 800;
    color: #fff;
}

.support h2 {
    font-size: 60px;
    line-height: 70px;
    font-weight: 900;
    width: 70%;
}

.support_bg {
    max-width: 950px;
    width: 100%;
    margin: 0 auto;
}

.feature-icon img {
    width: 25%;
}

/* tranportneeds end */

/* contact us page start */
.map iframe {
    width: 100%;
}

.contact_bg {
    padding: 20px 30px 40px 30px;
    background-color: #6a2875;
    border-radius: 11px;
}

.contact_form {
    padding: 0 20px;
}

.contact_bg ul {
    padding: 20px 0;
}

.contact_bg ul li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
}

.contact_bg h2 {
    font-size: 25px;
    font-weight: 700;
    line-height: 35px;
    color: #fff;
    border-bottom: solid 1px #fff;
}

.contact_form input {
    padding: 10px !important;
    border: solid 1px #cccc !important;
    border-radius: 3px !important;
    font-size: 14px;
    font-weight: 400;
    color: #ccc !important;
}

.contact_form .ff-btn {
    background-color: #6A2875 !important;
    padding: 12px 25px !important;
    border-radius: 5px !important;
    font-weight: 400 !important;
}

/* contact us page End */


/* about us page start */
.about_melta {
    padding: 40px 0;
}

/* .about_melta img {
    width: 100%;
    max-width: 390px;

} */

.about_melta-content h2 {
    font-size: 32px;
    line-height: 42px;
    color: #723B7C;
    font-weight: 800;
}

.about_melta-content p {
    font-size: 14px;
    line-height: 24px;
    color: #0C0C0C;
    font-weight: 400;
    margin: 20px 0;
}

.about_melta-content h6 {
    font-size: 18px;
    line-height: 28px;
    color: #0C0C0C;
    font-weight: 500;
    border-bottom: solid 1px #C2C2C2;
    width: 50%;
    padding-bottom: 15px;
}

.abt_str_img img {
    width: 100%;
    max-width: 500px;
    float: right;
}

.about_strength {
    padding: 40px 0;
    background-color: #F2EBE9;
}

.about_strength h2 {
    font-size: 32px;
    line-height: 42px;
    color: #723B7C;
    font-weight: 800;
    margin-bottom: 20px;
}

.about_strength p {
    font-size: 14px;
    line-height: 24px;
    color: #0C0C0C;
    font-weight: 400;
    margin: 0;
}

.compo_box {
    margin-top: 30px;
}

.compo_box .content_box {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 15px;
    padding: 10px;
    border: solid 1px #C8C8C8;
    margin-bottom: 20px;
    border-radius: 3px;
}

.compo_box .content_box img {
    width: 27px;
}

.box_cnt h3 {
    font-size: 18px;
    line-height: 28px;
    margin: 0;
    font-weight: 700;
    color: #1B467D;
}

.about_mission img {
    width: 100%;
}

.about_mission {
    padding: 40px 0;
}

.call_icon img {
    width: 45px;
}

.call_us_box {
    display: flex;
    padding: 10px;
    gap: 12px;
    border: none;
    background: #fff;
    box-shadow: 0 0 20px #ccc;
}

.cla_bt {
    margin-top: -30px;
    display: inline-block;
}

.call_cnt {
    text-align: left;
}

.call_cnt h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1B467D;
    margin: 0;
}

.call_cnt p {
    font-size: 13px;
    font-weight: 800;
    color: #723B7C;
    margin: 0;
}

.about_mission h2 {
    font-size: 32px;
    line-height: 42px;
    color: #723B7C;
    font-weight: 800;
    margin-bottom: 20px;
}

.core_values {
    background: #F2EBE9;
}

.core_values .card {
    border: none;
}

.core_values h2 {
    font-size: 32px;
    line-height: 42px;
    color: #723B7C;
    font-weight: 800;
}

.core_dec p {
    font-size: 14px;
    line-height: 24px;
    color: #0C0C0C;
    font-weight: 400;
    margin: 0 auto;
    width: 70%;
}

.core_dec {
    width: 70%;
    margin: 0 auto;
}

.core_values .card-text {
    text-align: left;
    margin: 0;
    width: 100%;
}

.vision_content .qutos {
    font-weight: 700;
    width: 75%;
}

.call_cnt p a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    color: #723B7C;
    margin: 0;
}

/* about us page end */
@media (max-width: 991px) {

    .about-section .about-title {
        font-size: 25px;
    }

    .mbl_img {
        display: block !important;
    }

    .img_bdg {
        display: none !important;
    }

    .mbl_img img {
        width: 100%;
        max-width: 500px;
    }

    .about-images {
        min-height: 180px;
    }

    .about-img {
        max-width: 140px;
        width: 70%;
    }

    .about-badge {
        left: 0;
        top: -30px;
    }

    .services-title {
        font-size: 25px;
        width: 100%;
    }

    .hero-section {
        height: 35vh;
    }

    .hero-content {
        margin-left: 20px;
    }

    .hero-content h1 {
        font-size: 20px;
        line-height: 30px;
        font-weight: 600;
        width: 100%;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        padding: 0 10px 0 0;
    }

    .btn-custom {
        background-color: #6A2875;
        color: #fff;
        padding: 8px 25px;
        border-radius: 5px;
        font-weight: 400;
        transition: 0.3s;
        font-size: 15px;
        display: inline-block;
        margin-top: 2px;
    }

    .hero-content span {
        font-size: 14px;
        line-height: 24px;
        padding-bottom: 0;
    }

    .top_socila {
        display: none;
    }

    .top-bar span {
        font-size: 10px;
    }

    .testmonial-text {
        text-align: center;
        margin-bottom: 20px;
    }

    .testimonial-card {
        margin: 0;
    }

    .carousel-indicators {
        position: absolute;
        left: 50%;
        display: block;
    }

    .footer_touch {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer_links {
        padding: 3vh 0 0 3vh;
    }

    .footer_location {
        padding: 0vh 0 0 3vh;
    }

    .footer h3 {
        margin-bottom: 3px;
    }

    .footer h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .footer_touch .left_cnt {
        padding: 3vh;
    }

    .left_cnt a {
        font-size: 12px;
        padding: 7px 20px;
        margin-top: 0;
    }

    .faq-section {
        padding: 5vh 0 22vh 0vh;
    }

    .trnaport_hero {
        height: 180px;
    }

    .car_transport img {
        margin-top: 20px;
        display: inline-block;
    }

    .transforming .trans_card {
        margin-bottom: 20px;
    }

    .support {
        padding: 30px 0;
    }

    .support h2 {
        font-size: 30px;
        line-height: 40px;
        font-weight: 900;
        width: 100%;
    }

    .services-label::before,
    .services-label::after,
    .about-label::before,
    .about-label::after,
    .testi-label::before,
    .testi-label::after,
    .faq-label::before,
    .testi-label::after,
    .transforing-label::before,
    .transforing-label::after {
        display: none;
    }

    .tvael_content {
        width: 100%;
        margin: 0;
    }

    .tavel_ind_bg {
        height: 250px;
    }

    .about-section {
        text-align: center;
    }

    .about_text {
        text-align: left;
    }

    .testimonial h2 {
        font-size: 25px;

    }


    .about_mission h2 {
        margin-bottom: 10px;
    }
}




@media (max-width: 768px) {

    .car_transport {
        padding: 30px 0;
    }

    .logo-img {
        width: 50%;
    }

    .feature-card {
        margin-bottom: 1rem;
        text-align: center;
    }

    .abt-1 {
        width: 400px;
        margin: 0 auto;
    }

    .about-badge img {
        display: none;
    }

    .about-images {
        min-height: 120px;
    }

    .about-img {
        max-width: 100px;
        width: 90%;
    }

    .about-badge {
        left: 0;
        top: -20px;
    }

    .olgs {
        width: 60%;
    }

    .about_melta {
        text-align: center;
    }

    .about_melta-content h2 {
        font-size: 25px;
        line-height: 35px;
    }

    .about_melta-content h6 {
        width: 100%;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .visions {
        flex-direction: column-reverse;
    }
}

@media (max-width: 767.98px) {

    .about_melta .about_melta-content,
    .about_melta .about_melta-content h2,
    .about_melta .about_melta-content h6,
    .about_melta .about_melta-content .mela_p {
        text-align: left !important;
    }
}

/* career page styling */

.careers_hero {
    color: #fff;
}

.careers_hero-content a {
    text-decoration: underline;
}

.contact_form {
    padding: 20px;
    background: #f8f8f8;
    border-radius: 5px;
}

.careers-section h2 {
    margin-bottom: 10px;
}

.careers-section p {
    line-height: 1.4;
}

.careers_hero {
    position: relative;
    color: #fff;
}

.careers_hero-content a {
    text-decoration: underline;
}

.careers_hero-content h1 {
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    .careers_hero-content h1 {
        font-size: 2.5rem;
    }
}

.contact_form {
    background: #fff;
    padding: 20px;
    box-shadow: 0 2px 13px #c2c8cf;
    border-radius: 10px;
    margin-bottom: 100px;
}

.careers-section h2 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.careers-section p {
    line-height: 1.6;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .careers-section h2 {
        font-size: 1.75rem;
    }

    .careers-section p {
        font-size: 1rem;
    }

    .contact_form {
        padding: 25px;
    }
}

.site-footer {
    clear: both;
    width: 100%;
    position: relative;
    bottom: 0;
}


/* testimonial section vertically center align */
/* Testimonial Section Layout */
.testimonial .row.mb-4 {
    display: flex;
    align-items: center;
    /* Vertically center both columns */
    flex-wrap: wrap;
    /* Keeps responsive stacking on smaller screens */
}

/* Left Column (text + review badge) */
.testimonial .testmonial-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Vertically center its own content */
}

/* Optional: make both columns equal height */
.testimonial .col-md-6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Ensure spacing looks consistent */
.testimonial .testi-label {
    color: #7a3db8;
    /* Example accent color */
    font-weight: 600;
}

.testimonial .faq-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
}

/* Responsive Fix — stack nicely on mobile */
@media (max-width: 767.98px) {
    .testimonial .row.mb-4 {
        align-items: flex-start;
        /* Normal flow on small screens */
    }

    .testimonial .col-md-6 {
        justify-content: flex-start;
    }
}

.justified-text {
    text-align: center !important;
    text-justify: inter-word;
}

/* services page styling */
.view-details-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 24px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    text-decoration: underline;
    transition: all 0.3s ease;
    width: fit-content;
}


.view-details-btn svg {
    transition: transform 0.3s ease;
}

.view-details-btn:hover svg {
    transform: translateX(4px);
}

.service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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


/* fixed width container so both numbers occupy same space */
.phone-swap {
    display: inline-block;
    position: relative;
    width: 170px;
    /* fixed width - adjust if needed */
    height: 1.6em;
    /* reserve height to avoid jump */
    overflow: hidden;
}

.phone-swap .phone-number {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    transition: transform 2s cubic-bezier(.22, 1, .36, 1), opacity 2s cubic-bezier(.22, 1, .36, 1);
    opacity: 0;
    transform: translateY(10px) scale(.98);
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.phone-swap .phone-number.current {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    position: static;
    /* allow normal flow for accessible reading order */
}

/* classes used during animation */
.phone-swap .phone-number.slide-out {
    opacity: 0;
    transform: translateY(-10px) scale(.98);
}

.phone-swap .phone-number.slide-in {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.about-portrait {
    width: auto;
    height: 390px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.Contact_us li a {
    color: white;
    text-decoration: none !important;
}



/* enforce same navbar spacing on all device sizes */
.navbar-nav {
    gap: 1.8rem !important;
    /* adjust as needed */
}

/* add extra space before the 4th menu item (FAQ) for all viewports */
.navbar-nav>.nav-item:nth-child(4) {
    margin-left: 1.8rem !important;
    /* adjust value to taste */
}