/********** Template CSS **********/

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

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

.mt-6 {
    margin-top: 5rem;
}

.mb-6 {
    margin-bottom: 5rem;
}

.pt-6 {
    padding-top: 5rem;
}

.pb-6 {
    padding-bottom: 5rem;
}

/* home page scrolling  */


/* ================= GLOBAL HORIZONTAL SCROLL FIX ================= */

html,
body {
    width: 100%;
    overflow-x: hidden !important;
}

/* Prevent Bootstrap rows from overflowing */
.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Fix container-fluid padding overflow */
.container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Safe inner padding replacement */
.container-fluid > .container,
.container-fluid > .row {
    padding-left: 15px;
    padding-right: 15px;
}

/* Prevent transformed elements from overflowing */
.flip-card,
.flip-card-inner,
.carousel,
.owl-carousel,
.contact-cta-section {
    overflow-x: hidden;
}

/* iframe overflow fix */
iframe {
    max-width: 100%;
    border: 0;
}


/*** 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: 600;
    text-transform: uppercase;
}

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

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

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

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

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

.btn-xl-square {
    width: 60px;
    height: 60px;
}

.btn-xxl-square {
    width: 75px;
    height: 75px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square,
.btn-xl-square,
.btn-xxl-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(--bs-dark);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #2CAB9F;
}

.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 .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* CENTER horizontally (desktop) */
    justify-content: center;
    /* CENTER vertically */
    text-align: center;
    /* CENTER text */
    background: rgba(0, 0, 0, .7);
    padding: 3rem 6rem;
    z-index: 1;
}

/* Carousel Indicators */
.carousel .carousel-indicators {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 80px;
    flex-direction: column;
    margin: 0;
    margin-left: 3rem;
}

.carousel .carousel-indicators [data-bs-target] {
    width: 70px;
    height: 70px;
    text-indent: 0;
    margin: 5px 0;
    border: 2px solid #FFFFFF;
    overflow: hidden;
}

.carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Large Desktop */
@media (min-width: 1400px) {
    .carousel .carousel-item .display-1 {
        font-size: 5rem;
    }
}

/* Medium Devices */
@media (max-width: 992px) {
    .carousel .carousel-item {
        position: relative;
        min-height: 600px;
    }

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

    .carousel .carousel-indicators [data-bs-target] {
        width: 60px;
        height: 60px;
    }
}

/* Mobile Devices – KEEP LEFT TEXT + RIGHT INDICATORS */
@media (max-width: 768px) {
    .carousel .carousel-item {
        min-height: 500px;
    }

    .carousel .carousel-indicators {
        left: auto;
        right: 1rem;
        width: 60px;
        margin: 0;
    }

    .carousel .carousel-indicators [data-bs-target] {
        width: 50px;
        height: 50px;
    }

    .carousel .carousel-caption {
        align-items: flex-start;
        /* LEFT align text */
        text-align: left;
        padding: 3rem;
    }

    .carousel .carousel-caption .display-1 {
        font-size: 2.5rem;
    }
}



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

/* ================= DESKTOP ONLY ================= */
@media (min-width: 992px) {

    .navbar {
        background-color: #2CAB9F !important;
    }

    .navbar .navbar-nav .nav-link {
        margin-right: 35px;
        padding: 25px 0;
        color: #ffffff !important;
        font-size: 16px;
        text-transform: uppercase;
        font-weight: 600;
    }

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: #0b3f3a !important;
    }
}

/* ================= MOBILE – RESTORE BOOTSTRAP DEFAULT ================= */
@media (max-width: 991.98px) {

    /* Navbar background */
    .navbar {
        background-color: #ffffff !important;
    }

    /* Logo visibility */
    .navbar-brand {
        color: #fff !important;
        font-weight: 700;
    }

    /* Toggle button FIX */
    .navbar-toggler {
        border: 1px solid rgba(0, 0, 0, .2);
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,0,0,0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* Nav links */
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
        color: var(--bs-dark) !important;
    }

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

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

/* Page Header Fallback */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, .7),
            rgba(0, 0, 0, .7)),
        url(../img/slider1.jpg) center center no-repeat;
    background-size: cover;
}


/* ===== FULL WIDTH NAVBAR ===== */
.custom-navbar {
    background-color: #2CAB9F !important;
    width: 100%;
}

/* Desktop nav links */
@media (min-width: 992px) {
    .navbar .nav-link {
        color: #ffffff !important;
        font-weight: 600;
        text-transform: uppercase;
        padding: 22px 0;
        white-space: nowrap;
        /* 🔥 prevents text breaking */
    }

    .navbar .nav-link:hover,
    .navbar .nav-link.active {
        color: #0b3f3a !important;
    }
}


/*** About ***/
.about-img {
    position: relative;
    padding-left: 45px;
}

.about-img::before {
    position: absolute;
    content: "";
    width: 200px;
    height: 300px;
    top: 0;
    left: 0;
    border: 5px solid var(--bs-primary);
    animation: animateUpDown 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes animateUpDown {
    0% {
        top: -25px;
    }

    50% {
        top: -45px;
    }

    100% {
        top: -25px;
    }
}



/*** Features ***/
.feature {
    background: linear-gradient(to right, rgba(0, 0, 0, .1), rgba(0, 0, 0, 1) 50%), url(../img/carousel-1.jpg) left center no-repeat;
    background-size: cover;
}

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

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

.feature-icon {
    position: relative;
    transition: .5s;
}

.feature-item:hover .feature-icon {
    margin-left: 3rem;
}

.feature-item a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: var(--bs-secondary);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
}

.feature-item a:hover {
    color: var(--bs-primary) !important;
}

.feature-item a:hover::after {
    background: var(--bs-primary);
}

.experience .progress {
    height: 5px;
}

.experience .progress .progress-bar {
    width: 0px;
    transition: 3s;
}







.leadership-exec {
    padding: 10px 0 20px;
    /* less space from banner */
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.exec-row {
    display: flex;
    align-items: stretch;
    /* key alignment fix */
    gap: 50px;
    margin-bottom: 30px;
}

.exec-row.reverse {
    flex-direction: row-reverse;
}

.leadership-exec .exec-row:first-child {
    margin-top: 0;
}


/* INFO */
.exec-info {
    flex: 1;
    background: #f9fafb;
    padding: 40px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.exec-info h2 {
    font-size: 30px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}

.exec-role {
    font-size: 14px;
    font-weight: 600;
    color: #2CAB9F;
    margin-bottom: 20px;
}

.exec-info p {
    font-size: 15.5px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 14px;
}

/* BUTTON */
.exec-btn {
    margin-top: 12px;
    align-self: flex-start;
    padding: 12px 28px;
    background: #2CAB9F;
    color: #fff;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.exec-btn:hover {
    background: #2CAB9F;
}

/* PHOTO */
.exec-photo {
    flex: 0.85;
    background: #f3f4f6;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exec-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 410px;
    /* CONTROL SIZE */
    transition: transform 0.4s ease;
}

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

/* RESPONSIVE */
@media (max-width: 992px) {

    .exec-row,
    .exec-row.reverse {
        flex-direction: column;
    }

    .exec-info {
        padding: 30px;
    }

    .exec-info h2 {
        font-size: 26px;
    }

    .exec-photo img {
        max-height: 300px;
    }
}


/* ================= MOBILE ORDER FIX ================= */
@media (max-width: 992px) {

    /* Stack vertically */
    .exec-row,
    .exec-row.reverse {
        flex-direction: column;
    }

    /* PHOTO FIRST */
    .exec-photo {
        order: 1;
    }

    /* INFO AFTER PHOTO */
    .exec-info {
        order: 2;
    }
}



/* PHOTO WRAPPER */
.exec-photo {
    flex: 0.85;
    background: #f3f4f6;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* IMAGE */
.exec-photo img {
    width: 100%;
    height: auto;
    max-height: 406px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* HOVER */
.exec-photo:hover img {
    transform: scale(1.03);
}

/* CAPTION BOX */
.photo-caption {
    width: 100%;
    padding: 16px 20px;
    background: #ffffff;
    text-align: center;
    border-top: 1px solid #e5e7eb;
}

.photo-caption h4 {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.photo-caption span {
    font-size: 13px;
    font-weight: 600;
    color: #2CAB9F;
}

/* MOBILE */
@media (max-width: 768px) {
    .exec-photo img {
        max-height: 300px;
    }
}

/*** Service ***/
.service .service-item {
    position: relative;
    margin-top: 45px;
}

.service .service-inner {
    position: relative;
    height: 100%;
    margin-top: 45px;
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.service .service-inner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    transition: 1s;
    background: var(--bs-primary);
}

.service .service-inner:hover::before {
    height: 100%;
    top: 0;
}

.service .service-item img {
    margin-top: -45px;
    padding-left: 45px;
}

.service .service-item * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service .service-item:hover h5,
.service .service-item:hover p {
    color: var(--bs-white);
}

.service .service-item:hover a {
    padding-left: 45px !important;
}

/* ================= BUTTON ================= */
.btn-primary {
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ================= SERVICES SECTION ================= */
.services-section {
    background-color: #f8f9fa;
}
/* ================= FLIP CARD CORE FIX ================= */
/* ================= FLIP CARD BASE ================= */

.flip-card {
    perspective: 1200px;
    width: 100%;
    height: 360px;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.7s ease-in-out;
}

/* VERTICAL FLIP */
.flip-card:hover .flip-inner {
    transform: rotateX(180deg);
}

/* ================= COMMON SIDES ================= */

.flip-front,
.flip-back {
    position: absolute;
    inset: 0;
    border-radius: 14px;

    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;

    overflow: hidden;
    box-sizing: border-box;
}

/* ================= FRONT ================= */

.flip-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.flip-front h5 {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0;
    padding: 20px;

    background: rgba(0,0,0,0.5);
    color: #fff;
    text-align: center;
    font-weight: 600;
}

/* ================= BACK ================= */

.flip-back {
    transform: rotateX(180deg);
    background: #111;
    color: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 18px;
    text-align: center;
}

/* Remove extra margins */
.flip-back h5,
.flip-back p {
    margin: 0;
}

/* Controlled spacing */
.flip-back h5 {
    margin-bottom: 8px;
    color: #fff;
}

.flip-back p {
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 10px;
}

/* Button safety */
.flip-back a {
    margin-top: 6px;
    white-space: nowrap;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
    .flip-card {
        height: 320px;
    }

    .flip-back p {
        font-size: 13px;
        line-height: 1.4;
    }
}

/*** Appoinment ***/
.appoinment {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-2.jpg) left center no-repeat;
    background-size: cover;
}


/*** Team ***/
.team .team-item {
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.team .team-item .team-social {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    transition: .5s;
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team .team-item:hover .team-social {
    width: 100%;
    left: 0;
}

.team .team-item .team-social .btn {
    opacity: 0;
    transition: .5s;
}

.team .team-item:hover .team-social .btn {
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-img {
    position: relative;
    min-height: 300px;
    overflow: hidden;
}

.testimonial-img div {
    position: absolute;
    width: 100px;
    height: 100px;
    animation-duration: 5s;
}

.testimonial-img div:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: .1s;
}

.testimonial-img div:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: .4s;
}

.testimonial-img div:nth-child(3) {
    top: 20%;
    left: 60%;
    animation-delay: .7s;
}

.testimonial-img div:nth-child(4) {
    bottom: 10%;
    right: 10%;
    animation-delay: 1s;
}

.testimonial-img div::after {
    position: absolute;
    content: "";
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    box-shadow: 0 0 10px 10px var(--bs-white) inset;
    z-index: 1;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 15px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    color: var(--bs-primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-dark);
}

.initial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2CAB9F, #2CAB9F);
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.initial-avatar.small {
    width: 56px;
    height: 56px;
    font-size: 18px;
}


.testimonial-item {
    text-align: center;
}

.testimonial-carousel {
    max-width: 900px;
    margin: auto;
}

.testimonial-carousel .owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 15px;
}


/*** Contact ***/
@media (min-width: 992px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 0px;
        height: 100%;
        top: 0;
        left: 50%;
        border-left: 1px dashed rgba(255, 255, 255, .2);
    }
}

@media (max-width: 991.98px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 0px;
        top: 50%;
        left: 0;
        border-top: 1px dashed rgba(255, 255, 255, .2);
    }
}


/* ================= TESTIMONIAL SECTION BACKGROUND ================= */
.testimonial-section-bg {
    position: relative;
    background-image: url("../img/about1.jpg");
    /* change image if needed */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    isolation: isolate;
}

/* ================= TESTIMONIAL SPACING FIX ================= */
.testimonial-section-bg {
    margin-top: 80px;
    /* space from above section */
    padding-top: 60px;
    /* internal top space */
    padding-bottom: 60px;
    /* internal bottom space */
}


/* Black Transparent Overlay */
.testimonial-section-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    /* transparent black */
    z-index: -1;
}

/* ================= TEXT COLOR FIX ================= */
.testimonial-section-bg h2,
.testimonial-section-bg h4,
.testimonial-section-bg p,
.testimonial-section-bg span,
.testimonial-section-bg h5 {
    color: #ffffff;
}

/* Optional: soften paragraph */
.testimonial-section-bg p {
    color: rgba(255, 255, 255, 0.85);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .testimonial-section-bg {
        margin-top: 50px;
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .testimonial-img {
        min-height: 220px;
    }
}

/*** Appoinment ***/
.newsletter {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-3.jpg) left center no-repeat;
    background-size: cover;
}

.cy-footer {
    background: #000;
    color: #fff;
    padding-top: 70px;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

.cy-footer a {
    color: #fff;
    text-decoration: none;
}

.footer-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.85);
}

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

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact i {
    color: #11A092;
    margin-top: 4px;
}

.footer-map iframe {
    width: 100%;
    height: 220px;
    border: 0;
    border-radius: 6px;
    max-width: 100%;
    /* Prevent overflow */
}

.footer-social a {
    color: #ffffff;
    font-size: 18px;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #11A092;
}

.footer-bottom {
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .footer-contact li {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .cy-footer {
        text-align: center;
        padding-top: 50px;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-social {
        margin-top: 15px;
    }
}


@media (max-width: 768px) {

    /* Center footer sections */
    .cy-footer .col-lg-4,
    .cy-footer .col-md-6,
    .cy-footer .col-md-12 {
        text-align: center;
    }

    /* Logo center */
    .cy-footer .navbar-brand {
        justify-content: center;
    }

    /* Footer headings */
    .cy-footer .footer-title {
        text-align: center;
        margin-top: 20px;
    }

   @media (max-width: 768px) {

    /* Footer contact list */
    .cy-footer .footer-contact {
        list-style: none;
        padding: 0;
        margin: 0 auto;
        max-width: 340px;
    }

    /* GRID = PERFECT ALIGNMENT */
    .cy-footer .footer-contact li {
        display: grid;
        grid-template-columns: 24px 1fr;
        column-gap: 12px;
        align-items: start;
        text-align: left;
        margin-bottom: 14px;
    }

    /* ICON COLUMN */
    .cy-footer .footer-contact li i {
        font-size: 18px;
        line-height: 1.4;
        text-align: center;
        margin-top: 2px;
    }
}


    /* Social icons center */
    .cy-footer .footer-social {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 10px;
    }

    /* Map */
    .cy-footer .footer-map iframe {
        width: 100%;
        height: 220px;
        border-radius: 10px;
    }

    /* Footer bottom */
    .cy-footer .footer-bottom {
        text-align: center;
    }
}


/* ================= EXPERTISE SECTION ================= */
.expertise-section {
    position: relative;
    background-image: url("../img/about1.jpg");
    /* <-- correct relative path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    isolation: isolate;
    /* important for overlay */
}

/* Black Transparent Overlay */
.expertise-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: -1;
}

/* Heading text color on dark bg */
.expertise-section h2,
.expertise-section p {
    color: #ffffff;
}

/* ================= CARD ================= */
.expertise-card {
    position: relative;
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 14px;
    text-align: center;
    overflow: hidden;
    border: 1px solid #e9ecef;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Gradient Border */
.expertise-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 2px;
    background: linear-gradient(135deg, #11A092, #20c997);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Light Sweep */
.expertise-card::after {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg,
            transparent 40%,
            rgba(13, 110, 253, 0.08),
            transparent 60%);
    transition: all 0.6s ease;
}

/* Hover */
.expertise-card:hover::before {
    opacity: 1;
}

.expertise-card:hover::after {
    top: 0;
    left: 0;
}

.expertise-card:hover .expertise-icon {
    box-shadow: 0 0 0 8px rgba(13, 110, 253, 0.15);
}

/* Icon */
.expertise-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    border-radius: 50%;
    border: 6px solid #11A092;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: #11A092;
    background: #ffffff;
    transition: box-shadow 0.3s ease;
}

.expertise-card h5 {
    font-weight: 600;
    margin-top: 20px;
}

.expertise-card p {
    font-size: 15px;
    color: #555;
    margin-top: 10px;
}

/* ================= MOBILE ================= */
@media (max-width: 767px) {
    .expertise-section {
        background-attachment: scroll;
    }
}






/* stats section */


/* ================= STAT CARD ================= */
.stat-card {
    position: relative;
    height: 100%;
    padding: 45px 30px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #e6ebf0;
    overflow: hidden;
    transition: color 0.35s ease, border-color 0.35s ease;
}

/* Blue Fill Layer */
.stat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #11A092;
    /* consultancy blue */
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.45s ease;
    z-index: 0;
}

/* Hover Fill */
.stat-card:hover::before {
    transform: scaleY(1);
}

/* Text stays above fill */
.stat-card * {
    position: relative;
    z-index: 1;
}

/* Text Color Change */
.stat-card:hover h5,
.stat-card:hover p {
    color: #ffffff;
}

.stat-card:hover .stat-value {
    color: #ffffff;
}

/* Featured Card Default */
.stat-card.featured {
    border-color: #11A092;
}


/* ================= VALUE ================= */
.stat-value {
    display: block;
    font-size: 56px;
    font-weight: 700;
    color: #11A092;
    margin-bottom: 10px;
}

/* ================= TEXT ================= */
.stat-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .stat-value {
        font-size: 44px;
    }

    .stat-card {
        padding: 35px 25px;
    }
}



/* case study */

/* ================= CASE STUDIES SECTION ================= */
.case-studies-section {
    padding: 90px 0;
    background: #ffffff;
}

/* Subtitle */
.case-subtitle {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #11A092;
    margin-bottom: 10px;
}

/* Title */
.case-title {
    font-size: 42px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 25px;
}

/* Text */
.case-text {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* ================= CASE CARD ================= */
.case-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.case-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* Hover effect (professional, not zoom) */
.case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* Card body */
.case-card-body {
    padding: 20px 22px;
}

.case-card-body h5 {
    font-size: 16px;
    font-weight: 600;
    color: #212529;
    margin: 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .case-title {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .case-studies-section {
        padding: 65px 0;
    }

    .case-title {
        font-size: 30px;
    }

    .case-card img {
        height: 220px;
    }
}



/* form */


/* ================= CONTACT CTA SECTION ================= */
.contact-cta-section {
    margin-top: 50px;
    margin-bottom: 50px;
    /* space after testimonials */
}

/* LEFT IMAGE */
.contact-cta-image {
    background-image: url("../img/about7.jpg");
    /* change image */
    background-size: cover;
    background-position: center;
    min-height: 520px;
}

/* RIGHT FORM AREA */
.contact-cta-form {
    background: #4a4848;
    display: flex;
    align-items: center;
    padding: 60px 70px;
}

/* FORM WRAPPER */
.form-wrapper {
    width: 100%;
    max-width: 520px;
}

/* Subtitle */
.cta-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #11A092;
    display: inline-block;
    margin-bottom: 10px;
}

/* Title */
.cta-title {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 35px;
}

/* INPUTS */
.cta-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 14px 16px;
    color: #ffffff;
    font-size: 15px;
    border-radius: 6px;
    transition: border-color 0.3s, background 0.3s;
}

.cta-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.cta-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: #11A092;
}

/* TEXTAREA */
.cta-textarea {
    resize: none;
}

/* BUTTON */
.cta-btn {
    background: #11A092;
    color: #ffffff;
    border: none;
    padding: 14px 34px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s, transform 0.3s;
}

.cta-btn:hover {
    background: #0e8a7e;
    transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .contact-cta-form {
        padding: 50px 40px;
    }

    .cta-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .contact-cta-image {
        min-height: 300px;
    }

    .contact-cta-form {
        padding: 45px 25px;
    }

    .cta-title {
        font-size: 28px;
    }
}


/* about main section */

/* ================= ABOUT SECTION ================= */
.about-section {
    background-color: #f8f9fa;
}

.about-section h2 {
    font-weight: 700;
    line-height: 1.3;
}

.about-section p {
    color: #555;
    line-height: 1.7;
}

/* IMAGE WRAPPER */
.about-img-wrapper {
    position: relative;
}

/* HIGHLIGHT BOX */
.about-highlight {
    position: absolute;
    bottom: -30px;
    left: 30px;
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    max-width: 280px;
}

.about-highlight h5 {
    font-weight: 600;
}

.about-highlight li {
    font-size: 14px;
    margin-bottom: 6px;
}

/* BOTTOM TEXT */
.about-bottom-text {
    max-width: 900px;
    margin: 0 auto;
    color: #444;
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {
    .about-highlight {
        position: static;
        margin-top: 20px;
        max-width: 100%;
    }
}


/* ================= ABOUT SECTION MOBILE CENTER FIX ================= */

@media (max-width: 768px) {

    /* Center text content */
    .container-fluid .col-lg-6 h4,
    .container-fluid .col-lg-6 p {
        text-align: center;
    }

    /* Center CTA button */
    .container-fluid .col-lg-6 .d-flex {
        justify-content: center !important;
    }
}


/* ================= WHY CHOOSE US ================= */
.why-choose-section {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 90px 20px;
}

/* CARD */
.why-card {
    position: relative;
    background: #ffffff;
    padding: 45px 30px 40px;
    border-radius: 18px;
    text-align: left;
    border-left: 5px solid var(--bs-primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
}

/* HOVER EFFECT */
.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

/* ICON BADGE */
.why-icon {
    width: 56px;
    height: 56px;
    background: var(--bs-primary);
    color: #ffffff;
    font-size: 24px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

/* TITLE */
.why-card h5 {
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
}

/* TEXT */
.why-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .why-card {
        padding: 35px 25px;
    }
}


/* service main page */
/* ================= SERVICE PAGE ================= */
.service-page {
    background: #f8f9fa;
    padding: -70px 20px;
}

.service-page1 {
    background: #f8f9fa;
    padding: -7px 20px;
}

.service-header h1 {
    font-weight: 700;
    margin-bottom: 10px;
}

.service-intro {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* ================= SERVICE BOX ================= */
/* ================= SERVICE BOX FILL HOVER ================= */
.service-box {
    position: relative;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 18px;
    border: 1px solid #e6e6e6;
    height: 100%;
    overflow: hidden;
    transition: all 0.35s ease;
    color: #555;
}

/* Hover Fill Overlay */
.service-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--bs-primary);
    /* Fill color */
    border-radius: 18px;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.35s ease;
    z-index: 0;
}

/* On hover, fill box */
.service-box:hover::after {
    transform: scaleY(1);
}

/* Text & Icon above overlay */
.service-box h4,
.service-box p,
.service-icon,
.service-number {
    position: relative;
    z-index: 1;
    transition: color 0.35s ease;
}

/* Change text/icon color on hover */
.service-box:hover h4,
.service-box:hover p,
.service-box:hover .service-icon,
.service-box:hover .service-number {
    color: #ffffff;
}

.service-box:hover .service-icon {
    background: rgba(255, 255, 255, 0.2);
    /* semi-transparent icon bg */
    color: #ffffff;
}

/* Accent Bar removed if using full fill hover */
.service-box::before {
    content: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .service-box {
        padding: 30px 25px;
    }
}

/* ICON */
.service-icon {
    width: 48px;
    height: 48px;
    background: rgba(13, 110, 253, 0.1);
    color: var(--bs-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
}

/* NUMBER */
.service-number {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--bs-primary);
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.service-box h4 {
    font-weight: 600;
    margin-bottom: 12px;
}

.service-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}


/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .service-box {
        padding: 30px 25px;
    }
}

/* Intro Image Styling */
.service-intro-img {
    max-height: 420px;
    object-fit: cover;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0d6efd;
    /* Primary color */
}




/* text logo */

/* ================= TEXT LOGO ================= */
.text-logo {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    line-height: 1;
}

.text-logo span {
    font-weight: 500;
    color: var(--bs-primary);
    /* Highlight CONSULTANCY */
    margin-left: 4px;
}

/* Hover */
.text-logo:hover {
    color: var(--bs-primary);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .text-logo {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .text-logo {
        font-size: 20px;
        letter-spacing: 0.5px;
    }
}



/* contaact main section */

.contact-section {
    background-color: #f8f9fa;
    margin-bottom: 50px;
}

.contact-info {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
}

.contact-info h5 {
    font-weight: 700;
}

.contact-info ul li {
    font-size: 16px;
    line-height: 1.8;
}

.contact-info i {
    color: #34AEA3;
}

.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    /* 16:9 Aspect ratio */
    position: relative;
    height: 0;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border: 0;
    border-radius: 12px;
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .contact-section .row {
        flex-direction: column;
    }

    .contact-info {
        margin-bottom: 20px;
    }
}


/* finance and accounting */


.consulting-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px 24px;
}

.consulting-features li {
    position: relative;
    padding-left: 28px;
    font-size: 15.5px;
    line-height: 1.7;
    color: #374151;
}

.consulting-features li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    color: #2CAB9F;
    font-weight: 700;
}

/* Mobile optimization */
@media (max-width: 600px) {
    .consulting-features {
        grid-template-columns: 1fr;
    }

    .consulting-features li {
        font-size: 15px;
    }
}


.service-scope {
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Segoe UI', sans-serif;
}

.service-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 22px;
}

.scope-heading {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px 30px;
}

.service-list li {
    position: relative;
    padding-left: 26px;
    font-size: 15.5px;
    line-height: 1.7;
    color: #374151;
}

.service-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    color: #2CAB9F;
    font-weight: 700;
}

.service-outcome {
    margin-top: 18px;
    padding: 14px 18px;
    background: #f9fafb;
    border-left: 4px solid #2CAB9F;
    font-size: 15.5px;
    color: #111827;
}

/* Mobile */
@media (max-width: 600px) {
    .service-intro {
        font-size: 15px;
    }

    .scope-heading {
        font-size: 20px;
    }

    .service-list {
        grid-template-columns: 1fr;
    }
}


/* MAIN SECTION */
.consulting-tabs {
    max-width: 1200px;
    margin: 80px auto;
    /* MORE TOP & BOTTOM SPACE */
    padding: 0 15px;
    font-family: 'Segoe UI', sans-serif;
}

/* FLEX CONTAINER */
.tabs-container {
    display: flex;
    gap: 40px;
    /* MORE BREATHING SPACE */
    align-items: stretch;
}

/* LEFT TAB MENU */
.tab-menu {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    /* SPACE BETWEEN TABS */
}

/* TAB BUTTON */
.tab-link {
    background: linear-gradient(135deg, #f9fafb, #ffffff);
    border: none;
    padding: 18px 22px;
    text-align: left;
    font-size: 15.8px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

/* LEFT ACCENT BAR */
.tab-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #2cab9f;
    transform: scaleY(0);
    transition: transform 0.35s ease;
}

/* HOVER EFFECT */
.tab-link:hover {
    transform: translateX(6px);
    /* SLIDE EFFECT */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

.tab-link:hover::before {
    transform: scaleY(1);
}

/* ACTIVE TAB */
.tab-link.active {
    background: #ffffff;
    color: #111827;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

.tab-link.active::before {
    transform: scaleY(1);
}

/* RIGHT CONTENT AREA */
.tab-content-area {
    width: 70%;
    background: #ffffff;
    padding: 42px;
    /* MORE INNER SPACE */
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    min-height: 420px;
}

/* TAB CONTENT */
.tab-content {
    display: none;
    animation: fadeSlide 0.45s ease-in-out;
}

.tab-content.active {
    display: block;
}

/* HEADINGS */
.tab-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #111827;
    position: relative;
}

.tab-content h3::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #2cab9f;
    display: block;
    margin-top: 8px;
}

/* PARAGRAPH */
.tab-content p {
    font-size: 15.8px;
    line-height: 1.9;
    color: #374151;
    margin-bottom: 18px;
}

/* LIST */
.tab-content ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.tab-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 15.8px;
    color: #374151;
}

/* CHECK ICON */
.tab-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    color: #2cab9f;
    font-weight: bold;
    font-size: 14px;
}

/* ANIMATION */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .tabs-container {
        flex-direction: column;
    }

    .tab-menu,
    .tab-content-area {
        width: 100%;
    }

    .tab-link {
        transform: none !important;
    }

    .tab-content-area {
        padding: 28px;
    }
}

@media (max-width: 768px) {
    .tabs-container {
        flex-direction: column;
        /* stack vertically */
    }

    /* Make sure tab menu comes first */
    .tab-menu {
        order: 1;
        margin-bottom: 20px;
        /* space between tabs and content */
    }

    .tab-content-area {
        order: 2;
    }
}


.offshore-model {
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
    background: #f9fafb;
}

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

.carousel-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 24px 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.card-icon {
    font-size: 36px;
    color: #2CAB9F;
    margin-bottom: 18px;
}

.carousel-card h3 {
    font-size: 18px;
    color: #111827;
    margin-bottom: 12px;
}

.carousel-card p {
    font-size: 15.5px;
    color: #374151;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 1024px) {
    .carousel-card {
        padding: 20px 16px;
    }
}

@media (max-width: 768px) {
    .carousel-card {
        padding: 18px 14px;
    }
}


/* process Outsourcing */

.process-outsourcing {
    padding: 60px 20px;
    background: #f9fafb;

}

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

.process-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.process-row.reverse {
    flex-direction: row-reverse;
}

.process-text {
    flex: 1;
}

.process-text h3 {
    font-size: 22px;
    color: #111827;
    margin-bottom: 15px;
}

.process-text p,
.process-text ul {
    font-size: 15.5px;
    color: #374151;
    line-height: 1.8;
}

.process-text ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.process-text ul li {
    position: relative;
    margin-bottom: 10px;
}

.process-text ul li::before {
    content: "✔";
    position: absolute;
    left: -20px;
    color: #2CAB9F;
    font-weight: bold;
}

.process-image {
    flex: 0.5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.process-image img:hover {
    transform: scale(1.03);
}

/* Mobile */
@media (max-width: 992px) {

    .process-row,
    .process-row.reverse {
        flex-direction: column;
    }

    .process-image {
        margin-bottom: 20px;
    }
}


/* ================= MOBILE ORDER FIX ================= */
@media (max-width: 767px) {

    .process-row {
        display: flex;
        flex-direction: column;
    }

    /* Heading always first */
    .process-row h3 {
        order: 1;
        margin-bottom: 12px;
    }

    /* Image second */
    .process-row .process-image {
        order: 2;
        margin-bottom: 16px;
    }

    /* Text & lists third */
    .process-row .process-text {
        order: 3;
    }

    /* Reverse rows behave SAME on mobile */
    .process-row.reverse {
        flex-direction: column;
    }
}

/* home-   */

/* ============ CONTAINER ============ */
.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* ============ ROW ============ */
.row-custom {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

/* ============ IMAGE COLUMN ============ */
.col-image {
    flex: 1 1 50%;
    min-width: 300px;
}

.image-wrapper {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.responsive-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

/* ============ CONTENT COLUMN ============ */
.col-content {
    flex: 1 1 50%;
    min-width: 300px;
}

.section-title {
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #555555;
}

.section-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333333;
}

/* ============ BUTTON ============ */
.btn-wrapper {
    margin-top: 10px;
}

.btn-custom {
    display: inline-block;
    padding: 12px 28px;
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-custom:hover {
    background-color: #0056b3;
}

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 991px) {
    .row-custom {
        flex-direction: column-reverse;
    }

    .col-image, .col-content {
        flex: 1 1 100%;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .btn-custom {
        width: 100%;
        text-align: center;
        padding: 12px 0;
    }
}
