* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #ffffff;
    color: #000;
    line-height: 1.6;
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}

body.light-mode {
    background: linear-gradient(135deg, #0f2027, #203a43, #0f2027);
    color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Global */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 30px;
    background: linear-gradient(135deg, #0271e7 0%, #00b729 100%);
    color: #fff;
    font-weight: 600;
}

.section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 38px;
    margin-bottom: 12px;
}

.section-title p {
    color: #a1a1aa;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.light-mode .hero {
    background: radial-gradient(circle at top, #0f2027, #203a43, #0f2027);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-top: 50px;
}

.hero p {
    margin: 25px 0;
    max-width: 520px;
}

.light-mode .hero p {
    color: #e0e0ff;
}

.hero-img {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mockup {
    background: #111827;
    border-radius: 18px;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
}

.light-mode .mockup {
    background: #3a3a5d;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-card {
    background: #020617;
    border: 1px solid #1f2937;
    border-radius: 20px;
    padding: 30px;
}

.light-mode .about-card {
    background: #3a3a5d;
    border: 1px solid #4a4a6d;
}

.about-card h3 {
    margin-bottom: 12px;
}

.about-card p {
    color: #9ca3af;
}

.light-mode .about-card p {
    color: #c0c0e0;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature {
    background: linear-gradient(180deg, #020617, #020617);
    border: 1px solid #1f2937;
    border-radius: 22px;
    padding: 35px;
}

.light-mode .feature {
    background: linear-gradient(180deg, #3a3a5d, #3a3a5d);
    border: 1px solid #4a4a6d;
}

.feature h4 {
    margin-bottom: 10px;
}

.feature p {
    color: #9ca3af;
}

.light-mode .feature p {
    color: #c0c0e0;
}

/* Screenshots */
.screenshots {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.screen {
    background: #111827;
    border-radius: 20px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
}

.light-mode .screen {
    background: #3a3a5d;
}

/* Banner */
.banner {
    background: linear-gradient(135deg, #0271e7, #16a34a);
    border-radius: 40px;
    padding: 70px;
    text-align: center;
}

.banner h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.banner p {
    max-width: 700px;
    margin: auto;
    margin-bottom: 30px;
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    color: #9ca3af;
    border-top: 1px solid #1f2937;
}

.light-mode footer {
    color: #c0c0e0;
    border-top: 1px solid #4a4a6d;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .screenshots {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hero-logo {
    width: 90px;
    margin-bottom: 20px;
    animation: fadeDown 1s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero h1 {
    animation: fadeUp 1s ease forwards;
}

.hero p {
    animation: fadeUp 1.2s ease forwards;
}

.hero .btn {
    animation: fadeUp 1.4s ease forwards;
}

.mockup {
    overflow: hidden;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
    animation: fadeIn 1.5s ease forwards;
}

.mockup:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 5px 15px #00b729;
}

.about-card,
.feature {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border 0.35s ease;
}

.about-card:hover,
.feature:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border-color: #22c55e;
}

.screen {
    overflow: hidden;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.screen img {
    transition: transform 0.6s ease;
}

.screen:hover img {
    transform: scale(1.08);
}

.screen:hover {
    box-shadow: 0 10px 30px #00b729;
}

.btn {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px #00b729;
}

nav {
    background: transparent;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000000;
}

.light-mode nav {
    background: linear-gradient(135deg, #0f20276e, #203a4373, #0f202773);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 100000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    white-space: nowrap;
}

.language-selector {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.language-selector:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px #00b729;
}

/* Dark/Light Mode Toggle */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(2, 2, 2, 0.507);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.theme-toggle:hover {
    box-shadow: 0 5px 15px #00b729;
    transform: scale(1.1);
}

.theme-toggle i {
    font-size: 20px;
    color: #fff;
}

.light-mode .theme-toggle {
    background: rgba(2, 2, 2, 0.507);
}

.light-mode .theme-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
}

.theme-toggle .sun-icon {
    display: none;
}

.theme-toggle .moon-icon {
    display: block;
}

.light-mode .theme-toggle .sun-icon {
    display: block;
}

.light-mode .theme-toggle .moon-icon {
    display: none;
}

.login-bttn {
    width: 100%;
    padding: 15px 25px;
    border: none;
    border-radius: 20px;
    color: white;
    background: linear-gradient(135deg, #0271e7, #00b729);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-bttn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px #00b729;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    min-width: 120px;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown a {
    display: block;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s;
    border-bottom: 1px solid #f0f0f0;
}

.language-dropdown a:last-child {
    border-bottom: none;
}

.language-dropdown a:hover {
    background-color: #f8f9fa;
}

.language-dropdown a.active-lang {
    color: #007bff;
    font-weight: bold;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: radial-gradient(circle at top, #1f2933, #020617);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }

    .light-mode .nav-menu {
        background: radial-gradient(circle at top, #3a3a5d, #2d2d4a);
    }

    .nav-menu.active {
        max-height: 750px;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .language-selector {
        justify-content: center;
    }

    .theme-toggle {
        margin: 10px auto;
        width: 60px;
        height: 60px;
    }
}

/* Demo content */
.demo-content {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.demo-content h1 {
    color: #333;
    margin-bottom: 1rem;
}

.demo-content p {
    color: #666;
    line-height: 1.6;
}

.color-text {
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    background: linear-gradient(135deg, #01ff38, #027cff);
    -webkit-background-clip: text;
    background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* card css */

/* From Uiverse.io by Prince4fff */
.services-card p {
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;
    color: #000;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.services-card p.small {
    font-size: 16px;
    color: #666;
    text-align: justify;
}

.go-corner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 42px;
    height: 42px;
    overflow: hidden;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #0271e7, #00b729);
    border-radius: 0 4px 0 32px;
}

.go-arrow {
    margin-top: -4px;
    margin-right: -4px;
    color: white;
    font-family: courier, sans;
}

.services-card1 {
    display: block;
    position: relative;
    max-width: 540px;
    height: 220px;
    background-color: #f2f8f9;
    border-radius: 10px;
    padding: 32px 24px;
    margin: 12px;
    text-decoration: none;
    z-index: 0;
    overflow: hidden;
}

.services-card1:hover {
    display: block;
    position: relative;
    max-width: 500px;
    height: 220px;
    background-color: #f2f8f9;
    border-radius: 10px;
    padding: 32px 24px;
    margin: 12px;
    text-decoration: none;
    z-index: 0;
    overflow: hidden;
    box-shadow: 0px 10px 30px #00b729;
    scale: 1.1;
    transition-duration: 1s;
}

.services-card1:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -16px;
    right: -16px;
    background: linear-gradient(135deg, #0271e7, #00b729);
    height: 35px;
    width: 35px;
    border-radius: 32px;
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: transform 1.5s ease-out;
    scale: 1.5;
}

.services-card1:hover:before {
    transform: scale(21);
}

.services-card1:hover p {
    transition: all 0.6s ease-out;
    color: rgba(255, 255, 255, 0.8);
}

.services-card1:hover h3 {
    transition: all 0.3s ease-out;
    color: #fff;
}

/* end card css */

.move-card-container {
    padding: 40px 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.card-wrap {
    margin: 10px;
    transform: perspective(800px);
    transform-style: preserve-3d;
    cursor: pointer;
}

.card-wrap:hover .card-info {
    transform: translateY(0);
}

.card-wrap:hover .card-info p {
    opacity: 1;
}

.card-wrap:hover .card-info,
.card-wrap:hover .card-info p {
    transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-wrap:hover .card-info:after {
    transition: 5s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 1;
    transform: translateY(0);
}

.card-wrap:hover .card-bg {
    transition:
        0.6s cubic-bezier(0.23, 1, 0.32, 1),
        opacity 5s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0.8;
}

.card-wrap:hover .card {
    transition:
        0.6s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 2s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow:
        #00b729 0 0 40px 5px,
        white 0 0 0 1px,
        rgba(0, 0, 0, 0.66) 0 30px 60px 0,
        inset #333 0 0 0 5px,
        inset white 0 0 0 6px;
}

.card {
    position: relative;
    flex: 0 0 240px;
    width: 240px;
    height: 320px;
    background-color: #333;
    overflow: hidden;
    border-radius: 10px;
    box-shadow:
        rgba(0, 0, 0, 0.66) 0 30px 60px 0,
        inset #333 0 0 0 5px,
        inset #00b729 0 0 0 6px;
    transition: 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.light-mode .card {
    background-color: #3a3a5d;
}

.card-bg {
    opacity: 0.5;
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    padding: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition:
        1s cubic-bezier(0.445, 0.05, 0.55, 0.95),
        opacity 5s 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    pointer-events: none;
}

.card-info {
    padding: 20px;
    position: absolute;
    bottom: 0;
    color: #fff;
    transform: translateY(40%);
    transition: 0.6s 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.card-info p {
    opacity: 0;
    text-shadow: black 0 2px 3px;
    transition: 0.6s 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.card-info * {
    position: relative;
    z-index: 1;
}

.card-info:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
    background-blend-mode: overlay;
    opacity: 0;
    transform: translateY(100%);
    transition: 5s 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.card-info h1 {
    font-family: "Playfair Display";
    font-size: 36px;
    font-weight: 700;
    text-shadow: rgba(0, 0, 0, 0.5) 0 10px 10px;
}

.top-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
    gap: 100px;
    z-index: 10000;
}

.works-card {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    width: 30%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10000;
}

.works-card:hover {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    width: 30%;
    transition-duration: 200ms;
    box-shadow: 5px 10px 30px #00b729;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10000;
}

.works-card-icon {
    background-color: #81f85db4;
    border-radius: 8px;
    padding: 5px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.works-card-icon svg {
    width: 40px;
    height: 40px;
    fill: #007bff;
}

.works-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a2230;
    margin: 0 0 15px 0;
}

.works-card-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Connecting lines between top works-cards */
.connecting-line {
    position: absolute;
    top: 50%;
    height: 2px;
    background: linear-gradient(135deg, #15db5e, #0271e7);
    z-index: 0;
}

.line-left {
    left: 0;
    right: 35%;
}

.line-right {
    left: 65%;
    right: 0;
}

/* Central circle with "Your business" */
.central-circle {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.central-works-card {
    background-color: white;
    border-radius: 50%;
    padding: 10px;
    width: 220px;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    box-shadow: 0px 8px 10px #00b729;
}

.central-icon {
    background-color: #e6f0ff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.central-icon svg {
    width: 24px;
    height: 24px;
    fill: #1a73e8;
}

.central-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a2230;
    text-align: center;
    margin: 0;
}

/* Vertical connecting lines */
.vertical-line {
    position: absolute;
    width: 2px;
    background: linear-gradient(135deg, #0271e7, #15db5e);
    z-index: 0;
}

.line-top {
    top: -80px;
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%);
}

.line-bottom {
    top: 50%;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
}

/* Bottom works-card */
/* Bottom works-card */
.bottom-works-card {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    width: 30%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    z-index: 10000;
}

/* Bottom works-card */
.bottom-works-card:hover {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    width: 30%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 5px 10px 30px #00b729;
}

.bottom-icon {
    background-color: #00ff37a2;
    border-radius: 8px;
    padding: 5px;
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bottom-icon svg {
    width: 40px;
    height: 40px;
    fill: #1a73e8;
}

.bottom-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a2230;
    margin: 0;
}

@media (max-width: 768px) {
    .top-row {
        flex-direction: column;
        gap: 30px;
    }

    .works-card {
        width: 100%;
        margin-bottom: 20px;
    }

    .connecting-line {
        display: none;
    }

    .central-circle {
        width: 200px;
        height: 200px;
    }

    .central-works-card {
        width: 150px;
        height: 150px;
        padding: 20px;
    }

    .bottom-works-card {
        width: 100%;
    }
}

/* faq */

.faq-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding-left: 150px;
    padding-right: 150px;
    flex-wrap: wrap;
}

.faq-content {
    flex: 1;
    min-width: 200px;
}

.faq-header {
    text-align: center;
    margin-bottom: 30px;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.category-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.category-btn {
    background: linear-gradient(135deg, #0271e7a4, #15db5e98);
    border: 2px solid white;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.category-btn:hover,
.category-btn.active {
    background: linear-gradient(135deg, #0271e7, #15db5e);
    color: white;
    transform: translateY(-2px);
}

.current-category {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 10px 0;
    position: relative;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height 0.4s ease,
        opacity 0.4s ease;
    padding: 0 0 15px 0;
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
}

.faq-toggle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-image {
    align-items: center;
    justify-content: center;
    display: flex;
    margin-top: 100px;
}

/* Responsive Design */
@media (max-width: 900px) {
    .faq-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .faq-content {
        width: 100%;
    }

    .faq-title {
        font-size: 2rem;
    }

    .category-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 600px) {
    .faq-title {
        font-size: 1.6rem;
    }

    .current-category {
        font-size: 1.2rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }
}

/* faq end */

/* contact form css */
.form-main-class {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.form-title {
    font-size: 1.8rem;
    color: #4a4aeb;
    margin-bottom: 20px;
    font-weight: 600;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 200px;
}

.form-control {
    width: 100%;
    padding: 16px 16px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #0271e791, #15db5e96);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-control:focus {
    background: linear-gradient(135deg, #0271e791, #15db5e96);
    box-shadow: 5px 10px 25px rgba(18, 238, 110, 0.2);
}

.form-control::placeholder {
    color: #fff;
}

.full-width {
    flex: 1 1 100%;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #0271e7, #15db5e);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #0271e7, #15db5e);
    transform: translateY(-2px);
    box-shadow: 5px 10px 25px rgba(18, 238, 110, 0.2);
}

/* Responsive Design */
@media (max-width: 600px) {
    .contact-form {
        padding: 20px;
        margin: 10px;
    }

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

    .form-control {
        padding: 10px 14px;
        font-size: 0.95rem;
        border-radius: 12px;
    }

    .submit-btn {
        padding: 12px;
        font-size: 0.95rem;
    }
}

@media (max-width: 400px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .form-group {
        min-width: 100%;
    }
}

/* contact form css end */

/* SPLASH SCREEN */
#splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999999;
    transition:
        opacity 1s ease,
        transform 1s ease;
}

.brand-container {
    text-align: center;
}

.logo-box {
    animation: float 4s ease-in-out infinite;
}

.logo {
    width: 170px;
    filter: drop-shadow(0 20px 30px rgba(0, 180, 120, 0.35));
}

.brand-name {
    margin-top: 18px;
    font-size: 58px;
    font-weight: 700;
    letter-spacing: 3px;
}

.brand-name span {
    display: inline-block;
    background: linear-gradient(135deg, #00c853, #1e88e5);
    background: linear-gradient(135deg, #01ff38, #027cff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(20px);
    animation: textReveal 0.6s ease forwards;
}

.brand-name span:nth-child(1) {
    animation-delay: 0.2s;
}

.brand-name span:nth-child(2) {
    animation-delay: 0.3s;
}

.brand-name span:nth-child(3) {
    animation-delay: 0.4s;
}

.brand-name span:nth-child(4) {
    animation-delay: 0.5s;
}

.brand-name span:nth-child(5) {
    animation-delay: 0.6s;
}

.brand-name span:nth-child(6) {
    animation-delay: 0.7s;
}

.brand-name span:nth-child(7) {
    animation-delay: 0.8s;
}

.brand-name span:nth-child(8) {
    animation-delay: 0.9s;
}

.brand-name span:nth-child(9) {
    animation-delay: 1s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes textReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#login-animation svg * {
    fill: white !important;
    stroke: white !important;
}

body {
    --sb-track-color: #ffffff;
    --sb-thumb-color: #102128;
    --sb-size: 10px;
}

body::-webkit-scrollbar {
    width: var(--sb-size);
}

body::-webkit-scrollbar-track {
    background: var(--sb-track-color);
    border-radius: 1px;
}

body::-webkit-scrollbar-thumb {
    background: var(--sb-thumb-color);
    border-radius: 1px;
}

@supports not selector(::-webkit-scrollbar) {
    body {
        scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
    }
}

/* Light Mode (default) */

.privacy-section li {
    color: #000000;
}

/* Dark Mode */
body.dark-mode .privacy-section {
    background: linear-gradient(180deg, #062f1f, #02140c);
    color: #e6f4ea;
}

body.dark-mode .privacy-section li {
    color: #b6e4c9;
}

body.dark-mode .privacy-section h1,
body.dark-mode .privacy-section h3,
body.dark-mode .privacy-section h4,
body.dark-mode .privacy-section p {
    color: #ffffff;
}

/* flip card css start  */
.flip-card-container {
    --hue: 150;
    --primary: hsl(var(--hue), 50%, 50%);
    --white-1: hsl(0, 0%, 90%);
    --white-2: hsl(0, 0%, 80%);
    --dark: hsl(var(--hue), 25%, 10%);
    --grey: hsl(0, 0%, 50%);

    width: 310px;
    height: 500px;
    margin: 40px;

    perspective: 1000px;
}

/* .flip-card */
.flip-card {
    width: inherit;
    height: inherit;

    position: relative;
    transform-style: preserve-3d;
    transition: 0.6s 0.1s;
}

/* hover and focus-within states */
.flip-card-container:hover .flip-card,
.flip-card-container:focus-within .flip-card {
    transform: rotateY(180deg);
}

/* .card-... */
.card-front,
.card-back {
    width: 100%;
    height: 100%;
    border-radius: 24px;

    background: var(--dark);
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;

    backface-visibility: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* .card-front */
.card-front {
    transform: rotateY(0deg);
    z-index: 2;
}

/* .card-back */
.card-back {
    transform: rotateY(180deg);
    z-index: 1;
}

/* figure */
figure {
    z-index: -1;
}

/* figure, .img-bg */
figure,
.img-bg {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
}

/* img */
img {
    height: 100%;
    border-radius: 24px;
}

/* figcaption */
figcaption {
    display: block;

    width: auto;
    margin-top: 12%;
    padding: 8px 22px;

    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 2px;
    word-spacing: 6px;
    text-align: right;

    position: absolute;
    top: 0;
    right: 12px;

    color: var(--white-1);
    background: hsla(var(--hue), 25%, 10%, 0.5);
}

/* .img-bg */
.img-bg {
    background: hsla(var(--hue), 25%, 10%, 0.5);
}

.card-front .img-bg {
    clip-path: polygon(0 20%, 100% 40%, 100% 100%, 0 100%);
}

.card-front .img-bg::before {
    content: "";

    position: absolute;
    top: 34%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(18deg);

    width: 100%;
    height: 6px;
    border: 1px solid var(--primary);
    border-left-color: transparent;
    border-right-color: transparent;

    transition: 0.1s;
}

.card-back .img-bg {
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 60%);
}

/* hover state */
.flip-card-container:hover .card-front .img-bg::before {
    width: 6px;
    border-left-color: var(--primary);
    border-right-color: var(--primary);
}

/* ul */
.lines {
    padding-top: 50%;
    margin: 0 auto;
    width: 70%;
    height: 100%;

    list-style: none;
    color: var(--white-1);

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* li */
.line{
    width: 100%;
    margin-top: 12px;
    padding-bottom: 12px;

    font-size: 14px;
    text-align: center;

    position: relative;
}

.line:nth-child(2n) {
    color: var(--white-2);
}

.line:not(:last-child)::after {
    content: "";

    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 1px;

    background: currentColor;
    opacity: 0.2;
}

/* button */
button {
    font-family: inherit;
    font-weight: bold;
    color: var(--white-1);

    letter-spacing: 2px;

    padding: 9px 20px;
    border: 1px solid var(--grey);
    border-radius: 1000px;
    background: transparent;
    transition: 0.3s;

    cursor: pointer;
}

button:hover,
button:focus {
    color: var(--primary);
    background: hsla(var(--hue), 25%, 10%, 0.2);
    border-color: currentColor;
}

button:active {
    transform: translate(2px);
}

/* .design-container */
.design-container {
    --tr: 90;
    --op: 0.5;

    width: 100%;
    height: 100%;

    background: transparent;
    position: absolute;
    top: 0;
    left: 0;

    pointer-events: none;
}

/* .design */
.design {
    display: block;

    background: var(--grey);
    position: absolute;

    opacity: var(--op);
    transition: 0.3s;
}

.design--1,
.design--2,
.design--3,
.design--4 {
    width: 1px;
    height: 100%;
}

.design--1,
.design--2 {
    top: 0;
    transform: translateY(calc((var(--tr) - (var(--tr) * 2)) * 1%));
}

.design--1 {
    left: 20%;
}

.design--2 {
    left: 80%;
}

.design--3,
.design--4 {
    bottom: 0;
    transform: translateY(calc((var(--tr) + (var(--tr) - var(--tr))) * 1%));
}

.design--3 {
    left: 24%;
}

.design--4 {
    left: 76%;
}

.design--5,
.design--6,
.design--7,
.design--8 {
    width: 100%;
    height: 1px;
}

.design--5,
.design--6 {
    left: 0;
    transform: translateX(calc((var(--tr) - (var(--tr) * 2)) * 1%));
}

.design--5 {
    top: 41%;
}

.design--6 {
    top: 59%;
}

.design--7,
.design--8 {
    right: 0;
    transform: translateX(calc((var(--tr) + (var(--tr) - var(--tr))) * 1%));
}

.design--7 {
    top: 44%;
}

.design--8 {
    top: 56%;
}

/* states */
button:hover + .design-container,
button:active + .design-container,
button:focus + .design-container {
    --tr: 20;
    --op: 0.7;
}

.abs-site-link {
    position: fixed;
    bottom: 20px;
    left: 20px;
    color: hsla(0, 0%, 100%, 0.6);
    font-size: 16px;
    font-family:
        "Segoe UI",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
}
/* flip card css end  */
