/* ========================================= ROOT / VARIABLES ========================================= */
:root {
    --cyan: #29c3d4;
    --cyan-dark: #1fa8b8;
    --yellow: #f8cc00;
    --dark: #1a1a1a;
    --text: #444;
    --gray: #555555;
    --white: #ffffff;
    --border: #e2eef4;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --hs-navy: #1b1b3a;
    --hs-orange: #f25b2a;
}

/* ========================================= GLOBAL UTILITIES ========================================= */
.container-1200 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
    box-sizing: border-box;
}

.section-heading {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin-bottom: 8px;
    text-align: center;
    margin-top: 0px;
}

.section-heading span {
    color: var(--cyan);
}

.section-eyebrow {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
    margin-bottom: 6px;
    text-align: center;
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", sans-serif !important;
}

/* ══════════════════════════════════════════════════════ HERO SLIDER ══════════════════════════════════════════════════════ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 560px;
    max-height: 780px;
    overflow: hidden;
    background: var(--hs-navy);
}

.hs-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hs-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.85s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.6s ease;
    z-index: 1;
    overflow: hidden;
}

.hs-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 3;
}

.hs-slide.hs-enter-right {
    transform: translateX(100%);
    opacity: 0;
    z-index: 2;
}

.hs-slide.hs-enter-left {
    transform: translateX(-100%);
    opacity: 0;
    z-index: 2;
}

.hs-slide.hs-exit-left {
    transform: translateX(-100%);
    opacity: 0;
    z-index: 2;
}

.hs-slide.hs-exit-right {
    transform: translateX(100%);
    opacity: 0;
    z-index: 2;
}

.hs-slide picture,
.hs-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}
.hs-overlay {
    position: absolute;
    inset: 0; 
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
}
.hs-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hs-content {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hs-content h1,
.hs-content h2 {
    max-width: 800px;
    color: #fff;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.18;
    margin: 0 0 18px;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.8);
}

.hs-content p {
    max-width: 800px;
    color: rgba(255, 255, 255, 1);
    font-size: 18px;
    line-height: 1.6;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.8);
    margin: 0 0 30px;
}

.hs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 15px 32px;
    border-radius: 30px;
    background: var(--hs-orange);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hs-btn:hover {
    background: #262262;
    color: #fff;
    transform: translateY(-2px);
}

.hs-slide.active .hs-content h1,
.hs-slide.active .hs-content h2,
.hs-slide.active .hs-content p,
.hs-slide.active .hs-content .hs-btn {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hs-slide.active .hs-content h1,
.hs-slide.active .hs-content h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s;
}

.hs-slide.active .hs-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.38s;
}

.hs-slide.active .hs-content .hs-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.hs-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(0px);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 4;
}

.hs-prev {
    left: 30px;
}

.hs-next {
    right: 30px;
}

.hs-nav:hover {
    background: var(--hs-orange);
    transform: translateY(-50%) scale(1.06);
}

.hs-dots {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 4;
}

.hs-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hs-dot.active {
    background: #F25B2A;
    transform: scale(1.25);
}

.hs-label {
    display: inline-block;
    padding: 6px 16px;
    background: #262262;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    margin-bottom: 14px;
    text-align: center;
    max-width: 270px;
}

.hs-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hs-btn--secondary {
    background-color: #262262;
    border: 2px solid #262262;
}

.hs-btn--secondary:hover {
    background-color: transparent;
    border: 2px solid #262262;
}

@media (max-width: 991px) {
    .hero-slider {
        height: 620px;
    }

    .hs-content h1,
    .hs-content h2 {
        font-size: 32px;
    }

    .hs-content p {
        font-size: 15px;
    }

    .hs-nav {
        width: 42px;
        height: 42px;
    }

    .hs-prev {
        left: 14px;
    }

    .hs-next {
        right: 14px;
    }
}

@media (max-width: 575px) {
    .hero-slider {
        height: 560px;
    }

    .hs-overlay {
        /* background: linear-gradient( 180deg, rgba(10, 10, 30, 0.55) 0%, rgba(10, 10, 30, 0.75) 100% ); */
    }

    .hs-content h1,
    .hs-content h2 {
        font-size: 24px;
    }

    .hs-btn {
        padding: 12px 22px;
        font-size: 13px;
    }

    .hs-nav {
        display: none;
    }
}

/* ========================================= WHY CHOOSE US ========================================= */
.why-us-section {
    padding: 80px 0;
    background: #ffeee9;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.why-us-card {
    text-align: center;
}

.why-us-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    color: #262262;
}

.why-us-icon svg {
    width: 100%;
    height: 100%;
}

.why-us-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #262262;
    margin-bottom: 14px;
}

.why-us-card p {
    font-size: 17px;
    line-height: 1.75;
    color: #000;
    margin: 0;
}

@media (max-width: 991px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 28px;
    }

    .why-us-section {
        padding: 60px 0;
    }
}

@media (max-width: 575px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .why-us-icon {
        width: 64px;
        height: 64px;
    }
}

/* ============================================================ APPROACH SECTION (Text Left + Image Right) ============================================================ */
.sd-approach {
    background: #ffffff;
    padding: 80px 0;
}

.sd-approach__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.sd-approach__content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111111;
    line-height: 1.25;
    margin: 0 0 18px;
}

.sd-approach__content>p {
    font-size: 16px;
    color: #000;
    line-height: 1.7;
    margin: 0 0 24px;
}

.sd-approach__content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sd-approach__content ul li {
    position: relative;
    padding-left: 28px;
    font-size: 16px;
    color: #000;
    line-height: 1.5;
}

.sd-approach__content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='%23F25B2A'/%3E%3Cpath d='M7 12l3 3 5-6' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.sd-approach__image {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #e5e5e5;
    border-radius: 16px;
    border: 1px solid #d1d5db;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sd-approach__image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

@media (max-width: 768px) {
    .sd-approach {
        padding: 50px 0;
    }

    .sd-approach__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .sd-approach__content h2 {
        font-size: 26px;
    }

    .sd-approach__image {
        aspect-ratio: 16 / 10;
        order: -1;
    }
}

/* ========================================= 3. SERVICES SECTION ========================================= */
.services-section {
    padding: 40px 0;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 36px;
}

.service-list-card {
    background: #fff;
    /* border-radius: 14px; */
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-list-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}

.service-media {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.service-media>a {
    display: block;
}

.service-media img {
    display: block;
    height: auto;
    transition: transform 0.35s ease;
}

.service-list-card:hover .service-media img {
    transform: scale(1.04);
}

.srv-toggle-wrap {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .service-media img {
        height: auto;
        margin: 14px 10px 0;
        width: calc(100% - 20px);
    }
}

@media (max-width: 400px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================ HOW IT WORKS ============================================================ */
.work-process-section {
    padding: 80px 0 0;
    background: #fff;
}

.work-process-header {
    text-align: center;
    margin-bottom: 20px;
}

.work-process-eyebrow {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
    margin-bottom: 8px;
}

.work-process-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.work-process-band {
    background: #fbe4de;
    padding: 60px 0;
}

.work-process-grids {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.work-process-grids .grid {
    text-align: left;
}

.number-badge {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    background: #262262;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.work-process-grids .grid h3 {
    font-size: 18px;
    font-weight: 700;
    color: #262262;
    margin-bottom: 10px;
}

.work-process-grids .grid p {
    font-size: 16px;
    color: #000;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .work-process-grids {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .work-process-title {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .work-process-grids {
        grid-template-columns: 1fr;
    }
}

/* ========================================= OFFERS SECTION ========================================= */
.offers-section {
    padding: 60px 0;
    background: #ffffff;
}

.offers-header {
    text-align: center;
    margin-bottom: 40px;
}

.offers-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
    margin-bottom: 6px;
}

.offers-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.offers-slider-wrap {
    overflow: hidden;
    position: relative;
}

.offers-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.offer-card {
    flex: 0 0 calc(33.333% - 16px);
    /* border-radius: 10px; */
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.offer-img {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 2;
    overflow: hidden;
    background: #e5e5e5;
}

.offer-img img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
    transition: transform 0.5s ease;
}

.offer-card:hover .offer-img img {
    transform: scale(1.05);
}

.offer-img__hover {
    position: absolute;
    inset: 0;
    background: rgba(16, 37, 65, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offer-card:hover .offer-img__hover {
    opacity: 1;
}

.offer-img__hover span {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    padding: 0 16px;
}

.offers-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 36px;
}

.offer-nav {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.offer-prev {
    background: #ffffff;
    color: #9ca3af;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.offer-next {
    background: #ffffff;
    color: #9ca3af;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.offer-nav:hover {
    background: #1b1b3a;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(27, 27, 58, 0.25);
}

@media (max-width: 991px) {
    .offer-card {
        flex: 0 0 calc(50% - 12px);
    }

    .offers-title {
        font-size: 26px;
    }
}

@media (max-width: 575px) {
    .offers-section {
        padding: 40px 0;
    }

    .offer-card {
        flex: 0 0 100%;
    }

    .offers-title {
        font-size: 22px;
    }

    .offer-nav {
        width: 44px;
        height: 44px;
    }
}

/* ========================================= CTA SECTION ========================================= */
.cta-section {
    position: relative;
    padding: 60px 0;
    background: transparent;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../images/cta-bg.png) center center / cover no-repeat;
    z-index: 0;
}

.cta-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(214, 230, 247, 0.92) 0%, rgba(214, 230, 247, 0.7) 60%, rgba(214, 230, 247, 0.4) 100%);
    z-index: 0;
}

.cta-row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: #262262;
    text-transform: uppercase;
    margin: 0 0 10px;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.cta-content p {
    font-size: 18px;
    color: #262262;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-row {
        flex-direction: column;
        text-align: center;
        gap: 28px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 16px;
    }
}

/* ========================================= TESTIMONIALS SECTION ========================================= */
.testimonials-section {
    padding: 100px 0;
    background: #ffffff;
    background: url(../images/testimonials-bg.png) center center / auto no-repeat local;
}

.testimonials-row {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

/* ── Left Title ── */
.testimonials-title {
    flex: 0 0 260px;
}

.testimonials-eyebrow {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #262262;
    margin-bottom: 10px;
}

.testimonials-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    line-height: 1.15;
    margin: 0;
}

/* ── Right Slider ── */
.testimonials-slider-wrap {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
}

/* Grid stacking: all slides share the same cell so the tallest one naturally expands the container — no fixed heights needed */
.testimonials-track {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.testimonial-slide {
    grid-area: 1 / 1 / 2 / 2;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ── Quote Card ── */
.testimonial-card {
    border: 1px solid #c8ddf5;
    background: #ffffff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.7;
    color: #000;
    margin: 0 0 24px;
}

/* ── Author ── */
.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    font-size: 18px;
    font-weight: 700;
    color: #262262;
}

.testimonial-author span {
    font-size: 18px;
    color: #000;
}

/* ── Dots ── */
.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonials-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.2s ease;
}

.testimonials-dots .dot.active {
    background: #262262;
    transform: scale(1.1);
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .testimonials-row {
        flex-direction: column;
        gap: 36px;
        align-items: center;
    }

    .testimonials-title {
        flex: 0 0 auto;
        text-align: center;
    }

    .testimonials-title h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 70px 0;
    }

    .testimonials-title h2 {
        font-size: 28px;
    }

    .testimonial-card {
        padding: 28px;
    }
}

@media (max-width: 575px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-title h2 {
        font-size: 26px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .testimonial-card p {
        font-size: 15px;
    }
}

/* ========================================= 7. BLOGS SECTION ========================================= */
.blogs-section {
    padding: 40px 0;
    background: #ffffff;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.blog-card {
    background: var(--white);
    /* border-radius: 10px; */
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card-img {
    display: block;
    width: 100%;
    height: 175px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.06);
}

.blog-card-body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-body h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.45;
    color: #0e3c7b;
}

.blog-card-body p {
    font-size: 16px;
    color: #000;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 14px;
}

@media (max-width: 480px) {
    .hero-slider {
        height: 340px;
    }

    .hs-content h1,
    .hs-content h2 {
        font-size: 22px;
    }

    .hs-btn {
        padding: 11px 24px;
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 550px) {
    .blogs-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}