/* ------------------------------------------------
  Project:   Nexify - Multipurpose HTML5 Template
  Author:    ThemeHt
------------------------------------------------ */

/* ------------------------
    Table of Contents

  1. General
  2. Typography
  3. Text color
  4. Background color
  5. Banner Slider
  6. List Icon
  7. Contact Form
  8. Extra
  9. Responsive Css
------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&amp;display=swap');

:root {
    --themeht-primary-color: #c93357;
    --themeht-secondary-color: #005fba;
    --themeht-text-color: #233050;
    --themeht-body-color: #4f4f4f;
    --themeht-white-color: #FFFFFF;
    --themeht-bg-dark-color: #000229;
    --themeht-bg-light-color: #F7F9FE;
    --themeht-border-light-color: #E5E5E5;
    --themeht-rgba-color: rgba(255, 255, 255, 0.9);
    --themeht-typography-body-font-family: "Nunito", serif;
}

/* ------------------------
    General
------------------------*/

body {
    scroll-behavior: smooth;
    font-family: var(--themeht-typography-body-font-family);
    font-weight: 600;
    font-style: normal;
    font-size: 17px;
    line-height: 30px;
    color: var(--themeht-body-color);
    overflow-x: hidden;
}

.page-wrapper {
    overflow-x: hidden;
}

/* ------------------------
    Typography
------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    margin-top: 0px;
    text-transform: capitalize;
    font-style: normal;
    margin-bottom: 20px;
    color: var(--themeht-text-color);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

.h1,
h1 {
    font-size: 70px;
    line-height: 80px;
    font-weight: 700;
}

.h2,
h2 {
    font-size: 44px;
    line-height: 54px;
    font-weight: 700;
}

.h3,
h3 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
}

.h4,
h4 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
}

.h5,
h5 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
}

.h6,
h6 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
}

ul {
    margin-left: 0;
}


label {
    display: inline-block;
    font-weight: 700;
    color: var(--themeht-text-color);
    font-size: 16px;
    margin-bottom: 7px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1320px;
    }
}

/* ------------------------
    Helper class
------------------------*/
p {
    line-height: 1.7;
}

.lead {
    font-weight: normal;
    font-size: 17px;
    line-height: 30px;
}

.z-index-0 {
    z-index: 0;
    position: relative;
}

.z-index-1 {
    z-index: 1;
    position: relative;
}

section {
    padding: 50px 0 60px;
    position: relative;
}

.rounded {
    border-radius: 24px !important;
}


/* ------------------------
    Text color
------------------------*/
.text-theme {
    color: var(--themeht-primary-color);
}

.text-black {
    color: var(--themeht-text-color) !important;
}

.text-grey {
    color: var(--themeht-body-color);
}

.text-muted {
    color: #979797 !important;
}


/* ------------------------
    Background color
------------------------*/
.white-bg {
    background-color: var(--themeht-white-color) !important;
}

.dark-bg {
    background-color: #001e39;
}

.light-bg {
    background-color: var(--themeht-bg-light-color);
}

.primary-bg {
    background-color: var(--themeht-primary-color);
}

.secondary-bg {
    background-color: var(--themeht-secondary-color);
}

.transparent-bg {
    background-color: inherit !important;
}

.grediant-bg {
    background-image: linear-gradient(180deg, #EBE5FF6B 0%, #EBE5FF1A 100%);
}

.border-light {
    border-color: var(--themeht-border-light-color) !important
}

/* ------------------------
    Banner
------------------------*/
[data-bg-img] {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.banner {
    padding: 180px 0 158px;
    position: relative;
    z-index: 9;
}

.banner p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0;
    max-width: 90%;
}

.text-white h1,
.text-white p {
    color: var(--themeht-white-color)
}

.banner-1 h1 span {
    text-decoration: underline;
    color: var(--themeht-primary-color);
}

.banner h6 {
    font-size: 16px;
    color: #0060ba;
    margin-bottom: 10px;
}

.banner-1 {
    background-image: url(../images/bg/5.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner-1:before {
    background-image: url(../images/bg/03.webp);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: auto;
    opacity: .58;
    transition: background .3s, border-radius .3s, opacity .3s;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 110%;
    height: 100%;
    z-index: -9;
    animation: zoom-fade 5s infinite linear;
}

.banner-1 .banner-img .img1 {
    position: absolute;
    left: -66px;
    top: -62px;
    z-index: 9;
    margin-right: 0;
    width: 100%;
}

.banner-shape-bottom {
    position: absolute;
    bottom: -45px;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: -1;
}

.banner-shape-bottom svg {
    width: 100%;
}

.banner-shape-bottom svg path {
    fill: var(--themeht-white-color);
}

.topBottom {
    animation: topBottom 5s infinite;
}

.themeht-btn+.themeht-btn {
    margin-left: 20px;
}

.banner-2 {
    background-image: linear-gradient(180deg, #fff 10.18%, #FFEFEF85 100%);
    padding: 200px 0 120px;
}

.banner-2 h6 {
    color: var(--themeht-text-color);
}

.banner-2 h6 span {
    background: var(--themeht-primary-color);
    display: inline-block;
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1;
    color: var(--themeht-white-color);
    margin-right: 10px;
}

.banner-2 h1 span {
    font-weight: 700;
    margin-bottom: 0;
    background: linear-gradient(90deg, var(--themeht-primary-color) 20%, var(--themeht-secondary-color) 100%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-2 .banner-img2 {
    position: absolute;
    right: 0;
    bottom: 0
}

.banner-2 .banner-img {
    margin-right: -5vw;
}

.banner-3 {
    padding: 200px 0 120px;
}

.banner-3 h6 {
    color: var(--themeht-text-color);
    border: 1px solid var(--themeht-border-light-color);
    display: inline-block;
    padding: 6px 12px 6px 6px;
    border-radius: 4px
}

.banner-3 h6 span {
    background: var(--themeht-primary-color);
    display: inline-block;
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1;
    color: var(--themeht-white-color);
    margin-right: 10px;
}

.banner-3 h1 span {
    font-weight: 700;
    margin-bottom: 0;
    background: linear-gradient(90deg, var(--themeht-primary-color) 20%, var(--themeht-secondary-color) 100%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-3 .banner-img {
    width: 600px;
    height: 600px;
    background-size: cover;
    clip-path: polygon(94.33013% 47.5%, 94.69846% 48.2899%, 94.92404% 49.13176%, 95% 50%, 94.92404% 50.86824%, 94.69846% 51.7101%, 94.33013% 52.5%, 74.33013% 87.14102%, 73.83022% 87.85495%, 73.21394% 88.47124%, 72.5% 88.97114%, 71.7101% 89.33948%, 70.86824% 89.56505%, 70% 89.64102%, 30% 89.64102%, 29.13176% 89.56505%, 28.2899% 89.33948%, 27.5% 88.97114%, 26.78606% 88.47124%, 26.16978% 87.85495%, 25.66987% 87.14102%, 5.66987% 52.5%, 5.30154% 51.7101%, 5.07596% 50.86824%, 5% 50%, 5.07596% 49.13176%, 5.30154% 48.2899%, 5.66987% 47.5%, 25.66987% 12.85898%, 26.16978% 12.14505%, 26.78606% 11.52876%, 27.5% 11.02886%, 28.2899% 10.66052%, 29.13176% 10.43495%, 30% 10.35898%, 70% 10.35898%, 70.86824% 10.43495%, 71.7101% 10.66052%, 72.5% 11.02886%, 73.21394% 11.52876%, 73.83022% 12.14505%, 74.33013% 12.85898%);
}

.banner-3 .banner-img2 {
    animation: rotate 10s infinite linear;
    position: absolute;
    left: 0;
    top: 0;
    background: red;
    z-index: -1;
    width: 600px;
    height: 600px;
    background-size: cover;
    clip-path: polygon(50% 1.25%, 9.9% 20.56%, 0% 63.95%, 27.75% 98.75%, 72.25% 98.75%, 100% 63.95%, 90.1% 20.56%);
}

.banner-4 h1 {
    text-transform: inherit;
}


/* ------------------------
    Error
------------------------*/
.error-path {
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: dash 5s linear alternate infinite;
}

.error-path path {
    stroke: var(--themeht-primary-color)
}

.error-path path:nth-child(2) {
    stroke: var(--themeht-primary-color)
}

.error-path path:nth-child(3) {
    stroke: var(--themeht-secondary-color)
}


/* ------------------------
    Timeline
------------------------*/
.main-timeline:before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: var(--themeht-border-light-color);
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
}

.timeline_item {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
}

.timeline-order-1 {
    order: 3;
}

.timeline-order-2 {
    order: 2;
    left: 20px;
}

.timeline-order-3 {
    order: 1;
}

.main-timeline .timeline-icon {
    width: 40px;
    height: 40px;
    position: relative;
    right: 20px;
    font-size: 30px;
    background: var(--themeht-white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--themeht-primary-color);
    border-radius: 50%;
    z-index: 9;
}

.main-timeline .date-content {
    width: 50%;
    position: relative;
}

.main-timeline .date-content:before {
    content: "";
    width: 50%;
    height: 1px;
    background: var(--themeht-border-light-color);
    margin: auto 0;
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
}

.main-timeline .timeline-order-1:before {
    content: "";
    width: 50%;
    height: 1px;
    background: var(--themeht-border-light-color);
    position: absolute;
    padding-right: 30px;
    margin-right: 50% !important;
}

.main-timeline .date {
    display: flex;
    line-height: 1;
    font-weight: 700;
    font-size: 30px;
    color: var(--themeht-white-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    align-items: center;
    justify-content: center;
    background: var(--themeht-primary-color);
    border-radius: 50%;
    width: 125px;
    height: 125px;
    z-index: 1;
}

.main-timeline .timeline-content {
    padding: 20px 20px;
}


@media (max-width:640px) {
    .timeline {
        flex-direction: column !important;
    }

    .main-timeline:before {
        margin-left: 1px;
    }

    .main-timeline .timeline-icon {
        margin: auto 2px;
    }

    .main-timeline .timeline-content {
        padding: 40px 30px;
    }

    .timeline-order-1 {
        order: 2;
    }

    .timeline-order-2 {
        order: 1;
        left: -1em;
    }

    .timeline-order-3 {
        order: 3;
    }

    .timeline-order-1b {
        order: 2;
    }

    .timeline-order-2b {
        order: 1;
        left: -1em;
    }

    .timeline-order-3b {
        order: 3;
    }

    .main-timeline .timeline-order-1:before {
        width: 100%;
    }

    .main-timeline .timeline-order-1b:before {
        width: 100%;
    }

    .main-timeline .timeline-order-1b:before {
        content: "";
        width: 100%;
        height: 2px;
        background: var(--themeht-border-light-color);
        position: absolute;
        top: 0;
        padding-right: 30px;
        bottom: 0;
        margin-right: 50% !important;
    }

    .main-timeline .date {
        width: 70px;
        height: 70px;
    }
}

@media (max-width:350px) {
    .timeline-icon {
        visibility: hidden;
    }

    .main-timeline .date-content:before {
        visibility: hidden;
    }

    .date-content {
        left: -15px;
    }
}


/* ------------------------
    Video
------------------------*/
.video-btn {
    display: flex;
    align-items: center;
}

.video-btn-icon {
    position: relative;
    display: inline-block;
    z-index: 9;
}

.video-btn-icon>i {
    color: var(--themeht-primary-color);
    font-size: 30px;
}

.video-btn span {
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    color: var(--themeht-text-color);
    margin-left: 10px;
    flex-shrink: 0
}

.video-btn.style-2 {
    position: relative;
    display: inline-block;
}

.video-btn.style-2 .play-btn {
    animation: ripple-white 1s linear infinite;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    position: relative;
}

.video-btn.style-2 .play-btn i {
    font-size: 34px;
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    color: var(--themeht-white-color);
    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.2s ease-out !important;
    transform: translate3d(-50%, -50%, 0);
}


/* ------------------------
    List Icon
------------------------*/
.list-icon.style-1 li {
    position: relative;
    display: flex;
    margin-bottom: 11px;
    align-items: center;
}

.list-icon.style-1 li:last-child {
    margin-bottom: 0
}

.list-icon.style-1 li i {
    color: #0171dc;
    font-size: 20px;
    line-height: 1;
    margin-right: 10px;
    flex-shrink: 0;
}

.list-icon.style-2 li {
    position: relative;
    display: flex;
    margin-bottom: 15px;
    align-items: center;
}

.list-icon.style-2 li:last-child {
    margin-bottom: 0
}

.list-icon.style-2 li i {
    color: var(--themeht-primary-color);
    font-size: 20px;
    line-height: 1;
    margin-right: 10px;
}


/* ------------------------
 Marquee Text
------------------------*/
.marquee-wrap {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: block;
}

.marquee-text {
    animation: marquee 40s linear infinite;
    position: relative;
    width: 100%;
    white-space: nowrap;
}

.marquee-text span {
    font-size: 200px;
    line-height: 200px;
    margin: 0 30px;
    color: var(--themeht-text-color);
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 13.36px 8.896px #c4b59d, 0 -2px 1px #fff;
}

.marquee-text span:nth-child(2n+2) {
    color: var(--themeht-white-color);
    text-shadow: -1px -1px 0 var(--themeht-text-color), 1px -1px 0 var(--themeht-text-color), -1px 1px 0 var(--themeht-text-color), 1px 1px 0 var(--themeht-text-color);
}

.marquee-wrap:before {
    position: absolute;
    right: 0;
    top: 0;
    width: 30%;
    height: 100%;
    content: "";
    z-index: 9;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 1%, rgba(255, 255, 255, 1) 98%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c4ef17', endColorstr='#c4ef17', GradientType=1);
}

.marquee-wrap:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 30%;
    height: 100%;
    content: "";
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 99%, rgba(255, 255, 255, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c4ef17', endColorstr='#c4ef17', GradientType=1);
}


/* ------------------------
    Countdown
------------------------*/
.countdown {
    margin: 50px 0;
    padding: 50px 0;
    display: table;
    width: 100%;
    border-top: 2px dashed var(--themeht-border-light-color);
    border-bottom: 2px dashed var(--themeht-border-light-color);
}

.countdown>li {
    font-weight: 700;
    text-align: center;
    list-style-type: none;
    display: table-cell;
    width: auto;
}

.countdown>li span {
    font-size: 70px;
    font-weight: 700;
    line-height: 60px;
    display: inline-block;
}

.countdown>li p {
    font-size: 20px;
    display: inline-block;
    line-height: 30px;
    margin-bottom: 0;
    color: var(--themeht-text-color);
}

.coming-soon .subscribe-form {
    margin: 0 auto;
}


/* ------------------------
 Shape & Animation
------------------------*/
.dash-img-box {
    background: var(--themeht-white-color);
    padding: 20px;
    border-radius: 24px;
    position: relative;
    margin-left: 5%;
    margin-right: 5%;
}

.dash-img-box::before {
    content: "";
    height: 20px;
    width: 110%;
    position: absolute;
    bottom: -1px;
    background: var(--themeht-white-color);
    left: -5%;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.dash-box {
    margin-left: -250px
}

.dash-box.right {
    margin-left: inherit;
    margin-right: -250px
}

.animated-icon-shape {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: -1;
}

.small-circle-animation {
    animation: small-animation 2s infinite linear;
    position: absolute;
}

.animated-icon-shape img:nth-child(1) {
    left: 6%;
    top: 10%;
}

.animated-icon-shape img:nth-child(2) {
    left: 2%;
    bottom: 15%;
    animation: small-animation2 2s infinite linear;
}

.animated-icon-shape img:nth-child(3) {
    right: 6%;
    top: 5%;
    animation: small-animation2 2s infinite linear;
}

.animated-icon-shape img:nth-child(4) {
    right: 2%;
    bottom: 20%;
}

.animated-icon-shape.style-2 img:nth-child(2) {
    left: auto;
    right: 2%;
    bottom: 20%;
}

#particles-js {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.link-about {
    border: 1px solid var(--themeht-border-light-color);
    border-radius: 4px;
    padding: 20px 30px 20px 20px;
}

.link-about span {
    padding: 5px 15px;
    background-color: var(--themeht-bg-dark-color);
    border-radius: 4px;
    color: var(--themeht-white-color);
    margin-right: 10px
}

.link-about a {
    color: var(--themeht-primary-color);
    margin-left: 10px;
    font-weight: 700;
    text-decoration: underline !important;
}

.lg-title-wrap {
    text-align: center;
}

.text-large {
    font-size: 250px;
    font-weight: 900;
    line-height: 1;
    color: #ebe5ff;
}

.image-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.testimonial-sec-bg {
    background-image: url("../images/bg/05.webp");
    background-position: 66% 87%;
    background-repeat: no-repeat;
    background-size: 1460px 1260px;
}

.testimonial-sec-bg.style-2 {
    background-position: 96% 70%;
    background-size: 1170px 1260px;
}

.sonar-wrapper {
    z-index: 0;
    position: absolute;
    right: 70px;
    bottom: 20%;
}

.sonar-emitter {
    position: relative;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    border-radius: 9999px;
    background-image: linear-gradient(to right, #fa709a 0%, #fee140 100%);
}

.sonar-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 9999px;
    background-image: linear-gradient(to right, #fa709a 0%, #fee140 100%);
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}

.sonar-wave {
    animation: sonarWave 2s linear infinite;
}

.spinner {
    position: absolute;
    left: 100px;
    top: 30%;
}

.spinner::after,
.spinner::before {
    box-sizing: border-box;
    position: absolute;
    content: "";
    width: 50px;
    height: 50px;
    top: 50%;
    animation: up 2.4s cubic-bezier(0, 0, 0.24, 1.21) infinite;
    left: 50%;
    background: var(--themeht-primary-color);
}

.spinner::after {
    background: var(--themeht-secondary-color);
    top: calc(50% - 50px);
    left: calc(50% - 50px);
    animation: down 2.4s cubic-bezier(0, 0, 0.24, 1.21) infinite;
}

.image-video-sec {
    padding: 400px 0 120px;
}

.bg-dark-gradient-overlay {
    position: relative;
    overflow: hidden;
    z-index: 9;
}

.bg-dark-gradient-overlay:before {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(7%, #141622), to(transparent));
    background: linear-gradient(to top, #141622 7%, transparent 100%);
    opacity: .75;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    content: "";
    z-index: -1;
}

.ht-first-letter::first-letter {
    font-size: 30px;
    line-height: 30px;
    padding: 8px;
    margin-top: 5px;
    border-radius: 5px;
    display: inline-block;
    float: left;
    font-weight: 700;
    margin-right: 8px;
    background: #0171dc;
    color: var(--themeht-white-color);
}


/* ------------------------
 Clients Logo
------------------------*/

.clients-logo {
    text-align: center;
}

.clients-logo img {
    width: 100px;
    -webkit-filter: contrast(0%);
    filter: contrast(0%);
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
    cursor: pointer;
}

.clients-logo:hover img {
    -webkit-filter: none;
    filter: none;
    opacity: 1;
}

.client-text {
    text-align: center;
    position: relative;
}

.client-text:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
    background: var(--themeht-border-light-color);
    width: 70%;
    height: 1px;
}

.client-text span {
    background: var(--themeht-white-color);
    padding: 5px 40px;
}

.client-swiper .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
    position: relative;
}

.client-swiper .swiper-slide {
    display: flex;
    align-items: center;
    width: auto !important;
    padding: 0 50px;
}


/* ------------------------
Extra
------------------------*/
.contact-info {
    padding: 30px;
}

.contact-info li {
    padding-left: 50px;
    padding-top: 5px;
    position: relative;
    margin-bottom: 20px;
}

.contact-info li:last-child {
    margin-bottom: 0;
}

.contact-info li i {
    position: absolute;
    left: 0;
    top: 0;
    line-height: 50px;
    font-size: 36px;
    color: #0171dc;
    display: inline-block;
}

.contact-info li span {
    font-size: 12px;
    line-height: 1;
    color: var(--themeht-body-color);
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.contact-info li p {
    margin-bottom: 0;
    line-height: 24px;
    color: var(--themeht-text-color);
}

.contact-info li a {
    color: var(--themeht-text-color);
}

.contact-info li a:hover {
    color: var(--themeht-primary-color);
}


.form-group {
    margin-bottom: 15px;
    position: relative;
}

label {
    font-size: 14px;
    line-height: 1;
    color: var(--themeht-text-color)
}

.form-control {
    height: 55px;
    border-radius: 4px;
    font-size: 14px;
    color: var(--themeht-text-color);
    background-color: var(--themeht-white-color);
    border: 1px solid var(--themeht-border-light-color);
}

textarea.form-control {
    height: 120px;
    border-radius: 4px;
}

.form-control:focus {
    box-shadow: none;
    background: none;
    border-color: var(--themeht-primary-color);
}

select.form-control {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    height: 50px !important;
    color: var(--themeht-body-color);
}

iframe {
    width: 100%;
    border: none;
    pointer-events: auto;
}

.iframe-h {
    height: 500px !important;
}

.iframe-h-2 {
    height: 600px !important;
}

.map iframe {
    border: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-filter: brightness(100%) contrast(100%) saturate(50%) blur(0px) hue-rotate(0deg);
    -moz-filter: brightness(100%) contrast(100%) saturate(50%) blur(0px) hue-rotate(0deg);
    -ms-filter: brightness(100%) contrast(100%) saturate(50%) blur(0px) hue-rotate(0deg);
    -o-filter: brightness(100%) contrast(100%) saturate(50%) blur(0px) hue-rotate(0deg);
    filter: brightness(100%) contrast(100%) saturate(50%) blur(0px) hue-rotate(0deg);
}

.help-block.with-errors {
    position: absolute;
    color: red;
    right: 15px;
    font-size: 10px;
    line-height: 14px;
}

.form-control::-webkit-input-placeholder {
    color: var(--themeht-body-color);
}

.form-control::-moz-placeholder {
    color: var(--themeht-body-color);
}

.form-control:-ms-input-placeholder {
    color: var(--themeht-body-color);
}

.form-control:-moz-placeholder {
    color: var(--themeht-body-color);
}

.bg-dark-blue {
    background: #10287e;
}

.counter-sec {
    padding: 45px 0 25px;
}

.yellow-bg {
    background-color: #f5b03a;
}

:root {
    --primary-dark: #08162e;
    --primary-green: #edcb50;
    --text-light: #e5e7eb;
    --text-gray: #9ca3af;
    --bg-light: #f3f4f6;
}

/* Main Container */
.services-section {
    background-color: var(--primary-dark);
    /* width: 90%; */
    max-width: 1320px;
    margin: 2rem auto;
    padding: 2rem 4rem;
    border-radius: 2rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    position: relative;
    overflow: hidden;
    /* Ensures animations and pseudo-elements don't overflow */
}

/* Background decorative shape */
.services-section::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.1), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulseGlow 8s infinite ease-in-out;
}

/* Second background decorative shape */
.services-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    border: 30px solid rgba(52, 211, 153, 0.05);
    border-radius: 50%;
    pointer-events: none;
}


/* Left Side - Content */
.services-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: fadeInContent 1s ease-out forwards;
}

.services-content .tagline {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-gray);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.services-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
}

.services-content h1 span {
    background: linear-gradient(90deg, #34d399, #a7f3d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.services-content p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.services-btn {
    background-color: var(--primary-green);
    color: var(--primary-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    align-self: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(52, 211, 153, 0.2);
}

.services-btn .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    margin-left: 0.5rem;
}

.services-btn:hover .arrow {
    transform: rotate(-45deg);
}

/* Right Side - Grid of Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.service-card {
    padding: 1.5rem;
    border-radius: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: scale(0.9);
    transform-origin: center;
    animation: scaleInCard 0.6s ease-out forwards;
}

/* Staggering card animations */
.service-card:nth-child(1) {
    animation-delay: 0.2s;
}

.service-card:nth-child(2) {
    animation-delay: 0.4s;
}

.service-card:nth-child(3) {
    animation-delay: 0.6s;
}

.service-card:nth-child(4) {
    animation-delay: 0.8s;
}

.service-card:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px) scale(1.02);
}

.service-card .icon {
    background-color: var(--primary-green);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover .icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(52, 211, 153, 0.3);
}

.service-card .icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--primary-dark);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.service-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Animations */
@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

@keyframes scaleInCard {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-section {
        grid-template-columns: 1fr;
        padding: 3rem;
        gap: 3rem;
    }

    .services-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 0rem;
    }

    .services-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 2rem 1.5rem;
        border-radius: 1.5rem;
    }

    .services-content h1 {
        font-size: 1.8rem;
    }

    .services-btn {
        width: 100%;
        text-align: center;
    }
}

.text-justify {
    text-align: justify;
}

/* --- Main Container --- */
.services-features-wrapper {
    width: 100%;
    /* padding: 5rem 2rem; */
    position: relative;
    text-align: center;
}

/* --- Header Section --- */
.services-header-content {
    margin-bottom: 5rem;
    /* Increased margin */
}

.services-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0;
    line-height: 66px;
}

.services-description {
    font-size: 1rem;
    color: #64748b;
    max-width: 550px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

.cta-button {
    background-color: #fff;
    color: #4338ca;
    /* Darker purple text */
    border: 1px solid #e2e8f0;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.cta-button:hover {
    background-color: #4f46e5;
    color: #fff;
    border-color: #4f46e5;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(79, 70, 229, 0.2);
}

/* --- Features Grid --- */
.features-grid-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2.5rem 4rem;
}

.features-column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    /* Increased space between items */
}

/* --- Central Robot Image --- */
.central-robot-figure {
    grid-column: 2 / 3;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    animation: float-robot 4s ease-in-out infinite;
}

.robot-image {
    max-width: 280px;
    width: 100%;
    height: auto;
}

.robot-shadow-glow {
    width: 150px;
    height: 25px;
    /* Updated to a cyan glow to match the new image */
    background: radial-gradient(ellipse at center, rgba(3, 227, 252, 0.3) 0%, rgba(3, 227, 252, 0) 70%);
    border-radius: 50%;
    margin-top: 1rem;
    animation: shrink-shadow 4s ease-in-out infinite;
}


/* --- Feature Card Styles --- */
.feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in-up 0.6s ease-out forwards;
}

/* Staggered animation delays */
.features-column.left-col .feature-item:nth-child(1) {
    animation-delay: 0.2s;
}

.features-column.left-col .feature-item:nth-child(2) {
    animation-delay: 0.4s;
}

.features-column.left-col .feature-item:nth-child(3) {
    animation-delay: 0.6s;
}

.features-column.right-col .feature-item:nth-child(1) {
    animation-delay: 0.2s;
}

.features-column.right-col .feature-item:nth-child(2) {
    animation-delay: 0.4s;
}

.features-column.right-col .feature-item:nth-child(3) {
    animation-delay: 0.6s;
}

.feature-icon-wrapper {
    background: linear-gradient(to right, #0171dc, #13385b);
    color: #fff;
    border-radius: 10px;
    width: 52px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    box-shadow: 0 5px 10px rgba(79, 70, 229, 0.2);
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon-wrapper svg {
    width: 28px;
    height: 28px;
}

.feature-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 0.3rem 0;
    color: #1e293b;
}

.feature-content p {
    font-size: 0.9rem;
    /* Slightly smaller */
    /* color: #94a3b8; */
    /* Lighter text color */
    margin: 0;
    line-height: 1.6;
}

.features-column.left-col .feature-item {
    text-align: right;
    flex-direction: row-reverse;
}


/* --- Decorative Elements & Animations --- */
.decorative-circle {
    position: absolute;
    background-color: #c7d2fe;
    /* Updated color */
    border-radius: 50%;
    animation: bobbing-bubble 8s ease-in-out infinite;
}

.circle-1 {
    top: 10%;
    left: 8%;
    width: 15px;
    height: 15px;
    animation-delay: 0s;
}

.circle-2 {
    top: 35%;
    left: 22%;
    width: 9px;
    height: 9px;
    animation-delay: 1.5s;
}

.circle-3 {
    top: 50%;
    right: 20%;
    width: 12px;
    height: 12px;
    animation-delay: 2.5s;
}

.circle-4 {
    bottom: 15%;
    right: 12%;
    width: 16px;
    height: 16px;
    animation-delay: 3.5s;
}

/* --- Keyframe Animations --- */
@keyframes float-robot {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25px);
    }
}

@keyframes shrink-shadow {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(0.8);
        opacity: 0.7;
    }
}

@keyframes bobbing-bubble {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.1);
    }
}

@keyframes fade-in-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .features-grid-container {
        display: block;
    }

    .central-robot-figure {
        order: 2;
        margin: 2rem 0;
    }

    .features-column {
        order: 1;
        gap: 2.5rem;
    }

    .features-column.right-col {
        order: 3;
    }

    .features-column .feature-item,
    .features-column.left-col .feature-item {
        flex-direction: row;
        text-align: left;
        max-width: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {

    .services-title {
        font-size: 2.25rem;
    }

    .features-column .feature-item,
    .features-column.left-col .feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

:root {
    --primary-green-dark: #128271;
    --primary-green-light: #32d6a5;
    --neutral-dark: #2d3748;
    --neutral-medium: #4a5568;
    --neutral-light: #f7fafc;
    --background-color: #ffffff;
    --text-light: #ffffff;
}


/* Main Section Container */
.empowerment-section-container {
    /* max-width: 1200px;
    margin: auto; */
    overflow: hidden;
    /* Contains floats and margins */
}

/* Section Header Styles */
.empowerment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

.empowerment-approach-tag {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-green-dark);
    letter-spacing: 1px;
}

/* --- Call-to-Action Button --- */
.empowerment-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-image: linear-gradient(to right, var(--primary-green-dark), var(--primary-green-light));
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.empowerment-contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.empowerment-contact-btn svg {
    transition: transform 0.3s ease;
}

.empowerment-contact-btn:hover svg {
    transform: rotate(-45deg);
}

/* Main Content Grid */
.empowerment-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* --- Left Column: Text Content --- */
.empowerment-text-content {
    animation: slideInLeft 1s ease-out;
}

.empowerment-main-heading {
    /* font-size: 3rem;
    font-weight: 600;
    line-height: 1.2; */
    margin-top: 0;
    margin-bottom: 1rem;
}

.empowerment-highlight-text {
    background: linear-gradient(to right, #0171dc, #13385b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.empowerment-description {
    color: var(--neutral-medium);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Features Layout */
.empowerment-features-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.empowerment-features-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.empowerment-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.empowerment-feature-icon-wrapper {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-image: linear-gradient(to right, #0171dc, #13385b);
    flex-shrink: 0;
    /* Prevents icon from shrinking */
}

.empowerment-feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.empowerment-feature-description {
    color: var(--neutral-medium);
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
    text-align: justify;
}

/* --- Right Column: Image --- */
.empowerment-image-wrapper {
    animation: slideInRight 1s ease-out;
}

.empowerment-showcase-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* --- Animation Keyframes --- */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .empowerment-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .empowerment-main-heading {
        font-size: 2.5rem;
    }

    .empowerment-image-wrapper {
        order: -1;
        /* Move image to the top on smaller screens */
    }
}

@media (max-width: 768px) {
    .empowerment-features-top-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .empowerment-main-heading {
        font-size: 2rem;
    }

    .empowerment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Testimonials Section Container */
.video-testimonials-section {
    width: 100%;
    /* max-width: 1200px; */
    text-align: center;
}

.video-testimonials-section h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.video-testimonials-section .section-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid for Testimonial Cards */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Testimonial Card Styles */
.testimonial-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Video Container and Custom Controls */
.video-wrapper {
    position: relative;
    cursor: pointer;
}

.testimonial-video {
    width: 100%;
    height: auto;
    display: block;
}

.custom-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: #dc3545;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    pointer-events: none;
    /* Allows clicks to pass through to the wrapper */
}

.video-wrapper:hover .custom-play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: rgba(255, 107, 53, 1);
}

.custom-play-button svg {
    width: 30px;
    height: 30px;
    margin-left: 5px;
}

/* Hide play button when video is playing */
.video-wrapper.playing .custom-play-button {
    opacity: 0;
    visibility: hidden;
}

/* Card Details Section */
.card-details {
    padding: 1.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0;
    line-height: 11px;
    text-align: left;
}

.star-rating svg {
    width: 14px;
    height: 14px;
    color: #ffc107;
}

.verified-badge {
    background-color: #edf2f7;
    color: #2d3748;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.verified-badge svg {
    width: 16px;
    height: 16px;
    color: #3182ce;
}

/* Responsive Design: Tablet and Mobile */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .video-testimonials-section h2 {
        font-size: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.founder-1 {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    padding: 17px;
    margin-bottom: 40px;
    border-radius: 35px;
    border-left: 4px solid #0171dc;
    border-bottom: 5px solid #0171dc;
}

.founder-2 {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    padding: 17px;
    border-radius: 35px;
    border-right: 4px solid #0171dc;
    border-bottom: 5px solid #0171dc;
}

@media (max-width: 991px) {
    .header {
        left: 0;
    }

    .banner-text h1 {
        font-size: 31px;
        line-height: 39px;
    }

    .post-card .post-title h4 {
        font-size: 23px;
        line-height: 30px;
    }

    .list-icon.style-1 li {
        margin-bottom: 1px;
        font-size: 14px;
        align-items: center;
    }

    .why-choose-des {
        font-size: 14px;
        text-align: justify;
    }

    .d-mob-none {
        display: none;
    }

    .sm-mt-0 {
        margin-top: 0 !important;
    }

    .testimonial.style-2 {
        margin: 15px;
    }

    .theme-title p {
        text-align: justify;
        font-size: 15px;
        line-height: 1.5;
    }

    .theme-title {
        margin-bottom: 21px;
    }

    .accordion .accordion-button {
        font-weight: 600;
        font-size: 16px;
    }

    .accordion .accordion-body {
        padding: 15px 0 0;
    }

    .theme-title h6 {
        font-size: 11px;
        font-weight: 700;
    }

    .media-icon li {
        margin-bottom: 10px;
    }

    .footer-menu li {
        margin-bottom: 4px;
    }

    .secondary-footer {
        margin-top: 6px;
        padding-top: 10px;
    }

    .services-section {
        margin: 0;
    }

    .service-card {
        padding: 1rem;
    }

    .services-features-wrapper {
        padding: 1rem 0rem;
    }

    .founder-1 {
        border-left: 2px solid #0171dc;
        border-right: 2px solid #0171dc;
    }

    .founder-heading {
        font-size: 24px;
        line-height: 34px;
    }

    .founder-2 {
        border-left: 2px solid #0171dc;
        border-right: 2px solid #0171dc;
    }

    #contact-form .themeht-btn.primary-btn {
        text-align: center;
        display: block;
        margin: auto;
        width: 100%;
    }
}

:root {
    --brand-color: #ff8c00;
    --background-color: #f8f9fa;
    --text-color: #212529;
    --card-background: #ffffff;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

/* --- Main Container --- */
.testimonial-video-container {
    width: 100%;
    /* max-width: 1200px;
    padding: 4rem 1rem; */
    box-sizing: border-box;
}

.testimonial-header {
    text-align: left;
    margin-bottom: 2.5rem;
}

.testimonial-header .title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    display: inline-block;
    vertical-align: middle;
}

.testimonial-header .tag {
    display: inline-block;
    background-color: var(--brand-color);
    color: white;
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 6px;
    margin-left: 1rem;
    vertical-align: middle;
}

.testimonial-header .subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0;
}

/* --- Slider Navigation Wrapper --- */
.slider-navigation-wrapper {
    position: relative;
}

/* --- Slider Styling --- */
.custom-video-slider-wrapper {
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.custom-video-slider-track {
    display: flex;
    /* JS will handle transform */
    transition: transform 0.5s ease-in-out;
}

/* --- Video Slide Styling --- */
.video-card {
    flex-shrink: 0;
    width: 230px;
    margin: 0 10px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.video-player {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.learner-name {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--brand-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* --- Play Button Overlay --- */
.play-button-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.video-card:hover .play-button-overlay {
    transform: scale(1.1);
}

.play-button-overlay svg {
    width: 20px;
    height: 20px;
    color: var(--text-color);
    margin-left: 2px;
}

.video-card.is-playing .play-button-overlay {
    opacity: 0;
    visibility: hidden;
}

/* --- Navigation Buttons --- */
.slider-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: white;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.3s ease;
    opacity: 0;
    /* Hide by default, show on hover */
}

.slider-navigation-wrapper:hover .slider-nav-button {
    opacity: 1;
}

.slider-nav-button:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.slider-nav-button.prev-button {
    left: -22px;
}

.slider-nav-button.next-button {
    right: -22px;
}

.slider-nav-button svg {
    width: 24px;
    height: 24px;
    color: var(--text-color);
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .testimonial-header .title {
        font-size: 2rem;
    }

    .testimonial-header {
        text-align: center;
    }

    .video-card {
        width: 200px;
    }

    .video-player {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .testimonial-video-container {
        padding: 2rem 0.5rem;
    }

    .video-card {
        width: 180px;
    }

    .video-player {
        height: 320px;
    }

    .slider-nav-button.prev-button {
        left: 10px;
    }

    .slider-nav-button.next-button {
        right: 10px;
    }
}