﻿:where([class^="ri-"])::before {
    content: "\f3c2";
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
}

.banner-section {
    background: #000;
    color: #fff;
    padding: 100px 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.hero-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 500px;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #f4f4f4;
}

.hero-title .highlight {
    background: linear-gradient(90deg, #a855f7, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.hero-description {
    font-size: 16px;
    color: #bbb;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-know {
    background: linear-gradient(90deg, #9333ea, #ec4899);
    color: #fff;
}

.btn-know:hover {
    opacity: 0.9;
    color: #fff;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    border-radius: 150px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    gap: 6px;
}

.hero-buttons svg {
    width: 16px;
}

.btn-whatsapp:hover {
    background: #ffffff;
    color: #4CAF50;
}

/* Right Image Card */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-card {
    background: #111;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.5);
    overflow: hidden;
    max-width: 550px;
}

.main-card img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.products-section {
    background: #111827;
    /* Dark section background */
    color: #fff;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #f9f9f9;
    font-family: 'Inter';
    text-transform: uppercase;
}

.section-subtitle {
    color: #bbb;
    max-width: 700px;
    margin: 0 auto;
    font-size: 15px;
    font-family: 'Inter';
}

.product-card {
    background: #1f2937;
    /* Dark card */
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.product-card img {
    height: 200px;
    object-fit: cover;
}

.product-card .card-body {
    padding: 15px;
}

.product-card .card-title {
    font-size: 18px;
    font-weight: 600;
    color: #fdfdfd;
}

.product-card .card-text {
    color: #bbb;
    font-size: 14px;
    margin-bottom: 0;
}

.product-card .card-footer {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
}

.solutions-section {
    padding: 80px 0;
    text-align: center;
    background: #000;
}

.solutions-section h2 {
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #f5d76e, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.solutions-section p {
    color: #bbb;
    margin-bottom: 50px;
}

.solution-card {
    position: relative;
    background: linear-gradient(145deg, #1b0f2e, #0f0a1e);
    border-radius: 18px;
    padding: 35px;
    text-align: left;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(236, 72, 153, 0.25), transparent 70%);
}


.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7);
}

.solution-content {
    position: relative;
    z-index: 2;
}

.solution-icon {
    font-size: 25px;
    background: linear-gradient(135deg, #9333ea, #a855f7);
    color: #fff;
    border-radius: 6px;
    padding: 14px 17px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.solution-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.solution-card p {
    color: #aaa;
    margin-bottom: 20px;
}

.solution-card ul {
    line-height: normal;
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-content ul li svg {
    color: #a337db;
    font-size: 12px;
    margin-right: 5px;
    font-weight: bold;
    height: 15px;
}

.solution-content ul li {
    font-size: 14px;
    margin-bottom: 20px;
    display: block
}

.solution-card ul li {
    margin-bottom: 15px;
    color: #ddd;
}

.btn-solution {
    background: linear-gradient(135deg, #9333ea, #ec4899);
    color: #fff;
    border-radius: 30px;
    padding: 10px 22px;
    font-weight: 500;
    border: none;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.btn-solution:hover {
    background: linear-gradient(135deg, #7c3aed, #db2777);
    color: #fff;
}

.banner-icon {
    width: auto;
}

.trusted-section {
    padding: 60px 0;
    text-align: center;
}

.trusted-section h2 {
    font-weight: 700;
    margin-bottom: 10px;
}

.trusted-section p {
    color: #9b9b9b;
    margin-bottom: 40px;
}

.brand-box {
    background-color: #1a1b20;
    border-radius: 10px;
    padding: 15px 30px;
    text-align: center;
    font-weight: 600;
    color: #f1e9cf;
    transition: all 0.3s ease-in-out;
}

.brand-box:hover {
    background-color: #2a2b32;
    transform: translateY(-5px);
}

.swiper {
    padding: 20px 0;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

.trusted-brands-section {
    background-color: #1A1D21;
    padding: 80px 0;
    display: flex;
    align-items: center;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: #6C757D;
    font-size: 1.125rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.6;
}

.brands-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-pill img {
    width: 150px;
}

.brand-pill {
    background-color: #212529;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}

.brand-pill:hover {
    background-color: #2C3034;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .brands-container {
        padding: 0 1rem;
        gap: 0.75rem;
    }

    .brand-pill {
        font-size: 0.875rem;
        padding: 0.625rem 1.25rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.7rem;
    }

    .trusted-brands-section {
        padding: 60px 0;
    }

    .solutions-section h2 {
        font-size: 1.7rem;
    }

    .solutions-section {
        padding: 45px 0px;
    }

    .brands-container {
        gap: 0.5rem;
    }

    .brand-pill {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

.main-container {
    text-align: center;
}

.main-heading {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.sub-heading {
    font-size: 1.125rem;
    color: #9ca3af;
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.6;
}

.cards-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.solution-card {
    background: linear-gradient(135deg, #1f1f23 0%, #2a2a2f 100%);
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
    border: 1px solid #333338;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card2 {
    width: 320px;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: #8b5cf6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 24px;
    color: #ffffff;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.card-description {
    font-size: 0.95rem;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.learn-more-link {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.learn-more-link:hover {
    color: #a78bfa;
}

.learn-more-link::after {
    content: "→";
    font-size: 1.1rem;
}

.electrotech-main-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.content-wrapper {
    padding: 4rem 0;
}

.main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.intro-description {
    font-size: 1.1rem;
    color: #b8c5d1;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.feature-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.feature-icon-circle {
    width: 3rem;
    height: 3rem;
    background: rgba(147, 51, 234, 0.15);
    border: 2px solid #9333ea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    color: #a855f7;
}

.feature-content-block {
    flex: 1;
}

.feature-title-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.feature-desc-text {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.5;
}

.statistics-row {
    display: flex;
    justify-content: space-between;
    margin-top: 3.5rem;
    gap: 1rem;
}

.stat-block {
    text-align: center;
    flex: 1;
}

.stat-number-display {
    font-size: 2.2rem;
    font-weight: 700;
    color: #a855f7;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label-text {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
}

.hero-image-container {
    height: 100%;
    position: relative;
    overflow: hidden;
	width: 435px;
    border-radius: 16px;
}

.office-team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.main-container {
    /* min-height: 100vh; */
    padding: 1rem 0;
}

.testimonial-wrapper {
    margin-bottom: 3rem;
}

.testimonial-heading {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #ffffff;
}

.testimonial-subtext {
    font-size: 1.1rem;
    color: #9ca3af;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-card {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #9333ea 100%);
    border-radius: 12px;
    padding: 1.5rem;
    /*margin-bottom: 2rem;*/
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

.video-thumbnail {
    width: 100%;
    height: 120px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    position: relative;
    margin-bottom: 1.5rem;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 12px solid #8b5cf6;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    margin-left: 3px;
}

.customer-info {
    color: #ffffff;
}

.customer-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.customer-designation {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.demo-section {
    text-align: center;
}

.demo-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.demo-subtext {
    font-size: 1.1rem;
    color: #9ca3af;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-6 {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
}

.header-section {
    text-align: center;
    margin-bottom: 3rem;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.subtitle-text {
    font-size: 1.1rem;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.featured-video-section {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.video-preview-container {
    flex: 1;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.monitor-mockup {
    position: relative;
    background: #2a2a3a;
    border-radius: 8px;
    padding: 1rem;
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(45deg, #1e1e2e, #2a2a3a);
}

.play-button-large {
    width: 80px;
    height: 80px;
    background: #8b5cf6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.play-button-large:hover {
    background: #7c3aed;
    transform: scale(1.1);
}

.play-button-large i {
    color: white;
    font-size: 2rem;
    margin-left: 4px;
}

.content-info-section {
    flex: 1;
}

.overview-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.overview-description {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-tags {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tag-button {
    background: rgba(139, 92, 246, 0.2);
    color: #c4b5fd;
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tag-button:hover {
    background: rgba(139, 92, 246, 0.3);
    border-color: #8b5cf6;
}

.demo-button {
    background: #8b5cf6;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-button:hover {
    background: #7c3aed;
    transform: translateY(-2px);
}

.video-grid-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.video-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/10;
    background: linear-gradient(45deg, #1e1e2e, #2a2a3a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button-small {
    width: 50px;
    height: 50px;
    background: rgba(139, 92, 246, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button-small:hover {
    background: #8b5cf6;
    transform: scale(1.1);
}

.play-button-small i {
    color: white;
    font-size: 1.2rem;
    margin-left: 2px;
}

.video-info {
    padding: 1rem;
}

.video-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.video-description {
    font-size: 0.875rem;
    color: #a0a0a0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }

    .video-info {
        padding: 0.5rem 0.5rem;
    }

    .featured-video-section {
        flex-direction: column;
        gap: 1.5rem;
    }

    .video-grid-section {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    .main-container {
        padding: 2rem 1rem;
    }

    .feature-tags {
        justify-content: center;
    }
}

.section-7 {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.contact-wrapper {
    background-color: #2a2a2a;
    border-radius: 1rem;
    padding: 3rem;
    margin: 2rem auto;
    max-width: 1200px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    color: #9ca3af;
    font-size: 1rem;
    font-weight: 300;
}

.form-section {
    background-color: #333333;
    border-radius: 0.75rem;
    padding: 2rem;
}

.info-section {
    background-color: #333333;
    border-radius: 0.75rem;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    background-color: #404040;
    border: 1px solid #555555;
    border-radius: 0.5rem;
    color: #ffffff;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    background-color: #4a4a4a;
    border-color: #8a2be2;
    box-shadow: 0 0 0 0.2rem rgba(138, 43, 226, 0.25);
    color: #ffffff;
}

.form-control::placeholder {
    color: #9ca3af;
}

.message-textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #8a2be2, #9d4edd);
    border: none;
    border-radius: 0.5rem;
    color: #ffffff;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #7a1fd2, #8d3ecd);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.3);
}

.info-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #404040;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.info-item:hover {
    background-color: #4a4a4a;
}

.info-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #8a2be2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.2rem;
    color: #ffffff;
}

.info-content h6 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.info-content p {
    color: #9ca3af;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.map-container {
    margin-top: 2rem;
    border-radius: 0.75rem;
    overflow: hidden;
    height: 300px;
    background-image: url('https://public.readdy.ai/gen_page/map_placeholder_1280x720.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-marker {
    width: 3rem;
    height: 3rem;
    background-color: #8a2be2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
}

.map-marker i {
    color: #ffffff;
    font-size: 1.5rem;
}

.section-8 {
    font-family: 'Inter', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    min-height: 100vh;
    padding: 2rem 0;
}

.kmp-footer-container {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 0 20px 0;
    font-family: Arial, sans-serif;
}

.kmp-footer-main {
    padding-bottom: 40px;
}

.kmp-footer-logo-section {
    margin-bottom: 30px;
}

.kmp-footer-brand {
    font-size: 32px;
    font-weight: bold;
    color: #9d4edd;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.kmp-footer-description {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 280px;
}

.kmp-footer-social-links {
    display: flex;
    gap: 15px;
}

.kmp-social-icon {
    width: 35px;
    height: 35px;
    background-color: #333333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.kmp-social-icon:hover {
    background-color: #9d4edd;
    color: #ffffff;
    transform: translateY(-2px);
}

.kmp-footer-nav-section {
    margin-bottom: 30px;
}

.kmp-footer-nav-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.kmp-footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kmp-footer-nav-item {
    margin-bottom: 12px;
}

.kmp-footer-nav-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.kmp-footer-nav-link:hover {
    color: #9d4edd;
}

.kmp-footer-contact-section {
    margin-bottom: 30px;
}

.kmp-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #cccccc;
    font-size: 14px;
}

.kmp-contact-icon {
    color: #9d4edd;
    margin-right: 12px;
    margin-top: 2px;
    width: 16px;
}

.kmp-contact-text {
    line-height: 1.5;
}

.kmp-footer-copyright {
    border-top: 1px solid #333333;
    padding-top: 20px;
    text-align: center;
}

.kmp-copyright-text {
    color: #888888;
    font-size: 13px;
    margin: 0;
}

@media (max-width: 768px) {
    .kmp-footer-container {
        padding: 40px 0 20px 0;
    }

    .kmp-footer-brand {
        font-size: 28px;
    }

    .kmp-footer-nav-section,
    .kmp-footer-contact-section {
        margin-bottom: 35px;
    }

    .kmp-footer-social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .kmp-footer-logo-section {
        text-align: center;
    }

    .kmp-footer-description {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-wrapper {
        padding: 1.5rem;
        margin: 1rem;
    }

    .contact-title {
        font-size: 2rem;
    }

    .form-section,
    .info-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .info-item {
        padding: 0.75rem;
    }

    .map-container {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .contact-wrapper {
        padding: 1rem;
    }

    .contact-title {
        font-size: 1.75rem;
    }

    .form-section,
    .info-section {
        padding: 1rem;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
    }

    .info-icon {
        margin: 0 auto 0.75rem auto;
    }
}

@media (max-width: 576px) {
    .video-grid-section {
        grid-template-columns: 1fr;
    }

    .feature-tags {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {

    .testimonial-heading,
    .demo-heading {
        font-size: 2rem;
    }

    .testimonial-subtext,
    .demo-subtext {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .video-card {
        margin-bottom: 1.5rem;
    }

    .main-container {
        padding: 2rem 0;
    }

    .testimonial-wrapper {
        margin-bottom: 3rem;
    }
}

@media (max-width: 576px) {

    .testimonial-heading,
    .demo-heading {
        font-size: 1.75rem;
    }

    .video-card {
        padding: 1.25rem;
    }

    .video-thumbnail {
        height: 100px;
    }

    .play-button {
        width: 40px;
        height: 40px;
    }

    .play-button::after {
        border-left: 10px solid #8b5cf6;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
    }
}

@media (max-width: 991px) {
    .hero-image-container {
        height: 50vh;
        margin-top: 2rem;
    }

    .content-wrapper {
        padding: 2rem 0;
    }

    .main-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .statistics-row {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .stat-block {
        width: 48%;
    }

    .main-title {
        font-size: 1.8rem;
    }

    .intro-description {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .stat-block {
        width: 100%;
    }

    .statistics-row {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 2rem;
    }

    .sub-heading {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cards-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .solution-card {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {


    .main-heading {
        font-size: 1.75rem;
    }

    .solution-card {
        padding: 1.5rem;
    }
}

.section-5 {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 15px;
        padding-left: 15px;
        font-family: 'Inter';
        font-size: 15px;
        font-weight: 500;
    }
}

@media(max-width:991px) {
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: relative;
        border: 1px solid #f3f1f1;
        border-radius: 2px;
        width: 100%;
    }

    .banner-section {
        padding: 30px 10%;
    }

    .hero-title {
        font-size: 32px;
    }

    .logo-bar {
        justify-content: space-between;
        display: flex;
        align-items: center;
        width: 100%;
        padding: 5px 12px;
    }

    .phone-container {
        padding: 0;
        gap: 0;
    }

    .navbar-collapse {
        width: 100%;
        padding: 15px;
    }

    .navbar-nav .dropdown-menu {
        position: static;
        border: 1px solid #e3e3e3;
        border-radius: 2px;
    }

    .dropdown-item {
        text-align: left;
    }
}


/*<<<<<<<<<<<-----------ABOUT-SECTION---------->>>>>>>>>>>*/
.kapmax-hero-section {
    background: linear-gradient(135deg, #4a1a5c 0%, #2a0845 50%, #1a0530 100%);
    min-height: 601px;
    display: flex;
    align-items: center;
    position: relative;
	padding:29px 0;
}

.kapmax-hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.kapmax-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.kapmax-text-content {
    flex: 1;
    color: white;
    max-width: 500px;
}

.kapmax-main-title {
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.kapmax-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.kapmax-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.85;
    color: #e0e0e0;
}

.kapmax-cta-button {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
	text-decoration:none;
}

.kapmax-cta-button:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.kapmax-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kapmax-product-frame {
    background: linear-gradient(135deg, #f5f1e8 0%, #ede4d3 100%);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 490px;
}

.kapmax-product-image {
    width: 100%;
    height: 100%;
	border-radius: 16px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

@media (max-width: 1199px) {
    .kapmax-content-wrapper {
        gap: 40px;
    }

    .kapmax-main-title {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    .kapmax-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .kapmax-text-content {
        max-width: 100%;
    }

    .kapmax-main-title {
        font-size: 2.5rem;
    }

    .kapmax-hero-section {
        padding: 40px 0;
        display: block;
    }
}

@media (max-width: 767px) {
    .kapmax-main-title {
        font-size: 2rem;
    }

    .kapmax-subtitle {
        font-size: 1.1rem;
    }

    .kapmax-description {
        font-size: 0.95rem;
    }

    .kapmax-product-frame {
        padding: 30px;
        max-width: 320px;
    }

    .kapmax-hero-container {
        padding: 0 15px;
    }
}

@media (max-width: 575px) {
    .kapmax-main-title {
        font-size: 1.75rem;
    }

    .kapmax-cta-button {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    .kapmax-product-frame {
        padding: 20px;
        max-width: 280px;
        height: auto;
    }
}

.feature-showcase-wrapper {
    background-color: #1a1a1a;
    padding: 80px 0;
    display: flex;
    align-items: center;
}

.feature-showcase-card {
    text-align: center;
    padding: 30px 20px;
    background: transparent;
    border: none;
}

.feature-showcase-icon {
    width: 80px;
    height: 80px;
    background: rgba(138, 43, 226, 0.15);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(138, 43, 226, 0.4);
    border: 2px solid rgba(138, 43, 226, 0.3);
}

.feature-showcase-icon i {
    font-size: 36px;
    color: #8a2be2;
}

.feature-showcase-title {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.feature-showcase-description {
    color: #b0b0b0;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    max-width: 280px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .feature-showcase-wrapper {
        padding: 60px 0;
    }

    .feature-showcase-card {
        margin-bottom: 40px;
        padding: 25px 15px;
    }
}

@media (max-width: 768px) {
    .feature-showcase-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .feature-showcase-description {
        font-size: 15px;
        max-width: 250px;
    }

    .feature-showcase-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .feature-showcase-icon i {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .feature-showcase-wrapper {
        padding: 40px 0;
    }

    .feature-showcase-title {
        font-size: 20px;
    }

    .feature-showcase-description {
        font-size: 14px;
        max-width: 220px;
    }
}

.product-showcase-container {
    background-color: #000000;
    min-height: 100vh;
    padding: 0;
    margin: 0;
}

.product-main-wrapper {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 2rem 1rem;
}

.product-image-section {
    flex: 0 0 40%;
    padding-right: 2rem;
}

.camera-product-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.product-content-section {
    flex: 1;
    color: white;
    padding-left: 2rem;
}

.product-content-section p {
    font-weight: 300;
    color: rgb(199, 199, 199);
}

.main-product-title h .main-product-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: 1px;
}

.feature-links-container {
    margin-bottom: 2rem;
}

.feature-link-item {
    color: #8b5cf6;
    text-decoration: none;
    font-size: 0.9rem;
    margin-right: 1rem;
    font-weight: 500;
}

.feature-link-item:hover {
    color: #a78bfa;
    text-decoration: underline;
}

.performance-section-title {
    color: #8b5cf6;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.performance-description-text {
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feature-list-container {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.feature-list-item {
    color: #d1d5db;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.feature-list-item:before {
    content: "•";
    color: #8b5cf6;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.connectivity-section-title {
    color: #8b5cf6;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.action-buttons-container {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    text-align: center;
}

.contact-primary-button {
    background-color: #8b5cf6;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.contact-primary-button:hover {
    background-color: #7c3aed;
}

.download-secondary-button {
    background-color: transparent;
    color: #d1d5db;
    border: 1px solid #4b5563;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.download-secondary-button:hover {
    border-color: #8b5cf6;
    color: #8b5cf6;
}

@media (max-width: 768px) {
    .product-main-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .product-image-section {
        flex: none;
        padding-right: 0;
        margin-bottom: 2rem;
        width: 100%;
    }

    .product-content-section {
        padding-left: 0;
        text-align: left;
    }


    .main-product-title {
        font-size: 1rem;
        margin-top: 20px;
    }

    .action-buttons-container {
        flex-direction: column;
        align-items: center;
        margin-bottom: 10px;
    }

    .contact-primary-button,
    .download-secondary-button {
        width: 100%;
        max-width: 278px;
    }
}

@media (max-width: 576px) {
    .main-product-title {
        font-size: 1.75rem;
    }

    .feature-link-item {
        display: block;
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
}

.camera-showcase {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 2rem 0;
}

.product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
    min-height: 80vh;
}

.text-content {
    flex: 1;
    padding-right: 2rem;
}

.product-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.product-model {
    color: #8b5cf6;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.feature-section {
    margin-bottom: 2.5rem;
}

.feature-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-item {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

.feature-item::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: bold;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary-custom {
    background-color: #8b5cf6;
    border: none;
    color: #ffffff;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #7c3aed;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-secondary-custom {
    background-color: #374151;
    border: none;
    color: #ffffff;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background-color: #4b5563;
    color: #ffffff;
    transform: translateY(-2px);
}

.product-image-section {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .text-content {
        padding-right: 0;
    }

    .product-header h1 {
        font-size: 2.5rem;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        width: 200px;
        text-align: center;
    }

    .product-image-section {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .product-header h1 {
        font-size: 1.3rem;
    }

    .camera-showcase {
        padding: 1rem 0;
    }

    .content-wrapper {
        gap: 1.5rem;
    }
}

.about-bg-section {
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    overflow-x: hidden;
}


.coming-soon-main-container {
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
    padding: 2rem 0;
    font-family: 'Arial', sans-serif;
}

.coming-soon-header-section {
    text-align: center;
    margin-bottom: 3rem;
}

.coming-soon-title-primary {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.coming-soon-subtitle-coming {
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 1px;
}

.coming-soon-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.coming-soon-product-showcase {
    position: relative;
    text-align: center;
    background: linear-gradient(135deg, #2a1810, #4a3020);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.coming-soon-camera-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.coming-soon-coming-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.coming-soon-features-panel {
    padding: 2rem;
}

.coming-soon-main-title {
    color: #8A2BE2;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.coming-soon-subtitle-desc {
    color: #cccccc;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.coming-soon-feature-section {
    margin-bottom: 2.5rem;
}

.coming-soon-section-title {
    color: #8A2BE2;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.coming-soon-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coming-soon-feature-item {
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.coming-soon-feature-item:before {
    content: "•";
    color: #8A2BE2;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
}

.coming-soon-action-buttons {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.coming-soon-btn-primary {
    background: linear-gradient(135deg, #8A2BE2, #9A3BF2);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.coming-soon-btn-primary:hover {
    background: linear-gradient(135deg, #7A1BD2, #8A2BE2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
    color: white;
}

.coming-soon-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #8A2BE2;
    padding: 10px 23px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.coming-soon-btn-secondary:hover {
    background-color: #8A2BE2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
}

@media (max-width: 768px) {
    .coming-soon-main-container {
        padding: 1rem 0;
    }

    .coming-soon-title-primary {
        font-size: 2.2rem;
    }

    .coming-soon-subtitle-coming {
        font-size: 1.4rem;
    }

    .coming-soon-product-showcase {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }

    .coming-soon-features-panel {
        padding: 1.5rem;
    }

    .coming-soon-action-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .coming-soon-btn-primary,
    .coming-soon-btn-secondary {
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .coming-soon-title-primary {
        font-size: 1.8rem;
    }

    .coming-soon-subtitle-coming {
        font-size: 1.2rem;
    }

    .coming-soon-main-title {
        font-size: 1.1rem;
    }

    .coming-soon-section-title {
        font-size: 1.1rem;
    }
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 35px 20px;
    /* min-height: 100vh; */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-title {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    margin-bottom: 15px;
    color: #ffffff;
}

.faq-subtitle {
    font-size: 1rem;
    color: #cccccc;
    font-weight: 300;
}

.faq-accordion {
    width: 100%;
}

.faq-item {
    background-color: #2a2a2a;
    border: none;
    border-radius: 0;
    margin-bottom: 2px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 20px 25px;
    text-align: left;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #333333;
}

.faq-question:focus {
    outline: none;
    box-shadow: none;
}

.faq-question-text {
    flex: 1;
    margin-right: 15px;
}

.faq-toggle-icon {
    font-size: 1.2rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: #ffffff;
}

.faq-toggle-icon.rotated {
    transform: rotate(45deg);
}

.faq-answer {
    background-color: #2a2a2a;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.show {
    max-height: 200px;
    padding: 20px 25px;
}

.faq-answer-content {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.kmp-social-icon svg {
    width: 11px;
}

@media (max-width: 768px) {
    .faq-container {
        padding: 40px 15px;
        min-height: auto;
    }

    .faq-main-div {
        min-height: auto;
    }


    .faq-title {
        font-size: 2.5rem;
    }

    .faq-subtitle {
        font-size: 0.9rem;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
    }

    .faq-answer.show {
        padding: 18px 20px;
    }
}

@media (max-width: 576px) {
    .faq-title {
        font-size: 2rem;
    }

    .faq-question {
        padding: 15px 18px;
        font-size: 0.9rem;
    }

    .faq-answer.show {
        padding: 15px 18px;
    }
}

.faq-main-div {
    background-color: #1E1E1E;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    /* min-height: 100vh; */
}

.feature-showcase-icon svg {
    color: #fff;
    font-size: 30px;
}

.electrotech-section {
    flex-wrap: wrap;
}


.about1-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about1-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.about1-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 0;
}

.about1-title {
    font-size: 4rem;
    font-weight: 900;
    color: #bf5af2;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-shadow: 0 4px 8px rgba(191, 90, 242, 0.3);
    line-height: 1.1;
}

.about1-breadcrumb {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0.9;
}

.about1-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.about1-breadcrumb a:hover {
    color: #bf5af2;
}

.about1-breadcrumb .about1-separator {
    margin: 0 15px;
    color: #bf5af2;
    font-weight: 600;
}

.about1-breadcrumb .about1-current {
    color: #bf5af2;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .about1-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .about1-title {
        font-size: 3rem;
        letter-spacing: 2px;
    }

    .about1-content {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .about1-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .about1-content {
        padding: 50px 0;
    }

    .about1-breadcrumb {
        font-size: 0.8rem;
    }

    .about1-breadcrumb .about1-separator {
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .about1-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .about1-content {
        padding: 40px 0;
    }

    .about1-breadcrumb {
        font-size: 0.75rem;
    }

    .about1-breadcrumb .about1-separator {
        margin: 0 8px;
    }
}

@media (max-width: 480px) {
    .about1-title {
        font-size: 1.8rem;
        letter-spacing: 0.5px;
    }

    .about1-breadcrumb {
        font-size: 0.7rem;
        line-height: 1.4;
    }
}

.about2-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.about2-grid-item {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about2-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about2-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ✅ Overlay for image cards */
.about2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about2-grid-item:hover .about2-overlay {
    opacity: 1;
}

/* Card 1 also styled same */
.about2-card-content {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%);
    color: white;
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Reusable inner styles */
.about2-search-icon {
    width: 48px;
    height: 48px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
}

.about2-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.2;
}

.about2-text {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
    max-width: 220px;
}


/* Button */
.about2-view-more-btn {
    background: transparent;
    border: 2px solid #8b5cf6;
    color: #8b5cf6;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.about2-view-more-btn:hover {
    background: #8b5cf6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.about2-btn-container {
    text-align: center;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 992px) {
    .about2-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .about2-container {
        padding: 40px 15px;
    }

    .about2-title {
        font-size: 20px;
    }

    .about2-text {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .about2-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about2-container {
        padding: 30px 15px;
    }

    .about2-card-content {
        padding: 25px;
    }

    .about2-title {
        font-size: 18px;
    }

    .about2-text {
        font-size: 12px;
    }

    .about2-view-more-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}

.about3-hero {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 50%, #6D28D9 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
}

.about3-content {
    text-align: center;
    max-width: 900px;
    width: 100%;
    margin: 0 auto
}

.about3-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: lowercase;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.about3-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about3-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
    padding: 12px 32px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about3-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .about3-title {
        font-size: 3rem;
    }

    .about3-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .about3-hero {
        padding: 40px 15px;
    }

    .about3-title {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }

    .about3-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .about3-btn {
        padding: 10px 28px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .about3-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .about3-subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .about3-btn {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
}

@media (max-width: 400px) {
    .about3-title {
        font-size: 1.8rem;
    }

    .about3-subtitle {
        font-size: 0.85rem;
    }
}

.about4-section {
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about4-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about4-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about4-content {
    flex: 1;
    max-width: 500px;
}

.about4-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.about4-text {
    color: #718096;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about4-btn {
    display: inline-block;
    padding: 12px 32px;
    border: 2px solid #805ad5;
    color: #805ad5;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.about4-btn:hover {
    background-color: #805ad5;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.about4-image-container {
    flex: 1;
    max-width: 550px;
    height: 400px;
    background-color: #f7fafc;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.about4-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 992px) {
    .about4-row {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .about4-title {
        font-size: 2.8rem;
    }

    .about4-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .about4-title {
        font-size: 2.2rem;
    }

    .about4-section {
        padding: 40px 0;
    }

    .about4-container {
        padding: 0 15px;
    }

    .about4-image-container {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .about4-title {
        font-size: 1.8rem;
    }

    .about4-text {
        font-size: 0.9rem;
    }

    .about4-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}

.about6-container {
    min-height: 100vh;
    position: relative;
    padding: 2rem 0;
}

.about6-blob {
    position: absolute;
    left: -10%;
    top: 10%;
    width: 400px;
    height: 500px;
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 50%, #C084FC 100%);
    border-radius: 50% 40% 60% 30%;
    z-index: 1;
    opacity: 0.9;
}

.about6-blob::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 30%;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, white 1px, transparent 1px);
    background-size: 10px 10px;
    opacity: 0.3;
}

.about6-content {
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.about6-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about6-badge {
    display: inline-block;
    background: #FF6B38;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.about6-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    max-width: 600px;
    margin: 0 auto;
}

.about6-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about6-card {
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.about6-card:hover {
    transform: translateY(-5px);
}

.about6-card-orange {
    background: linear-gradient(135deg, #FF6B38 0%, #FF8A65 100%);
}

.about6-card-purple {
    background: linear-gradient(135deg, #6B4CE6 0%, #8B5CF6 100%);
}

.about6-card-green {
    background: linear-gradient(135deg, #3ED3A3 0%, #4FD1C7 100%);
    grid-column: 1 / -1;
}

.about6-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.about6-card-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.about6-link {
    display: inline-flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.about6-link:hover {
    opacity: 0.8;
    color: white;
}

.about6-link::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.about6-link:hover::after {
    transform: translateX(3px);
}

.about6-mockup {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1.5rem;
    position: relative;
}

.about6-mockup-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.about6-mockup-dots {
    display: flex;
    gap: 0.3rem;
}

.about6-mockup-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.about6-mockup-dot:nth-child(1) {
    background: #FF5F57;
}

.about6-mockup-dot:nth-child(2) {
    background: #FFBD2E;
}

.about6-mockup-dot:nth-child(3) {
    background: #28CA42;
}

.about6-seo-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.about6-seo-list {
    flex: 1;
}

.about6-seo-item {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    background: #F8F9FA;
    border-radius: 8px;
    color: #333;
    font-size: 0.875rem;
}

.about6-seo-arrow {
    color: #28CA42;
    font-size: 1.5rem;
    margin: 0 1rem;
}

.about6-seo-result {
    flex: 1;
    text-align: center;
}

.about6-seo-icon {
    width: 40px;
    height: 40px;
    background: #28CA42;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    color: white;
    font-weight: bold;
}

.about6-content-mockup {
    background: #F8F9FA;
    border-radius: 8px;
    padding: 1rem;
    color: #333;
}

.about6-content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.about6-content-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #E9ECEF;
}

.about6-content-item:last-child {
    border-bottom: none;
}

.about6-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #6C757D;
}

.about6-team-mockup {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
}

.about6-team-member {
    position: relative;
}

.about6-team-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid white;
}

.about6-team-avatar-1 {
    background: linear-gradient(135deg, #FF6B38, #FF8A65);
}

.about6-team-avatar-2 {
    background: linear-gradient(135deg, #6B4CE6, #8B5CF6);
}

.about6-team-avatar-3 {
    background: linear-gradient(135deg, #3ED3A3, #4FD1C7);
}

.about6-team-avatar-4 {
    background: linear-gradient(135deg, #FFD93D, #FF6B6B);
}

.about6-connection-line {
    position: absolute;
    width: 2px;
    height: 30px;
    background: #DDD;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .about6-blob {
        width: 300px;
        height: 400px;
        left: -20%;
    }

    .about6-title {
        font-size: 2rem;
    }

    .about6-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about6-card {
        padding: 1.5rem;
    }

    .about6-seo-content {
        flex-direction: column;
    }

    .about6-team-mockup {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .about6-title {
        font-size: 1.75rem;
    }

    .about6-card-title {
        font-size: 1.25rem;
    }

    .about6-team-avatar {
        width: 50px;
        height: 50px;
    }
}

.contactbanner-section {
    position: relative;
    height: 40vh;
    min-height: 400px;
    background-image: url('https://readdy.ai/api/search-image?query=modern%20office%20workspace%20with%20diverse%20team%20of%20professionals%20collaborating%20around%20computers%20and%20documents%2C%20bright%20natural%20lighting%2C%20contemporary%20business%20environment%20with%20clean%20desks%20and%20technology%2C%20professional%20atmosphere%20with%20people%20working%20together&width=1920&height=800&seq=contactbanner001&orientation=landscape');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contactbanner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.85) 0%, rgba(51, 65, 85, 0.75) 100%);
    z-index: 1;
}

.contactbanner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    margin: 0 auto
}

.contactbanner-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    font-weight: 400;
}

.contactbanner-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contactbanner-breadcrumb a:hover {
    color: white;
}

.contactbanner-breadcrumb-arrow {
    margin: 0 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.contactbanner-breadcrumb-current {
    color: white;
    font-weight: 500;
}

.contactbanner-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
}

.contactbanner-decoration-dots {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    z-index: 3;
}

.contactbanner-dot-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
}

.contactbanner-dot {
    width: 6px;
    height: 6px;
    background-color: #f97316;
    border-radius: 50%;
    opacity: 0.8;
}

.contactbanner-paper-plane {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 120px;
    height: 80px;
}

.contactbanner-plane-icon {
    position: absolute;
    left: 0;
    top: 20px;
    width: 24px;
    height: 24px;
    background-color: white;
    clip-path: polygon(0% 50%, 40% 0%, 100% 50%, 40% 100%);
    transform: rotate(-15deg);
}

.contactbanner-dotted-path {
    position: absolute;
    left: 25px;
    top: 30px;
    width: 90px;
    height: 2px;
    background-image: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.6) 0px, rgba(255, 255, 255, 0.6) 4px, transparent 4px, transparent 8px);
    transform: rotate(15deg);
}

.contactbanner-star {
    position: absolute;
    top: 40px;
    right: 50px;
    z-index: 3;
    color: #fbbf24;
    font-size: 1.5rem;
}

.contactbanner-star::before {
    content: "✦";
}

@media (max-width: 768px) {
    .contactbanner-section {
        height: 35vh;
        min-height: 350px;
    }

    .contactbanner-title {
        font-size: 2.5rem;
    }

    .contactbanner-breadcrumb {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .contactbanner-decoration-dots {
        top: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }

    .contactbanner-dot-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 3px;
    }

    .contactbanner-dot {
        width: 5px;
        height: 5px;
    }

    .contactbanner-paper-plane {
        display: none;
    }

    .contactbanner-star {
        top: 30px;
        right: 30px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .contactbanner-section {
        height: 30vh;
        min-height: 300px;
    }

    .contactbanner-title {
        font-size: 2rem;
    }

    .contactbanner-breadcrumb {
        font-size: 0.85rem;
    }

    .contactbanner-decoration-dots {
        top: 15px;
        left: 15px;
        width: 40px;
        height: 40px;
    }

    .contactbanner-dot-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.contact1-container {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact1-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact1-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact1-title {
    color: #2c5aa0;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: left;
}

.contact1-divider {
    border: none;
    border-bottom: 1px dashed #d1d5db;
    margin: 20px 0 30px 0;
    width: 100%;
}

.contact1-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact1-info:last-child {
    margin-bottom: 0;
}

.contact1-icon {
    width: 45px;
    height: 45px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    flex-shrink: 0;
}

.contact1-icon i {
    color: #6366f1;
    font-size: 20px;
}

.contact1-details {
    flex: 1;
}

.contact1-details h3 {
    color: #2c5aa0;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.2;
}

.contact1-details p {
    color: #6b7280;
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .contact1-container {
        padding: 40px 15px;
    }

    .contact1-card {
        margin-bottom: 30px;
        padding: 30px 25px;
    }
}

@media (max-width: 767px) {
    .contact1-title {
        font-size: 22px;
    }

    .contact1-details h3 {
        font-size: 16px;
    }

    .contact1-details p {
        font-size: 14px;
    }

    .contact1-icon {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }

    .contact1-icon i {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .contact1-container {
        padding: 30px 10px;
    }

    .contact1-card {
        padding: 25px 20px;
    }
}

.contact2-body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    min-height: 100vh;
}

.contact2-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.contact2-form-section {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.contact2-rocket-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.contact2-rocket-icon::before {
    content: '🚀';
    font-size: 28px;
}

.contact2-title {
    color: #2d3748;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.contact2-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact2-form-group {
    margin-bottom: 20px;
}

.contact2-input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    color: #4a5568;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.contact2-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.contact2-input::placeholder {
    color: #a0aec0;
}

.contact2-textarea {
    min-height: 120px;
    resize: vertical;
}

.contact2-submit-btn {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.contact2-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.contact2-map-section {
    height: 400px;
    background-image: url('https://public.readdy.ai/gen_page/map_placeholder_1280x720.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0 0 20px 20px;
    position: relative;
    margin-top: -20px;
}

@media (max-width: 768px) {
    .contact2-container {
        padding: 30px 15px;
    }

    .contact2-form-section {
        padding: 40px 25px;
        border-radius: 15px;
    }

    .contact2-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .contact2-input {
        padding: 12px 16px;
        font-size: 15px;
    }

    .contact2-submit-btn {
        padding: 14px 25px;
        font-size: 15px;
    }

    .contact2-map-section {
        height: 300px;
        border-radius: 0 0 15px 15px;
    }
}

@media (max-width: 576px) {
    .contact2-title {
        font-size: 22px;
    }

    .contact2-form-section {
        padding: 30px 20px;
    }
}

.aboutone-wrapper {
    background: linear-gradient(135deg, #6B46C1 0%, #8B5CF6 50%, #A855F7 100%);
    min-height: 100vh;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.aboutone-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.aboutone-small-title {
    color: #FF69B4;
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 500;
}

.aboutone-main-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.aboutone-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 50px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.aboutone-card-title {
    color: white;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
}

.aboutone-tags-container {
    margin-bottom: 25px;
}

.aboutone-tag {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    margin: 6px 8px 6px 0;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.aboutone-tag:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.aboutone-description {
    color: white;
    font-size: 16px;
    line-height: 1.6;
    margin: 30px 0;
    opacity: 0.9;
}

.aboutone-button {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.aboutone-button:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: white;
}

.aboutone-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.aboutone-illustration img {
    max-width: 100%;
    height: auto;
}

.aboutone-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.aboutone-decoration-1 {
    top: 10%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.aboutone-decoration-2 {
    bottom: 10%;
    right: 10%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 768px) {
    .aboutone-main-title {
        font-size: 2.2rem;
    }

    .aboutone-card {
        padding: 30px 25px;
    }

    .aboutone-card-title {
        font-size: 24px;
    }

    .aboutone-illustration {
        margin-top: 30px;
    }

    .aboutone-wrapper {
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    .aboutone-main-title {
        font-size: 1.8rem;
    }

    .aboutone-card {
        padding: 25px 20px;
    }

    .aboutone-tag {
        margin: 4px 6px 4px 0;
        padding: 8px 16px;
        font-size: 13px;
    }
}

body {
    font-family: "Roboto", sans-serif;
}

.landing-navbar {
    padding: 0px;
}

.listing-call {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-link {
    gap: 2px;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    padding: 6px 20px;
    background-color: #3d95fa;
    border-radius: 3px;
    color: #fff;
}

.header-link.whatsapp {
    background-color: rgb(23, 177, 49);
}

.header-link svg {
    fill: #fff;
}

.banner-landing-page {
    padding: 80px 0px;
    background-image: url(../img/kapmax-banner-ifp.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 2;
}

.banner-landing-page::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.heading-banner {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(155.91deg, #fff 0%, #8ecb49 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 15px;
}

.title-banner {
    font-size: 18px;
    display: inline-block;
    background-color: #fff;
    border-radius: 3px;
    padding: 6px 13px;
    color: #6a448f;
    font-weight: 600;
}

.para-banner {
    font-size: 17px;
    color: #fff;
    margin-top: 15px;
    font-weight: 500;
}

.request-class-btn-banner {
    padding: 11px 25px;
    background-color: #68458f;
    color: #fff;
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 3px;
}

.demo-class-btn-banner {
    padding: 11px 25px;
    color: #fff;
    display: inline-block;
    margin-top: 20px;
    background-color: #3d95fa;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 3px;
}

.demo-class-btn-banner:hover,
.request-class-btn-banner:hover {
    color: #fff;
}

.section-video video {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #777777;
}

.card-banner {
    padding: 12px 25px;
    color: #fff;
    background-color: #68458f;
    display: flex;
    align-items: center;
    border-radius: 20px;
    gap: 10px;
    border: 1px solid #999999;
}

.heading-card-banner {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 500;
}

.heading-section-2 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    background: linear-gradient(155.91deg, #80b860 0%, #2a7c63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-2 {
    padding: 50px 0px 30px 0px;
    background: #000000;
}

.android-btn {
    padding: 11px 25px;
    background-color: #42aedf;
    color: #ffffff;
    text-decoration: none;
    border-radius: 3px;
    display: inline-block;
    font-weight: 600;
    font-size: 17px;
}

.android-btn:hover {
    color: #fff;
}

.first-heading-cebter {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
}

.chenge-text {
    width: 100%;
    position: relative;
    min-height: 90px;
}

.chenge-text>div {
    font-size: 45px;
    text-transform: uppercase;
    color: #7ee09b;
    opacity: 1;
    font-weight: 900;
}

.btn-new-design {
    padding: 15px 40px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    display: inline-block;
    border-radius: 4px;
    background-color: #68d662;
}

.btn-new-design:hover {
    color: #fff;
}

.slider-section {
    background: #000;
    padding: 50px 0px;
}

.threee-layer-heading .first-layer-heading,
.threee-layer-heading .second-layer,
.threee-layer-heading .three-layer {
    font-size: 52px;
    line-height: 1.2;
    text-transform: capitalize;
    font-weight: 900;
}

.threee-layer-heading .first-layer-heading {
    color: #fff;
}

.second-layer {
    color: #68d662;
}

.three-layer {
    color: #2a7c63;
}

.card-carousel-body {
    padding: 15px 15px;
}

.card-video {
    max-width: 100%;
    border-radius: 10px 10px 0px 0px;
}

.card-carousel {
    border: 1px solid #ccc;
    border-radius: 10px;
}

.card-heading {
    font-size: 19px;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 10px;
}

.card-carousel-body p {
    color: #979797;
    text-align: center;
}

#carousel-video .owl-prev,
#carousel-video .owl-next {
    position: absolute;
    top: 58%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    color: #2e7e29;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

#carousel-video .owl-prev {
    left: -24px;
}

#carousel-video .owl-next {
    right: -30px;
}

#carousel-video .owl-prev,
#carousel-video .owl-next {
    font-size: 32px;
}

@media(max-width:576px) {
    #carousel-video .owl-prev {
        left: -10px;
    }

    #carousel-video .owl-next {
        right: -9px;
    }
}

.card-new-img {
    padding: 10px 20px;
    border: 1px solid #5e5e5e;
    border-radius: 10px;
    background: #14151f;
}

.card-new-img:hover {
    border: 1px solid #68d662;
    box-shadow: #68d66267 0px 3px 12px;
}

.heading-img {
    margin-top: 10px;
    color: #fff;
    font-weight: 500;
    font-size: 17px;
}

.section-new-one {
    background: #151418;
    padding: 50px 0px;
}

.gradient-parent {
    font-size: 54px;
    font-weight: 900;
    color: #fff;
}

.gradient-parent span {
    background: linear-gradient(155.91deg, #B3F576 0%, #49CBC2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-new-gapping {
    gap: 25px 55px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.card-img-place {
    padding: 20px 15px;
    background: #14151f;
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
    border: 1px solid #5e5e5e;
    border-radius: 20px;
}

.heading-gapping {
    background: linear-gradient(155.91deg, #B3F576 0%, #49CBC2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 27px;
    font-weight: 800;
    margin-top: 10px;
}

.heading-ceter-bottom {
    font-size: 36px;
    color: #cecece;
    font-weight: 600;
    text-transform: capitalize;
}

.card-new-bottom {
    padding: 20px 35px 30px 35px;
    background: #1d1e26;
    margin-top: 20px;
}

.card-new-green {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #0e5713;
    border-radius: 15px;
    border: 1px solid #949494;
}

.card-new-green p {
    margin-bottom: 0px;
    color: #fff;
}

.heading-green {
    font-size: 22px;
    color: #fff;
    font-weight: 600;
}

.faq-heading-all {
    font-size: 52px;
    color: #fff;
    font-weight: 900;
    margin-bottom: 30px;
}

.section-faq {
    padding: 65px 0px;
    background-color: #0f1018;
}

.faq-heading-all span {
    background: linear-gradient(155.91deg, #B3F576 0%, #49CBC2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accordion-item {
    background: #14151f;
    margin-bottom: 15px;
    border: 1px solid #3e3f42;
    border-radius: 10px;
}

.accordion-body {
    color: #afafaf;
}

.accordion-button {
    color: #fff;
    background: none;
    border: none;
    padding: 20px 10px 20px 20px;
}

.accordion-button:not(.collapsed) {
    background: none;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 15px 10px 15px 20px;
}

.accordion-item:not(:first-of-type) {
    border: 1px solid #3e3f42;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* foooter-css */
.footer-container {
    background-color: #1a1a1a;
    color: #ffffff;
    width: 100%;
    text-align: center;
    padding: 65px 0px;
}

.company-title {
    font-size: 3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.follow-text {
    font-size: 0.875rem;
    color: #a0a0a0;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.2s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: scale(1.1);
}

.whatsapp-icon {
    background-color: #25D366;
    color: #ffffff;
}

.instagram-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
}

.disclaimer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 2rem;
    display: inline-block;
    transition: opacity 0.2s ease;
}

.disclaimer-link:hover {
    opacity: 0.8;
    color: #ffffff;
}

.company-description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.copyright-text {
    font-size: 0.75rem;
    color: #808080;
    margin-bottom: 1rem;
}

.windows-notice {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    backdrop-filter: blur(10px);
}

.windows-notice-title {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.windows-notice-text {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .company-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .footer-container {
        padding: 2rem 1rem;
    }

    .social-icons {
        gap: 1rem;
    }

    .social-icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .company-description {
        font-size: 0.8rem;
    }

    .windows-notice {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
        background-color: transparent;
        backdrop-filter: none;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .company-title {
        font-size: 1.5rem;
    }

    .social-icon {
        width: 2rem;
        height: 2rem;
    }

    .company-description {
        font-size: 0.75rem;
    }
}

/* foooter-css End */

@media(max-width:991px) {
    .landing-navbar {
        padding: 10px 0px;
    }

    .chenge-text>div,
    .heading-section-2,
    .heading-banner,
    .first-heading-cebter,
    .threee-layer-heading .first-layer-heading,
    .threee-layer-heading .second-layer,
    .threee-layer-heading .three-layer,
    .gradient-parent {
        font-size: 30px;
    }

    .btn-new-design {
        padding: 8px 12px;
        font-size: 13px;
    }

    .card-new-gapping {
        gap: 25px 35px;
    }

    .card-img-place {
        width: 45%;
    }

    .heading-ceter-bottom {
        font-size: 27px;
    }

    .heading-green {
        line-height: 1.2;
        font-size: 17px;
        margin-bottom: 5px;
    }

    .faq-heading-all {
        font-size: 25px;
    }
}

.hero-section-new {
    background: linear-gradient(135deg, #2d1b69 0%, #800080 50%, #4a1a5c 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    padding: 60px 0;
}

.hero-panel {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-content-new h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-content-new p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-contact-banner {
    background: linear-gradient(45deg, #800080, #a020a0);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-contact-banner:hover {
    background: linear-gradient(45deg, #a020a0, #c030c0);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(128, 0, 128, 0.3);
}

.feature-card-new {
    padding: 80px 0;
    background: #f8f9fa;
}

.feature-card-new {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.feature-card-new:hover {
    transform: translateY(-10px);
}

.feature-image-new {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.feature-content-new {
    padding: 30px;
    text-align: center;
}

.feature-content-new h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.btn-know-more {
    background: linear-gradient(45deg, #800080, #a020a0);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-know-more:hover {
    background: linear-gradient(45deg, #a020a0, #c030c0);
    color: white;
    transform: translateY(-2px);
}

.feature-card-new {
    padding: 80px 0;
}

.feature-card-new:nth-child(odd) {
    background: white;
}

.feature-card-new:nth-child(even) {
    background: #f8f9fa;
}

.content-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.content-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
    line-height: 1.2;
}

.content-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-content-new h1 {
        font-size: 2.5rem;
    }

    .hero-content-new p {
        font-size: 1rem;
    }

    .content-text h2 {
        font-size: 2rem;
    }

    .hero-section-new {
        padding: 40px 0;
    }

    .feature-card-new {
        padding: 60px 0;
    }
}

/*-----------------------------------------------------*/


.top-header {
    background-color: #6f42c1;
}

.top-header-link {
    color: white;
    text-decoration: none;
}

.hero-section {
    background: #220e39;
    color: #fff;
    padding: 60px 0;
}

.form-box {
    background: #68458f;
    border-radius: 8px;
    padding: 25px;
}

.form-box h4 {
    color: #fff;
    font-weight: bold;
}

.form-control {
    margin-bottom: 15px;
}


.video-wrapper {
    border: 8px solid #000;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
    position: relative;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    font-size: 30px;
    color: #220e39;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
}



.request-btn {
    padding: 11px 40px;
    background-color: #220e39;
    color: #fff;
    display: inline-block;
    margin-top: 15px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 3px;
}

.watch-demo-btn {
    padding: 11px 40px;
    color: #fff;
    display: inline-block;
    margin-top: 15px;
    background-color: #3d95fa;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 3px;
}

.request-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px #4b079b;
}


.watch-demo-btn {
    padding: 11px 40px;
    color: #fff;
    display: inline-block;
    margin-top: 15px;
    background-color: #3d95fa;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 3px;
}

.watch-demo-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px #4f86c5;
}

.add-ftr-section {
    padding: 50px 0px 30px 0px;
    background: #000000;
}

.heading-add-ftr {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    background: linear-gradient(155.91deg, #80b860 0%, #2a7c63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.add-ftr-android-btn {
    padding: 11px 25px;
    background-color: #42aedf;
    color: #ffffff;
    text-decoration: none;
    border-radius: 3px;
    display: inline-block;
    font-weight: 600;
    font-size: 17px;
}

.add-ftr-first-heading-cebter {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
}

.btn-modern {
    background: linear-gradient(135deg, #0d6efd, #00bfff);
    color: #fff;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    border: none;
    transition: all 0.3s ease;
    animation: floatBtn 3s ease-in-out infinite;
}

/* Shine Effect */
.btn-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    transform: skewX(-30deg);
    transition: all 0.5s ease;
}

.btn-modern:hover::before {
    left: 120%;
}

/* Hover Scale */
.btn-modern:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.5);
}

.btn-new-design {
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    display: inline-block;
    border-radius: 4px;
    background-color: #68d662;
}



.btn-new-design:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px #26a320;
}

.request-btn-scnd {
    padding: 11px 50px;
    background-color: #220e39;
    color: #fff;
    display: inline-block;
    margin-top: 15px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 3px;
}

.request-btn-scnd:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px #4b079b;
}

/* add */
.add-section {
    font-family: 'Inter', sans-serif;
    background-color: #6f42c1;
    color: #ffffff;
    min-height: 100vh;
    padding: 2rem 0;
}

.add-section-wrapper {
    background-color: #220e39;
    border-radius: 1rem;
    padding: 3rem;
    margin: 2rem auto;
    max-width: 1200px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background-color: #6f42c1;
}

.add-info-section {
    background-color: #333333;
    border-radius: 0.75rem;
    padding: 2rem;
}

.add-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
}

#kapmax-container {
    display: inline-flex;
    align-items: center;
}

#kapmax-text {
    font-size: 50px;
    font-weight: 900;
    color: #7ee09b;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    line-height: 1;
}

.cursor {
    display: inline-block;
    margin-left: 2px;
    font-weight: bold;
    font-size: 40px;
    color: #7ee09b;
    line-height: 1;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

@media (max-width:768px) {
    .heading-add-ftr {
        font-size: 29px;
    }

    .add-ftr-first-heading-cebter {
        font-size: 29px !important;
    }

    #kapmax-text {
        font-size: 31px !important;
    }

    #kapmax-text,
    .cursor {
        font-size: 25px !important;
    }



}


.title-abbout {
    padding: 10px 30px;
    border-radius: 25px;
    border: 1px solid rgb(255 255 255 / 53%);
    color: #fff;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    background: none;
    margin-bottom: 10px;
}

.cont-btn-about {
    padding: 10px 30px;
    border-radius: 25px;
    background: #a502a8;
    color: #fff;
    border: none;
    display: inline-block;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
}

.warranty-section {
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
    padding: 20px;
}


.header-title-new-design {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.effective-date-new-design {
    color: #cccccc;
    font-size: 12px;
    margin-bottom: 15px;
}

.section-title-new-design {
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
    margin-top: 25px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-content-new-design {
    color: #e0e0e0;
    margin-bottom: 15px;
    padding-left: 0;
}

.subsection-new-design {
    margin-left: 20px;
    margin-bottom: 8px;
}

.purple-highlight-new-design {
    background-color: #6c5ce7;
    color: #ffffff;
    padding: 8px 12px;
    margin: 10px 0;
    font-weight: bold;
}

.coverage-table-new-design {
    background-color: #2d2d2d;
    border: 1px solid #444;
    margin: 15px 0;
}

.coverage-row {
    display: flex;
    border-bottom: 1px solid #444;
    padding: 8px;
}

.coverage-left {
    flex: 1;
    color: #e0e0e0;
}

.coverage-right {
    flex: 1;
    color: #e0e0e0;
    text-align: right;
}

.link-color {
    color: #74b9ff;
    text-decoration: none;
}

.link-color:hover {
    color: #0984e3;
    text-decoration: underline;
}

.numbered-section {
    margin-bottom: 30px;
}

.section-number-new-design {
    color: #6c5ce7;
    font-weight: bold;
}

@media (max-width: 768px) {

    .header-title-new-design {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .section-title-new-design {
        font-size: 13px;
    }

    .coverage-row {
        flex-direction: column;
    }

    .coverage-right {
        text-align: left;
        margin-top: 5px;
    }

    .subsection-new-design {
        margin-left: 10px;
    }
}

.kmp-contact-text a {
    text-decoration: none;
    color: whitesmoke;
}

.kmp-copyright-text a {
    text-decoration: none;
    color: #9d4edd;
}

.add-card a {
    text-decoration: none;
    color: #fff;
}

@media(max-width:576px) {
    .brand-pill img {
        width: 100px;
    }

    .info-item {
        align-items: center;
    }
}

.product-content-section h3 {
        color: #8b5cf6;
    }