/* Banner Section */
.banner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px 70px;
    background: url("../images/banner-background.png") no-repeat center/cover;
    gap: 40px;
    position: relative;
    z-index: 0;
}

/* ================= WOW GLASS CARD ================= */
.banner-left {
    flex: 1;
    max-width: 45%;
    padding: 45px 35px;
    color: #fff;

    position: relative;
    background: rgba(15, 30, 60, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 20px;
    backdrop-filter: blur(10px) saturate(220%);
    -webkit-backdrop-filter: blur(10px) saturate(220%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.4s ease;
    z-index: 1;
}

/* Liquid shimmer background */
.banner-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-radial-gradient(circle at 20% 30%,
            rgba(255, 255, 255, 0.15) 0px,
            transparent 80px),
        repeating-radial-gradient(circle at 80% 70%,
            rgba(255, 255, 255, 0.15) 0px,
            transparent 100px);
    background-size: 200% 200%;
    filter: blur(10px);
    animation: liquidWave 12s ease-in-out infinite;
    opacity: 0.6;
    z-index: 0;
    /*moved behind content */
    pointer-events: none;
    /* don’t block clicks */
}

/* Light sweep highlight */
.banner-left::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -100%;
    width: 250%;
    height: 200%;
    background: linear-gradient(120deg,
            transparent 30%,
            rgba(255, 255, 255, 0.15) 50%,
            transparent 70%);
    animation: shineSweep 6s linear infinite;
    opacity: 0.25;
    z-index: 0;
    /*  moved behind content */
    pointer-events: none;
    /* don’t block clicks */
}

/*  flowing waves */
@keyframes liquidWave {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/*  sweeping shine */
@keyframes shineSweep {
    0% {
        transform: translateX(-100%) rotate(15deg);
    }

    100% {
        transform: translateX(100%) rotate(15deg);
    }
}

/*  3D hover tilt */
.banner-left:hover {
    transform: rotateY(6deg) rotateX(3deg) scale(1.02);
}

/* ================= RIGHT CARD ================= */
.banner-card {
    position: relative;
    padding: 15px;
    width: 100%;

    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px) saturate(200%);
    -webkit-backdrop-filter: blur(10px) saturate(200%);
    box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.15),
        0 15px 40px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

/* shimmering light sweep */
.banner-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -100%;
    width: 250%;
    height: 200%;
    background: linear-gradient(120deg,
            transparent 30%,
            rgba(255, 255, 255, 0.6) 50%,
            transparent 70%);
    animation: shineSweep 5s infinite;
}

@keyframes shineSweep {
    0% {
        transform: translateX(-100%) rotate(15deg);
    }

    100% {
        transform: translateX(100%) rotate(15deg);
    }
}

/* ================= TEXTS INSIDE LEFT CARD ================= */
.banner-left h1 {
    font-size: 55px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.banner-left p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.btn-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #ffffff;
    padding: 8px 20px;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

/* liquid background */
.btn-light::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    /* start hidden */
    width: 100%;
    height: 100%;
    background: #fff;
    transition: left 0.4s ease-in-out;
    z-index: -1;
}

/* keep text above */
.btn-light span {
    position: relative;
    z-index: 1;
}

/* hover effect */
.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    color: #002b66;
}

.btn-light:hover::before {
    left: 0;
    /* slide background in */
}


.accreditations {
    margin-top: 25px;
}

.accreditations img {
    height: 60px;
    margin-right: 18px;
    background: #fff;
    border-radius: 8px;
    padding: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* ================= RIGHT SIDE LAYOUT ================= */
.banner-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.banner-card img {
    width: 100%;
    border-radius: 15px;
    display: block;
}

/* ================= FEATURES ================= */
.features {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 18px;
}

.feature-box {
    flex: 1;
    background: #f7a400;
    color: #000;
    text-align: center;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    font-weight: bold;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-box:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.feature-box img {
    height: 48px;
    margin-bottom: 5px;
}

.feature-box p {
    font-size: 14px;
    line-height: 1.3;
}

/* *************************** Section 2 */
.accreditations-section {
    background: #f5a000;
    width: 90%;
    margin: 2% auto;
    /* orange shade */
    padding: 10px;
    border-radius: 20px;
    color: #000;
}


.accreditations img {
    height: 120px;
}

.accreditations-container {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 7%;
}

.accreditations-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    object-fit: cover;
}

.accreditations-logos {
    display: flex;
    gap: 20px;
}

.logo-box {
    background: #fff;
    padding: 16px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo-box img {
    max-width: 120px;
    height: auto;
}

.accreditations-text {
    flex: 1;
}

.accreditations-text h2 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: bold;
}

.accreditations-text ul {
    list-style: disc;
    padding-left: 20px;
}

.accreditations-text ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.accreditations-text ul li a {
    color: #000;
    text-decoration: underline;
}


/* ******************** About us section ******************** */
.spark-analytical-section {
    background: #000;
    padding: 2%;
    width: 100%;
    position: relative;
    display: flex;
}

.left-right-con {
    display: flex;
    width: 95%;
    margin: auto;
}

/* Content column */
.spark-analytical-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* max-width: 58%; */
    max-height: 450px;
    background: #fff;
    border-radius: 40px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    box-shadow: none;
    padding: 20px;
    z-index: 1;
}

.spark-analytical-content h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #232323;
    letter-spacing: 0.2px;
}

.spark-analytical-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #373737;
    margin-bottom: 10px;
    font-weight: 500;
}

.spark-analytical-content ul {
    margin-left: 19px;
    margin-bottom: 30px;
}

.spark-analytical-content ul li {
    font-size: 1.18rem;
    color: #232323;
    margin-bottom: 4px;
    list-style-type: disc;
}

/* Button style */
.spark-btn {
    display: flex;
    align-items: center;
    padding: 5px 12px;
    color: #f5a000;
    background: #fff;
    border: 1px solid #f5a000;
    border-radius: 0.5rem;
    font-size: 14px;
    text-decoration: none;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    width: fit-content;
    transition: color 0.3s ease;
    z-index: 1;
}

/* liquid background effect */
.spark-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #f5a000;
    transition: left 0.4s ease-in-out;
    z-index: -1;
}

/* text color change */
.spark-btn:hover {
    color: #fff;
}

/* animate background slide */
.spark-btn:hover::before {
    left: 0;
}

/* Image column */
.spark-analytical-image {
    flex-basis: 41%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    z-index: 3;
    transform: translateX(-40px);
}

.spark-analytical-image img {
    border-radius: 37px;
    width: 100%;
    max-width: 670px;
    min-width: 380px;
    box-shadow: 0 4px 40px rgba(47, 40, 24, 0.11);
    object-fit: cover;
}

.spark-analytical-image::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 260px;
    height: 16px;
    border-bottom: 4px solid #f5a000;
    border-right: 4px solid #f5a000;
    border-radius: 0 0 54px 0;
    z-index: 4;
}

/* Responsive Improvements */
@media (max-width: 1100px) {
    .spark-analytical-section {
        flex-direction: column;
        max-width: 96vw;
        width: 96vw;
        min-height: unset;
        padding: 36px 10vw 20px 10vw;
    }

    .spark-analytical-content {
        margin-right: 0;
        max-width: 100%;
    }

    .spark-analytical-image img {
        min-width: 180px;
        max-width: 96vw;
        margin: 0 auto;
    }
}

.services-section {
    background: transparent;
    padding: 0;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.services-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #232323;
    margin: 20px 0 10px;
}

.services-desc {
    text-align: center;
    font-size: 14px;
    color: #232323;
    margin-bottom: 20px;
    font-weight: 500;
    width: 85%;
    margin: auto;
    padding-bottom: 15px;
}

/* ===== Main Tabs ===== */
.main-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.main-tab {
    padding: 5px 10px;
    border: 1px solid #000;
    background: #fff;
    cursor: pointer;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
}

.main-tab.active {
    background: #ffe7b2;
}

/* ===== Sub Tabs ===== */
.sub-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
    background: #ffe6b3;
    border-radius: 12px;
    padding: 8px 18px;
    width: fit-content;
    margin: 0 auto;
}

.sub-tab {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0px 8px;
    font-size: 14px;
    font-weight: 700;
}

.sub-tab.active {
    border-bottom: 2.5px solid #232323;
}

/* ===== Cards ===== */
.service-card {
    background: #fff;
    border-radius: 20px;
    border: 1.8px solid #f5a000;
    margin: 12px;
    padding: 20px;
    min-height: 200px;
    min-width: 280px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: auto;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #f5a000;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.service-card p {
    font-size: 14px;
    line-height: 1.45;
    color: #232323;
    font-weight: 500;
    text-align: left;
}

/* ===== Carousel ===== */
.carousel-track {
    display: flex;
}

.services-carousel {
    position: relative;
    max-width: 100%;
    margin: auto;
}

/* Dots */
.services-carousel-nav {
    display: flex;
    gap: 8px;
    margin-top: 0;
    justify-content: flex-start;
    padding: 15px;
}

.carousel-dot {
    width: 22px;
    height: 8px;
    border-radius: 10px;
    background: #f5a000;
    opacity: 0.25;
    cursor: pointer;
}

.carousel-dot.active {
    opacity: 1;
}

/* Arrows */
.carousel-arrows {
    position: absolute;
    right: 30px;
    bottom: 3px;
    display: flex;
    gap: 18px;
}

.arrow-left,
.arrow-right {
    font-size: 1.8rem;
    cursor: pointer;
    color: #232323;
}

.btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

/* Main button */
.primary-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #f5a000;
    background: transparent;
    border: 1px solid #f5a000;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

/* liquid effect background */
.primary-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    /* start hidden on the left */
    width: 100%;
    height: 100%;
    background: #f5a000;
    transition: left 0.4s ease-in-out;
    z-index: -1;
}

/* keep text above */
.primary-btn span {
    position: relative;
    z-index: 1;
}

/* hover state */
.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    color: #fff;
}

/* animate background on hover */
.primary-btn:hover::before {
    left: 0;
    /* move into place from left to right */
}



/************************************* Gallery Section  **************/
.gallery-section {
    position: relative;
    text-align: center;
    padding: 60px 40px 40px 40px;
    background-color: #000;
    overflow: visible;
}

.gallery-section h1 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #f5a000;
    font-weight: 700;
    letter-spacing: 2px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 28px 30px;
    padding: 0 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    border-radius: 32px;
    box-shadow: 0 3px 18px rgb(244 178 53 / 0.35);
    transition: transform 0.35s ease;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 32px;
    object-fit: cover;
}

.gallery-item:hover {
    transform: scale(1.04);
}

.gallery-section::before,
.gallery-section::after {
    content: '';
    position: absolute;
    border: 3.5px solid #f5a000;
    box-sizing: border-box;
    z-index: 1;
}

.gallery-section::before {
    top: 100px;
    left: 50px;
    width: 140px;
    height: 43px;
    border-radius: 60px 0 0 0px;
    border-right: none;
    border-bottom: none
}

.gallery-section::after {
    bottom: 44px;
    right: 50px;
    width: 170px;
    height: 35px;
    border-radius: 0 0px 60px 0;
    border-left: none;
    border-top: none;
    bottom: 10px;
}

/***************************************************** Review  Container *************************/
.google-review-section {
    background: #000;
    padding: 30px;
    /* border-radius: 15px; */
    color: #fff;
    position: relative;
    overflow: hidden;
    /* ensures the glow doesn’t overflow */
}

.google-review-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    /* adjust thickness of glow */
    background: linear-gradient(to bottom, rgba(255, 204, 0, 0) 0%, rgba(255, 204, 0, 0.4) 100%);
    /* border-radius: 0 0 15px 15px; */
    /* match parent radius */
    pointer-events: none;
}

/* Header Bar */
.rating-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.rating-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.google-logo {
    height: 28px;
}

.rating-text {
    font-size: 20px;
    font-weight: 600;
}

.rating-right {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.rating-score {
    font-weight: bold;
    font-size: 18px;
}

.stars {
    color: #ffcc00;
    font-size: 18px;
}

.view-all-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffcc00;
    padding: 6px 18px;
    border-radius: 12px;
    color: #ffcc00;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

/* liquid background */
.view-all-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    /* start hidden */
    width: 100%;
    height: 100%;
    background: #ffcc00;
    transition: left 0.4s ease-in-out;
    z-index: -1;
}

/* keep text above */
.view-all-btn span {
    position: relative;
    z-index: 1;
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    color: #000;
}

.view-all-btn:hover::before {
    left: 0;
    /* slide background in from left to right */
}

.slick-slide {
    /* display: none; */
    float: left;
    height: 230px !important;
    min-height: 1px;
}

/* Review Card */
.review-card {
    background: #fff;
    color: #000;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
    height: 250px;
    width: 200px;
    margin: 5px;
    overflow: auto;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reviewer-img {
    border-radius: 50%;
    width: 45px;
    height: 45px;
}

.reviewer-info {
    flex: 1;
    /* margin-left: 10px; */
}

.reviewer-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

.review-time {
    font-size: 12px;
    color: gray;
}

.google-icon {
    height: 18px;
}

.review-stars {
    color: #ffcc00;
    font-size: 16px;
    margin: 10px 0;
}

.review-text {
    font-size: 14px;
    line-height: 1.5;
}

/* Footer container */
.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding: 0 20px;
}

/* --- Custom Dots --- */
.review-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.review-dots .review-dot {
    width: 8px;
    height: 8px;
    background: #888;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.review-dots .review-dot.active {
    width: 24px;
    height: 8px;
    background: #ff9900;
    border-radius: 12px;
}

/* --- Custom Arrows --- */
.review-arrows {
    display: flex;
    gap: 24px;
}

.review-arrow {
    font-size: 1.6rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #ffcc00;
    transition: color 0.3s ease;
}

.review-arrow:hover {
    color: #ffaa00;
}