/********** 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;
}


/*** 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: 16px;
    padding: 10px 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;
    }
}

/* 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;
}

/*** 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;
}


/*** 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;
}



.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 ================= */
.flip-card {
    perspective: 1200px;
    width: 100%;
    height: 360px;
    /* SAME HEIGHT FOR ALL */
}

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

/* Vertical Flip */
.flip-top:hover .flip-card-inner {
    transform: rotateX(-180deg);
}

.flip-bottom:hover .flip-card-inner {
    transform: rotateX(180deg);
}

/* ================= CARD FACES ================= */
.flip-card-front,
.flip-card-back {
    position: absolute;
    inset: 0;
    border-radius: 14px;
    overflow: hidden;
    backface-visibility: hidden;
}

/* ================= FRONT SIDE ================= */
.flip-card-front {
    position: relative;
    background: #000;
}

.flip-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* KEY FIX */
}

/* Dark Overlay */
.flip-card-front::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* ================= FRONT TITLE CENTER ================= */
.flip-card-front h5 {
    position: absolute;
    inset: 0;
    /* fills the card */
    display: flex;
    align-items: center;
    /* vertical center */
    justify-content: center;
    /* horizontal center */

    margin: 0;
    padding: 20px;
    text-align: center;

    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    z-index: 2;
    background: transparent;
}

/* ================= BACK SIDE ================= */
.flip-card-back {
    transform: rotateX(180deg);
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 25px;
    text-align: center;

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

/* Dark Overlay on Back */
.flip-card-back::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 0;
}

.flip-card-back h5,
.flip-card-back p,
.flip-card-back a {
    position: relative;
    z-index: 1;
}

.flip-card-back h5 {
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 600;
}

.flip-card-back p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-height: 95px;
    /* SAME CONTENT HEIGHT */
    overflow: hidden;
}

/* ================= BUTTON ================= */
.flip-card-back .btn {
    font-size: 13px;
    padding: 6px 18px;
}

/* ================= MOBILE / TABLET ================= */
@media (max-width: 768px) {
    .flip-card {
        height: 320px;
    }

    .flip-card-back p {
        max-height: none;
    }
}



/*** 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;
}


/*** 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;
    }
}


/* ================= 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%;
    }
}
/* ================= 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;
    }
}
