@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;400;500;600;700&display=swap');

:root {
    /* Theme Colors - Light */
    --primary-color: #6366F1;
    --accent-color: #3f83f8;
    --link-color: #2563eb;
    --text-color: #333333;
    --background-color: #ffffff;
    --nav-gradient: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
    --table-header-bg: #f2f2f2;
    --button-bg: var(--accent-color);
    --button-text: #ffffff;
    --process-bg: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
    --border: black;
}

body.dark-mode {
    /* Theme Colors - Dark */
    --primary-color: #90caf9;
    --accent-color: #42a5f5;
    --link-color: #90caf9;
    --text-color: #f0f0f0;
    --background-color: #121212;
    --section-bg: #1e1e1e;
    --nav-gradient: linear-gradient(120deg, #2c3e50 0%, #4b79a1 100%);
    --table-header-bg: #333333;
    --button-bg: #3a3a3a;
    --button-text: #ffffff;
    --process-bg: linear-gradient(120deg, #2c3e50 0%, #4b79a1 100%);
    --border: white;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.mainContainer {
    margin-top: 6rem;
    margin-bottom: 6rem;
    display: flex;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    gap: 4rem;
    animation: slideFromLeft 1s ease forwards;
    opacity: 0;
    width: 100vw;
}
@keyframes slideFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}
.leftSide {
    max-width: 50%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.leftHeading {
    font-size: 2.2rem;
}
.rightSide {
    width: 750px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.list {
    padding-left: 20px;
}
.imgRight {
    height: 100%;
    width: 100%;
    border-radius: 1.5rem;
}
.leftPara {
    font-size: 1.1rem;
    font-weight: 500;
}
.button {
    background-color: var(--accent-color);
    color: white;
    width: 110px;
    padding: 0.6rem 0.6rem;
    border-radius: 0.4rem;
}
.button:hover {
    background-color: var(--link-color);
}

@media screen and (max-width: 1250px) {
    .mainContainer {
        flex-direction: column;
        max-width: 800px;
    }
    .list {
        list-style-type: none;
        padding: 0;
    }
    .leftSide {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }

    .rightSide {
        width: 100%;
        height: auto;
    }
}

@media screen and (max-width: 503px) {
    .mainContainer {
        max-width: 400px;
        padding: 0 1rem;
    }
    .list {
        list-style-type: none;
        padding: 0;
    }
    .leftHeading {
        font-size: 2rem;
    }
    .leftSide {
        text-align: center;
    }
}

.featureCard {
    background-image: var(--process-bg);
    width: 100vw;
    padding: 4rem;
}

.gridCard {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 2px solid black;
    padding: 1.2rem;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}
.cards:hover {
    transform: scale(1.04);
    background-color: var(--background-color);
}
.cardImg {
    border: 1px solid black;
    background-color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cardImage {
    width: 100%;
    height: 100%;
    padding: 6px;
}

@media screen and (max-width: 1110px) {
    .gridCard {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 840px) {
    .gridCard {
        grid-template-columns: repeat(1, 1fr);
    }
}