/* =============================================
   HERO SECTION
============================================= */

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
    padding: 0;
}

.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    /* background: linear-gradient(120deg, rgba(0, 30, 90, 0.8), rgba(0, 80, 180, 0.6), rgba(0, 0, 0, 0.4)); */
}

.hero-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 27%;
    /* min-height: 170px; */
    background: #fff;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* padding: 20px; */
    clip-path: polygon(0 0, 100% 0, 100% 65%, 50% 100%, 0 65%);
}

.hero-title {
    margin: 0 auto;
    width: 100%;
    max-width: 900px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary-color);
    word-break: break-word;
    padding: 0 15px;
}

/* .hero-section::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20%;
    height: 80px;
    background: #fff;
    border-top-left-radius: 30px;
    z-index: 4;
} */

.hero-action {
    position: absolute;
    bottom: 12px;
    right: 9%;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 6;
}

.hero-home-text {
    font-size: 21px;
    font-weight: 700;
    color: var(--secondary-color);
    white-space: nowrap;
}

/* .arrow-btn {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background-color: var(--secondary-color);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
} */

.arrow-btn:hover {
    opacity: 0.85;
}

/* =============================================
   ABOUT SECTION
============================================= */

.about-section {
    display: flex;
    align-items: flex-start;
    background-color: #eaebf2;
}

.about-container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.left-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background-color: var(--button-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.plus-icon {
    background: var(--button-color);
    border-radius: 8px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    min-width: 40px;
    min-height: 40px;
}

.badge-text-wh {
    font-weight: 700;
    font-size: clamp(12px, 1.5vw, 16px);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary-color);
    padding: 10px 12px;
    background-color: var(--white);
    border-radius: 5px;
}

.badge-text-gr {
    font-weight: 700;
    font-size: clamp(12px, 1.5vw, 16px);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary-color);
    padding: 10px 12px;
    background-color: #eaebf2;
    border-radius: 5px;
}

.heading {
    /* font-size: 42px; */
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--secondary-color);
}

.description {
    font-size: 15px;
    line-height: 1.8;
    color: #5a6178;
    text-align: justify;
}

.center-col {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 100%;
}

.main-img {
    width: 100%;
    height: 400px !important;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.floating-img {
    position: absolute;
    top: 20px;
    right: -100px;
    width: 220px;
    padding: 12px;
    background-color: #eaebf2;
    border-radius: 16px;
}

.floating-inner {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.floating-inner img {
    width: 100%;
    height: 100%;
    display: block;
}

.right-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.strengths-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: absolute;
    margin-left: 90px;
    margin-top: 3%;
}

.strengths-title {
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
}

.progress-bar {
    width: 100%;
    height: 40px;
    background-color: var(--button-color);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 16px;
}
.header-section{
   display: flex; 
   flex-direction: column;
   align-items: baseline; 
   gap: 20px;
}

.progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background-color: var(--secondary-color);
    border-radius: 10px;
    animation: fillBar 2s ease forwards;
}

@keyframes fillBar {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.progress-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    z-index: 2;
    text-align-last: center;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

.feature-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 12px;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-title {
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary-color);
}

.feature-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #5a6178;
}

.social-item .icon{
    text-decoration: none;
    display: flex;
    align-items: center;
    gap:10px;
}

/* =============================================
   SERVICES STICKY SECTION
============================================= */

.services-section {
    overflow: visible !important;
}

/* SERVICES CONTAINER */
.services-container {
    margin: 0 auto;
    width: 100%;
    position: relative;
    overflow: visible;
}

.service-section {
    position: relative;
    height: auto;
    background: var(--white);
    padding-bottom: 30px;
    overflow: visible;
}

/* SERVICE BAR - STICKY FIX */
.service-bar {
    position: sticky;
    top: 80px;
    z-index: 50;
    background: var(--white);
    padding-top: 10px;
    display: flex;
    align-items: stretch;
    border-radius: 10px;
    margin-bottom: 32px;
}

.service-bar-title {
    flex: 1;
    background: var(--primary-color);
    color: var(--button-color);
    font-weight: 700;
    /* font-size: clamp(15px, 2vw, 20px); */
    padding: 20px 32px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    border-radius: 10px 0 0 10px;
}

.service-bar-number {
    background: var(--button-color);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
    padding: 16px 20px;
    min-width: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 10px 10px 0;
}

.service-content {
    display: flex;
    gap: 32px;
}

.service-items {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.chevron {
    color: var(--secondary-color);
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.service-item p {
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.6;
    margin: 0;
}

.service-image,
.service-image1 {
    width: 45%;
    flex-shrink: 0;
}

.service-image img,
.service-image1 img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

.service-image1 img {
    height: 250px;
}

/* =============================================
   SERVICES SECTION 2
============================================= */

.services2-section {
    background-color: #eaebf2;
    padding-bottom: 0 !important;
    padding-right: 0 !important;
    position: relative;
    overflow: hidden;
}

.service-shape-2 {
    position: absolute;
    top: -50px;
    left: -80px;
    width: 300px;
    opacity: 0.8;
    z-index: 0;
    pointer-events: none;
    animation: float-shape 15s linear infinite;
}

.service-shape-2 img {
    width: 100%;
    height: auto;
}

@keyframes float-shape {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(180deg);
    }

    100% {
        transform: translateY(0) rotate(360deg);
    }
}

.header-heading-service {
    /* font-size: clamp(28px, 4vw, 48px); */
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin: 0;
}

.service-social {
    width: 100%;
    background: #eaebf2;
    display: flex;
    justify-content: flex-end;
}

.social-container {
    /*width: 30%;*/
    /*min-width: 320px;*/
    background: #fff;
    padding: 10px 18px;
    border-top-left-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 14px;
    /*padding: 8px;*/
}

.social-item span {
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 600;
    color: var(--primary-color);
}

.social-icon {
    width: 44px;
    height: 44px;
    font-size: 21px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-grid {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: #eaebf2;
    padding: 1em 20px;
    box-sizing: border-box;
}

.service-card {
    position: relative;
    width: 100%;
    height: 500px !important;
    border-radius: 28px;
    overflow: hidden;
    background: #eaebf2;
    cursor: pointer;
}

.service-card h3 {
    color: #fff;
}

.card1 {
    margin-top: 150px;
}

.card2 {
    margin-top: 100px;
}

.card3 {
    margin-top: 50px;
}

.service-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 28px;
    transition: transform 0.6s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.35) 38%, rgba(0, 0, 0, 0.05) 100%);
    z-index: 1;
    border-radius: 28px;
    transition: background 0.5s ease;
}

.ser-head {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    color: #fff;
}

.ser-head h6 {
    margin: 0;
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    color: #fff;
    transition: transform 0.45s ease;
}

.ser-head p {
    margin: 12px 0 0;
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.5;
    color: #e5e5e5;
    opacity: 0;
    transform: translateY(18px);
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.45s ease, transform 0.45s ease, max-height 0.45s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card:hover .ser-head h6 {
    transform: translateY(-8px);
}

.service-card:hover .ser-head p {
    opacity: 1;
    transform: translateY(0);
    max-height: 100px;
}

.service-card:hover::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.45) 40%, rgba(0, 0, 0, 0.08) 100%);
}

.step-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    padding: 40px;
    background: #eaebf2;
    border-bottom-left-radius: 26px;
    z-index: 3;
}

.step-badge::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 0;
    width: 18px;
    height: 18px;
    background: transparent;
    border-top-right-radius: 18px;
    box-shadow: 6px -6px 0 #eaebf2;
}

.step-badge::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -18px;
    width: 18px;
    height: 18px;
    background: transparent;
    border-top-right-radius: 18px;
    box-shadow: 6px -6px 0 #eaebf2;
}

.step-badge-inner {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 58px;
    height: 58px;
    background: var(--primary-color);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
}

/* =============================================
   WHY CHOOSE US
============================================= */

.why-choose-us {
    /* padding: 5em 1em 9em 1em; */
    background: var(--white);
    display: flex;
    gap: 40px;
    align-items: flex-start;
    overflow: hidden;
    padding-bottom: 8em;
}

.why-choose-left {
    width: 50%;
}

.hs-wrapper {
    position: relative;
    width: 100%;
    max-width: 650px;
    margin-left: 1rem;
}

.hs-main {
    border-radius: 30px;
    position: relative;
}

.hs-main img {
    width: 90%;
    height: 500px;
    margin-left: 40px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.hs-badge {
    position: absolute;
    top: -25px;
    left: -10px;
    background: var(--primary-color);
    color: #fff;
    padding: 60px 15px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.3;
    text-align: center;
    box-shadow: 0 0 0 14px white;
    z-index: 3;
}

.hs-small {
    position: absolute;
    bottom: -120px;
    left: -20px;
    background: #fff;
    padding: 15px;
    border-radius: 20px;
    z-index: 2;
}

.hs-small img {
    width: 220px;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
}

.hs-play {
    position: absolute;
    bottom: -100px;
    left: 260px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    gap: 20px;
}

.hs-play-btn {
    width: 65px;
    height: 65px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    position: relative;
    z-index: 1;
}

.hs-play-btn::before,
.hs-play-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.5;
    z-index: -1;
    animation: video-pulse 2s linear infinite;
}

.hs-play-btn::after {
    animation-delay: 1s;
}

@keyframes video-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

.hs-play span {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 16px;
}

.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.video-modal .video-box {
    position: relative;
    width: 90%;
    max-width: 800px;
}

.video-modal .video-box video {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.video-modal .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 22px;
    color: var(--button-color);
    cursor: pointer;
    z-index: 10;
}

.why-choose-container {
    display: flex !important;
    flex-direction: column;
    width: 50% !important;
}

.why-columns {
    display: flex;
    flex-direction: column;
    /* gap: 48px; */
}

.why-left h2 {
    /* font-size: clamp(26px, 3vw, 32px); */
    margin: 20px 0;
    line-height: 1.2;
}

.why-left p {
    line-height: 1.7;
    font-size: 16px;
}

.why-right {
    flex: 1;
}

.accordion-item {
    border-bottom: 1px solid #2a304033;
    transition: background 0.3s ease;
}

.accordion-item.active {
    background-color: var(--secondary-color);
    color: white !important;
    border-radius: 8px;
    padding: 0 10px;
}

.accordion-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 10px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.accordion-trigger span:first-child {
    font-size: 16px;
}

.accordion-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-content.open {
    max-height: 220px;
    padding: 0 10px 15px;
}

/* =============================================
   TESTIMONIALS
============================================= */

.testimonials-section {
    background-color: #eaebf2;
    padding: 0 !important;
    position: relative;
}

.tp-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
    background: var(--primary-color);
    padding: 60px;
    border-radius: 10px 10px 0 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.team-shape {
    position: absolute;
    right: 20px;
    top: 60%;
    transform: translateY(-50%);
    width: 200px;
    z-index: 2;
    pointer-events: none;
    opacity: 0.65;
    animation: light-float 6s ease-in-out infinite;
}

.team-shape img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes light-float {

    0%,
    100% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(-65%);
    }
}

@keyframes shape-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.tp-left {
    width: 40%;
}

.tp-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tp-label {
    background: #fff;
    color: var(--secondary-color);
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 600;
    font-size: clamp(12px, 1.4vw, 15px);
}

.tp-title {
    color: #fff;
}

.tp-right {  

    width: 60%;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.tp-slider-track {
    display: flex;
    width: max-content;
    gap: 20px;
    animation: scrollLogos 35s linear infinite;
}

.tp-slider-track:hover {
    animation-play-state: paused;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 10px)); }
}


.tp-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    min-width: 180px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    font-weight: 600;
    text-align: center;
    background-color: #fff;
}

.tp-card img {
    height: 60px;
}

.tp-icon {
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.tp-icon::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 6px;
    background: #fff;
    bottom: -3px;
    left: 5px;
    border-radius: 0 0 10px 10px;
}

.ts2-section {
    display: flex;
    gap: 60px;
    align-items: center;
    background: var(--primary-color);
    color: #fff;
    padding: 60px;
    position: relative;
    border-radius: 0 0 10px 10px;
}

.ts2-left {
    width: 40%;
    flex: 1;
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: -20px;
    left: 60px;
}

.ts2-imgbox {
    background: #eaebf2;
    padding: 15px;
    border-radius: 25px;
    width: 100%;
}

.ts2-imgbox img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
}

.ts2-right {
    width: 50%;
    margin-left: 50%;
    flex: 1;
    position: relative;
}

.ts2-slider {
    min-height: 180px;
    position: relative;
    z-index: 1;
}

.ts2-stars {
    color: gold;
    margin-bottom: 20px;
    font-size: 18px;
}

.ts2-text {
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 15px;
    color: #fff;
    text-align: justify;
}

.ts2-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ts2-user img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.ts2-user h4 {
    margin: 0;
    font-size: 18px;
    color: #fff;
}

.ts2-user span {
    font-size: 14px;
    color: whitesmoke;
    opacity: 0.8;
}

.ts2-arrows {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    gap: 12px;
    z-index: 99;
}

.ts2-arrows button {
    background: #1dd1a1;
    border: none;
    padding: 14px 18px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
}

.ts2-arrows button:hover {
    background: #0bbf8a;
}

/* =============================================
   SUCCESS SECTION
============================================= */

.success-section {
    background-color: #eaebf2;
    /*padding-bottom: 5em !important;*/
    position: relative;
    overflow: hidden;
}


.ach-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    background: transparent;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.ach-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.ach-right {
    display: flex;
    gap: 100px;
    align-items: center;
}
.ach-box h2{
    font-size: 40px !important;
}
.ach-box h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.ach-box p {
    font-size: 14px;
    letter-spacing: 1px;
    color: #000;
}

.wrapper {
    display: flex;
    gap: 30px;
    margin: auto;
    background-color: transparent;
    position: relative;
    z-index: 1;
}

.left-card {
    background: var(--primary-color);
    color: #fff;
    width: 20%;
    border-radius: 20px;
    padding: 25px;
    height: 300px;
    width: 30%;
    position: relative;
    overflow: hidden;
}

.rounded-shape {
    position: absolute;
    top: 85%;
    left: 15%;
    transform: translate(-50%, -50%);
    width: 100px;
    opacity: 0.8;
    z-index: 0;
    pointer-events: none;
    animation: simple-vertical-float 6s ease-in-out infinite;
}

@keyframes simple-vertical-float {

    0%,
    100% {
        transform: translate(-50%, -50%);
    }

    50% {
        transform: translate(-50%, -60%);
    }
}

.shape-1 {
    position: absolute;
    right: -50px;
    top: 10%;
    width: 300px;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
    animation: premium-drift 25s ease-in-out infinite reverse;
    filter: blur(4px);
}

.rounded-shape img,
.shape-1 img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes premium-drift {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(50px, -30px) rotate(5deg);
    }
}


.left-card h3 {
    margin-bottom: 20px;
    font-size: 22px;
    letter-spacing: 1px;
    color: white;
}

.goal {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.goal h2 {
    font-size: 28px;
    color: white;
}

.goal p {
    font-size: 14px;
    margin-top: 5px;
    color: white;
}

.arrow {
    font-size: 18px;
    color: #5ef0c3;
}

.line {
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 20px 0;
}

.right-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.video-box {
    width: 100% !important;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
    position: relative;
}

.video-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.video-frame.active-video {
    opacity: 1;
    pointer-events: auto;
}

.btn-group {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
    width: 70% !important;
}

.btn {
    width: 200px;
    padding: 12px 22px;
    border-radius: 12px !important;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 1px solid transparent;
}

.tab-btn.active {
    background: var(--primary-color) !important;
    color: #fff !important;
    border-color: var(--primary-color) !important;
}

.tab-btn {
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
}

/* =============================================
   TEAM SECTION
============================================= */

.team-section {
    background-color: white;
    position: relative;
}

.team-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.team-left {
    min-width: 140px;
}

.team-tag {
    display: flex;
    align-items: center;
    gap: 10px;
}

.team-label {
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.team-center {
    flex: 1;
    min-width: 260px;
}

.team-center h2 {
    /* font-size: 52px; */
    font-weight: 800;
    line-height: 1.1;
    color: #2f3e75;
    text-transform: uppercase;
}

.team-right {
    max-width: 400px;
    min-width: 250px;
}

.team-right p {
    font-size: 16px;
    line-height: 1.7;
    color: #2f3e75;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 40px 0;
}

.team-card {
    position: relative;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.content {
    position: absolute;
    bottom: 25px;
    left: 20px;
    z-index: 2;
    transition: 0.4s ease;
}

.content h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 5px;
}

.content span {
    color: #2f4fa3;
    font-weight: 700;
}

.team-card:hover .content {
    transform: translateY(-30px);
}

.team-slider {
    padding: 20px 0 60px;
}

.team-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.team-card img {
    width: 100%;
    display: block;
}

.team-card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.team-card .content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    z-index: 2;
}

.team-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}

.floating-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Common shape style */
.shape {
    position: absolute;
    bottom: -80px;
    opacity: 0.45;
    animation: floatUp linear infinite;
}

/* Circle */
.circle {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #ff5e57;
}

/* Square */
.square {
    width: 15px;
    height: 15px;
    background-color: #48c6ef;
    transform: rotate(45deg);
}

/* Diamond */
.diamond {
    width: 15px;
    height: 15px;
    background-color: #7bed9f;
    transform: rotate(45deg);
}

/* Triangle */
.triangle {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 14px solid #f9ca24;
}

/* Different positions + timings */
.shape:nth-child(1) {
    left: 5%;
    animation-duration: 12s;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    left: 15%;
    animation-duration: 15s;
    animation-delay: -2s;
}

.shape:nth-child(3) {
    left: 25%;
    animation-duration: 13s;
    animation-delay: -4s;
}

.shape:nth-child(4) {
    left: 40%;
    animation-duration: 16s;
    animation-delay: -1s;
}

.shape:nth-child(5) {
    left: 55%;
    animation-duration: 14s;
    animation-delay: -5s;
}

.shape:nth-child(6) {
    left: 68%;
    animation-duration: 17s;
    animation-delay: -3s;
}

.shape:nth-child(7) {
    left: 80%;
    animation-duration: 13s;
    animation-delay: -6s;
}

.shape:nth-child(8) {
    left: 90%;
    animation-duration: 15s;
    animation-delay: -2s;
}

.shape:nth-child(9) {
    left: 97%;
    animation-duration: 12s;
    animation-delay: -4s;
}

.shape:nth-child(10) {
    left: 99%;
    animation-duration: 14s;
    animation-delay: -6s;
}


@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.2;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-120vh) rotate(360deg);
        opacity: 0.1;
    }
}

/* =============================================
   FAQ SECTION
============================================= */

.faq-section {
    background-color: #eaebf2;
    display: flex;
    justify-content: space-between;
    gap: 80px;
    align-items: flex-start;
}

.faq-left {
    flex: 1;
    position: sticky;
    top: 140px;
    height: fit-content;
}

.faq-left h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    color: #223B7A;
}

.faq-left-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

/*.faq-tag {*/
/*    background: #fff;*/
/*    padding: 10px 18px;*/
/*    border-radius: 8px;*/
/*    font-weight: 700;*/
/*    font-size: 14px;*/
/*    color: #223B7A;*/
/*}*/

.faq-right {
    flex: 1.2;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    padding: 18px 0;
    background: transparent;
    color: #000;
    border: none;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: "+";
    font-size: 22px;
    font-weight: 700;
}

.faq-item.active .faq-question {
    background: #2f3e75;
    color: #fff;
    padding: 18px 20px;
}

.faq-item.active .faq-question::after {
    content: "−";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    transition: max-height 0.5s ease;
    padding-right: 40px;
}

.faq-item.active .faq-answer {
    margin-top: 10px;
    padding-bottom: 20px;
}


/* ANIMATION */
/* Base hidden state */
.animate {
    opacity: 0;
    transition: all 0.8s ease;
    /* padding: 0; */
}

/* Fade Up */
.fade-up {
    transform: translateY(40px);
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* Fade Down */
.fade-down {
    transform: translateY(-40px);
}

.fade-down.show {
    opacity: 1;
    transform: translateY(0);
}

/* Fade Left */
.fade-left {
    transform: translateX(40px);
}

.fade-left.show {
    opacity: 1;
    transform: translateX(0);
}

/* Fade Right */
.fade-right {
    transform: translateX(-40px);
}

.fade-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* Optional delay classes */
.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}








/* Make hero container reference */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* FIX: Bottom-right Home button */
.hero-action {
    position: absolute;
    right: 40px;
    /* bottom: 40px; */
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
}

/* Optional: keep button + text aligned nicely */
.hero-home-text {
    font-weight: 600;
    color: var(--secondary-color);
}

/* =============================
   Page Preloader
   ============================= */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    z-index: 999999;
}

.loading-screen .loader {
    width: 150px;
    height: 150px;
    border: 4px dotted transparent;
    border-top-color: var(--white);
    border-right-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2), inset 0 0 12px rgba(255, 255, 255, 0.1);
    animation: helios-ring-rotate 1.2s linear infinite;
}

.loading-screen .loader::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 100px;
    height: 100px;
    border: 4px solid transparent;
    border-bottom-color: var(--button-color);
    border-left-color: var(--button-color);
    border-radius: 50%;
    animation: helios-ring-rotate-back 4s cubic-bezier(0.6, 0.1, 0.3, 1) infinite;
    transform-origin: center center;
    box-shadow: 0 0 15px rgba(33, 236, 190, 0.35), inset 0 0 20px rgba(33, 236, 190, 0.15);
}

@keyframes helios-ring-rotate {
    0%   { transform: rotate(0deg); }
    50%  { transform: rotate(180deg) scale(1.03); }
    100% { transform: rotate(360deg); }
}

@keyframes helios-ring-rotate-back {
    0%, 75%, 100% {
        transform: rotate(0deg) scale(0.97);
        opacity: 0.3;
    }
    25%, 50% {
        transform: rotate(-360deg) scale(1);
        opacity: 1;
    }
}




/* =============================================
   RESPONSIVE STYLES
============================================= */

/* ---------- 1024px ---------- */
@media (max-width: 1024px) {
    .feature-card{
        margin: 0 !important;
    }

    /* About */
    .left-col {
        grid-column: 1 / 2;
        grid-row: 1;
    }

    .center-col {
        grid-column: 2 / 3;
        grid-row: 1;
        justify-content: center;
    }

    .right-col {
        gap: 30px;
    }

    .floating-img {
        right: -40px;
    }

    .strengths-header {
        position: static;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 1px !important;
        margin-top: 0;
    }

    .progress-bar {
        width: 80% !important;
    }

    
    /* Services */
    .service-content {
        gap: 24px;
    }

    .service-bar-title {
        padding: 10px;
    }

    .card1 {
        margin-top: 150px;
    }

    .card2 {
        margin-top: 100px;
    }

    .card3 {
        margin-top: 50px;
    }

    /* Services 2 */
    .service-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Why Choose */
    .hs-main img {
        width: 85%;
        height: 460px;
    }

    .hs-play {
        left: 220px;
    }

    .hs-small img {
        width: 190px;
        height: 155px;
    }

    /* Testimonials */
    .tp-section,
    .ts2-section {
        padding: 45px;
    }

    .ts2-left {
        left: 45px;
    }

    /* Success */
    .wrapper {
        gap: 60px;
    }

    .ach-right {
        gap: 35px;
    }

    .left-card {
        width: 28%;
    }

    .btn-group {
        width: 100% !important;
    }

    /* Team */
    .team-grid {
        gap: 22px;
    }

    /* FAQ */
    .faq-section {
        gap: 50px;
    }

    .faq-left h1 {
        font-size: 42px;
    }
}

/* ---------- 992px ---------- */
@media (max-width: 992px) {
         .ach-title br{
        display: none;
    }
    .ts2-left{
        left:0;
    }
    .tp-right{
        width:100%;
    }
    
    .tp-left{
        width:100%;
    }
    
    .hs-wrapper{
        max-width: none;
        margin: 0;
    }
    .video-box{
        border-radius: 10px;
    }
    .wrapper{
        gap:30px;
    }

    /* About */
    .about-container {
        grid-template-columns: 1fr 1fr;
    }

    .center-col {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .progress-bar {
        width: 80% !important;
    }

    /* Services */
    .service-bar {
        position: relative !important;
        top: unset !important;
    }

    .service-content {
        flex-direction: column;
    }
    .faq-answer{
     text-align: justify;   
     padding-right: 0;
    }

    .service-image,
    .service-image1 {
        width: 100%;
    }

    /* Services 2 */
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Why Choose */
    .why-choose-us {
        flex-direction: column;
        gap: 150px;
        padding-bottom:3em ;
    }

    /* Testimonials */
    .tp-section {
        flex-direction: column;
    }

    .ts2-section {
        flex-direction: column;
    }

    /* Success */
    .ach-section {
        gap: 30px;
    }

    .left-card {
        width: 30%;
    }

    /* Team */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* FAQ */
    .faq-section {
        flex-direction: column;
    }

    .faq-left {
        position: relative;
        top: 0;
    }
    .faq-left br{
        display: none;
    }
    .image-wrapper{
        width:none;
    }
    .hs-main img{
        width: 100%;
        margin-left: 0;
    }
    
    .ts2-left{
        position:relative;
    }
    
    .tp-left{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .why-choose-left , 
    .why-choose-container{
        width: 100% !important;
}
    .ts2-left{
        width: 70%;
    }
    .ts2-right{
        width:100%;
        margin: 0;
    }
}

/* ---------- 850px ---------- */
@media (max-width: 850px) {
    .hero-section::before {
        width: 30%;
    }
}


/* ---------- 767px ---------- */
@media (max-width: 767px) {
    
     .arrow-btn {
        transform: scale(0.9);
    }

    /* Hero */
    .hero-section {
        min-height: 620px;
    }

    .hero-shape {
        height: 28%;
        min-height: 150px;
        padding: 18px;
    }

    .hero-action {
        right: 20px;
        bottom: 15px;
    }

    /* About */
    .about-container {
        grid-template-columns: 1fr;
    }

    .main-img {
        height: 260px;
    }

    .floating-img {
        position: static !important;
        width: 100%;
    }

    /* Services */
    .service-bar-title {
        width: 90%;
        font-size: 10px;
    }

    .service-bar-number {
        width: 10%;
    }

    /* Services 2 */
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Why Choose */
    .hs-main img {
        height: 420px;
    }

    /* Testimonials */
    .tp-section,
    .ts2-section {
        padding: 35px 20px;
    }

    /* Success */
    .wrapper {
        flex-direction: column;
    }

    .left-card,
    .right-section {
        width: 100%;
    }

    /* Team */
    .team-card {
        height: 420px;
    }

    /* FAQ */
    .faq-left h1 {
        font-size: 28px;
    }
    .floating-img{
        padding: 0;
        margin-top: 20px;
    }
}

/* ---------- 575px ---------- */
@media (max-width: 575px) {
    
    .tp-right {
        width: 100%;
    }
    .rounded-shape , .team-shape{
        display: none;
    }
    .badge-text-gr{
        font-size: 10px;
    }
    .faq-section{
        gap: 0;
    }
    .header-section{
        gap: 20px;
        display: flex;
        flex-direction: column;
        align-items: baseline;
    }
    
    .ach-right, .ach-section{
        display: block;
    }
    
    .ach-box h2{
        font-size: 25px;
    }
    
    .ach-right {
        gap: 20px;
    }
    .ts2-arrows button{
        padding: 10px;
        font-size: 10px;
    }
    .ts2-arrows{
        right: -10px;
    }
    .ts2-left{
        width:100%;
        bottom: 0;
    }
    .card3 , .card1 , .card2{
        margin: 0;
    }
    .service-grid{
        padding: 40px 20px;
    }
    .hs-play-btn{
        width: 60px;
        height: 60px;
    }

    /* Hero */
    .hero-section {
        height: 70vh;
    }

    .hero-shape {
        clip-path: none;
        top: 30%;
        background: transparent;
    }

    .hero-title {
        color: #fff;
    }

    /* Services */
    .service-grid {
        grid-template-columns: 1fr;
    }

    .hero-section::before {
        width: 50%;
    }

    /* Why Choose */
    .hs-main img {
        height: 340px;
    }
    .hs-play span{
        display: none;
    }

    /* Success */
    .left-card {
        width: 100% !important;
    }

    /* Team */
    .team-grid {
        grid-template-columns: 1fr;
    }

    /* FAQ */
    .faq-left h1 {
        font-size: 24px;
    }
    .hs-badge{
        padding: 40px 15px;
        font-size: 13px;
    }
    .hs-small img{
        height: 130px;
        width:130px;
    }
    .why-left p{
        text-align: justify;
    }
    .faq-answer{
        font-size: 12px;
    }
    .faq-item .faq-question{
        padding:10px;
        font-size: 13px;
    }
}

/* ---------- 400px ---------- */
@media (max-width: 400px) {
    .hs-play-btn {
        width: 60px !important;
    }
}

/* ---------- 320px ---------- */
@media (max-width: 320px) {
    .hero-action {
        right: 10px;
        bottom: 10px;
    }

    .arrow-btn {
        transform: scale(0.75);
    }

    .hero-home-text {
        font-size: 12px;
    }
}