/* =========================================================
   QUICKASK COMMON CSS FILE
   File Name : newStyle.css
========================================================= */

/* ================= COMMON CSS ================= */

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

body {
    background: #f8fafc;
    overflow-x: hidden;
    color: #0f172a;
    font-family: 'Poppins', sans-serif;
}

/* ================= NAVBAR ================= */

.main-navbar {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    padding: 15px 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

/* ================= LOGO CSS ================= */

.navbar-brand{
    display:flex;
    align-items:center;
    text-decoration:none;
    padding:0;
    margin:0;
}

.brand-logo{
    width:auto;
    height:80px;
    max-width:260px;
    object-fit:contain;
    background:transparent;
    padding:0;
    border-radius:0;
    box-shadow:none;
    display:block;
    transition:0.3s ease;

}

.brand-logo:hover{
    transform:scale(1.03);
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .brand-logo{
        max-width:170px;
        height:55px;
    }

}

.brand-text h2 {
    font-size: 30px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.brand-text h2 span {
    color: #2563eb;
}

.brand-text p {
    margin: 0;
    font-size: 12px;
    letter-spacing: 1px;
    color: #64748b;
}

.nav-link {
    color: #1e293b !important;
    font-weight: 500;
    margin: 0 10px;
    transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb !important;
}

.login-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border: none;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}

/* =========================================================
   FEATURES PAGE CSS
========================================================= */

.features-section {
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 280px;
    height: 280px;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 50%;
}

.feature-badge {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.feature-main-title {
    font-size: 30px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
}

.feature-main-title span {
    color: #2563eb;
}

.feature-main-desc {
    max-width: 720px;
    margin: auto;
    margin-top: 20px;
    color: #64748b;
    font-size: 17px;
    line-height: 1.9;
}

.feature-card {
    background: #fff;
    border-radius: 28px;
    padding: 40px 30px;
    height: 100%;
    transition: 0.35s;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.feature-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 140px;
    height: 140px;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 50%;
    transition: 0.4s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.12);
}

.feature-card:hover::before {
    transform: scale(1.4);
}

.feature-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 28px;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}

.feature-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 18px;
}

.feature-card p {
    color: #64748b;
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 0;
}

/* =========================================================
   ANALYTICS PAGE CSS
========================================================= */

.analytics-hero {
    padding: 20px 0 40px;
    position: relative;
    overflow: hidden;
}

.analytics-hero::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: rgba(37, 99, 235, 0.06);
    border-radius: 50%;
}

.analytics-title {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #0f172a;
}

.analytics-title span {
    color: #2563eb;
}

.analytics-desc {
    color: #64748b;
    line-height: 2;
    font-size: 17px;
    margin-bottom: 35px;
}

.analytics-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    padding: 15px 35px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

.analytics-btn:hover {
    color: #fff;
    transform: translateY(-3px);
}

.dashboard-card {
    background: #ffffff;
    border-radius: 35px;
    padding: 35px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.dashboard-top {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 35px;
}

.mini-card {
    background: #f8fafc;
    padding: 22px;
    border-radius: 24px;
    width: 100%;
    border: 1px solid rgba(226, 232, 240, 0.8);
    text-align: center;
}

.mini-card h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #0f172a;
}

.mini-card p {
    color: #64748b;
    margin: 0;
    font-size: 14px;
}

.graph-area {
    height: 280px;
    border-radius: 24px;
    background: linear-gradient(
        180deg,
        rgba(37, 99, 235, 0.08),
        rgba(37, 99, 235, 0.02)
    );
    position: relative;
    overflow: hidden;
}

.graph-line {
    width: 100%;
    height: 100%;
}

.graph-line svg {
    width: 100%;
    height: 100%;
}

.analytics-section {
    padding: 80px 0;
}

.analytics-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 35px;
    height: 100%;
    transition: 0.35s;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.analytics-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.12);
}

.analytics-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    color: #fff;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}

.analytics-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #0f172a;
}

.analytics-card p {
    color: #64748b;
    line-height: 1.9;
    margin-bottom: 0;
}

/* =========================================================
   CONTACT PAGE CSS
========================================================= */

.contact-section {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 320px;
    height: 320px;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 50%;
}

.contact-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #0f172a;
}

.contact-title span {
    color: #2563eb;
}

.contact-desc {
    color: #64748b;
    font-size: 17px;
    line-height: 2;
    margin-bottom: 35px;
}

.contact-info-box {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-icon {
    min-width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

.contact-info-text h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-info-text p {
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.8;
}

.contact-card {
    background: #ffffff;
    border-radius: 35px;
    padding: 45px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
}

.contact-card h3 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #0f172a;
}

.form-control {
    height: 58px;
    border-radius: 16px;
    border: 1px solid #dbe4f0;
    padding-left: 18px;
    font-size: 15px;
    box-shadow: none !important;
}

textarea.form-control {
    height: 140px;
    padding-top: 16px;
    resize: none;
}

.form-control:focus {
    border-color: #2563eb;
}

.contact-btn {
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 18px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #0f172a;
    padding: 30px 0;
    margin-top: 50px;
}

.footer p {
    margin: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* =========================================================
   RESPONSIVE CSS
========================================================= */

@media(max-width:991px) {

    .feature-main-title,
    .analytics-title,
    .contact-title {
        font-size: 42px;
    }

    .feature-main-desc,
    .analytics-desc,
    .contact-desc {
        font-size: 15px;
    }

    .feature-card,
    .analytics-card,
    .contact-card,
    .dashboard-card {
        padding: 30px;
    }

    .dashboard-top {
        flex-direction: column;
    }

    .contact-card {
        margin-top: 40px;
    }

    .brand-text h2 {
        font-size: 24px;
    }
}

@media(max-width:576px) {

    .feature-main-title,
    .analytics-title,
    .contact-title {
        font-size: 30px;
    }

    .feature-card h4,
    .analytics-card h4,
    .contact-info-text h4 {
        font-size: 22px;
    }

    .feature-card,
    .analytics-card,
    .contact-card,
    .dashboard-card {
        padding: 25px;
    }
}


/* landing page css start */
/* ================= HERO SECTION ================= */

.hero-section {
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 50%;
}

.hero-title {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 25px;
}

.hero-title span {
    color: #2563eb;
}

.hero-desc {
    font-size: 18px;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 35px;
}

.hero-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

.hero-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.3);
}

.hero-image {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
/* ================= FEATURE SECTION ================= */

.feature-section {
    background: linear-gradient(135deg, #0f172a, #1e3a8a, #2563eb);
    padding: 90px 30px;
    border-radius: 35px;
    margin: 60px auto;
    position: relative;
    overflow: hidden;
}

.feature-section::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.feature-image {
    width: 100%;
    max-width: 260px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.feature-title {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
}

.feature-title span {
    color: #93c5fd;
}

.feature-desc {
    color: rgba(255, 255, 255, 0.88);
    line-height: 2;
    font-size: 17px;
}
/* ================= STATS ================= */

.stats-section {
    padding: 80px 0;
}

.stat-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-icon {
    width: 75px;
    height: 75px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    font-size: 30px;
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.stat-card h3 {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
}

.stat-card p {
    color: #64748b;
    margin-top: 10px;
}
/* ================= RESPONSIVE ================= */

@media(max-width:991px) {

    .hero-title {
        font-size: 40px;
        text-align: center;
    }

    .hero-desc {
        text-align: center;
    }

    .hero-btn {
        display: table;
        margin: auto;
    }

    .feature-title {
        font-size: 32px;
        text-align: center;
        margin-top: 30px;
    }

    .feature-desc {
        text-align: center;
    }

    .brand-text h2 {
        font-size: 24px;
    }
}
/* landing page css end */

/* =========================
        MODERN FOOTER
========================= */

.ultra-modern-footer{
    position: relative;
    background: #0b1120;
    overflow: hidden;
    padding-top: 70px;
    margin-top: 100px;
}

/* Gradient Glow */
.ultra-modern-footer::before{
    content:'';
    position:absolute;
    top:-120px;
    left:50%;
    transform:translateX(-50%);
    width:500px;
    height:500px;
    background: radial-gradient(circle,
        rgba(99,102,241,0.25),
        transparent 70%);
    z-index:0;
}

/* Wrapper */
.footer-wrapper{
    position: relative;
    z-index:2;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    padding:35px 40px;

    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(18px);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:28px;

    box-shadow:
        0 10px 40px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

/* =========================
        BRAND
========================= */

.footer-brand{
    max-width:320px;
}

.footer-brand img{
    height:52px;
    width:auto;

    background: rgba(255,255,255,0.95);

    padding:12px 18px;

    border-radius:16px;

    border:1px solid rgba(255,255,255,0.25);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.25);

    object-fit:contain;
}

.footer-brand p{
    margin:0;
    color:#94a3b8;
    font-size:14px;
    line-height:1.7;
}

/* =========================
        LINKS
========================= */

.footer-links{
    display:flex;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
}

.footer-links a{
    color:#e2e8f0;
    text-decoration:none;
    font-size:15px;
    font-weight:500;
    position:relative;
    transition:0.3s ease;
}

.footer-links a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:#6366f1;
    transition:0.3s ease;
}

.footer-links a:hover{
    color:#818cf8;
}

.footer-links a:hover::after{
    width:100%;
}

/* =========================
        SOCIAL ICONS
========================= */

.footer-socials{
    display:flex;
    align-items:center;
    gap:14px;
}

.footer-socials a{
    width:46px;
    height:46px;

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

    border-radius:16px;

    background: rgba(255,255,255,0.06);

    color:#fff;
    font-size:18px;

    transition:0.35s ease;

    text-decoration:none;
}

.footer-socials a:hover{
    transform:translateY(-6px) scale(1.08);

    background: linear-gradient(135deg,#6366f1,#8b5cf6);

    box-shadow:
        0 15px 30px rgba(99,102,241,0.35);
}

/* =========================
        BOTTOM
========================= */

.footer-bottom{
    text-align:center;
    padding:28px 0 24px;

    color:#64748b;
    font-size:14px;
    letter-spacing:0.5px;
}

/* =========================
        MOBILE
========================= */

@media(max-width:991px){

    .footer-wrapper{
        flex-direction:column;
        text-align:center;
        padding:35px 25px;
    }

    .footer-links{
        justify-content:center;
        gap:18px;
    }

}

@media(max-width:576px){

    .ultra-modern-footer{
        padding-top:50px;
    }

    .footer-wrapper{
        border-radius:22px;
    }

    .footer-socials a{
        width:42px;
        height:42px;
        border-radius:14px;
    }

}
