/* -------------------- COLORS -------------------- */
/* ================= START COLORS ================= */
:root {
    --primary: #0230ff;
    --secondary: #2e7d32;
    --dark: #1f2937;
    --light: #f9fafb;
    --gray: #6b7280;
}
/* ================= END COLORS ================= */


/* -------------------- GLOBAL STYLES -------------------- */
/* ================= START GLOBAL ================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
}

body {
    background: linear-gradient(180deg, #f4f6f8, #ffffff);
    color: #111827;
    line-height: 1.6;
}
/* ================= END GLOBAL ================= */


/* -------------------- NAVBAR -------------------- */
/* ================= START NAVBAR ================= */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, var(--primary), #0230ff);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px 30px;
}

nav h1 {
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 0;
}

nav p {
    font-size: 20px;
    color: #e0e0e0;
    margin: 0;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
    align-items: center;
    margin: 0;
    padding: 0;
}

/* General nav links */
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
    padding: 5px 10px;
    border-radius: 4px;
}

/* Login / Register buttons */
/* ================= START LOGIN/REGISTER BUTTON ================= */
nav ul li a.btn-nav {
    background: #00bd09; /* green color */
    color: #ffffff;               /* text white */
    font-weight: bold;
    padding: 12px 25px;           /* height & width badhane ke liye */
    font-size: 16px;              /* text thoda bada */
    border-radius: 6px;           /* smooth corners */
    transition: all 0.3s ease;    /* smooth hover effect */
    display: inline-block;
}

nav ul li a.btn-nav:hover {
    transform: translateY(-3px);  /* button utha jaaye hover me */
    opacity: 0.9;
}
/* ================= END LOGIN/REGISTER BUTTON ================= */

/* Hover underline for non-button links */
nav ul li a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: #fff;
    left: 0;
    bottom: -4px;
    transition: 0.3s;
}

nav ul li a:not(.btn-nav):hover::after {
    width: 100%;
}

nav ul li a:not(.btn-nav):hover {
    opacity: 0.9;
}
/* ================= END NAVBAR ================= */


/* -------------------- CONTAINER -------------------- */
/* ================= START CONTAINER ================= */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 30px;
}
/* ================= END CONTAINER ================= */


/* -------------------- WELCOME SECTION -------------------- */
/* ================= START WELCOME ================= */
#welcome {
    background: linear-gradient(135deg, #0230ff, #2e7d32);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    border-radius: 25px;
}

#welcome h2 {
    font-size: 40px;
    font-weight: bold;
}

#welcome p {
    font-size: 18px;
    margin-top: 15px;
    line-height: 1.8;
}
/* ================= END WELCOME ================= */


/* -------------------- ABOUT US -------------------- */
/* ================= START ABOUT ================= */
#about {
    background: linear-gradient(135deg, #f0f4ff, #ffffff);
    border-radius: 25px;
    padding: 20px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-top: 25px;
}

#about:hover {
    transform: translateY(-3px);
}

#about h2 {
    font-size: 34px;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#about p {
    color: #374151;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
}
/* ================= END ABOUT ================= */


/* -------------------- SERVICES -------------------- */
/* ================= START SERVICES ================= */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.service-box {
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-box.active {
    border-top: 6px solid var(--secondary);
}

.service-box.inactive {
    border-top: 6px solid #f59e0b;
    opacity: 0.85;
}

.service-box h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 20px;
}

.service-box p {
    font-size: 15px;
    color: #4b5563;
}

.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    text-decoration: none;
}

.btn-active {
    background: var(--secondary);
    color: #fff;
}

.btn-inactive {
    background: #9ca3af;
    color: #fff;
}
/* ================= END SERVICES ================= */


/* -------------------- WHY CHOOSE / TRUST -------------------- */
/* ================= START WHY TRUST ================= */
#why-trust {
    margin-top: 60px;
    background: linear-gradient(135deg, #f0f4ff, #ffffff);
    border-radius: 25px;
    padding: 50px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

#why-trust h2 {
    text-align: center;
    font-size: 34px;
    color: var(--primary);
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#why-trust ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

#why-trust li {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    font-size: 15px;
    color: #374151;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#why-trust li:hover {
    transform: translateY(-2px);
    background: #1e88e5;
    color: #ffffff;
}
/* ================= END WHY TRUST ================= */


/* -------------------- BUSINESS STEPS -------------------- */
/* ================= START BUSINESS STEPS ================= */
#business-steps ol li {
    background: #eef2ff;
    margin: 12px 0;
    padding: 15px 18px;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#business-steps ol li:hover {
    background: #1e88e5;
    color: #ffffff;
    transform: translateY(-2px);
}
/* ================= END BUSINESS STEPS ================= */


/* -------------------- PLATFORM AVAILABILITY -------------------- */
/* ================= START AVAILABILITY ================= */
#availability {
    background: linear-gradient(135deg, #f9fafb, #e0f2f1);
    padding: 50px 30px;
    border-radius: 25px;
    text-align: center;
}

#availability ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
}

#availability li {
    background: #fff;
    padding: 18px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    transition: all 0.3s ease;
}

#availability li:hover {
    background: #1e88e5;
    color: #ffffff;
    transform: translateY(-2px);
}
/* ================= END AVAILABILITY ================= */


/* -------------------- CONTACT FORM -------------------- */
/* ================= START CONTACT FORM ================= */
form input,
form textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 12px;
    font-size: 16px;
}

form button {
    background: linear-gradient(90deg, var(--primary), #0230ff);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

form button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}
/* ================= END CONTACT FORM ================= */


/* -------------------- FOOTER -------------------- */
/* ================= START FOOTER ================= */
footer {
    background: var(--dark);
    color: #e5e7eb;
    padding: 50px 30px;
    font-size: 15px;
    border-top: 5px solid var(--primary);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

footer .footer-left,
footer .footer-center,
footer .footer-right {
    flex: 1;
    min-width: 220px;
}

footer .footer-left h4,
footer .footer-center h4,
footer .footer-right h4 {
    margin-top: 0;
    color: #fff;
}

footer .footer-left p,
footer .footer-center p,
footer .footer-right p {
    margin: 6px 0;
}

footer .footer-left a,
footer .footer-center a,
footer .footer-right a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

footer .footer-left a:hover,
footer .footer-center a:hover,
footer .footer-right a:hover {
    color: #fff;
}

/* Footer bottom text */
/* ================= START FOOTER BOTTOM ================= */
footer .footer-bottom {
    width: 100%;
    text-align: center;
    font-size: 25px;
    margin-top: 15px;
}
/* ================= END FOOTER BOTTOM ================= */
/* ================= END FOOTER ================= */


/* -------------------- MEDIA QUERIES -------------------- */
/* ================= START MEDIA ================= */
@media(max-width: 768px) {
    section {
        padding: 25px;
    }

    section h2 {
        font-size: 26px;
    }

    #welcome h2 {
        font-size: 32px;
    }

    #welcome p {
        font-size: 16px;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    footer .footer-left,
    footer .footer-center,
    footer .footer-right {
        min-width: 100%;
    }
}
/* ================= END MEDIA ================= */