:root {
    --primary-blue: #3F5EEA;
    --dark-bg: #00061B;
    --gold: #F5E2A6;
    --white: #FFFFFF;
    --accent-cyan: #00FFCC;
    --text-gray: #a0a0a0;

    --bg-dark: #020817;
    --bg-blue: #071b4a;
    --primary: #4E6BFF;
    --primary-2: #6F8CFF;
    --text: #ffffff;
    --muted: #9DA8C7;
    --line: rgba(255,255,255,.08);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    background-color: var(--dark-bg);
    color: var(--white);
    font-family: 'Segoe UI', sans-serif;
    overflow-x: hidden;
    max-width: 100%;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 85%;
    margin: 0 auto;
}


.main-header {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
    padding: 30px 0;
}

.logo img {
    max-width: 40%;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.75;
}

.cta-button {
    background: var(--white);
    color: var(--dark-bg);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
}


.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
    background: url('https://kasaeiconsulting.com/v2/assets/images/herosectionbgdesktop2x.png') center/cover no-repeat;
}

.hero-grid-container {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
}

/* Glow effects */
.glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

.glow-left {
    background: #3F5EEA;
    width: 500px;
    height: 500px;
    top: -100px;
    left: -150px;
    opacity: 0.7;
    filter: blur(90px);
}

.hero-wrapper {
    display: flex;
    align-items: center;
    z-index: 10;
    width: 100%;
    gap: 40px;
}

.hero-content {
    flex: 1.2;
    min-width: 0;
}

.sub-title {
    color: var(--gold);
    letter-spacing: 4px;
    font-weight: bold;
    font-size: clamp(12px, 2vw, 14px);
}

.main-title {
    font-size: clamp(36px, 6vw, 85px);
    line-height: 1;
    margin: 20px 0;
    font-weight: 600;
}

.description {
    font-size: clamp(15px, 1.5vw, 20px);
    margin-bottom: 40px;
    opacity: 0.8;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.btn-primary-glass {
    background: rgba(63, 94, 234, 0.7);
    backdrop-filter: blur(15px);
    padding: 18px 35px;
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    border: 1px solid rgba(255,255,255,0.2);
    white-space: nowrap;
}

.btn-video {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
    white-space: nowrap;
}

.play-circle {
    width: 50px;
    height: 50px;
    border: 1px solid var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.trusted-img {
    margin-top: 50px;
    max-width: min(350px, 100%);
}
.hero-image-container {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
    min-width: 0;
}

.doctor-img {
    max-width: 100%;
    object-fit: contain;
}

.status-badge {
    position: absolute;
    bottom: 25%;
    right: 0;
    background: var(--accent-cyan);
    color: var(--dark-bg);
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0, 255, 204, 0.3);
    white-space: nowrap;
}


@media (max-width: 992px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        width: 48px;
        height: 48px;
        background: transparent !important;
        border-radius: 50%;
        border: none;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        z-index: 10002;
        position: relative;
        color: #fff;
        font-size: 18px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        flex-shrink: 0;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: #071b4a;
        backdrop-filter: blur(15px);
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 10000;
        pointer-events: none;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    }

    .nav-menu.active {
        transform: translateX(0);
        pointer-events: all;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 25px;
        padding: 0;
        list-style: none;
        text-align: center;
    }

    .nav-menu ul li a {
        font-size: 24px;
        color: #FFFFFF;
        text-decoration: none;
        font-weight: 600;
    }

    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        padding-top: 60px;
        gap: 0;
    }

    .main-title {
        font-size: 42px;
        margin: 15px 0 25px;
        text-align: left;
    }
    .sub-title{
        text-align: left !important;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-image-container {
        margin-top: 40px;
        width: 100%;
        justify-content: center;
    }

    .doctor-img {
        max-width: 100%;
    }

    .status-badge {
        right: 50%;
        transform: translateX(50%);
        bottom: 15%;
    }

    .trusted-img {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 993px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.about-section {
    background-color: #f8f9fa;
    padding: 100px 0;
    border-radius: 60px 60px 0 0;
    margin-top: -70px;
    position: relative;
    z-index: 20;
    color: #1a1a1a;
    overflow: hidden;
}

.about-badge-wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.about-badge {
    border: 1px solid #333;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 14px;
    text-transform: uppercase;
}

.about-content {
    max-width: 80%;
    margin: 0 auto;
    text-align: center;
}

.reveal-text {
    font-size: clamp(22px, 4vw, 55px);
    line-height: 1.4;
    font-weight: 500;
    color: rgba(26, 26, 26, 0.2);
}

.reveal-text span.char {
    color: rgba(26, 26, 26, 1);
}

.inline-img {
    display: inline-block;
    width: 80px;
    height: 40px;
    vertical-align: middle;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 10px;
}

.inline-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 100px;
    text-align: center;
}

.stat-item {
    min-width: 0;
}

.stat-item h2 {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 600;
    margin-bottom: 10px;
}

.stat-item p {
    color: #666;
    font-size: 16px;
}

@media (max-width: 768px) {
    .about-section {
        margin-top: -45px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item h2 {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .about-content {
        max-width: 95%;
    }
}


.slider-section {
    background: #FFFFFF;
    width: 100%;
    padding: 60px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-viewport {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: 100%;
}

.slide-card {
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    transition:
        width  0.55s cubic-bezier(0.77, 0, 0.18, 1),
        height 0.55s cubic-bezier(0.77, 0, 0.18, 1),
        opacity 0.4s ease,
        transform 0.55s cubic-bezier(0.77, 0, 0.18, 1);
}

.slide-card.inactive {
    width: 210px;
    height: 300px;
    transform: scale(0.95);
}

.slide-card.active {
    width: min(670px, 90vw);
    height: 430px;
    transform: scale(1);
    z-index: 2;
}

.slide-card.far {
    width: 50px;
    height: 260px;
    opacity: 0.3;
    transform: scale(0.88);
}

.card-img-wrap {
    position: relative;
    width: 100%;
    flex-shrink: 0;
    overflow: hidden;
    transition: height 0.55s cubic-bezier(0.77, 0, 0.18, 1);
}

.slide-card.inactive .card-img-wrap,
.slide-card.far      .card-img-wrap { height: 100%; }

.slide-card.active   .card-img-wrap { height: 195px; }

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        #1E186E 0%,
        rgba(8, 18, 65, 0.55) 42%,
        rgba(8, 18, 65, 0.05) 100%
    );
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.slide-card.active   .card-overlay { opacity: 0; }
.slide-card.inactive .card-overlay { opacity: 1; }
.slide-card.far      .card-overlay { opacity: 1; }

.inactive-title {
    position: absolute;
    bottom: 20px;
    left: 18px;
    right: 18px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    z-index: 3;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.slide-card.active   .inactive-title { opacity: 0; }
.slide-card.inactive .inactive-title { opacity: 1; }
.slide-card.far      .inactive-title { opacity: 0; }

.active-content {
    background: #00061B;
    width: 100%;
    overflow: hidden;
    max-height: 0;
    padding: 0 20px;
    opacity: 0;
    transition:
        max-height 0.55s cubic-bezier(0.77, 0, 0.18, 1),
        padding    0.55s cubic-bezier(0.77, 0, 0.18, 1),
        opacity    0.3s ease;
    pointer-events: none;
}

.slide-card.active .active-content {
    max-height: 280px;
    padding: 18px 20px 22px;
    opacity: 1;
    pointer-events: auto;
    border-radius: 0 0 25px 25px;
    transition:
        max-height 0.55s cubic-bezier(0.77, 0, 0.18, 1),
        padding    0.55s cubic-bezier(0.77, 0, 0.18, 1),
        opacity    0.35s ease 0.1s;
}

.active-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.active-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    flex: 1;
    min-width: 0;
}

.contact-btn {
    /*background: #3a3fff;*/
    /*color: #fff;*/
    /*border: none;*/
    /*border-radius: 20px;*/
    /*padding: 7px 15px;*/
    /*font-size: 13px;*/
    /*font-weight: 600;*/
    /*cursor: pointer;*/
    /*white-space: nowrap;*/
    /*flex-shrink: 0;*/
    display: none !important;
}

.active-desc {
    color: rgba(255,255,255,0.72);
    font-size: 12.5px;
    line-height: 1.65;
}

@media (max-width: 700px) {
    .slide-card.inactive {
        width: 52px;
        height: 280px;
    }

    .slide-card.active {
        width: min(290px, 85vw);
        max-height: 480px;
        height: auto;
    }

    .slide-card.far {
        width: 0;
        opacity: 0;
        margin: 0;
        padding: 0;
    }

    .slide-card.inactive .inactive-title {
        display: none;
    }

    .slider-track {
        gap: 10px;
    }

    .active-title { font-size: 16px; }
    .active-desc  { font-size: 12px; }
}


.kc-about-section {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('https://kasaeiconsulting.com/v2/assets/images/aboutdesktop.png');
    overflow: hidden;
    background: #071b4a;
}

.kc-about-section .kc-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 25px;
    width: 100%;
}

.kc-about-section .kc-about-flex {
    display: flex;
    align-items: flex-start;
    gap: 70px;
}

.kc-about-section .kc-about-content {
    flex: 1;
    min-width: 0;
}

.kc-about-section .kc-section-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 35px;
    color: #fff;
}

.kc-about-section .kc-content-text p {
    font-size: 15.5px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 22px;
}

.kc-about-section .kc-btn-glow {
    display: inline-block;
    padding: 16px 38px;
    background: #3F5EEA;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: 0 0 25px rgba(63, 94, 234, 0.45);
    transition: all 0.4s ease;
}

.kc-about-section .kc-btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(63, 94, 234, 0.7);
}

.kc-about-section .kc-about-media {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-width: 0;
}

.kc-about-section .kc-business-box img {
    width: 340px;
    max-width: 100%;
    height: auto;
    display: block;
}

.kc-about-section .kc-media-grid {
    display: flex;
    gap: 25px;
    align-items: flex-end;
}

.kc-about-section .kc-img-wrapper {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    min-width: 0;
}

.kc-about-section .kc-img-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.kc-about-section .kc-caption {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 18px;
    text-align: left;
}

.kc-about-section .kc-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.kc-about-section .kc-custom-svg-img {
    width: 24px;
    height: auto;
    display: block;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .kc-about-section {
        background-image: url('https://kasaeiconsulting.com/v2/assets/images/aboutmobilesection.png');
        padding: 80px 0;
    }

    .kc-about-section .kc-about-flex {
        flex-direction: column;
        gap: 50px;
        align-items: center;
    }

    .kc-about-section .kc-about-content,
    .kc-about-section .kc-about-media {
        width: 100%;
    }

    .kc-about-section .kc-media-grid {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .kc-about-section .kc-media-item {
        width: 100%;
        max-width: 450px;
    }

    .kc-about-section .kc-btn-glow {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}


.kcv-videos-section {
    padding: 60px 0;
    background-color: #fbfbfb;
    overflow: hidden;
}

.kcv-videos-section .kcv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.kcv-videos-section .kcv-section-title {
    font-size: 28px;
    font-weight: 600;
    color: #111;
    margin-bottom: 30px;
}

.kcv-videos-section .kcv-video-slider {
    overflow: visible !important;
    padding-bottom: 60px;
}

.kcv-videos-section .kcv-thumb-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background-color: #000;
    border: 3px solid #001a33;
    transition: transform 0.3s ease;
}

.kcv-videos-section .kcv-thumb-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.kcv-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
    cursor: pointer;
}

.kcv-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #fff;
}

.kcv-play-icon {
    width: 30px;
    height: auto;
}

.kcv-videos-section .swiper-pagination {
    bottom: 0 !important;
}

.kcv-videos-section .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ccc;
    opacity: 1;
    margin: 0 5px !important;
}

.kcv-videos-section .swiper-pagination-bullet-active {
    background: #001a33 !important;
    width: 10px;
    height: 10px;
}

@media (min-width: 992px) {
    .kcv-videos-section .kcv-video-slider {
        cursor: default;
    }

    .kcv-videos-section .swiper-wrapper {
        display: flex;
        gap: 20px;
        transform: none !important;
    }

    .kcv-videos-section .swiper-slide {
        width: calc(33.33% - 14px) !important;
        margin-right: 0 !important;
    }

    .kcv-videos-section .swiper-pagination {
        display: none;
    }
}

@media (max-width: 991px) {
    .kcv-videos-section {
        overflow: hidden;
    }

    .kcv-videos-section .kcv-container {
        overflow: visible;
    }

    .kcv-videos-section .kcv-section-title {
        text-align: left;
        padding-left: 5px;
    }

    .kcv-videos-section .kcv-video-slider {
        margin-right: -20px;
        padding-right: 20px;
    }
}

.testimonials-section {
    /*width: 85%;*/
    margin: auto;
    padding: 100px 5%;
    background: #071b4a;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 52px;
    gap: 20px;
}

.testimonials-title {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    max-width: 490px;
}

.testimonials-cta-btn {
    background: transparent;
    border: 1.5px solid rgba(100, 160, 255, 0.5);
    border-radius: 50px;
    padding: 14px 30px;
    color: #c8dcff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    box-shadow:
        0 0 20px rgba(60, 120, 255, 0.18),
        inset 0 0 14px rgba(60, 120, 255, 0.06);
    transition: box-shadow 0.35s ease, border-color 0.35s ease, color 0.25s ease;
    flex-shrink: 0;
}

.testimonials-cta-btn:hover {
    border-color: rgba(110, 170, 255, 0.95);
    color: #ffffff;
    box-shadow:
        0 0 36px rgba(60, 130, 255, 0.55),
        inset 0 0 20px rgba(60, 120, 255, 0.14);
}

.testimonials-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.testimonials-card {
    position: relative;
    border-radius: 20px;
    padding: 28px 26px 24px;
    overflow: hidden;
    background: linear-gradient(150deg, rgba(8, 22, 72, 0.92) 0%, rgba(4, 10, 42, 0.97) 100%);
    border: 1px solid rgba(60, 120, 255, 0.32);
    box-shadow:
        0 0 0 1px rgba(60, 120, 255, 0.10),
        0 0 28px rgba(30, 80, 255, 0.16),
        0 0 70px rgba(30, 80, 255, 0.08),
        inset 0 0 50px rgba(20, 60, 200, 0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonials-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 0 0 1px rgba(80, 150, 255, 0.35),
        0 0 50px rgba(40, 100, 255, 0.38),
        0 0 110px rgba(30, 80, 255, 0.16),
        inset 0 0 60px rgba(20, 60, 200, 0.11);
}

.testimonials-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        rgba(80, 150, 255, 0.7),
        rgba(140, 190, 255, 1),
        rgba(80, 150, 255, 0.7),
        transparent
    );
    border-radius: 2px;
    filter: blur(0.4px);
}

.testimonials-card-glow-left,
.testimonials-card-glow-right {
    position: absolute;
    top: 25%;
    width: 90px;
    height: 55%;
    background: radial-gradient(ellipse, rgba(40, 100, 255, 0.32) 0%, transparent 75%);
    pointer-events: none;
    filter: blur(10px);
    z-index: 0;
}

.testimonials-card-glow-left  { left: -35px; }
.testimonials-card-glow-right { right: -35px; }

.testimonials-card-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(80, 140, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(80, 140, 255, 0.07) 1px, transparent 1px);
    background-size: 34px 34px;
    border-radius: 20px;
    pointer-events: none;
    z-index: 0;
}

.testimonials-card-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonials-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(80, 140, 255, 0.45);
    box-shadow: 0 0 16px rgba(60, 120, 255, 0.32);
    background: linear-gradient(135deg, #2a4db5, #101e6a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #c8dcff;
}

.testimonials-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonials-author-info { flex: 1; }

.testimonials-author-name {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.testimonials-stars {
    display: flex;
    gap: 3px;
}

.testimonials-star {
    color: #f5a12a;
    font-size: 15px;
    line-height: 1;
}

.testimonials-quote-mark-top {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 38px;
    font-weight: 900;
    color: rgba(90, 150, 255, 0.55);
    line-height: 1;
    align-self: flex-start;
    padding-top: 2px;
    letter-spacing: -2px;
}

.testimonials-divider {
    position: relative;
    z-index: 2;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(80, 140, 255, 0.38),
        transparent
    );
    margin: 18px 0 20px;
}

.testimonials-card-body {
    position: relative;
    z-index: 2;
    font-size: 13.5px;
    line-height: 1.78;
    color: rgba(190, 215, 255, 0.72);
    min-height: 185px;
}

.testimonials-quote-mark-bottom {
    position: relative;
    z-index: 2;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 42px;
    font-weight: 900;
    color: rgba(90, 150, 255, 0.5);
    line-height: 1;
    text-align: right;
    margin-top: 14px;
    letter-spacing: -2px;
}

@media (max-width: 900px) {
    .testimonials-section {
        width: 100%;
        padding: 60px 20px;
    }

    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 36px;
    }

    .testimonials-title {
        max-width: none;
    }

    .testimonials-cta-btn {
        width: 100%;
        text-align: center;
        padding: 16px 20px;
        font-size: 12px;
    }

    .testimonials-cards-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: visible;
        gap: 18px;
        padding-bottom: 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .testimonials-cards-grid::-webkit-scrollbar {
        display: none;
    }

    .testimonials-card {
        flex: 0 0 78vw;
        max-width: 320px;
        min-width: 260px;
        scroll-snap-align: start;
    }
}


.ci-section {
    width: 100%;
    min-height: 100vh;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
    overflow: hidden;
}

.ci-section-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px 80px;
    align-items: start;
}

.ci-left {
    display: flex;
    flex-direction: column;
    gap: 28px;
    min-width: 0;
}

.ci-title {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 700;
    color: #111827;
    line-height: 1.15;
}

.ci-intro {
    font-size: 15px;
    line-height: 1.75;
    color: #4b5563;
    max-width: 580px;
}

.ci-tabs {
    display: flex;
    align-items: center;
    background: #e5e7eb;
    border-radius: 50px;
    padding: 5px;
    gap: 4px;
    width: fit-content;
    max-width: 100%;
    flex-wrap: nowrap;
    overflow: hidden;
}

.ci-tab {
    border: none;
    background: transparent;
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
    white-space: nowrap;
}

.ci-tab.ci-tab--active {
    background: #1e1b4b;
    color: #ffffff;
}

.ci-tab:not(.ci-tab--active):hover {
    background: #d1d5db;
    color: #374151;
}

.ci-tab-body {
    font-size: 15px;
    line-height: 1.78;
    color: #374151;
}

.ci-uptime-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #e8eaf6;
    border-radius: 14px;
    padding: 16px 22px;
    width: fit-content;
    max-width: 100%;
}

.ci-uptime-avatars {
    display: flex;
    flex-shrink: 0;
}

.ci-uptime-avatars .ci-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2.5px solid #e8eaf6;
    overflow: hidden;
    margin-left: -10px;
    background: #c7cde8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #3730a3;
    flex-shrink: 0;
}

.ci-uptime-avatars .ci-avatar:first-child {
    margin-left: 0;
}

.ci-uptime-avatars .ci-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ci-uptime-text .ci-uptime-number {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.ci-uptime-text .ci-uptime-label {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}

.ci-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
    min-width: 0;
}

.ci-image-wrap {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #d1d5db;
}

.ci-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ci-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ci-stat {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.ci-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #1e1b4b;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ci-stat-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #a5b4fc;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ci-stat-number {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 5px;
}

.ci-stat-desc {
    font-size: 13.5px;
    line-height: 1.65;
    color: #4b5563;
}

@media (max-width: 900px) {
    .ci-section-container {
        grid-template-columns: 1fr;
        gap: 32px;
        width: 90%;
    }

    .ci-right {
        display: contents;
    }

    .ci-left     { order: 1; }
    .ci-image-wrap { order: 3; aspect-ratio: 16 / 10; }
    .ci-stats    { order: 4; }

    .ci-section {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 60px 0;
    }

    .ci-uptime-badge {
        width: 100%;
    }

    .ci-tabs {
        width: 100%;
        justify-content: space-between;
    }

    .ci-tab {
        flex: 1;
        text-align: center;
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .ci-tab {
        font-size: 12px;
        padding: 8px 10px;
    }
}


.kco-offices-section {
    padding: 80px 0;
    background-color: #fcfcfc;
    overflow: hidden;
}

.kco-offices-section .kco-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.kco-offices-section .kco-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    gap: 20px;
}

.kco-offices-section .kco-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 500;
    color: #1a1a1a;
}

.kco-offices-section .kco-see-more {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    border: 1px solid #ddd;
    padding: 6px 6px 6px 20px;
    border-radius: 50px;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.kco-offices-section .kco-arrow-circle {
    width: 35px;
    height: 35px;
    background: #0a0a33;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.kco-offices-section .kco-arrow-circle svg { width: 18px; }

.kco-offices-section .kco-offices-slider {
    padding: 40px 0 80px;
    overflow: visible !important;
}

.kco-offices-section .kco-office-card {
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    transition: all 0.5s ease;
    opacity: 0.5;
    transform: scale(0.85);
}

.kco-offices-section .kco-office-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.kco-offices-section .swiper-slide-active {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 10;
}

.kco-offices-section .kco-pagination {
    bottom: 20px !important;
}

.kco-offices-section .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ccc;
    opacity: 1;
    transition: all 0.3s ease;
}

.kco-offices-section .swiper-pagination-bullet-active {
    background: #0000ff !important;
    width: 12px;
    height: 12px;
    border: 3px solid #fff;
    outline: 1px solid #0000ff;
}

@media (max-width: 768px) {
    .kco-offices-section .kco-header {
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    .kco-offices-section .kco-title { font-size: 28px; }

    .kco-offices-section .kco-office-card { height: 240px; }

    .kco-offices-section .kco-offices-slider {
        margin-top: 20px;
    }
}


.kcr-reels-section {
    position: relative;
    padding: 100px 0;
    background-color: #020616;
    overflow: hidden;
    color: #fff;
}

.kcr-reels-section .kcr-main-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://kasaeiconsulting.com/v2/assets/images/reelsbg.png');
    background-size: cover;
    background-position: center;
    /*opacity: 0.6;*/
    background: #071b4a;
}

.kcr-reels-section .kcr-container {
    position: relative;
    z-index: 5;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.kcr-reels-section .kcr-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    gap: 30px;
}

.kcr-reels-section .kcr-badge {
    background: #f3e1b4;
    color: #111;
    padding: 6px 16px;
    border-radius: 8px 8px 8px 0;
    font-size: 11px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

.kcr-reels-section .kcr-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    line-height: 1.2;
}

.kcr-reels-section .kcr-subtitle {
    max-width: 400px;
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    margin-bottom: 8px;
}

.kcr-reels-section .kcr-slider-wrapper {
    position: relative;
}

.kcr-reels-section .kcr-reel-card {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    background: #111;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.4s ease;
}

.kcr-reels-section .kcr-reel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.kcr-reels-section .kcr-fade-left,
.kcr-reels-section .kcr-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 10;
    pointer-events: none;
}

.kcr-reels-section .kcr-fade-left {
    left: 0;
    background: linear-gradient(to right, #020616 0%, transparent 100%);
}

.kcr-reels-section .kcr-fade-right {
    right: 0;
    background: linear-gradient(to left, #020616 0%, transparent 100%);
}

@media (max-width: 991px) {
    .kcr-reels-section .kcr-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .kcr-reels-section .kcr-fade-left,
    .kcr-reels-section .kcr-fade-right {
        display: none;
    }

    .kcr-reels-section .kcr-reels-slider {
        overflow: visible !important;
    }
}

.kmc-collab-section {
    padding: 80px 0;
    background: radial-gradient(circle at top right, #f0f2f8, #ffffff);
    overflow: hidden;
}

.kmc-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.kmc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    color: #000;
}

.kmc-title {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 600;
    line-height: 1.3;
    max-width: 550px;
}

.kmc-desc {
    font-size: 18px;
    color: #555;
    max-width: 420px;
    line-height: 1.6;
}

.kmc-main-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start;
}

.kmc-main-grid > div {
    min-width: 0;
}

.kmc-video-card {
    border-radius: 35px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 9 / 14;
    background: #000;
    width: 100%;
}

.kmc-video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.kmc-overlay-text {
    position: absolute;
    bottom: 40px;
    left: 20px;
    right: 20px;
    color: white;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

.kmc-highlight { color: #4ade80; }

.kmc-cta {
    background: #0d0d3d;
    color: white;
    padding: 12px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    margin-bottom: 30px;
    margin-top: 30px;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.kmc-info-heading {
    font-size: 24px;
    color: #444;
    margin-bottom: 40px;
    line-height: 1.5;
}

.kmc-stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    position: relative;
}

.kmc-floating-badge {
    position: absolute;
    top: -45px;
    right: 15%;
    transform: rotate(-4deg);
}

.kmc-badge-tag {
    background: #f3e1b4;
    padding: 8px 18px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 800;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.05);
    white-space: nowrap;
}

.kmc-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a33;
    margin-bottom: 12px;
}

.kmc-stat-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.kmc-video-swiper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.swiper.kmc-video-swiper.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
    padding-bottom: 50px !important;
}

@media (max-width: 991px) {
    .kmc-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }

    .kmc-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .kmc-video-swiper {
        overflow: visible !important;
    }

    .kmc-slider-col {
        width: 100%;
        overflow: visible;
    }

    .kmc-stats-container {
        grid-template-columns: 1fr;
    }

    .kmc-floating-badge {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 20px;
        transform: rotate(0);
        display: inline-block;
    }
}


.ayd-section {
    padding: 100px 0;
    background-color: #FFFF;
    color: #1d1d1f;
    overflow: hidden;
}

.ayd-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ayd-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    gap: 20px;
}

.ayd-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 500;
    margin: 0;
}

.ayd-top-desc {
    font-size: 18px;
    color: #333;
    max-width: 450px;
    margin: 10px 0 0 0;
}

.ayd-main-content {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 30px;
    align-items: end;
}

.ayd-main-content > * {
    min-width: 0;
}

.ayd-text-col p {
    font-size: 17px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}

.ayd-img-wrapper {
    border-radius: 40px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.ayd-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ayd-dark-card {
    background-color: #000514;
    border-radius: 35px;
    padding: 40px 30px;
    color: #fff;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ayd-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.ayd-card-title {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
    flex: 1;
    min-width: 0;
}

.ayd-card-icon {
    width: 24px;
    height: 24px;
    color: #4a90e2;
    flex-shrink: 0;
}

.ayd-card-icon svg {
    width: 100%;
    height: 100%;
}

.ayd-card-desc {
    font-size: 15px;
    color: #bbb;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .ayd-header {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .ayd-main-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ayd-text-col { order: 1; }
    .ayd-image-col { order: 2; }
    .ayd-card-col { order: 3; }

    .ayd-dark-card {
        height: auto;
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .ayd-title { font-size: 28px; }

    .ayd-img-wrapper { border-radius: 25px; }

    .ayd-dark-card { border-radius: 24px; padding: 28px 20px; }
}


.main-footer * {
    box-sizing: border-box;
}

.main-footer {
    position: relative;
    background: #fff;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.main-footer .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

.footer-cta-card {
    position: relative;
    overflow: visible;
    border-radius: 34px;
    min-height: 355px;
    width: min(83%, calc(100% - 40px));
    margin: 55px auto 50px;
    background: url('https://kasaeiconsulting.com/v2/assets/images/ctadesktop2x.png') center/cover no-repeat;
    padding: 0 clamp(20px, 5%, 70px);
    z-index: 10;
}

.cta-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    min-height: 355px;
    position: relative;
    z-index: 2;
}

.cta-image {
    width: 50%;
    position: relative;
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.cta-image img {
    width: 95%;
    max-width: 500px;
    position: absolute;
    left: -12px;
    bottom: 0;
    object-fit: contain;
    display: block;
    /*filter: drop-shadow(0 10px 35px rgba(0,0,0,.45));*/
}

.cta-text {
    width: 58%;
    padding: 72px 0 52px;
    position: relative;
    z-index: 3;
}

.cta-text h2 {
    margin: 0 0 28px;
    max-width: 530px;
    color: #fff;
    font-size: clamp(32px, 4.5vw, 54px);
    line-height: 1.04;
    font-weight: 300;
    letter-spacing: -2px;
}

.cta-text p {
    margin: 0 0 34px;
    max-width: 560px;
    color: rgba(255,255,255,.78);
    font-size: 14px;
    line-height: 1.9;
    font-weight: 400;
}

.btn-glow {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 228px;
    height: 54px;
    padding: 0 28px;
    border-radius: 100px;
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    letter-spacing: .2px;
    font-weight: 500;
    background: linear-gradient(180deg, #6582ff 0%, #4867f5 100%);
    box-shadow:
        0 0 0 1px rgba(255,255,255,.12) inset,
        0 10px 30px rgba(73,104,255,.55),
        0 0 45px rgba(91,123,255,.4);
    transition: .35s ease;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 0 1px rgba(255,255,255,.15) inset,
        0 15px 40px rgba(73,104,255,.65),
        0 0 60px rgba(91,123,255,.55);
}

.footer-bottom-area {
    position: relative;
    overflow: hidden;
    background-image: url('https://kasaeiconsulting.com/v2/assets/images/footerbg2xdesktop.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0 70px;
    color: #fff;
}

.footer-row-top {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 35px;
}

.footer-heading {
    margin: 0;
    font-size: clamp(28px, 5vw, 62px);
    line-height: 1.05;
    letter-spacing: -2.8px;
    font-weight: 300;
    color: #fff;
}

.footer-subscribe {
    display: flex;
    align-items: center;
    width: min(460px, 100%);
    height: 45px;
    border-radius: 100px;
    padding: 6px;
    border: 1px solid rgba(76,122,255,.55);
    background: rgba(255,255,255,.015);
    backdrop-filter: blur(10px);
}

.footer-subscribe input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    height: 100%;
    padding: 0 24px;
    color: #fff;
    font-size: 14px;
    min-width: 0;
}

.footer-subscribe input::placeholder {
    color: rgba(255,255,255,.5);
}

.footer-subscribe button {
    border: none;
    outline: none;
    cursor: pointer;
    height: 35px;
    padding: 0 28px;
    border-radius: 100px;
    background: linear-gradient(180deg, #5b7cff 0%, #4868f6 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 10px 25px rgba(78,107,255,.45);
    flex-shrink: 0;
    white-space: nowrap;
}

.footer-row-middle {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    padding-bottom: 54px;
    margin-bottom: 54px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-contact-info {
    display: flex;
    gap: 70px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item .icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(86,117,255,.5);
    color: #fff;
    font-size: 15px;
    flex-shrink: 0;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    opacity: .88;
}

.footer-catalog h3,
.social-block h3,
.chat-block h3,
.location-block h3,
.language-block h3 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.footer-catalog nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 520px;
}

.footer-catalog nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    opacity: .85;
}

.footer-catalog nav span {
    color: rgba(255,255,255,.25);
}

.footer-row-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr auto;
    gap: 50px;
}

.social-icons,
.chat-icons,
.lang-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icons a,
.chat-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(86,117,255,.5);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: .3s ease;
    flex-shrink: 0;
}

.social-icons a:hover,
.chat-icons a:hover {
    background: #4e6bff;
    transform: translateY(-2px);
}

.location-block p {
    margin: 0;
    color: rgba(255,255,255,.62);
    line-height: 1.9;
    font-size: 15px;
}

.lang-links a {
    text-decoration: none;
    color: rgba(255,255,255,.45);
    transition: .3s ease;
    font-size: 15px;
}

.lang-links a.active { color: #4E6BFF; }
.lang-links a:hover  { color: #fff; }

@media (max-width: 1100px) {
    .cta-content {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        min-height: auto;
    }

    .cta-image,
    .cta-text { width: 100%; }

    .cta-image {
        height: auto;
        justify-content: center;
        margin-top: 40px;
    }

    .cta-image img {
        position: relative;
        left: auto;
        bottom: 0;
        width: 100%;
        max-width: 320px;
    }

    .footer-cta-card {
        padding: 50px 30px 0;
        min-height: auto;
    }

    .cta-text {
        text-align: center;
        padding-top: 20px;
    }

    .cta-text h2,
    .cta-text p { max-width: 100%; }

    .footer-row-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-row-middle { flex-direction: column; }

    .footer-contact-info {
        flex-direction: column;
        gap: 24px;
    }

    .footer-row-bottom {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-cta-card {
        width: calc(100% - 30px);
        padding: 40px 25px 0;
        border-radius: 24px;
        background: url('https://kasaeiconsulting.com/v2/assets/images/ctamobile2xbg.png') bottom/cover no-repeat;
    }

    .footer-heading { font-size: 42px; }

    .footer-row-bottom { grid-template-columns: 1fr; }

    .footer-bottom-area {
        background: url('https://kasaeiconsulting.com/v2/assets/images/footerbg2xmobile.png') top/cover no-repeat;
    }
}

@media (max-width: 576px) {
    .main-footer .container { padding: 0 18px; }

    .footer-cta-card { border-radius: 24px; }

    .cta-image { height: 260px; }

    .cta-image img { max-width: 280px; }

    .cta-text h2 {
        font-size: 30px;
        letter-spacing: -1.5px;
    }

    .footer-heading {
        font-size: 30px;
        letter-spacing: -1px;
    }

    .footer-subscribe {
        flex-direction: column;
        height: auto;
        border-radius: 24px;
        padding: 12px;
        gap: 12px;
        width: 100%;
    }

    .footer-subscribe input {
        width: 100%;
        height: 50px;
        padding: 0 16px;
    }

    .footer-subscribe button {
        width: 100%;
        height: 44px;
    }
}



.contact-hero-wrapper {
    padding: 100px 0;
    color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-main-title {
    font-size: 72px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 90px;
    letter-spacing: -1px;
}

.contact-col h3, 
.contact-location h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
    text-transform: none;
}

.contact-grid-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-circle, 
.social-icons-row a {
    width: 48px;
    height: 48px;
    border: 1px solid #0a3d91;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.3s ease;
    font-size: 18px;
}

.info-box a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
}


.social-icons-row {
    display: flex;
    gap: 12px;
}


.contact-grid-bottom {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 100px;
    align-items: flex-start;
}

.contact-hero-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 480px;
}

.contact-hero-form input {
    width: 100%;
    background: transparent;
    border: 1px solid #0a3d91;
    border-radius: 35px;
    padding: 18px 25px;
    color: #ffffff;
    font-size: 15px;
    outline: none;
}

.contact-hero-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-glow-blue {
    width: fit-content;
    min-width: 180px;
    background: #4a6cf7;
    color: #ffffff;
    border: none;
    border-radius: 35px;
    padding: 16px 40px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.3s ease;
    margin-top: 10px;
}

.btn-glow-blue:hover {
    background: #3a5ce5;
    transform: translateY(-2px);
}

.contact-location p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

@media (max-width: 1024px) {
    .contact-grid-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
    .contact-grid-bottom {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .contact-main-title { font-size: 48px; }
    .contact-grid-top { grid-template-columns: 1fr; }
}






.offices-section { padding: 80px 0; background: #fff; }

.office-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    background: none;
    border: none;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    padding: 5px 0;
    transition: 0.3s;
}

.tab-btn.active { color: #0047AB; font-weight: 600; }

.office-gallery {
    columns: 3;
    column-gap: 20px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 4px;
    display: block;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content img { max-width: 90vw; max-height: 85vh; border-radius: 5px; }

.modal-close { position: absolute; top: 30px; right: 40px; color: #fff; font-size: 40px; cursor: pointer; }

.modal-prev, .modal-next {
    position: absolute;
    background: none; border: none;
    color: #fff; font-size: 30px; cursor: pointer;
    padding: 20px;
}
.modal-prev { left: 20px; }
.modal-next { right: 20px; }

@media (max-width: 992px) { .office-gallery { columns: 2; } }
@media (max-width: 600px) { .office-gallery { columns: 1; } }






.services-section{
    padding:120px 0;
    background: #f8f9fa;
}

.services-grid{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#071b4a;
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:40px;
    transition:.3s ease;
}

.service-card:hover{
    transform:translateY(-6px);
    border-color:rgba(255,255,255,.2);
}

.service-card h3{
    font-size:28px;
    line-height:1.2;
    margin-bottom:20px;
    color:#fff;
}

.service-card p{
    font-size:16px;
    line-height:1.8;
    color:rgba(255,255,255,.7);
}

@media(max-width:992px){
    .services-grid{
        grid-template-columns:1fr;
        margin: 0px 10px;
    }
}







.kmfmv-card{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    background:#000;
    aspect-ratio:9/16;
    cursor:pointer;
}

.kmfmv-poster{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:2;
    transition:.3s;
}

.kmfmv-video{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    background:#000;
}

.kmfmv-play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:80px;
    height:80px;
    border-radius:50%;
    background:rgba(0,0,0,.7);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    color:#fff;
    font-size:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:10;
    pointer-events:none;
    transition:.3s;
}

.kmfmv-card.kmfmv-playing .kmfmv-play-btn{
    opacity:0;
}

.kmfmv-card.kmfmv-playing .kmfmv-poster{
    opacity:0;
    pointer-events:none;
}

.kmfmv-video::-webkit-media-controls-panel{
    background:rgba(0,0,0,.7);
}

.kmfmv-video:focus{
    outline:none;
}

.kmfmv-card:hover .kmfmv-play-btn{
    transform:translate(-50%,-50%) scale(1.08);
}

@media (max-width:768px){

    .kmfmv-play-btn{
        width:60px;
        height:60px;
        font-size:26px;
    }

}











.kcrv-card{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    background:#000;
    aspect-ratio:9/16;
    cursor:pointer;
}

.kcrv-poster{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:2;
    transition:.3s;
}

.kcrv-video{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    background:#000;
}

.kcrv-play-btn{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:72px;
    height:72px;
    border-radius:50%;
    background:rgba(0,0,0,.65);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    color:#fff;
    font-size:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:10;
    pointer-events:none;
    transition:.3s;
}

.kcrv-card.kcrv-playing .kcrv-play-btn{
    opacity:0;
}

.kcrv-card.kcrv-playing .kcrv-poster{
    opacity:0;
    pointer-events:none;
}

.kcrv-video::-webkit-media-controls-panel{
    background:rgba(0,0,0,.7);
}

.kcrv-video:focus{
    outline:none;
}

.kcrv-card:hover .kcrv-play-btn{
    transform:translate(-50%,-50%) scale(1.08);
}

@media (max-width:768px){

    .kcrv-play-btn{
        width:58px;
        height:58px;
        font-size:24px;
    }

}

















.kciv-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    background:#000;
    cursor:pointer;
    aspect-ratio:9/16;
}

.kciv-poster{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:2;
    transition:.3s;
}

.kciv-video{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    background:#000;
}

.kciv-play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:72px;
    height:72px;
    border-radius:50%;
    background:rgba(0,0,0,.65);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    color:#fff;
    font-size:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:10;
    transition:.3s;
    pointer-events:none;
}

.kciv-card.kciv-playing .kciv-play-btn{
    opacity:0;
}

.kciv-card.kciv-playing .kciv-poster{
    opacity:0;
    pointer-events:none;
}

.kciv-video::-webkit-media-controls-panel{
    background:rgba(0,0,0,.7);
}

.kciv-video:focus{
    outline:none;
}

.kciv-card:hover .kciv-play-btn{
    transform:translate(-50%,-50%) scale(1.08);
}

@media (max-width:768px){

    .kciv-play-btn{
        width:58px;
        height:58px;
        font-size:24px;
    }

}


















.kcrv-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
    cursor: pointer;
}

.kcrv-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #fff;
}

.kcrv-play-icon {
    width: 30px;
    height: auto;
}






.kciv-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
    cursor: pointer;
}

.kciv-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #fff;
}

.kciv-play-icon {
    width: 30px;
    height: auto;
}


.kmfmv-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
    cursor: pointer;
}

.kmfmv-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #fff;
}

.kmfmv-play-icon {
    width: 30px;
    height: auto;
}















.kmc-info-col .kco-offices-slider {
    padding: 40px 0 80px;
    overflow: hidden !important;
}

.kmc-info-col .kco-office-card {
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    transition: all 0.5s ease;
    opacity: 1;
    transform: scale(1);
}

.kmc-info-col .kco-office-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.kmc-info-col .kco-offices-section .swiper-slide-active {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 10;
}

.kmc-info-col .kco-pagination {
    bottom: 20px !important;
}

.kmc-info-col .kco-offices-section .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ccc;
    opacity: 1;
    transition: all 0.3s ease;
}

.kmc-info-col .kco-offices-section .swiper-pagination-bullet-active {
    background: #0000ff !important;
    width: 12px;
    height: 12px;
    border: 3px solid #fff;
    outline: 1px solid #0000ff;
}

@media (max-width: 768px) {

    .kmc-info-col .kco-office-card { height: 340px; }

    .kmc-info-col .kco-offices-slider {
        margin-top: 20px;
    }
}











































/* =============================================
   OFFICE GALLERY – og- prefix
   فایل: office-gallery.css
   ============================================= */

/* ─── ریست و بیس ───────────────────────── */
.og-section {
  padding: 80px 0;
  background: #fff;
}

.og-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── تب‌ها ──────────────────────────────── */
.og-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  border-bottom: 1.5px solid #e8e8e8;
  padding-bottom: 0;
}

.og-tab {
  position: relative;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  background: transparent;
  border: none;
  border-bottom: 2.5px solid transparent;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
  margin-bottom: -1.5px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.01em;
}

.og-tab:hover {
  color: #111;
}

.og-tab--active {
  color: #111;
  border-bottom-color: #111;
}

/* تب ویدیو – رنگ متمایز */
.og-tab--video {
  color: #2563eb;
}

.og-tab--video.og-tab--active {
  color: #2563eb;
  border-bottom-color: #2563eb;
}

.og-tab__icon {
  font-size: 10px;
  display: inline-block;
  background: #2563eb;
  color: #fff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  text-align: center;
  line-height: 18px;
}

/* ─── گرید ───────────────────────────────── */
.og-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* ─── آیتم ───────────────────────────────── */
.og-item {
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  background: #f4f4f5;
  box-shadow: 0 1px 3px rgba(0,0,0,0.07);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.28s ease,
              opacity 0.25s ease;
  will-change: transform;
}

.og-item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 32px rgba(0,0,0,0.14);
}

/* حالت پنهان در فیلتر */
.og-item--hidden {
  display: none;
}

/* انیمیشن ظاهر شدن */
.og-item--visible {
  animation: ogFadeIn 0.35s ease both;
}

@keyframes ogFadeIn {
  from { opacity: 0; transform: translateY(14px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ─── inner (نسبت تصویر) ──────────────── */
.og-item__inner {
  position: relative;
  width: 100%;
  padding-top: 66.67%; /* نسبت 3:2 */
  overflow: hidden;
}

.og-item__inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.og-item:hover .og-item__inner img {
  transform: scale(1.06);
}

/* ─── overlay ─────────────────────────── */
.og-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.28s ease;
}

.og-item:hover .og-item__overlay {
  background: rgba(0, 0, 0, 0.35);
}

.og-item__zoom {
  color: #fff;
  font-size: 28px;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.og-item:hover .og-item__zoom {
  opacity: 1;
  transform: scale(1);
}

/* overlay ویدیو – همیشه visible */
.og-item__overlay--video {
  background: rgba(0, 0, 0, 0.28);
}

.og-item__play-btn {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #2563eb;
  padding-left: 4px; /* center the play triangle */
  transition: background 0.2s ease, transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
}

.og-item:hover .og-item__play-btn {
  background: #fff;
  transform: scale(1.1);
}

/* نوار آبی ویدیو */
.og-item--video::before {
  content: 'VIDEO';
  position: absolute;
  top: 10px;
  left: 10px;
  background: #2563eb;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 2;
}

/* ─── label ───────────────────────────── */
.og-item__label {
  margin: 0;
  padding: 10px 14px 12px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  background: #fff;
  border-top: 1px solid #f0f0f0;
}

/* ─── پیام خالی ────────────────────────── */
.og-empty {
  text-align: center;
  padding: 60px 20px;
  color: #9ca3af;
  font-size: 15px;
}

/* ─── مودال / لایت‌باکس ─────────────────── */
.og-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.og-modal[hidden] {
  display: none;
}

.og-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ─── stage (ناحیه محتوا) ──────────────── */
.og-modal__stage {
  position: relative;
  z-index: 2;
  max-width: min(90vw, 1100px);
  max-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.og-modal__stage img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  object-fit: contain;
  animation: ogSlideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.og-modal__stage iframe,
.og-modal__stage video {
  display: block;
  width: min(85vw, 960px);
  aspect-ratio: 16/9;
  border-radius: 8px;
  border: none;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  animation: ogSlideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes ogSlideIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

/* ─── دکمه‌های ناوبری ──────────────────── */
.og-modal__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  padding: 0;
}

.og-modal__nav:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-50%) scale(1.08);
}

.og-modal__nav--prev { left: 20px; }
.og-modal__nav--next { right: 20px; }

/* ─── دکمه بستن ────────────────────────── */
.og-modal__close {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 4;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  line-height: 1;
}

.og-modal__close:hover {
  background: rgba(255,255,255,0.25);
  transform: scale(1.1) rotate(90deg);
}

/* ─── caption و counter ─────────────────── */
.og-modal__caption {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
}

.og-modal__counter {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  pointer-events: none;
}

/* ─── ریسپانسیو ─────────────────────────── */
@media (max-width: 1024px) {
  .og-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

@media (max-width: 768px) {
  .og-section { padding: 48px 0; }

  .og-tabs {
    gap: 4px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0;
    scrollbar-width: none;
  }
  .og-tabs::-webkit-scrollbar { display: none; }

  .og-tab {
    padding: 9px 14px;
    font-size: 13px;
    flex-shrink: 0;
  }

  .og-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
  }

  .og-modal__nav {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }
  .og-modal__nav--prev { left: 8px; }
  .og-modal__nav--next { right: 8px; }
}

@media (max-width: 480px) {
  .og-container { padding: 0 16px; }

  .og-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .og-modal__stage video,
  .og-modal__stage iframe {
    width: 95vw;
  }
}

























        .hkcd-main-wrapper {
            --hkcd-bg-color: #00061B;
            /*--hkcd-card-bg: #0a0e17;*/
            --hkcd-card-bg: #071b4a;
            --hkcd-accent-blue: #3F5EEA;
            --hkcd-accent-gold: #fff;
            --hkcd-text-main: #f8fafc;
            --hkcd-text-muted: #94a3b8;
            --hkcd-border-color: rgba(255, 255, 255, 0.08);
            --hkcd-item-height: 85px;
            
            background-color: var(--hkcd-bg-color);
            color: var(--hkcd-text-main);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            overflow-x: hidden;
            box-sizing: border-box;
        }

        .hkcd-main-wrapper * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        .hkcd-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hkcd-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .hkcd-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(to right, #fff, var(--hkcd-text-muted));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .hkcd-header p {
            color: var(--hkcd-accent-blue);
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
        }

        .hkcd-desktop-view {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .hkcd-desktop-card {
            background: var(--hkcd-card-bg);
            border: 1px solid var(--hkcd-border-color);
            border-radius: 20px;
            padding: 30px 24px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
        }

        .hkcd-desktop-card::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 20px;
            padding: 1px;
            background: linear-gradient(to bottom, rgba(255,255,255,0.1), transparent);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }

        .hkcd-desktop-card:hover {
            transform: translateY(-8px);
            border-color: rgba(56, 189, 248, 0.4);
            box-shadow: 0 22px 40px -15px rgba(0,0,0,0.7);
        }

        .hkcd-desktop-card h3 {
            font-size: 1.3rem;
            color: var(--hkcd-accent-gold);
            margin-bottom: 25px;
            font-weight: 700;
        }

        .hkcd-desktop-list {
            list-style: none;
        }

        .hkcd-desktop-list li {
            position: relative;
            padding-left: 24px;
            margin-bottom: 16px;
            color: var(--hkcd-text-muted);
            font-size: 0.98rem;
            transition: color 0.3s;
        }

        .hkcd-desktop-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: var(--hkcd-accent-blue);
            box-shadow: 0 0 8px var(--hkcd-accent-blue);
        }

        .hkcd-desktop-card:hover .hkcd-desktop-list li {
            color: var(--hkcd-text-main);
        }

        .hkcd-mobile-view {
            display: none;
        }

        @media (max-width: 992px) {
            .hkcd-desktop-view {
                /*display: none;*/
                display: grid;
                grid-template-columns: repeat(1, 1fr);
                gap: 25px;
            }
.hkcd-main-wrapper{
    margin: 35px 0px;
}
            .hkcd-mobile-view {
                display: none;
                /*display: block;*/
                /*width: 100%;*/
                /*max-width: 420px;*/
                /*margin: 0 auto;*/
            }

            /*.hkcd-ios-picker-frame {*/
            /*    position: relative;*/
            /*    height: calc(var(--hkcd-item-height) * 3);*/
            /*    background: #00061B;*/
            /*    border-radius: 24px;*/
            /*    border: 1px solid var(--hkcd-border-color);*/
            /*    overflow: hidden;*/
            /*    perspective: 1000px;*/
            /*    mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 75%, transparent);*/
            /*    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 75%, transparent);*/
            /*}*/

            /*.hkcd-ios-picker-indicator {*/
            /*    position: absolute;*/
            /*    top: 50%;*/
            /*    left: 5%;*/
            /*    width: 90%;*/
            /*    height: var(--hkcd-item-height);*/
            /*    transform: translateY(-50%);*/
            /*    border-top: 1px solid rgba(255, 255, 255, 0.08);*/
            /*    border-bottom: 1px solid rgba(255, 255, 255, 0.08);*/
            /*    background: linear-gradient(to bottom, rgba(255,255,255,0.01), rgba(255,255,255,0.03));*/
            /*    pointer-events: none;*/
            /*    border-radius: 8px;*/
            /*}*/

            /*.hkcd-ios-picker-scroller {*/
            /*    height: 100%;*/
            /*    overflow-y: scroll;*/
            /*    scrollbar-width: none;*/
            /*    scroll-snap-type: y mandatory;*/
            /*    padding-top: var(--hkcd-item-height);*/
            /*    padding-bottom: var(--hkcd-item-height);*/
            /*    transform-style: preserve-3d;*/
            /*}*/

            /*.hkcd-ios-picker-scroller::-webkit-scrollbar {*/
            /*    display: none;*/
            /*}*/

            /*.hkcd-picker-item {*/
            /*    height: var(--hkcd-item-height);*/
            /*    display: flex;*/
            /*    flex-direction: column;*/
            /*    justify-content: center;*/
            /*    align-items: center;*/
            /*    padding: 0 20px;*/
            /*    scroll-snap-align: center;*/
            /*    backface-visibility: hidden;*/
            /*    transition: transform 0.1s ease, opacity 0.1s ease;*/
            /*    cursor: pointer;*/
            /*    text-align: center;*/
            /*}*/

            /*.hkcd-picker-item .hkcd-cat {*/
            /*    font-size: 0.75rem;*/
            /*    color: var(--hkcd-accent-gold);*/
            /*    text-transform: uppercase;*/
            /*    letter-spacing: 1px;*/
            /*    margin-bottom: 4px;*/
            /*}*/

            /*.hkcd-picker-item .hkcd-title {*/
            /*    font-size: 1.15rem;*/
            /*    font-weight: 600;*/
            /*    color: var(--hkcd-text-main);*/
            /*}*/
        }
        
        
        
        .kasaei-consulting {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 20px 0 8px;
    letter-spacing: 0.5px;
}

.kasaei-slogan {
    font-size: 1.1rem;
    font-weight: 600;
    /*margin: 0 !important;*/
}

.kasaei-slogan .tm {
    font-size: 0.55em;
    vertical-align: baseline;
    position: relative;
    top: 0.25em;
    margin-left: 2px;
}
p.kasaei-consulting{
    margin: 0 !important;
}



















.kco-clients-marquee-section{

    width:100%;
    overflow:hidden;
    padding:40px 0;
    background: #071b4a;
margin-top: 20px;
}

.kco-clients-marquee{

    overflow:hidden;
    width:100%;
    position:relative;

}

.kco-clients-track{

    display:flex;
    align-items:center;
    width:max-content;

    animation:kcoClientsMove 35s linear infinite;

}

.kco-clients-marquee:hover .kco-clients-track{

    animation-play-state:paused;

}

.kco-client-logo{

    flex:0 0 auto;

    display:flex;
    justify-content:center;
    align-items:center;

    width:220px;

    margin:0 45px;

}

.kco-client-logo img{

    width:auto;
    height:60px;

    object-fit:contain;

    display:block;

    filter:
        brightness(0)
        saturate(100%)
        invert(100%)
        opacity(.9);

    transition:.3s;

}
.kco-offices-section .kco-client-logo img{

    width:auto;
    height:60px;

    object-fit:contain;

    display:block;

    filter:none !important;

    transition:.3s;

}
.kco-offices-section .kco-clients-marquee-section{

    width:100%;
    overflow:hidden;
    padding:40px 0;
    background: #fcfcfc;

}
.kco-client-logo:hover img{

    opacity:1;
    transform:scale(1.08);

}

@keyframes kcoClientsMove{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

@media(max-width:991px){

.kco-client-logo{

    width:170px;
    margin:0 28px;

}

.kco-client-logo img{

    height:48px;

}

}

@media(max-width:576px){

.kco-client-logo{

    width:130px;
    margin:0 18px;

}

.kco-client-logo img{

    height:36px;

}

}


.tmspan{
    font-size: 42px !important;
}

@media(max-width:576px){

.tmspan{
    font-size: 26px !important;
}

}