/* =================================================
   ACCURA DIGITAL CA MARKETPLACE
   PREMIUM FINTECH DESIGN CSS
================================================= */


/* ===== GOOGLE FONT RESET ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ===== ROOT COLORS ===== */

:root {

    --primary: #07162f;
    --secondary: #0f2557;
    --gold: #d4af37;
    --gold-light: #f8e29a;

    --white: #ffffff;
    --text: #d5dcf5;
    --border: rgba(255,255,255,0.15);

    --glass:
        rgba(255,255,255,0.08);

    --shadow:
        0 20px 45px rgba(0,0,0,0.35);

}


/* ===== BODY ===== */

html {
    scroll-behavior: smooth;
}


body {

    font-family: 'Poppins', sans-serif;

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color: var(--white);

    overflow-x: hidden;

}


/* ===== COMMON ===== */

section {

    padding: 90px 8%;

}


.section-header {

    text-align: center;

    margin-bottom: 60px;

}


.section-header h2 {

    font-size: 2.7rem;

    margin-top: 15px;

}


.section-header p {

    max-width: 700px;

    margin: 15px auto;

    color: var(--text);

    line-height: 1.7;

}


.tag {

    display: inline-block;

    background: rgba(212,175,55,0.15);

    color: var(--gold);

    padding: 10px 22px;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 600;

    border: 1px solid var(--gold);

}


/* ===== HEADER ===== */

.header {

    position: fixed;

    width: 100%;

    top: 0;

    z-index: 1000;

    background: rgba(7,22,47,0.65);

    backdrop-filter: blur(15px);

    border-bottom:
    1px solid var(--border);

}


.navbar {

    max-width: 1400px;

    margin: auto;

    height: 80px;

    padding: 0 6%;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* Logo */

.logo {

    font-size: 1.6rem;

    font-weight: 700;

    color: var(--gold);

}


.logo i {

    margin-right: 8px;

}


/* Navigation */

.nav-links {

    display: flex;

    list-style: none;

    gap: 35px;

}


.nav-links a {

    color: var(--white);

    text-decoration: none;

    font-weight: 500;

    transition: 0.3s;

}


.nav-links a:hover {

    color: var(--gold);

}


/* Right Buttons */

.nav-buttons {

    display: flex;

    gap: 15px;

}


.login-btn,
.register-btn {

    text-decoration: none;

    padding: 12px 24px;

    border-radius: 30px;

    font-weight: 600;

    transition: 0.3s;

}


.login-btn {

    color: var(--white);

    border: 1px solid var(--border);

}


.register-btn {

    background:
    linear-gradient(
        45deg,
        var(--gold),
        var(--gold-light)
    );

    color: var(--primary);

}


.login-btn:hover,
.register-btn:hover {

    transform: translateY(-5px);

    box-shadow: var(--shadow);

}


/* Mobile Icon */

.menu-btn {

    display: none;

    font-size: 26px;

    cursor: pointer;

}


/* ===== HERO SECTION ===== */


.hero {

    min-height: 100vh;

    display: grid;

    grid-template-columns:
    1.2fr 1fr;

    align-items: center;

    gap: 50px;

    padding-top: 130px;

    position: relative;

}


/* Background Glow */

.hero::before {

    content: "";

    position: absolute;

    width: 400px;

    height: 400px;

    background: var(--gold);

    filter: blur(180px);

    opacity: 0.18;

    top: 50px;

    left: -100px;

}


.hero-content {

    z-index: 2;

}


.hero-content h1 {

    font-size: 4rem;

    line-height: 1.2;

}


.hero-content p {

    margin: 25px 0;

    font-size: 1.1rem;

    color: var(--text);

    line-height: 1.8;

}


/* Hero Buttons */

.hero-buttons {

    display: flex;

    gap: 20px;

}


.primary-btn,
.secondary-btn {

    text-decoration: none;

    padding: 15px 28px;

    border-radius: 40px;

    font-weight: 600;

    transition: .3s;

}


.primary-btn {

    background:
    linear-gradient(
        45deg,
        var(--gold),
        var(--gold-light)
    );

    color: var(--primary);

}


.secondary-btn {

    border: 1px solid var(--gold);

    color: var(--gold);

}


.primary-btn:hover,
.secondary-btn:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow);

}


/* Hero Card */

.hero-card {

    background: var(--glass);

    border: 1px solid var(--border);

    backdrop-filter: blur(15px);

    padding: 50px;

    border-radius: 25px;

    text-align: center;

    box-shadow: var(--shadow);

    animation: float 4s ease-in-out infinite;

}


.hero-card i {

    font-size: 60px;

    color: var(--gold);

    margin-bottom: 20px;

}


.hero-card h3 {

    font-size: 1.8rem;

}


.hero-card p {

    color: var(--text);

    margin-top: 15px;

}


/* Floating Animation */

@keyframes float {

    50% {

        transform: translateY(-15px);

    }

}

/* =================================================
   TRUST / STATISTICS SECTION
================================================= */

.trust {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;

}


.trust-card {

    background: var(--glass);
    border: 1px solid var(--border);
    backdrop-filter: blur(15px);

    padding: 35px 25px;

    border-radius: 22px;

    text-align: center;

    box-shadow: var(--shadow);

    transition: .4s;

}


.trust-card:hover {

    transform: translateY(-10px);
    border-color: var(--gold);

}


.trust-card h2 {

    color: var(--gold);
    font-size: 2.2rem;

}


.trust-card p {

    margin-top: 10px;
    color: var(--text);

}


/* =================================================
   SERVICES SECTION
================================================= */

.services {

    position: relative;

}


.service-grid {

    display: grid;

    grid-template-columns:
    repeat(auto-fit, minmax(280px,1fr));

    gap: 30px;

}


.service-card {

    background: var(--glass);

    border: 1px solid var(--border);

    backdrop-filter: blur(16px);

    border-radius: 25px;

    padding: 35px 30px;

    text-align: center;

    transition: .4s;

    box-shadow: var(--shadow);

    position: relative;

    overflow: hidden;

}


/* Gold top line animation */

.service-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 4px;

    background: linear-gradient(
        90deg,
        var(--gold),
        var(--gold-light)
    );

    transition: .5s;

}


.service-card:hover::before {

    left: 0;

}


.service-card:hover {

    transform:
    translateY(-12px);

    border-color: var(--gold);

}


.service-card i {

    font-size: 55px;

    color: var(--gold);

    margin-bottom: 22px;

}


.service-card h3 {

    font-size: 1.4rem;

    margin-bottom: 15px;

}


.service-card p {

    color: var(--text);

    line-height: 1.7;

    min-height: 75px;

}


.price {

    margin: 25px 0;

    color: var(--gold);

    font-size: 1.3rem;

    font-weight: 700;

}


/* Buy Button */

.buy-btn {

    display: inline-block;

    text-decoration: none;

    padding: 13px 28px;

    border-radius: 40px;

    background: linear-gradient(
        45deg,
        var(--gold),
        var(--gold-light)
    );

    color: var(--primary);

    font-weight: 700;

    transition: .3s;

}


.buy-btn:hover {

    transform: scale(1.06);

    box-shadow: var(--shadow);

}


/* =================================================
   HOW IT WORKS
================================================= */


.how-work {


    background:
    rgba(255,255,255,0.03);

}


.process-grid {

    display: grid;

    grid-template-columns:
    repeat(4, 1fr);

    gap: 25px;

}


.process-card {

    background: var(--glass);

    border: 1px solid var(--border);

    border-radius: 25px;

    padding: 35px 25px;

    text-align: center;

    backdrop-filter: blur(15px);

    transition: .4s;

}


.process-card:hover {

    transform:
    translateY(-10px);

    border-color: var(--gold);

}


.process-card i {

    font-size: 50px;

    color: var(--gold);

    margin-bottom: 20px;

}


.process-card h3 {

    margin-bottom: 15px;

    font-size: 1.3rem;

}


.process-card p {

    color: var(--text);

    line-height: 1.6;

}


/* =================================================
   SMALL PREMIUM EFFECTS
================================================= */

.service-card,
.process-card,
.trust-card {

    cursor: pointer;

}


.service-card:hover i,
.process-card:hover i {

    transform: scale(1.15);

    transition: .3s;

}

/* =================================================
   FOR CA FIRMS SECTION
================================================= */

.firm-grid {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;

}


.firm-card {

    background: var(--glass);
    border: 1px solid var(--border);
    backdrop-filter: blur(15px);

    border-radius: 25px;
    padding: 35px 25px;

    text-align: center;

    box-shadow: var(--shadow);

    transition: .4s;

}


.firm-card:hover {

    transform: translateY(-10px);
    border-color: var(--gold);

}


.firm-card i {

    font-size: 50px;
    color: var(--gold);

    margin-bottom: 20px;

}


.firm-card h3 {

    margin-bottom: 15px;

}


.firm-card p {

    color: var(--text);
    line-height: 1.7;

}


.firm-action {

    text-align: center;
    margin-top: 40px;

}


/* =================================================
   DASHBOARD PREVIEW
================================================= */

.dashboard-box {

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

}


.dashboard-item {

    background: var(--glass);

    border: 1px solid var(--border);

    backdrop-filter: blur(15px);

    padding: 30px;

    border-radius: 20px;

    text-align: center;

    font-weight: 600;

    transition: .3s;

}


.dashboard-item:hover {

    transform: translateY(-8px);

    border-color: var(--gold);

}


/* =================================================
   TESTIMONIALS
================================================= */


.testimonial-slider {

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 25px;

}


.testimonial-card {

    background: var(--glass);

    border-radius: 25px;

    padding: 35px;

    border: 1px solid var(--border);

    box-shadow: var(--shadow);

}


.testimonial-card p {

    margin: 20px 0;

    line-height: 1.7;

    color: var(--text);

}


.testimonial-card h4 {

    color: var(--gold);

}


/* =================================================
   FAQ
================================================= */


.faq-item {

    max-width: 900px;

    margin: 20px auto;

    background: var(--glass);

    border-radius: 20px;

    padding: 25px 30px;

    border: 1px solid var(--border);

    transition: .3s;

    cursor: pointer;

}


.faq-item:hover {

    border-color: var(--gold);

}


.faq-item h3 {

    color: var(--gold);

    margin-bottom: 10px;

}


.faq-item p {

    color: var(--text);

    line-height: 1.7;

}


/* =================================================
   CONTACT SECTION
================================================= */


.contact-container {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 40px;

}


.contact-info {

    background: var(--glass);

    border: 1px solid var(--border);

    padding: 40px;

    border-radius: 25px;

    box-shadow: var(--shadow);

}


.contact-info h3 {

    color: var(--gold);

    margin-bottom: 25px;

}


.contact-info p {

    margin-bottom: 15px;

    color: var(--text);

}


.contact-form {

    display: flex;

    flex-direction: column;

    gap: 20px;

}


.contact-form input,
.contact-form textarea {

    background: rgba(255,255,255,0.08);

    border: 1px solid var(--border);

    color: white;

    padding: 15px 20px;

    border-radius: 15px;

    outline: none;

    font-family: inherit;

}


.contact-form textarea {

    height: 140px;

    resize: none;

}


.contact-form button {

    background: linear-gradient(
        45deg,
        var(--gold),
        var(--gold-light)
    );

    color: var(--primary);

    border: none;

    padding: 15px;

    border-radius: 30px;

    font-weight: 700;

    cursor: pointer;

    transition: .3s;

}


.contact-form button:hover {

    transform: translateY(-5px);

}


/* =================================================
   FOOTER
================================================= */


.footer {

    padding: 40px 8%;

    text-align: center;

    border-top: 1px solid var(--border);

    background: rgba(0,0,0,0.25);

}


.footer-logo {

    color: var(--gold);

    font-size: 1.5rem;

    font-weight: 700;

}


.footer-logo i {

    margin-right: 8px;

}


.footer p {

    margin: 15px 0;

    color: var(--text);

}


.footer-links {

    display: flex;

    justify-content: center;

    gap: 25px;

}


.footer-links a {

    color: white;

    text-decoration: none;

    transition: .3s;

}


.footer-links a:hover {

    color: var(--gold);

}


/* =================================================
   RESPONSIVE DESIGN
================================================= */


@media(max-width: 992px) {


    .hero {

        grid-template-columns: 1fr;

        text-align: center;

    }


    .hero-buttons {

        justify-content: center;

    }


    .dashboard-box,
    .process-grid {

        grid-template-columns: repeat(2,1fr);

    }


    .contact-container,
    .testimonial-slider {

        grid-template-columns: 1fr;

    }


    .nav-links,
    .nav-buttons {

        display: none;

    }


    .menu-btn {

        display: block;

    }

}


@media(max-width: 768px) {


    .section-header h2 {

        font-size: 2rem;

    }


    .hero-content h1 {

        font-size: 2.5rem;

    }


    .trust,
    .dashboard-box,
    .process-grid {

        grid-template-columns: 1fr;

    }


    .footer-links {

        flex-direction: column;

        gap: 15px;

    }

}

/* ==========================================
   REGISTER PAGE DESIGN
========================================== */

.register-section {

    min-height: 100vh;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 120px 20px 50px;

}


.register-box {

    width: 100%;

    max-width: 550px;

    background: rgba(255,255,255,0.08);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,0.15);

    border-radius: 25px;

    padding: 40px;

    box-shadow: 0 20px 50px rgba(0,0,0,0.45);

}


.register-box h1 {

    text-align: center;

    font-size: 2rem;

    color: var(--gold);

}


.register-box p {

    text-align: center;

    color: var(--text);

    margin: 12px 0 35px;

}


/* Form */

.input-group {

    margin-bottom: 20px;

}


.input-group label {

    display: block;

    margin-bottom: 8px;

    font-weight: 500;

}


.input-group input {

    width: 100%;

    padding: 14px 16px;

    border-radius: 12px;

    border: 1px solid rgba(255,255,255,0.2);

    background: rgba(255,255,255,0.08);

    color: #ffffff;

    outline: none;

    transition: .3s;

}


.input-group input:focus {

    border-color: var(--gold);

    box-shadow: 0 0 12px rgba(212,175,55,0.4);

}


/* Button */

.register-box button {

    width: 100%;

    margin-top: 10px;

    padding: 15px;

    border: none;

    border-radius: 35px;

    background: linear-gradient(
        45deg,
        var(--gold),
        var(--gold-light)
    );

    color: var(--primary);

    font-size: 1rem;

    font-weight: 700;

    cursor: pointer;

    transition: .3s;

}


.register-box button:hover {

    transform: translateY(-4px);

    box-shadow: 0 15px 30px rgba(0,0,0,0.4);

}


/* Login Link */

.login-link {

    margin-top: 25px;

    text-align: center;

    color: var(--text);

}


.login-link a {

    color: var(--gold);

    text-decoration: none;

    font-weight: 600;

}


.login-link a:hover {

    text-decoration: underline;

}


/* Success Message */

.success {

    background: rgba(0,255,100,0.15);

    border: 1px solid #00ff66;

    color: #aaffc5;

    padding: 14px;

    border-radius: 12px;

    margin-bottom: 20px;

    text-align: center;

}


/* Error Message */

.error {

    background: rgba(255,0,0,0.15);

    border: 1px solid #ff4d4d;

    color: #ffb3b3;

    padding: 14px;

    border-radius: 12px;

    margin-bottom: 20px;

    text-align: center;

}


/* Mobile Responsive */

@media(max-width: 600px) {

    .register-box {

        padding: 30px 20px;

    }


    .register-box h1 {

        font-size: 1.6rem;

    }

}

/* ==========================================
   ACCURA SAAS DASHBOARD DESIGN
========================================== */

/* Dashboard Layout */

.dashboard-container {

    display: flex;

    min-height: 100vh;

    background: #061224;

}


/* ==========================
   SIDEBAR
========================== */

.sidebar {

    width: 280px;

    background: #081830;

    padding: 30px 20px;

    border-right: 1px solid rgba(255,255,255,0.1);

    position: fixed;

    height: 100vh;

    overflow-y: auto;

}


.sidebar h2 {

    color: var(--gold);

    font-size: 1.7rem;

    margin-bottom: 35px;

    text-align: center;

}


.sidebar ul {

    list-style: none;

}


.sidebar ul li {

    margin-bottom: 12px;

}


.sidebar ul li a {

    display: block;

    padding: 15px 18px;

    color: #ffffff;

    text-decoration: none;

    border-radius: 12px;

    transition: 0.3s;

    font-weight: 500;

}


.sidebar ul li a:hover {

    background: linear-gradient(
        45deg,
        var(--gold),
        var(--gold-light)
    );

    color: #07162f;

    transform: translateX(5px);

}


/* ==========================
   MAIN CONTENT
========================== */

.dashboard-main {

    margin-left: 280px;

    width: calc(100% - 280px);

    padding: 35px;

}


.top-bar {

    margin-bottom: 35px;

}


.top-bar h1 {

    font-size: 2rem;

    color: #ffffff;

}


.top-bar p {

    color: var(--text);

    margin-top: 8px;

}


/* ==========================
   STATISTICS CARDS
========================== */

.dashboard-cards {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

    margin-bottom: 35px;

}


.card {

    background: rgba(255,255,255,0.08);

    backdrop-filter: blur(15px);

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 20px;

    padding: 25px;

    text-align: center;

    box-shadow: 0 15px 35px rgba(0,0,0,0.3);

    transition: 0.3s;

}


.card:hover {

    transform: translateY(-10px);

    border-color: var(--gold);

}


.card h3 {

    font-size: 2rem;

    color: var(--gold);

}


.card p {

    margin-top: 10px;

    color: var(--text);

}


/* ==========================
   ACTIVITY BOX
========================== */

.activity-box {

    background: rgba(255,255,255,0.08);

    border-radius: 25px;

    padding: 30px;

    border: 1px solid rgba(255,255,255,0.12);

}


.activity-box h2 {

    margin-bottom: 20px;

    color: var(--gold);

}


.activity-box ul {

    list-style: none;

}


.activity-box ul li {

    padding: 15px;

    margin-bottom: 12px;

    background: rgba(255,255,255,0.05);

    border-radius: 12px;

    color: #fff;

    transition: 0.3s;

}


.activity-box ul li:hover {

    transform: translateX(5px);

    background: rgba(212,175,55,0.15);

}


/* ==========================
   RESPONSIVE DESIGN
========================== */

@media(max-width: 1200px) {

    .dashboard-cards {

        grid-template-columns: repeat(2, 1fr);

    }

}


@media(max-width: 768px) {


    .dashboard-container {

        flex-direction: column;

    }


    .sidebar {

        position: relative;

        width: 100%;

        height: auto;

    }


    .dashboard-main {

        margin-left: 0;

        width: 100%;

        padding: 25px;

    }


    .dashboard-cards {

        grid-template-columns: 1fr;

    }


    .top-bar h1 {

        font-size: 1.5rem;

    }

}
.required {
    color: #ff0000 !important;
    font-size: 18px;
    font-weight: 700;
}