/* Hero Section */
.ka-hero {
    background: linear-gradient(135deg, #F8F7F0 0%, #FFF9C4 50%, #E3F2FD 100%);
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    padding: 160px 0 200px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background:url(../images/bg/3.png);
    background-size: cover;
    background-position: center;
}

.ka-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(227, 242, 253, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 249, 196, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.ka-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 20px;
    border-radius: 20px;
    /* box-shadow: 3px 3px 12px 2px #01010124; */
    /* backdrop-filter: blur(4px); */
}

.ka-hero-title {
    font-size: 80px;
    font-weight: 900;
    color: #ffffe6;
    margin-bottom: 30px;
    text-shadow: 3px 3px 6px rgb(68 67 67 / 40%);
    animation: fadeInUp 1s ease-out;
}

.ka-hero-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #ffffe6;
    margin-bottom: 40px;
    opacity: 0.9;
    font-family: 'Lora', serif;
    animation: fadeInUp 1s ease-out 0.3s both;
    text-shadow: 3px 3px 12px #000000a1;
}

.ka-hero-button {
    background: linear-gradient(135deg, #ffe938, #ffd03f);
    color: #30302E;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.ka-hero-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #ffe938, #ffd03f);
}

/* Statistics Section */
.ka-stats {
    background: linear-gradient(135deg, #F8F7F0 0%, #FFFFFF 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.ka-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(237, 221, 94, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(181, 201, 154, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.ka-stats .ka-container {
    position: relative;
    z-index: 2;
}

.ka-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.ka-stats-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(237, 221, 94, 0.2);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.ka-stats-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(237, 221, 94, 0.1), rgba(181, 201, 154, 0.1));
    border-radius: 50%;
    z-index: 0;
}

.ka-stats-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(237, 221, 94, 0.4);
}

.ka-stats-icon {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(237, 221, 94, 0.1), rgba(255, 249, 196, 0.2));
    border-radius: 50%;
    transition: all 0.3s ease;
}

.ka-stats-card:hover .ka-stats-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(237, 221, 94, 0.2), rgba(255, 249, 196, 0.3));
}

.ka-stats-icon svg {
    width: 50px;
    height: 50px;
}

.ka-stats-content {
    position: relative;
    z-index: 1;
}

.ka-stats-number {
    font-size: 36px;
    font-weight: 900;
    color: #30302E;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.1;
    transition: all 0.3s ease;
}

.ka-stats-title {
    font-size: 18px;
    font-weight: 600;
    color: #30302E;
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.ka-stats-description {
    font-size: 14px;
    color: #30302E;
    opacity: 0.7;
    line-height: 1.6;
    font-family: 'Lora', serif;
    transition: all 0.3s ease;
}

/* Animation classes */
.ka-stats.ka-animate .ka-stats-card {
    animation: statsCardFadeIn 0.8s ease forwards;
}

.ka-stats.ka-animate .ka-stats-card:nth-child(1) {
    animation-delay: 0.1s;
}

.ka-stats.ka-animate .ka-stats-card:nth-child(2) {
    animation-delay: 0.2s;
}

.ka-stats.ka-animate .ka-stats-card:nth-child(3) {
    animation-delay: 0.3s;
}

.ka-stats.ka-animate .ka-stats-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes statsCardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Additional hover effects for stats cards */
.ka-stats-card:hover .ka-stats-number {
    color: #f6dc12;
    transform: scale(1.05);
}

.ka-stats-card:hover .ka-stats-title {
    color: #fff079;
}

.ka-stats-card:hover .ka-stats-description {
    opacity: 1;
    color: #30302E;
}
.ka-stats-image{
    position: absolute;
    z-index: 2;
    margin-bottom: 1rem;
    transform: translateY(-230px)!important;
    width: 500px;
    left: 300px;
}

@media screen and (max-width: 768px)
{
    .ka-stats-image{
        display: none;
    }
}

/* About Section - Asymmetric Story Layout */
.ka-about {
    padding: 200px 0 250px;
    position: relative;
    overflow: hidden;
    background: url(../images/14.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.ka-about .ka-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ka-about-content {
    padding: 0 40px;
}
@media screen and (max-width: 768px) {
    .ka-about-content {
        padding: 0 10px !important;
    }

    .ka-about-highlight {
        padding: 10px;
    }

    .ka-about-text{
        font-size: 16px;
    }

    .ka-products-story-text{
        font-size: 16px;
    }
    .ka-content-text {
        font-size: 14px;
    }
}

.ka-about-content .ka-section-title {
    text-align: left;
    font-size: 72px;
    margin-bottom: 40px;
}

.ka-about-content .ka-section-title::after {
    left: 0;
    transform: none;
}

.ka-about-text {
    font-size: 22px;
    line-height: 1.8;
    color: #30302E;
    opacity: 0.8;
    margin-bottom: 30px;
}

.ka-about-highlight {
    background: linear-gradient(135deg, #ffe9a1, #e7e90a);
    padding: 40px;
    border-radius: 20px;
    border-left: 6px solid #dcdcdc;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.ka-about-images {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.ka-about-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.ka-about-image:hover {
    transform: translateY(-10px);
}

.ka-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ka-about-image:nth-child(1) {
    width: 60%;
    height: 300px;
}

.ka-about-image:nth-child(2) {
    width: 35%;
    height: 200px;
    margin-top: 40px;
}

.ka-about-image:nth-child(3) {
    width: 45%;
    height: 250px;
    margin-top: -60px;
    margin-left: 2rem;
}

.ka-about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, #E3F2FD, #FFF9C4);
    border-radius: 30px;
    z-index: -1;
}

/* Products Section - Full Width Story */
.ka-products {
    background: #fff;
    padding: 200px 0 250px;
    position: relative;
    overflow: hidden;
}

.ka-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(232, 245, 232, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 249, 196, 0.4) 0%, transparent 50%);
    pointer-events: none;
}

.ka-products .ka-container {
    position: relative;
    z-index: 2;
}

.ka-products .ka-section-title {
    font-size: 72px;
    margin-bottom: 80px;
}

.ka-products-story {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 100px;
    margin-bottom: 100px;
    align-items: center;
}

.ka-products-story-text {
    font-size: 24px;
    line-height: 1.8;
    color: #30302E;
    opacity: 0.8;
}

.ka-products-story-text h3 {
    font-size: 36px;
    color: #30302E;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.ka-products-story-image {
    position: relative;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.ka-products-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ka-products-story-image::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: linear-gradient(135deg, #E8F5E8, #FFF9C4);
    border-radius: 40px;
    z-index: -1;
}

.ka-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-top: 100px;
}

.ka-product-card {
    background: rgba(248, 247, 240, 0.9);
    padding: 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(48, 48, 46, 0.05);
    overflow: hidden;
    position: relative;
}

.ka-product-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #E3F2FD, #FFF9C4);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.ka-product-image {
    position: relative;
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    z-index: 1;
}

.ka-product-card:hover .ka-product-image {
    transform: scale(1.05);
}

.ka-product-content {
    position: relative;
    z-index: 1;
    padding: 20px 10px;
}

.ka-product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
    background: rgba(248, 247, 240, 1);
}

.ka-product-title {
    font-size: 28px;
    color: #30302E;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

.ka-product-description {
    font-size: 16px;
    color: #30302E;
    opacity: 0.8;
    line-height: 1.6;
}

/* Contact Section - Asymmetric Layout */
.ka-contact {
    background: linear-gradient(135deg, #E8F5E8 0%, #E3F2FD 100%);
    padding: 200px 0 250px;
    position: relative;
    overflow: hidden;
}

.ka-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 40% 60%, rgba(232, 245, 232, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 60% 40%, rgba(227, 242, 253, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.ka-contact .ka-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.ka-contact-content {
    text-align: left;
}

.ka-contact-content .ka-section-title {
    text-align: left;
    font-size: 72px;
    margin-bottom: 40px;
}

.ka-contact-content .ka-section-title::after {
    left: 0;
    transform: none;
}

.ka-contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
}

.ka-contact-item {
    background: linear-gradient(135deg, #ffe9a1, #e7e90a);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(48, 48, 46, 0.05);
    border-left: 6px solid #dcdcdc;
}

.ka-contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    background: rgba(248, 247, 240, 1);
}

.ka-contact-title {
    font-size: 24px;
    color: #30302E;
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

.ka-contact-text {
    font-size: 18px;
    color: #30302E;
    opacity: 0.8;
}

.ka-contact-visual {
    position: relative;
    height: 600px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ka-contact-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.ka-contact-image:hover {
    transform: translateY(-10px);
}

.ka-contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ka-contact-image:nth-child(1) {
    height: 60%;
}

.ka-contact-image:nth-child(2) {
    height: 35%;
}

.ka-contact-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, #E8F5E8, #E3F2FD);
    border-radius: 30px;
    z-index: -1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ka-about .ka-container,
    .ka-contact .ka-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .ka-products-story {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .ka-about-content .ka-section-title,
    .ka-contact-content .ka-section-title {
        text-align: center;
        font-size: 60px;
    }
    
    .ka-about-content .ka-section-title::after,
    .ka-contact-content .ka-section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .ka-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .ka-footer{
        padding-bottom: 120px;
    }

    .ka-hero,
    .ka-about,
    .ka-products,
    .ka-contact {
        padding: 120px 0 150px;
    }
    
    .ka-stats {
        padding: 80px 0;
    }
    
    .ka-hero-title {
        font-size: 48px;
    }
    
    .ka-hero-subtitle {
        font-size: 20px;
    }
    
    .ka-section-title {
        font-size: 40px!important;
    }
    
    .ka-products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ka-products-story {
        flex-direction: column;
        display: flex;
    }
    
    .ka-contact-info {
        gap: 30px;
    }

    .ka-about {
        background-position: top;
    }
    
    .ka-about-images {
        justify-content: center;
    }
    
    .ka-about-image:nth-child(1),
    .ka-about-image:nth-child(2),
    .ka-about-image:nth-child(3) {
        width: 100%;
        margin-top: 0;
        margin-left: 0;
    }
    
    .ka-stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .ka-stats-card {
        padding: 35px 25px;
    }
    
    .ka-stats-number {
        font-size: 32px;
    }
    
    .ka-stats-title {
        font-size: 16px;
    }

    .ka-scroll-top{
        bottom: 120px;
    }
}

@media (max-width: 480px) {
    .ka-hero,
    .ka-about,
    .ka-products,
    .ka-contact {
        padding: 100px 0 120px;
    }
    
    .ka-stats {
        padding: 60px 0;
    }
    
    .ka-hero-title {
        font-size: 36px;
    }
    
    .ka-hero-subtitle {
        font-size: 18px;
    }
    
    .ka-hero-button {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .ka-section-title {
        font-size: 32px;
    }
    
    .ka-product-card,
    .ka-contact-item {
        padding: 25px 20px;
    }
    
    .ka-about-content,
    .ka-products-story,
    .ka-contact .ka-container {
        gap: 40px;
    }
    
    .ka-stats-card {
        padding: 30px 20px;
    }
    
    .ka-stats-number {
        font-size: 28px;
    }
    
    .ka-stats-title {
        font-size: 15px;
    }
    
    .ka-stats-description {
        font-size: 13px;
    }
    
    .ka-stats-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .ka-stats-icon svg {
        width: 40px;
        height: 40px;
    }
}

/* Product Gallery Swiper */
.ka-product-gallery {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255, 249, 196, 0.3) 0%, rgba(248, 247, 240, 0.8) 100%);
    border-radius: 30px;
    position: relative;
    overflow: visible;
}

.ka-gallery-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: #30302E;
    margin-bottom: 50px;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.ka-products-swiper {
    padding: 0 20px 60px;
}

.ka-product-swiper-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(237, 221, 94, 0.1);
    height: 350px;
    display: flex;
    flex-direction: column;
}

.ka-product-swiper-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border-color: rgba(237, 221, 94, 0.3);
}

.ka-product-swiper-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.ka-product-swiper-card:hover .ka-product-swiper-image {
    transform: scale(1.05);
}

.ka-product-swiper-content {
    padding: 25px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ka-product-swiper-title {
    font-size: 20px;
    font-weight: 700;
    color: #30302E;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
    transition: all 0.3s ease;
}

.ka-product-swiper-card:hover .ka-product-swiper-title {
    color: #f6dc12;
}

.ka-product-swiper-description {
    font-size: 14px;
    color: #30302E;
    opacity: 0.7;
    line-height: 1.5;
    font-family: 'Lora', serif;
    transition: all 0.3s ease;
}

.ka-product-swiper-card:hover .ka-product-swiper-description {
    opacity: 1;
    color: #fff079;
}

/* Swiper Navigation */
.ka-swiper-next,
.ka-swiper-prev {
    width: 50px !important;
    height: 50px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50% !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    border: 2px solid rgba(237, 221, 94, 0.3) !important;
    transition: all 0.3s ease !important;
}

.ka-swiper-next:hover,
.ka-swiper-prev:hover {
    background: rgba(237, 221, 94, 0.9) !important;
    border-color: rgba(237, 221, 94, 0.6) !important;
    transform: scale(1.1) !important;
}

.ka-swiper-next::after,
.ka-swiper-prev::after {
    font-size: 18px !important;
    font-weight: 900 !important;
    color: #30302E !important;
}

.ka-swiper-next:hover::after,
.ka-swiper-prev:hover::after {
    color: #FFFFFF !important;
}

/* Swiper Pagination */
.ka-swiper-pagination {
    bottom: 10px !important;
}

.ka-swiper-pagination .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: rgba(237, 221, 94, 0.4) !important;
    opacity: 1 !important;
    margin: 0 6px !important;
    transition: all 0.3s ease !important;
}

.ka-swiper-pagination .swiper-pagination-bullet-active {
    background: #f6dc12 !important;
    transform: scale(1.3) !important;
}

/* Responsive Swiper */
@media (max-width: 768px) {
    .ka-gallery-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .ka-product-gallery {
        margin-top: 60px;
        padding: 40px 0;
    }
    
    .ka-products-swiper {
        padding: 0 10px 50px;
    }
    
    .ka-product-swiper-card {
        height: 320px;
    }
    
    .ka-product-swiper-image {
        height: 200px;
    }
    
    .ka-product-swiper-content {
        padding: 20px;
    }
    
    .ka-product-swiper-title {
        font-size: 18px;
    }
    
    .ka-product-swiper-description {
        font-size: 13px;
    }
    
    .ka-swiper-next,
    .ka-swiper-prev {
        width: 40px !important;
        height: 40px !important;
    }
    
    .ka-swiper-next::after,
    .ka-swiper-prev::after {
        font-size: 16px !important;
    }
}

/* Phosphor Icons Styles */
.ph {
    font-size: 1.2em;
    vertical-align: middle;
    margin-right: 8px;
    display: inline-block;
    transition: all 0.3s ease;
}

.ka-footer-social .ph {
    font-size: 1.8em;
    margin: 0;
    color: #30302E;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.ka-footer-social a:hover .ph {
    opacity: 1;
    transform: translateY(-3px);
    color: #f6dc12;
}

.ka-contact-title .ph {
    font-size: 1.5em;
    color: #1e1e1e;
    margin-right: 10px;
}

.ka-footer-section a:hover .ph {
    transform: translateX(5px);
    color: #f6dc12;
}

.ka-footer-section .ph-check-circle {
    color: #fff079;
    font-size: 1.1em;
}

.ka-footer-section .ph-certificate {
    color: #f6dc12;
    font-size: 1.3em;
}

.ka-scroll-top .ph {
    font-size: 1.5em;
    margin: 0;
}

.ka-footer-text .ph {
    font-size: 1.1em;
    margin: 0 3px;
    color: #f6dc12;
}

.ka-footer-text .ph-heart {
    color: #ff6b6b;
}

.ka-footer-text .ph-sun {
    color: #ffd93d;
}

.ka-footer-text .ph-leaf {
    color: #fff079;
}

@media (max-width: 768px) {
    .ph {
        font-size: 1.1em;
        margin-right: 6px;
    }
    
    .ka-footer-social .ph {
        font-size: 1.6em;
    }
    
    .ka-contact-title .ph {
        font-size: 1.3em;
    }
}

.ka-menu-link .ph {
    margin-right: 6px;
    font-size: 1.2em;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.ka-menu-link:hover {
    background: rgba(237, 221, 94, 0.1);
    color: #f6dc12;
}

.ka-menu-link:hover .ph {
    opacity: 1;
    transform: translateX(3px);
}

.ka-hero-button .ph {
    margin-left: 5px;
    font-size: 1.2em;
    transition: all 0.3s ease;
}

.ka-hero-button:hover .ph {
    transform: translateX(5px);
}

.ka-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.ka-menu-toggle .ph {
    font-size: 2em;
    color: #30302E;
    transition: all 0.3s ease;
}

.ka-menu-toggle:hover .ph {
    color: #f6dc12;
}

@media (max-width: 768px) {
    .ka-menu-toggle {
        display: block;
    }
    
    .ka-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        gap: 15px;
    }
    
    .ka-menu.active {
        display: flex;
    }
    
    .ka-menu-link {
        padding: 12px 20px;
        width: 100%;
        justify-content: flex-start;
    }
    
    .ka-menu-link .ph {
        font-size: 1.4em;
        margin-right: 12px;
    }
}

/* Keywords Slider */
.ka-keywords-slider {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
}

.ka-keywords-track {
    display: flex;
    animation: slideKeywords 30s linear infinite;
    gap: 2rem;
    white-space: nowrap;
}

.ka-keyword {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    color: #30302E;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
}

.ka-keyword-outline {
    color: transparent;
    -webkit-text-stroke: 2px #30302E;
}

@keyframes slideKeywords {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .ka-keyword {
        font-size: 2rem;
    }
    .ka-keyword-outline {
        -webkit-text-stroke: 1px #30302E;
    }
}

@media (max-width: 480px) {
    .ka-keyword {
        font-size: 1.5rem;
    }
    .ka-keywords-slider {
        padding: 1rem 0;
    }
}

/* About Page Styles */
.ka-about-page {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Timeline */
.ka-about-timeline {
    max-width: 1000px;
    margin: 0 auto 100px;
    position: relative;
    padding: 40px 0;
}

.ka-about-timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #f6dc12 0%, #fff079 100%);
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    border-radius: 2px;
}

.ka-timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.ka-timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.ka-timeline-year {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #f6dc12 0%, #fff079 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #30302E;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ka-timeline-content {
    width: calc(50% - 100px);
    background: #FFF;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.ka-timeline-content h3 {
    color: #30302E;
    margin-bottom: 15px;
    font-size: 24px;
}

.ka-timeline-content p {
    color: #30302E;
    opacity: 0.8;
    line-height: 1.8;
}

/* Values */
.ka-about-values {
    padding: 60px 0;
    background: linear-gradient(135deg, #F8F7F0 0%, #FFF9C4 100%);
    margin-bottom: 100px;
    border-radius: 30px;
}

.ka-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.ka-value-card {
    background: #FFF;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ka-value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.ka-value-card .ph {
    font-size: 48px;
    color: #f6dc12;
    margin-bottom: 20px;
}

.ka-value-card h3 {
    color: #30302E;
    margin-bottom: 15px;
    font-size: 24px;
}

.ka-value-card p {
    color: #30302E;
    opacity: 0.8;
    line-height: 1.8;
}

/* Team */
.ka-about-team {
    padding: 60px 0;
}

.ka-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.ka-team-member {
    text-align: center;
    transition: all 0.3s ease;
}

.ka-team-member img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.ka-team-member:hover img {
    transform: scale(1.05);
}

.ka-team-member h3 {
    color: #30302E;
    margin-bottom: 10px;
    font-size: 24px;
}

.ka-team-member p {
    color: #30302E;
    opacity: 0.8;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .ka-about-timeline::before {
        left: 30px;
    }

    .ka-timeline-item,
    .ka-timeline-item:nth-child(odd) {
        flex-direction: row;
        justify-content: flex-start;
        margin-left: 30px;
    }

    .ka-timeline-year {
        width: 80px;
        height: 80px;
        font-size: 18px;
        margin-right: 30px;
    }

    .ka-timeline-content {
        width: calc(100% - 140px);
    }

    .ka-value-card {
        padding: 30px 20px;
    }

    .ka-team-member img {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .ka-timeline-year {
        width: 60px;
        height: 60px;
        font-size: 16px;
        margin-right: 20px;
    }

    .ka-timeline-content {
        width: calc(100% - 100px);
        padding: 20px;
    }

    .ka-timeline-content h3 {
        font-size: 20px;
    }

    .ka-value-card .ph {
        font-size: 36px;
    }

    .ka-team-member img {
        max-width: 200px;
    }
}

/* Homepage specific header styles */
.ka-header.homepage {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    border-bottom: none;
}

.ka-header.homepage .ka-menu-link {
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.ka-header.homepage .ka-menu-link:hover {
    color: #f6dc12;
}

.ka-header.homepage .ka-menu-link.active {
    color: #f6dc12;
}

.ka-header.homepage .ka-logo-text {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}


/* Features Section */
.ka-features {
    padding: 100px 0;
    background: white;
}

.ka-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.ka-feature-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 15px;
    background: #F8F7F0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ka-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #fff079, #f6dc12);
}

.ka-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(181, 201, 154, 0.2);
}

.ka-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fff079, #f6dc12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #30302E;
}

.ka-feature-card h3 {
    color: #30302E;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
}

.ka-feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Products Preview */
.ka-products-preview {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8F7F0, #E8F5E8);
}

.ka-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.ka-product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(48, 48, 46, 0.1);
    transition: all 0.3s ease;
}

.ka-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(181, 201, 154, 0.2);
}

.ka-product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.ka-product-content {
    padding: 20px;
}

.ka-product-content h3 {
    color: #30302E;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
}

.ka-product-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.ka-product-price {
    color: #fff079;
    font-weight: 600;
    font-size: 18px;
}

/* Testimonials */
.ka-testimonials {
    padding: 100px 0;
    background: white;
}

.ka-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.ka-testimonial-card {
    background: #F8F7F0;
    padding: 30px;
    border-radius: 15px;
    position: relative;
}

.ka-testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 60px;
    color: #fff079;
    font-family: serif;
}

.ka-testimonial-text {
    color: #30302E;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 16px;
}

.ka-testimonial-author {
    color: #666;
    font-weight: 600;
}

/* CTA Section */
.ka-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff079, #f6dc12);
    text-align: center;
}

.ka-cta h2 {
    color: #30302E;
    margin-bottom: 20px;
    font-size: 48px;
}

.ka-cta p {
    color: #30302E;
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ka-cta-btn {
    background: #30302E;
    color: white;
    padding: 15px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.ka-cta-btn:hover {
    background: #4A4A4A;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .ka-hero-title {
        font-size: 48px;
    }
    
    .ka-hero-subtitle {
        font-size: 18px;
    }
    
    .ka-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .ka-hero-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .ka-features-grid,
    .ka-products-grid,
    .ka-testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .ka-cta h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .ka-hero-title {
        font-size: 36px;
    }
    
    .ka-hero-subtitle {
        font-size: 16px;
    }
    
    .ka-cta h2 {
        font-size: 28px;
    }
}

/* Products Swiper Styles */
.ka-products-swiper {
    margin: 60px 0;
}

.ka-products-swiper-container {
    padding: 20px 0;
}

.ka-products-swiper .ka-product-card {
    height: 100%;
    margin: 0;
    transition: transform 0.3s ease;
}

.ka-products-swiper .ka-product-card:hover {
    transform: translateY(-5px);
}

.ka-products-swiper .swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.ka-products-swiper .swiper-pagination-bullet {
    background: #f6dc12;
    opacity: 0.5;
}

.ka-products-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #f6dc12;
}

.ka-products-swiper .swiper-button-next,
.ka-products-swiper .swiper-button-prev {
    color: #f6dc12;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ka-products-swiper .swiper-button-next:after,
.ka-products-swiper .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

/* Products CTA Button */
.ka-products-cta {
    text-align: center;
    margin-top: 40px;
}

.ka-products-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f6dc12 0%, #f4d03f 100%);
    color: #2c3e50;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(246, 220, 18, 0.3);
}

.ka-products-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(246, 220, 18, 0.4);
    color: #2c3e50;
    text-decoration: none;
}

.ka-products-button i {
    transition: transform 0.3s ease;
}

.ka-products-button:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .ka-products-swiper .swiper-button-next,
    .ka-products-swiper .swiper-button-prev {
        display: none;
    }
    
    .ka-products-button {
        padding: 12px 25px;
        font-size: 14px;
    }
}