:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --secondary: #f3f4f6;
    --text: #1f2937;
    --text-light: #1f2937;
    --background: #ffffff;
    --background-alt: #f9fafb;
    --border: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    /* font-family: "Roboto", serif !important; */
    line-height: 1.5;
    color: var(--text);
    background-color: var(--background);
}
.attempt p {
    margin: 10px;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo {
    height: 2rem;
}

.nav {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background-image: radial-gradient(
        circle farthest-corner at 3.7% 49.8%,
        rgba(143, 232, 255, 1) 21.9%,
        rgba(209, 243, 251, 1) 52.9%
    );
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--primary);
    color: white;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary), #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}
.button-primary-contact {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    margin-left: 11px;
    border-radius: 0 !important;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    color: #eef0f7;
    background-color: #18181b;
}

.button-primary {
    background-color: var(--primary);
    color: white;
}

.button-primary:hover {
    background-color: var(--primary-dark);
}

.button-secondary {
    background-color: var(--secondary);
    color: var(--text);
}

.button-secondary:hover {
    background-color: #e5e7eb;
}

/* About Section */
.about {
    padding: 4rem 0;
    background-color: var(--background);
}

.section-title {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: dark;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-video {
    flex: 1;
    margin-top: 10px;
    background-color: #626b78;
}

.rounded-video {
    width: 100%;
    /* height: 600px; */
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    border: 3px solid #9ea1a1;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-list {
    list-style-type: none;
    margin-top: 1rem;
    color: var(--primary);
}

.feature-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background-color: var(--background-alt);
}

.tabs {
    margin-top: 2rem;
}

.tab-list {
    display: flex;
    justify-content: center;
    gap: 7rem;
    margin-bottom: 10px;
    background-color: #fff;
    /* margin: 5px; */
    border-radius: 5px;
    padding: 5px 0px;
    border: 1px solid #e7e8e8;
    flex-wrap: wrap;
}

.tab-button {
    padding: 0.3rem 3rem;
    background-color: #fff;
    border: 1px solid #0d6efd;
    /* border: none; */
    color: #0d6efd;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button.active {
    background-color: #0d6efd;
    color: #fff;
    /* margin: 4px; */
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tab-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    /* margin-top: 1rem; */
    color: var(--primary) !important;
}

.tab-content li {
    position: relative;
    color: var(--text-light);
}

.tab-content li::before {
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}
/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background-color: #d9f2ef;
}
/*
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: var(--background-alt);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
}

.testimonial-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.testimonial-role {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1rem;
} */

/* Contact Section */
.contact {
    padding: 4rem 0;
    background-color: #1f2937;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

#message {
    height: 80px;
}
.form-group label {
    display: block;
    /* margin-bottom: 0.5rem; */
    font-weight: 500;
    color: #eef0f7;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    /* border: 1px solid var(--border); */
    border: 1px solid #626b78;
    border-radius: 0.25rem;
    font-family: inherit;
    background-color: #374151;
    display: flex;
    color: #eef0f7;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: #f9fafb;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style-type: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #f9fafb;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #d1d5db;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #f9fafb;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 0.5rem;
    border: none;
    border-radius: 0.25rem;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    font-size: 0.875rem;
    color: #9ca3af;
}

.tab-content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tab-content {
    display: none;
    width: 100%;
}

.card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.card h3 {
    margin-top: 0;
}

.card ul {
    padding-left: 20px;
}

.card li {
    margin-bottom: 10px;
}

.user-avatar {
    background-color: lightgray;
    width: 100px;
    height: 100px;
    border-radius: 50% !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-service-icon {
    width: 120px;
    height: 120px;
}
.home-service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1);
    transition: all 0.4s ease-in-out;
}
.home-service-heading p {
    font-size: 14px !important;
}

/* services */
/* .kys-service {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #f7bda3;
    margin-bottom: 2rem;
} */
.service-card {
    background-color: #d9f2ef !important;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #d9f2ef;
    /* margin-bottom: 2rem; */
    flex-wrap: nowrap !important;
}

.service-card-title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

.service-card-text {
    color: #fff;
    margin-bottom: 1.5rem;
}

.service-btn-custom {
    background-color: #0e8d6d;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.service-btn-custom:hover {
    background-color: #0c7a5e;
    color: white;
}

.service-illustration-container {
    position: relative;
    height: 200px;
    /* margin-top: 2rem; */
}

.service-illustration {
    /* position: absolute; */
    right: 0;
    bottom: 0;
    height: 230px;
    width: auto;
}

/* Why choose section start */

.whychooseCard {
    background-color: white;
    min-height: 200px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 3px solid blue;
}

.chooseTop {
    width: 100px;
    height: 100px;
}

.chooseTop img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Self-Discovery */

.self-discovery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

.self-discovery-container h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.self-discovery-description {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.self-discovery-circular-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.self-discovery-card:hover {
    transform: scale(1.02);
}

.self-discovery-card h2 {
    font-size: 1.5rem;
    color: #0288d1;
    margin-bottom: 3px;
    font-weight: 600;
}

.self-discovery-card p {
    font-size: 17px;
    color: #1f2937;
    text-align: center;
}

.imgIcon {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
}

.imgIcon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.self-discovery-card {
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    transition: transform 0.3s ease;
    position: relative;
    background-color: white;
    border: 3px solid blueviolet;
}

.p-10 {
    padding: 5px;
}
/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap;
    }

    .nav {
        display: none;
        width: 100%;
        padding: 1rem 0;
    }
    .feature-list li::before {
        color: var(--text-light);
    }
    .nav.active {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .tab-list {
        gap: 1rem;
        padding: 10px;
    }

    .tab-button {
        padding: 0.3rem 2rem;
        font-size: 0.9rem;
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-content {
        flex-direction: column;
    }
    #message {
        height: 70px;
        font-size: 0.9rem;
    }
    .card {
        padding: 15px;
        max-width: 100%;
    }
    .tab-content ul {
        color: #1f2937;
    }
    .feature-list {
        color: #007bff !important;
    }

    .service-card .card-body {
        flex-direction: column-reverse; /* Stack items vertically */
        text-align: center; /* Center align text for better readability */
    }

    .service-illustration-container {
        margin-bottom: 1rem; /* Add some space below the image */
    }

    .service-text-container {
        margin-top: 0; /* Remove any top margin */
    }
    .service-card {
        margin-bottom: 2rem;
    }
    /* .self-discovery-circular-container {
        width: 300px !important;
        height: 300px !important;
    } */
    .testimonials {
        padding: 3rem 0;
        /* background-color: #D9F2EF; */
    }

    .self-discovery-card {
        padding: 1rem !important;
    }

    .self-discovery-card h2 {
        font-size: 1rem !important;
    }

    .self-discovery-card p {
        font-size: 0.8rem;
    }

    .self-discovery-card {
        border-radius: 5%;
    }
    .self-discovery-card {
        position: static;
        width: 100%;
        height: auto;
        border-radius: 10px;
        transform: none !important;
    }
    .self-discovery-circular-container {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .self-discovery-card:nth-child(1)::before,
    .self-discovery-card:nth-child(2)::before,
    .self-discovery-card:nth-child(3)::before,
    .self-discovery-card:nth-child(4)::before {
        font-size: 5rem; /* Reduce font size */
    }
    .self-discovery-card:nth-child(1)::before {
        transform: translateX(150%);
        right: 20px;
    }
    .self-discovery-card:nth-child(2)::before {
        transform: translateY(50%);
        left: 30%;
        top: 50px;
    }
    .self-discovery-card:nth-child(3)::before {
        transform: translateX(-150%);
        left: 15px;
    }
    .self-discovery-card:nth-child(4)::before {
        transform: translateY(-50%);
        left: 30%;
        bottom: 70px;
    }
    .self-discovery-card:nth-child(1)::before,
    .self-discovery-card:nth-child(2)::before,
    .self-discovery-card:nth-child(3)::before,
    .self-discovery-card:nth-child(4)::before {
        display: none; /* Hide arrows */
    }
}

@media (max-width: 576px) {
    .tab-list {
        flex-direction: column;
        gap: 1rem;
        padding: 10px;
    }
    .feature-list li::before {
        color: var(--text-light);
    }
    .feature-list {
        color: var(--primary) !important;
    }
    .tab-button {
        padding: 0.3rem 1.5rem;
        font-size: 0.8rem;
    }
    #message {
        height: 60px;
        font-size: 0.8rem;
    }
    .card {
        padding: 10px;
        max-width: 100%;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    }
    .tab-content ul {
        color: #1f2937;
    }
}

/* KYS Home wrapper CSS */

.kyshero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background-color: #1a1e2c;
}

.gradient-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 50%;
    background: rgba(168, 85, 247, 0.2);
    border-radius: 50%;
    filter: blur(100px);
}

.gradient-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 50%;
    background: rgba(52, 211, 153, 0.2);
    border-radius: 50%;
    filter: blur(100px);
}

.hero-content {
    padding-top: 5rem;
    padding-bottom: 5rem;
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideIn 0.8s forwards;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.highlight {
    color: #34d399;
}

.hero-description {
    color: #9ca3af;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #34d399;
    color: #111827;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: transform 0.2s, background-color 0.3s;
}

.cta-button:hover {
    background-color: #6ee7b7;
    transform: scale(1.05);
}

.cta-button:active {
    transform: scale(0.95);
}

.hero-image-container {
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 0.8s 0.2s forwards;
}

.homeImageCard {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-image: linear-gradient( 184.1deg,  rgba(249,255,182,1) 44.7%, rgba(226,255,172,1) 67.2% );
    padding: 10px;
}

.hero-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
}

@media screen and (max-width: 400px) {
    .homeImageCard {
        width: 250px;
        height: 250px;
    }

    .instagram-icon {
        display: none;
    }

    .ask-card-1 {
        display: none;
    }

    .ask-card-2 {
        display: none;
    }
}

/* Floating Elements */
.instagram-icon {
    position: absolute;
    top: 12%;
    right: 15%;
    animation: float 4s infinite ease-in-out;
}

.ask-card {
    position: absolute;
    background-color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.ask-card-1 {
    top: 50%;
    right: 45%;
    animation: float-1 5s infinite ease-in-out;
}

.ask-card-2 {
    top: 90%;
    right: 25%;
    animation: float-2 5s infinite ease-in-out;
}

.ask-text {
    font-weight: 600;
    color: #1f2937;
}

/* Animations */
@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes float-1 {
    0%,
    100% {
        transform: translate(-20px, -30px);
    }
    50% {
        transform: translate(20px, -50px);
    }
}

@keyframes float-2 {
    0%,
    100% {
        transform: translate(20px, -50px);
    }
    50% {
        transform: translate(-20px, -30px);
    }
}

/* Priority page style start */
.priority-wrapper {
    position: relative;
    min-height: 450px;
}

.priority-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("./../../Backend/image/pages/kys-home.jpg");
    background-repeat: repeat;
    background-size: contain;
    background-position: center;
    filter: brightness(0.3);
    opacity: 0.2;
    z-index: -1;
}

.priorityContent h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

.priorityImages {
    position: relative;
    height: 100%;
    width: 100%;
}

.circleImage {
    position: absolute;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: float 8s ease-in-out infinite;
    padding: 5px;
}

/* Define sizes for circles */
.cimage1 {
    width: 50px;
    height: 50px;
    top: 10%;
    left: 35%;
    animation-delay: 0s;
}

.cimage2 {
    width: 80px;
    height: 80px;
    top: 0;
    left: 0;
    animation-delay: 2s;
}

.cimage3 {
    width: 80px;
    height: 80px;
    top: 50%;
    left: 20%;
    animation-delay: 4s;
}

.cimage4 {
    width: 120px;
    height: 120px;
    top: 70%;
    left: 40%;
    animation-delay: 6s;
}

.cimage5 {
    width: 90px;
    height: 90px;
    top: 20%;
    left: 70%;
    animation-delay: 8s;
}

@media screen and (max-width: 400px) {
    .priorityContent h1 {
        font-size: 2rem;
    }

    .priorityImages {
        display: none;
    }
}

/* Floating animation */
@keyframes float {
    0% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(-20px) translateX(10px);
    }
    100% {
        transform: translateY(0px) translateX(0px);
    }
}

.customPriorityMatrixCard {
    background-color: white;
}

.prioritythiscard {
    background-color: white;
}

/* Section card start */

.card-my {
    width: 100%;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.how-it-works {
    background: linear-gradient(to bottom right, #d1c3f0, #a8a4f2);
    color: white;
    padding: 2rem;
}

.card-title {
    font-size: 1.875rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
}

.steps {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.step-number {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    background-color: white;
    color: #4f46e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
}

.step-content {
    flex-grow: 1;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.icon {
    margin-right: 0.5rem;
}

.step p {
    color: #e0e7ff;
    margin: 0;
}

.privacy {
    background-color: white;
    padding: 2rem;
}

.privacy-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.privacy-text {
    color: #4b5563;
    margin-bottom: 1rem;
}

.secure-badge {
    display: flex;
    align-items: center;
    color: #4f46e5;
    font-weight: 600;
}

@media (max-width: 640px) {
    /* .card {
        max-width: 90%;
    } */

    .how-it-works,
    .privacy {
        padding: 1.5rem;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .step-title {
        font-size: 1.125rem;
    }

    .privacy-title {
        font-size: 1.25rem;
    }
}


.priority-wrapper-bg{
    background-image: radial-gradient( circle 763px at 18.3% 24.1%,  rgba(255,249,137,1) 7.4%, rgba(226, 183, 40, 0.597) 58.3% );
}



/* Input cards style start */

.input-cards{
    background-image: radial-gradient( circle 321px at 8.3% 75.7%,  rgba(209,247,241,1) 0%, rgba(249,213,213,1) 81% );
    padding: 20px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    border: 2px solid orange;
    position: relative;
    height: 100%;
}

.input-card-icon{
    font-size: 25px;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 166, 0, 0.455);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-card-name{
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
}

.input-cards::before{
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background-color: rgb(4, 48, 193);
    transition: all 0.5s ease;
}

.input-cards:hover::before{
    width: 100%;
    transition: all 0.5s ease;
}

.output-cards{
    background-image: radial-gradient( circle farthest-corner at 50.7% 54%,  rgba(204,254,152,1) 0%, rgba(229,253,190,1) 92.4% );
}

/* Home message start */

.output-section{
    background-color: #ffda61a5;
}

.input-section{
    background-color: #ce593ce1;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    position: relative;
    height: 100%;
}

.kysSwiperSlide{
    background-color: white;
    height: 150px;
    transition: all 0.5s ease;
}

.kysSwiperSlide a{
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.kysSwiperSlide:hover{
    transform: translateY(-10px);
    transition: all 0.5s ease;
}

.input-card-overlay{
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #c3593cee !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 0 20px;
    font-size: 14px;
    transition: all 0.4s ease;
    border: 2px solid #c3593cee;
}

.slider-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.slider-content::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    background-color: rgb(168, 186, 240);
    border-radius: 5px 0 100% 0;
}

.slider-content::after{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background-color: rgb(168, 186, 240);
    border-radius: 100% 0 5px 0;
}

.output-content::after, .output-content::before{
    background-color: rgba(118, 45, 5, 0.65);
}

.slider-content .input-card-name{
    font-size: 15px;
    color: #4d4d4d;
}

.kysSwiperSlide:hover .input-card-overlay{
    top: 0;
    transition: all 0.4s ease;
}

.why-this-matters-image{
    min-height: 250px;
    background-image: url("../../Frontend/images/home2.jpg");
}

.why-this-matters-image-text{
    width: 100%;
    height: 100%;
    background-color: rgba(173, 74, 21, 0.908);
}

.why-this-matter-left .imageIcon{
    width: 100px;
    height: 100px;
}

.why-this-matter-left .imageIcon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-this-matters-image img{
    height: 100%;
    object-fit: cover;
}

.why-this-matter-left h5{
    font-size: 30px;
    font-weight: 800;
}

.why-this-matters-image-text{
    color: white;
}

.why-this-matter-content h6{
    font-size: 19px;
    text-transform: uppercase;
    font-weight: 600;
}

.why-this-matter-content .tabs div{
    background-color: aliceblue;
    color: #4d4d4d;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
}

.why-this-matter-left p{
    color: rgb(246, 185, 2) !important;
}
