/* ===== partners.css ===== */
.ky-partners-container {
    max-width: 1280px;
    margin: 0px auto;
    text-align: center;
    padding: 0 var(--spacing-lg);
}

.ky-partners-heading {
    font-size: 28px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.ky-partners-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.ky-partners-logos img {
    height: 80px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: transform 0.3s;
}

.ky-partners-logos img:hover {
    transform: scale(1.05);
}

.ky-partners-cta {
    display: inline-block;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    padding: 16px 28px;
    font-size: 16px;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 999px;
    backdrop-filter: blur(8px);
    transition: background 0.3s;
}

.ky-partners-cta span {
  background: linear-gradient(135deg, #ffe500, #ffe082, #ffca28, #ffc107, #ffb300);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    font-weight: 500;
}

/* Mobile */
@media(max-width: 768px) {
    .ky-partners-heading { font-size: 22px; }
    .ky-partners-logos { gap: 24px; }
    .ky-partners-cta {
        font-size: 14px;
        padding: 14px 22px;
        border-radius: 5px;
    }
}


/* ===== services.css ===== */
.ky-services-section {
    background-color: var(--primary-main);
    color: var(--accent-color);
    padding: 20px var(--spacing-lg); /* same horizontal padding as header */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.ky-true-services {
    background-color: var(--primary-bg);
    padding: 80px var(--spacing-lg);
}

.ky-header-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.ky-true-card-block {
    flex: 1 1 22%;
    display: flex;
    flex-direction: column;
    min-width: 260px;
}

.ky-true-card-title {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 14px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.ky-true-card {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.ky-true-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 5px;
}

.ky-true-arrow {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ffe500, #ffe082, #ffca28, #ffc107, #ffb300);
    opacity: 0.8;
    backdrop-filter: blur(6px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-main);
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.ky-true-arrow:hover {
    background: white;
    transform: scale(1.1);
}

.ky-true-desc {
    font-size: 14px;
    color: var(--primary-color);
    margin-top: 16px;
    line-height: 1.5;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
}

.ky-true-desc strong {
    color: white;
    font-weight: 600;
}

/*========================================*/

@media (max-width: 768px) {
    .ky-services-section {
        padding: 0px 15px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .ky-true-card-block {
        width: 100%;
    }

    .ky-true-card-title {
        font-size: 16px;
        padding-top: 15px;
        margin-bottom: 10px;
    }
    .ky-true-desc {
        border-bottom: none;
        margin-bottom: 0px;
    }
    .ky-header-container{
        gap: 10px;
    }
}



/* ===== sparkle-button.css ===== */
.ky-sparkle-btn {
    position: relative; /* Important: reference point for absolute */
    overflow: visible; /* star thoda bahar nikal sake */
}

/* Only star sparkle */
.ky-sparkle-btn::after {
    content: "✦";
    position: absolute;
    top: -13px;
    right: -8px;
    font-size: 20px;
    color: #fff;
    text-shadow: 0 0 10px #ff94e7, 0 0 20px #bdbbff;
    animation: ky-sparkle-star 3.5s infinite;
    pointer-events: none;
}

@keyframes ky-sparkle-star {
    0%, 80%, 100% {
        opacity: 0;
        transform: scale(0.8) rotate(0deg);
    }
    90% {
        opacity: 1;
        transform: scale(1.4) rotate(15deg);
    }
    95% {
        transform: scale(1.1) rotate(-10deg);
    }
}


/* ===== article.css ===== */
.latest-articles {
    background: #ffffff;
    color: #0a0a0a;
    padding: 60px 24px;
    font-family: 'DM Sans', sans-serif;
}

.articles-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-subtitle {
    font-size: 18px;
    color: #001D21;
    font-weight: 500;
    margin-bottom: 0px;
}

.section-title {
    color: #001D21;
    font-size: 60px;
    font-weight: 400;
    margin-bottom: 40px;
    margin-top: 10px;
    line-height: 1;
}

.articles-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.article-card {
    border-radius: 0px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    text-decoration: none;

}

.article-image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.article-content {
    padding: 0px;
    display: flex;
    flex-direction: column;
}

.article-category {
    font-size: 10px;
    font-weight: 500;
    color: var(--primary-main);
   background: linear-gradient(135deg, #ffe500, #ffe082, #ffca28, #ffc107, #ffb300);
    width: fit-content;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-top: 15px;
}

.article-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-text);
    margin-bottom: 5px;
}

.article-author {
    font-size: 13px;
    color: var(--primary-text);
    margin-bottom: 5px;
}

.article-meta {
    font-size: 12px;
    color: #8d929d;
    margin-top: 0;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    .articles-list {
        gap: 20px;
    }
    .latest-articles{
        padding: 40px 15px;
    }
}


/* ===== data.css ===== */
.ky-data-section {
    background-color: #6d5a35;
    color: #dbfcd9;
    padding: 80px 20px;
}

.ky-data-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    align-items: center;
}

.ky-data-left {
    flex: 1 1 45%;
}

.ky-data-image {
    width: 100%;
    border-radius: 0px;
    margin-bottom: 10px;
}

.ky-data-title {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.4;
    margin: 5px 0px;
}

.ky-data-btn {
    font-size: 12px;
    display: inline-block;
    background: linear-gradient(135deg, #ffe500, #ffe082, #ffca28, #ffc107, #ffb300);
    color: var(--primary-main);
    padding: 6px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.ky-data-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.ky-data-right {
    flex: 1 1 45%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.ky-data-stat {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
}

.ky-data-number {
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.1;
}

.ky-data-stat p {
    font-size: 16px;
    opacity: 0.9;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ky-data-container {
        flex-direction: column;
    }
    .ky-data-right {
        gap: 20px;
    }
    .ky-data-number {
        font-size: 48px;
    }
    .ky-data-section{
        padding: 0 15px;
        padding-bottom: 40px;
    }
}


/* ===== footer.css ===== */
/* Shared container */
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px var(--spacing-lg);
}

/* ------------------------ */
/* Main Footer Styling */
/* ------------------------ */

.ky-footer {
  background-color: #f5f7f6;
  color: #0a2c2c;
  font-family: 'DM Sans', sans-serif;
}

.ky-footer-logo {
  font-size: 120px;
  font-weight: 600;
  color: #002324;
  margin-bottom: 30px;
  line-height: 1;
}

.ky-footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.ky-footer-column {
  text-align: left;
  min-width: 160px;
}

.ky-footer-column h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}

.ky-footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ky-footer-column li {
  margin-bottom: 0px;
}

.ky-footer-column a {
  font-size: 13px;
  color: #002324;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.ky-footer-column a:hover {
  opacity: 1;
}

/* ------------------------ */
/* Footer Bottom Section */
/* ------------------------ */

.footer-bottom-section {
  background-color: #f5f7f6;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #1c1c1c;
}

.footer-bottom-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #e5e5e5;
  border-top: 1px solid #e5e5e5;
  padding-bottom: 5px;
  padding-top: 5px;
  margin-bottom: 24px;
  gap: 10px;
}

.footer-bottom-left a {
  margin-right: 20px;
  color: #1c1c1c;
  text-decoration: none;
  font-weight: 400;
  font-size: 10px;
}

.footer-bottom-center {
  text-align: center;
  flex: 1;
  font-weight: 500;
  color: #1c1c1c;
}

.footer-bottom-right a {
  margin-left: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background: #efefef;
  color: #002324;
  border-radius: 5px;
  font-size: 10px;
  text-decoration: none;
}

/* Disclaimer Styling */
.footer-bottom-disclaimer {
  margin-top: 20px;
  text-align: left;
}

.disclaimer-heading {
  font-size: 12px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}

.disclaimer-text {
  font-size: 10px;
  color: #444;
  line-height: 1.2;
  margin-bottom: 14px;
}

.disclaimer-link {
  color: #2563eb;
  text-decoration: underline;
  font-weight: 500;
}

.maviimedia-link {
  color: #2563eb;
  text-decoration: underline;
  font-weight: 500;
}

/* ------------------------ */
/* Responsive */
/* ------------------------ */

@media (max-width: 768px) {
    .footer-container{
        padding: 15px 15px;
    }
    .footer-bottom-right a{
        margin-left: 0px; 
    }
    .footer-bottom-top {
        padding-bottom: 10px;
        padding-top: 10px;
    }
}




/* ===== full-services.css ===== */
/*============= Full Services Section ===============*/

.ky-fullservice-wrapper {
    background-color: var(--primary-main);
    padding: 40px var(--spacing-lg);
    padding-bottom: 80px;
}

.ky-fullservice-box {
    background-color: #DFF5DD;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 15px 0 15px 60px; /* ✅ right padding 0 */
    border-radius: 0px;
    gap: 40px;
    flex-wrap: wrap;
}

.ky-fullservice-left {
    flex: 1;
}

.ky-fullservice-heading {
    font-size: 32px;
    font-weight: 400;
    color: #544A2E;
    margin-bottom: 20px;
}

.ky-fullservice-desc {
    font-size: 14px;
    font-weight: 400;
    color: #544A2E;
    line-height: 1.2;
    margin-bottom: 20px;
}

.ky-fullservice-link {
    font-size: 16px;
    font-weight: 400;
    color: #544A2E;
    text-decoration: underline;
}

.ky-fullservice-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.ky-fullservice-right img {
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .ky-fullservice-box {
        flex-direction: column;
        padding: 30px 30px;
        text-align: center;
    }

    .ky-fullservice-wrapper{
        padding: 10px 15px;
        margin-bottom: 40px;
    }

    .ky-fullservice-right {
        display: none;
    }

    .ky-fullservice-left {
        width: 100%;
    }

    .ky-fullservice-heading {
        font-size: 24px;
        margin: 0;
    }

    .ky-fullservice-desc {
        font-size: 14px;
        line-height: 1.5;
    }

    .ky-fullservice-link {
        font-size: 14px;
    }
}


/* ===== header.css ===== */
.top-stock-bar {
    width: 100%;
    background-color: var(--accent-color);
    color: var(--primary-bg);
    font-weight: 500;
    font-size: 14px;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    margin-bottom: 0px;
}

.scrolling-text {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 10s linear infinite;
    /* ✅ Fix: Start from left */
}

@keyframes scroll-left {
    0% {
        transform: translateX(0); /* ✅ Starts visible from left */
    }
    100% {
        transform: translateX(-100%); /* ✅ Moves left and loops */
    }
}


/*------------------*/

.ky-header-wrapper {
    position: sticky;
    top: 0;
    z-index: 999;
    display: flex;
    justify-content: center;
    padding: 20px var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* ✅ subtle white line */

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background-color:var(--primary-main);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s, backdrop-filter 0.3s;
}

.ky-header-container {
    position: relative;
    max-width: 1280px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ky-header-logo {
    font-size: 22px;
    font-weight: 500;
    color: var(--primary-color);
    cursor: pointer;
}

.ky-header-logo img {
    height: clamp(28px, 5vw, 20px);
}


.ky-header-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.ky-header-nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ky-header-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s;
}

.ky-header-nav-link:hover {
  background: linear-gradient(135deg, #ffe500, #ffe082, #ffca28, #ffc107, #ffb300);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ky-header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.ky-header-signin {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.ky-header-signin:hover {
         background: linear-gradient(135deg, #ffe500, #ffe082, #ffca28, #ffc107, #ffb300);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ky-header-btn-primary {
    background: linear-gradient(135deg, #ffe500, #ffe082, #ffca28, #ffc107, #ffb300);
    color: #000;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 16px;
    border-radius: 3px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.ky-header-btn-primary:hover {
    background-color: #a8aaf5;
}

.ky-header-hamburger {
    display: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

.ky-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--primary-color);
    box-shadow: -2px 0 5px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    padding: 20px 20px;
    gap: 20px;
    transition: right 0.3s ease;
    z-index: 1000;
}

.ky-mobile-menu.active {
    right: 0;
}

.close-btn {
    margin-left: auto;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .ky-header-nav {
        display: none;
    }
    .ky-header-actions {
        display: none;
    }
    .ky-header-hamburger {
        display: block;
    }
    .ky-header-wrapper {
        padding: 15px 15px;
    }
    .ky-header-btn-primary {
        text-align: center;
        padding: 12px 0;
    }
}


.ky-mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ky-mobile-menu-content a {
    font-size: 16px;
    text-decoration: none;
    color: var(--primary-bg);
    font-weight: 500;
}

.close-btn {
    margin-left: auto;
    font-size: 26px;
    cursor: pointer;
    color: var(--primary-bg);
}



/* ===== hero.css ===== */
.ky-hero-section {
    background-color: var(--primary-main);
    color: var(--accent-color);
    padding: 0 var(--spacing-lg); /* same horizontal padding as header */
    padding-top: 80px;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
}


.ky-hero-container {
    max-width: 1280px;
}

.ky-hero-top-btn {
    display: inline-block;
    margin-bottom: 20px;
    padding: 12px 20px;
    background-color: rgba(255,255,255,0.05);
    color: var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    backdrop-filter: blur(8px);
    transition: background 0.3s;
}

.ky-hero-top-btn:hover {
    background-color: rgba(255,255,255,0.1);
}

.ky-hero-heading {
          background: linear-gradient(135deg, #ffe500, #ffe082, #ffca28, #ffc107, #ffb300);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    font-size: 110px;
    font-weight: 500;
    margin: 0 0 20px;
    line-height: 0.9;
}

.ky-hero-subtext {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--primary-color);
    line-height: 1.3;
}

.ky-hero-subtext strong {
    color: white;
}

.ky-hero-cta-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: #000;
    font-weight: 500;
    font-size: 16px;
    padding: 16px 24px;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.3s;
}

/*=====================*/

.ky-hero-cta-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: #000;
    background-color: var(--accent-color);
    position: relative;
}

/* 45-degree moving shine */
.ky-hero-cta-btn::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, #fff9c4, #ffe082, #ffca28, #ffc107, #ffb300);
    background-size: 300% 300%;
    z-index: -1;
    opacity: 1;
    animation: gradient-shine 6s ease infinite;
}

.button-wrapper {
    position: relative;
    display: inline-block;
}

/* Star sparkle */
.button-wrapper::after {
    content: "✦";
    position: absolute;
    top: -15px;
    right: -10px;
    font-size: 24px;
    color: #ffffff;
    text-shadow: 0 0 10px #ff94e7, 0 0 20px #bdbbff;
    opacity: 0;
    animation: sparkle 3.5s infinite;
    pointer-events: none;
    z-index: 3;
}

/* Gradient shine movement */
@keyframes gradient-shine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Star flash */
@keyframes sparkle {
    0%, 80%, 100% {
        opacity: 0;
        transform: scale(0.8) rotate(0deg);
    }
    90% {
        opacity: 1;
        transform: scale(1.4) rotate(15deg);
    }
    95% {
        transform: scale(1.1) rotate(-10deg);
    }
}

/*=================================================================*/

/* ✅ Desktop default settings already ache hain jo aapke hero.css mein hain */

@media (max-width: 768px) {
    .ky-hero-section {
        padding: 40px var(--spacing-lg);
        text-align: center;
    }

    .ky-hero-content {
        margin: 0 auto;
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ky-hero-heading {
        font-size: 42px;
        line-height: 1.1;
        margin: 0 0 5px;
    }

    .ky-hero-subtext {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 25px;
    }

    .ky-hero-cta-btn {
        font-size: 15px;
        padding: 14px 22px;
    }

    .ky-hero-top-btn {
        font-size: 13px;
        padding: 10px 18px;
        margin-bottom: 15px;
    }
}






/* ===== impact.css ===== */
.ky-impact-section {
    background-color: #6d5a35; /* Same brownish tone */
    color: #dbfcd9; /* Light mint text */
    padding: 80px 20px;
}

.ky-impact-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    align-items: center;
}

.ky-impact-container {
    position: relative;
    max-width: 1280px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ky-impact-left {
    flex: 1 1 45%;
}

.ky-impact-subheading {
    font-size: 16px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.ky-impact-heading {
    font-size: 64px;
    margin-bottom: 15px;
    margin-top: 15px;
    font-weight: 600;
    line-height: 1;
}

.ky-impact-desc {
    font-size: 14px;
    line-height: 1.3;
    color: #dff0ce;
}

.ky-impact-right {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    text-align: right;
}

.ky-impact-number {
      background: linear-gradient(135deg, #ffe500, #ffe082, #ffca28, #ffc107, #ffb300);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    font-size: 160px;
    font-weight: 700;
    line-height: 1;
}

.ky-impact-note {
    font-size: 16px;
    margin-top: 10px;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .ky-impact-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        
    }
    .ky-impact-right {
        align-items: center;
        text-align: center;
    }
    .ky-impact-number {
        font-size: 96px;
    }
}

/* ===== testimonial.css ===== */

.ky-testimonial-section {
    width: 100%;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
    
}

.ky-testimonial-container {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    
}

.ky-testimonial-slide {
    display: flex;
    width: 100%;
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.ky-testimonial-slide.active {
    opacity: 1;
    position: relative;
}

/* ✅ Overlay */
.ky-testimonial-slide::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.ky-testimonial-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* ✅ horizontally center */
    text-align: center;   /* ✅ text center aligned */
    color: #dbfcd9;
    max-width: 700px;
    position: relative;
    z-index: 2;
    padding: 60px 40px;
    margin: 0 auto;
}

.ky-testimonial-label {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 500;
    opacity: 0.9;
}

.ky-testimonial-quote {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ky-testimonial-author {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.9;
}

/* Arrows */
.ky-testimonial-arrows {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 14px;
    z-index: 3;
}

.ky-testimonial-arrows button {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    color: #dbfcd9;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ky-testimonial-arrows button:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* ✅ Mobile */
@media (max-width: 768px) {
    .ky-testimonial-slide {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        background-position: center;
    }

    .ky-testimonial-slide::before {
        background: rgba(0, 0, 0, 0.6);
    }

    .ky-testimonial-text {
        padding: 40px 20px;
        max-width: 100%;
    }

    .ky-testimonial-quote {
        font-size: 24px;
    }

    .ky-testimonial-arrows {
        display: none;
    }
}



