/* ========================================
   Proactive Solutions School ERP
   style.css - Part 1
======================================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#f8fafc;
    color:#1e293b;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

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

/*==============================
HEADER
==============================*/

.menu-toggle{
    display:none;
}

@media (max-width:768px){

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.menu-toggle{
    display:block;
    font-size:30px;
    cursor:pointer;
    z-index:1001;
}

.nav-menu{
    position:fixed;
    top:75px;
    left:-100%;
    width:100%;
    background:#fff;
    transition:left .3s ease;
    box-shadow:0 15px 35px rgba(0,0,0,.1);
    z-index:1000;
}

.nav-menu.active{
    left:0;
}

.nav-menu ul{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:20px;
    padding:30px 0;
}

}

.header{

    position:sticky;
    top:0;
    z-index:999;

    background:#ffffff;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

}

.header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

}

.logo h2{

    font-size:30px;

    font-weight:800;

    color:#5B5CEB;

}

.logo span{

    color:#111827;

}

nav ul{

    display:flex;

    align-items:center;

    gap:30px;

}

nav a{

    color:#334155;

    font-weight:600;

    transition:.3s;

}

nav a:hover{

    color:#5B5CEB;

}

.demo-btn{

    background:#5B5CEB;

    color:#fff;

    padding:12px 22px;

    border-radius:8px;

    transition:.3s;

}

.demo-btn:hover{

    background:#4338CA;

}

/*==============================
HERO
==============================*/

.hero{

    padding:90px 0;

    background:linear-gradient(135deg,#eef2ff,#ffffff);

}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.tag{

    display:inline-block;

    background:#ede9fe;

    color:#5B21B6;

    padding:10px 18px;

    border-radius:30px;

    font-size:14px;

    margin-bottom:20px;

    font-weight:700;

}

.hero h1{

    font-size:54px;

    line-height:1.15;

    margin-bottom:25px;

    color:#0f172a;

}

.hero p{

    font-size:19px;

    color:#64748b;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:50px;

}

.primary-btn{

    background:#5B5CEB;

    color:white;

    padding:16px 30px;

    border-radius:10px;

    font-weight:700;

    transition:.3s;

}

.primary-btn:hover{

    background:#4338CA;

}

.secondary-btn{

    border:2px solid #5B5CEB;

    color:#5B5CEB;

    padding:16px 30px;

    border-radius:10px;

    font-weight:700;

    transition:.3s;

}

.secondary-btn:hover{

    background:#5B5CEB;

    color:white;

}

.hero-stats{

    display:flex;

    gap:40px;

}

.hero-stats h2{

    color:#5B5CEB;

    font-size:36px;

}

.hero-stats p{

    margin-top:5px;

    font-size:15px;

    margin-bottom:0;

}

.hero-right img{

    border-radius:20px;

    box-shadow:0 20px 60px rgba(0,0,0,.15);

}

/*==============================
COMMON SECTIONS
==============================*/

section{

    padding:80px 0;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title span{

    color:#5B5CEB;

    font-weight:700;

    display:block;

    margin-bottom:10px;

}

.section-title h2{

    font-size:42px;

    margin-bottom:20px;

}

.section-title p{

    max-width:700px;

    margin:auto;

    color:#64748b;

}

/*==============================
TRUSTED
==============================*/

.trusted{

    text-align:center;

    background:white;

}

.trusted h2{

    font-size:38px;

    margin-bottom:20px;

}

.trusted p{

    max-width:850px;

    margin:auto;

    color:#64748b;

}

/*==============================
FEATURES
==============================*/

.features-home{

    background:#f1f5f9;

}

.feature-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:50px;

}

.feature-card{

    background:white;

    padding:35px;

    border-radius:16px;

    transition:.35s;

    box-shadow:0 5px 25px rgba(0,0,0,.06);

}

.feature-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.feature-card i{

    width:70px;

    height:70px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#eef2ff;

    color:#5B5CEB;

    font-size:30px;

    margin-bottom:25px;

}

.feature-card h3{

    margin-bottom:15px;

    font-size:24px;

}

.feature-card p{

    color:#64748b;

}

/*==============================
UTILITY
==============================*/

.text-center{

    text-align:center;

}

.mt-40{

    margin-top:40px;

}

.mb-40{

    margin-bottom:40px;

}

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

@media(max-width:991px){

.hero-grid{

grid-template-columns:1fr;

}

.feature-grid{

grid-template-columns:1fr 1fr;

}

.hero{

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.hero-stats{

justify-content:center;

}

nav ul{

gap:18px;

}

.hero h1{

font-size:42px;

}

}


@media(max-width:576px){

.feature-grid{

grid-template-columns:1fr;

}

.hero h1{

font-size:34px;

}

.hero-buttons{

flex-direction:column;

}

.hero-stats{

flex-direction:column;

gap:20px;

text-align:center;

}

.section-title h2{

font-size:30px;

}

}
/*=========================================
 DASHBOARD SHOWCASE
=========================================*/

.dashboard-showcase{
    background:#ffffff;
}

.dashboard-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
    margin-top:60px;
}

.dashboard-content{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.dashboard-item{
    display:flex;
    gap:20px;
    align-items:flex-start;
    padding:25px;
    background:#fff;
    border-radius:15px;
    transition:.35s;
    box-shadow:0 8px 30px rgba(0,0,0,.06);
}

.dashboard-item:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(91,92,235,.15);
}

.dashboard-item i{
    width:65px;
    height:65px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#eef2ff;
    color:#5B5CEB;
    font-size:28px;
    flex-shrink:0;
}

.dashboard-item h3{
    margin-bottom:10px;
    font-size:22px;
}

.dashboard-item p{
    color:#64748b;
}

.dashboard-image img{
    border-radius:18px;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

/*=========================================
 WHY US
=========================================*/

.why-us{
    background:#f8fafc;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.why-card{
    background:#fff;
    padding:35px;
    border-radius:16px;
    text-align:center;
    transition:.35s;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(91,92,235,.18);
}

.why-card i{
    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    background:#5B5CEB;
    color:#fff;
}

.why-card h3{
    margin-bottom:15px;
    font-size:24px;
}

.why-card p{
    color:#64748b;
}

/*=========================================
 STATISTICS
=========================================*/

.statistics{
    background:linear-gradient(135deg,#5B5CEB,#6D28D9);
    color:#fff;
}

.statistics .container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stat-box{
    text-align:center;
}

.stat-box h2{
    font-size:56px;
    margin-bottom:10px;
    font-weight:800;
}

.stat-box p{
    font-size:18px;
    opacity:.9;
}

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

.mobile-app{
    background:#ffffff;
}

.mobile-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.mobile-app img{
    max-width:420px;
    margin:auto;
}

.mobile-app span{
    display:inline-block;
    color:#5B5CEB;
    font-weight:700;
    margin-bottom:15px;
}

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

.mobile-app p{
    color:#64748b;
    margin-bottom:30px;
}

.mobile-app ul{
    margin-bottom:35px;
}

.mobile-app li{
    margin-bottom:12px;
    color:#334155;
    font-weight:500;
}

/*=========================================
 CTA
=========================================*/

.cta{
    background:linear-gradient(135deg,#4338CA,#5B5CEB);
    text-align:center;
    color:#fff;
}

.cta h2{
    font-size:46px;
    margin-bottom:20px;
}

.cta p{
    max-width:700px;
    margin:auto;
    margin-bottom:35px;
    font-size:18px;
}

.cta .primary-btn{
    background:#fff;
    color:#5B5CEB;
}

.cta .primary-btn:hover{
    background:#eef2ff;
}

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

footer{
    background:#0f172a;
    color:#cbd5e1;
    padding:70px 0 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
}

.footer-grid h3{
    color:#fff;
    margin-bottom:20px;
}

.footer-grid p{
    color:#94a3b8;
    line-height:1.8;
}

.footer-grid ul li{
    margin-bottom:12px;
}

.footer-grid a{
    color:#cbd5e1;
    transition:.3s;
}

.footer-grid a:hover{
    color:#fff;
}

.copyright{
    text-align:center;
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:50px;
    padding-top:25px;
    color:#94a3b8;
}

/*=========================================
 ANIMATIONS
=========================================*/

.feature-card,
.why-card,
.dashboard-item{
    transition:all .35s ease;
}

.primary-btn,
.secondary-btn,
.demo-btn{
    transition:all .3s ease;
}

.primary-btn:hover,
.demo-btn:hover{
    transform:translateY(-3px);
}

img{
    transition:.4s;
}

img:hover{
    transform:scale(1.02);
}

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

@media(max-width:991px){

.dashboard-grid,
.mobile-grid{
    grid-template-columns:1fr;
}

.why-grid{
    grid-template-columns:1fr 1fr;
}

.statistics .container{
    grid-template-columns:1fr 1fr;
}

.footer-grid{
    grid-template-columns:1fr 1fr;
}

.cta h2{
    font-size:36px;
}

.mobile-app{
    text-align:center;
}

}

@media(max-width:768px){

.why-grid,
.statistics .container,
.footer-grid{
    grid-template-columns:1fr;
}

.dashboard-item{
    flex-direction:column;
    text-align:center;
}

.dashboard-item i{
    margin:auto;
}

.dashboard-showcase,
.mobile-app,
.statistics,
.cta{
    text-align:center;
}

.mobile-app img{
    max-width:280px;
}

.stat-box h2{
    font-size:42px;
}

.cta h2{
    font-size:30px;
}

.footer-grid{
    gap:35px;
}

}
/* ======================================================
   PART 3 - PREMIUM EFFECTS & FINAL POLISH
====================================================== */

/***************
COLORS
****************/

:root{

--primary:#5B5CEB;
--secondary:#7C3AED;
--dark:#0F172A;
--text:#334155;
--light:#F8FAFC;
--border:#E2E8F0;
--shadow:0 20px 60px rgba(15,23,42,.08);

}

/**********************
CUSTOM SCROLLBAR
**********************/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#edf2f7;

}

::-webkit-scrollbar-thumb{

background:linear-gradient(var(--primary),var(--secondary));

border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

background:#4338ca;

}

/**********************
SMOOTH HOVER
**********************/

a,
button,
.card,
.feature-card,
.why-card,
.dashboard-item{

transition:.35s ease;

}

/**********************
SECTION HEADINGS
**********************/

section h2{

font-size:40px;

font-weight:800;

margin-bottom:20px;

color:var(--dark);

}

section p{

font-size:17px;

color:#64748b;

}

/**********************
CARDS
**********************/

.feature-card,
.why-card,
.dashboard-item{

border:1px solid #edf2f7;

}

.feature-card:hover,
.why-card:hover,
.dashboard-item:hover{

border-color:#c7d2fe;

}

/**********************
IMAGES
**********************/

.hero-right img,
.dashboard-image img,
.mobile-app img{

animation:floatImage 5s ease-in-out infinite;

}

@keyframes floatImage{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-10px);

}

100%{

transform:translateY(0px);

}

}

/**********************
BUTTONS
**********************/

.primary-btn{

box-shadow:0 15px 35px rgba(91,92,235,.35);

}

.primary-btn:hover{

box-shadow:0 25px 45px rgba(91,92,235,.45);

}

.secondary-btn:hover{

box-shadow:0 20px 40px rgba(91,92,235,.20);

}

/**********************
HEADER
**********************/

.header{

backdrop-filter:blur(14px);

background:rgba(255,255,255,.92);

}

.header.scrolled{

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

/**********************
HERO BACKGROUND
**********************/

.hero{

overflow:hidden;

position:relative;

}

.hero::before{

content:"";

position:absolute;

width:650px;

height:650px;

background:#c7d2fe;

border-radius:50%;

right:-250px;

top:-200px;

opacity:.30;

filter:blur(80px);

}

.hero::after{

content:"";

position:absolute;

width:450px;

height:450px;

background:#ddd6fe;

left:-150px;

bottom:-180px;

border-radius:50%;

opacity:.45;

filter:blur(90px);

}

/**********************
STATISTICS
**********************/

.stat-box{

padding:25px;

border-radius:16px;

background:rgba(255,255,255,.08);

backdrop-filter:blur(6px);

}

/**********************
FOOTER
**********************/

footer ul{

padding-left:0;

}

footer li{

margin-bottom:12px;

}

/**********************
ANIMATIONS
**********************/

.fade-up{

animation:fadeUp .8s ease both;

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(30px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/**********************
RESPONSIVE
**********************/

@media(max-width:1200px){

.container{

width:92%;

}

.hero h1{

font-size:48px;

}

}

@media(max-width:992px){

.hero-grid,
.dashboard-grid,
.mobile-grid{

grid-template-columns:1fr;

text-align:center;

}

.hero-buttons,
.hero-stats{

justify-content:center;

}

.hero-right{

margin-top:40px;

}

}


.hero{

padding:70px 0;

}

.hero h1{

font-size:34px;

}

section{

padding:60px 0;

}

section h2{

font-size:30px;

}

.primary-btn,
.secondary-btn{

display:block;

text-align:center;

margin-bottom:15px;

}

.hero-buttons{

flex-direction:column;

}

}

@media(max-width:480px){

.hero h1{

font-size:28px;

}

.hero p{

font-size:16px;

}

.logo h2{

font-size:24px;

}

}
/*=========================================
ERP MODULES
=========================================*/

.modules{

background:#ffffff;

}

.modules-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

margin-top:60px;

}

.module-box{

background:#fff;

padding:35px;

border-radius:18px;

text-align:center;

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

transition:.35s;

border:1px solid #eef2f7;

}

.module-box:hover{

transform:translateY(-10px);

box-shadow:0 20px 50px rgba(91,92,235,.15);

border-color:#5B5CEB;

}

.module-box i{

font-size:42px;

margin-bottom:20px;

color:#5B5CEB;

}

.module-box h3{

font-size:20px;

font-weight:700;

color:#0F172A;

}

@media(max-width:992px){

.modules-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.modules-grid{

grid-template-columns:1fr;

}

}
/*=========================================
PRICING
=========================================*/

.pricing-home{

background:#f8fafc;

}

.pricing-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

margin-top:60px;

}

.price-card{

background:#fff;

padding:45px;

border-radius:20px;

text-align:center;

box-shadow:0 15px 40px rgba(0,0,0,.08);

position:relative;

transition:.35s;

}

.price-card:hover{

transform:translateY(-10px);

}

.price-card h3{

font-size:30px;

margin-bottom:20px;

}

.price{

font-size:48px;

font-weight:800;

color:#5B5CEB;

margin-bottom:30px;

}

.price span{

font-size:18px;

color:#64748b;

}

.price-card ul{

margin-bottom:35px;

}

.price-card li{

margin-bottom:15px;

color:#334155;

}

.featured{

border:3px solid #5B5CEB;

transform:scale(1.04);

}

.badge{

position:absolute;

top:-15px;

left:50%;

transform:translateX(-50%);

background:#5B5CEB;

color:#fff;

padding:8px 18px;

border-radius:30px;

font-size:14px;

font-weight:700;

}

@media(max-width:992px){

.pricing-grid{

grid-template-columns:1fr;

}

.featured{

transform:none;

}

}

/* Advantages */

.advantages{

background:#f8fafc;

}

.advantages-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:60px;

}

.advantage-card{

background:#fff;

padding:35px;

border-radius:18px;

text-align:center;

box-shadow:0 10px 25px rgba(0,0,0,.06);

transition:.35s;

}

.advantage-card:hover{

transform:translateY(-10px);

}

.advantage-card i{

font-size:42px;

color:#5B5CEB;

margin-bottom:20px;

}

.advantage-card h3{

margin-bottom:15px;

}

@media(max-width:992px){

.advantages-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.advantages-grid{

grid-template-columns:1fr;

}

}
/*==============================
WORKFLOW
==============================*/

.workflow{

background:#fff;

}

.workflow-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:60px;

}

.step{

background:#fff;

padding:35px;

text-align:center;

border-radius:20px;

position:relative;

box-shadow:0 15px 35px rgba(0,0,0,.07);

transition:.35s;

}

.step:hover{

transform:translateY(-12px);

}

.step-number{

position:absolute;

top:-18px;

left:50%;

transform:translateX(-50%);

width:42px;

height:42px;

border-radius:50%;

background:#5B5CEB;

color:#fff;

display:flex;

align-items:center;

justify-content:center;

font-weight:bold;

}

.step i{

font-size:48px;

color:#5B5CEB;

margin:20px 0;

}

.step h3{

margin-bottom:15px;

}

@media(max-width:992px){

.workflow-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.workflow-grid{

grid-template-columns:1fr;

}

}
/*=========================================
MOBILE APPS SHOWCASE
=========================================*/

.apps-showcase{

background:#f8fafc;

}

.app-row{

display:grid;

grid-template-columns:1fr 1fr;

gap:80px;

align-items:center;

margin:90px 0;

}

.reverse{

direction:rtl;

}

.reverse .app-content{

direction:ltr;

}

.app-image{

text-align:center;

}

.app-image img{

max-width:300px;

margin:auto;

filter:drop-shadow(0 30px 40px rgba(0,0,0,.18));

}

.app-tag{

display:inline-block;

background:#EEF2FF;

color:#5B5CEB;

padding:8px 18px;

border-radius:30px;

font-weight:700;

margin-bottom:18px;

}

.app-content h2{

font-size:42px;

margin-bottom:20px;

}

.app-content p{

margin-bottom:25px;

color:#64748b;

}

.app-content ul{

margin-bottom:30px;

}

.app-content li{

margin-bottom:14px;

font-size:17px;

color:#334155;

}

@media(max-width:992px){

.app-row{

grid-template-columns:1fr;

text-align:center;

gap:40px;

}

.reverse{

direction:ltr;

}

.app-content ul{

text-align:left;

display:inline-block;

}

}
/*=========================================
ERP ECOSYSTEM
=========================================*/

.ecosystem{

background:#ffffff;

}

.eco-center{

display:flex;

justify-content:center;

margin:60px 0;

}

.erp-core{

width:250px;

height:250px;

border-radius:50%;

background:linear-gradient(135deg,#5B5CEB,#7C3AED);

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

color:#fff;

box-shadow:0 30px 60px rgba(91,92,235,.35);

}

.erp-core i{

font-size:60px;

margin-bottom:20px;

}

.erp-core h2{

color:white;

margin-bottom:10px;

}

.eco-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:50px;

}

.eco-card{

background:#fff;

padding:30px;

text-align:center;

border-radius:18px;

box-shadow:0 10px 25px rgba(0,0,0,.06);

transition:.35s;

border:1px solid #edf2f7;

}

.eco-card:hover{

transform:translateY(-10px);

border-color:#5B5CEB;

}

.eco-card i{

font-size:42px;

color:#5B5CEB;

margin-bottom:20px;

}

.eco-card h3{

margin-bottom:15px;

}

.eco-card p{

color:#64748b;

}

@media(max-width:992px){

.eco-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.eco-grid{

grid-template-columns:1fr;

}

.erp-core{

width:200px;

height:200px;

}

}

/*=========================================
WHY SCHOOL ERP
=========================================*/

.benefits{

background:#f8fafc;

}

.benefits-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:60px;

}

.benefit-card{

background:#fff;

padding:35px;

border-radius:18px;

box-shadow:0 12px 30px rgba(0,0,0,.06);

transition:.35s;

border:1px solid #edf2f7;

}

.benefit-card:hover{

transform:translateY(-8px);

border-color:#5B5CEB;

}

.benefit-card i{

font-size:42px;

color:#5B5CEB;

margin-bottom:20px;

}

.benefit-card h3{

margin-bottom:15px;

font-size:22px;

}

.benefit-card p{

color:#64748b;

}

@media(max-width:992px){

.benefits-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.benefits-grid{

grid-template-columns:1fr;

}

}

/* ========================================
   Inner Page Header (About / Modules / FAQ etc.)
======================================== */

.page-header{
    padding:70px 0;
    text-align:center;
    background:linear-gradient(135deg,#4338CA,#5B5CEB);
    color:#fff;
}

.page-header h1{
    font-size:42px;
    margin-bottom:15px;
}

.page-header p{
    max-width:650px;
    margin:auto;
    font-size:18px;
    color:#fff;
    opacity:.92;
}

section{
    padding:80px 0;
}

section .container,
section > h1,
section > h2,
section > h3,
section > p,
section > ul,
section > div{
    width:90%;
    max-width:1200px;
    margin-left:auto;
    margin-right:auto;
}

section h2{
    font-size:34px;
    margin-bottom:20px;
    text-align:center;
}

section > p{
    text-align:center;
    color:#475569;
    margin-bottom:20px;
}

/* ========================================
   FAQ Accordion
======================================== */

.faq-list{
    width:90%;
    max-width:900px;
    margin:0 auto;
}

.faq-item{
    background:#fff;
    border:1px solid #edf2f7;
    border-radius:14px;
    margin-bottom:18px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
    overflow:hidden;
}

.faq-question{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 28px;
    cursor:pointer;
    font-weight:600;
    font-size:17px;
    color:#1e293b;
}

.faq-question .faq-icon{
    color:#5B5CEB;
    font-size:20px;
    transition:.3s;
    flex-shrink:0;
    margin-left:15px;
}

.faq-item.active .faq-icon{
    transform:rotate(45deg);
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
    padding:0 28px;
}

.faq-item.active .faq-answer{
    max-height:300px;
    padding:0 28px 22px;
}

.faq-answer p{
    color:#475569;
    text-align:left;
    margin:0;
}

/* ========================================
   Contact Page
======================================== */

.contact-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-bottom:60px;
}

.contact-card{
    background:#fff;
    padding:40px 30px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    border:1px solid #eef2f7;
    transition:.35s;
}

.contact-card:hover{
    transform:translateY(-8px);
    border-color:#5B5CEB;
}

.contact-card i{
    width:65px;
    height:65px;
    margin:0 auto 20px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eef2ff;
    color:#5B5CEB;
    font-size:24px;
}

.contact-card h3{
    margin-bottom:10px;
}

.contact-card p{
    color:#475569;
}

.contact-form-wrap{
    background:#fff;
    max-width:750px;
    margin:0 auto;
    padding:45px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.07);
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.form-group{
    margin-bottom:22px;
}

.form-group label{
    display:block;
    font-weight:600;
    margin-bottom:8px;
    font-size:14px;
    color:#1e293b;
}

.form-group input,
.form-group textarea,
.form-group select{
    width:100%;
    padding:13px 16px;
    border:1px solid #dfe4ea;
    border-radius:10px;
    font-family:'Inter',sans-serif;
    font-size:15px;
    color:#1e293b;
    background:#f8fafc;
}

.form-group textarea{
    resize:vertical;
    min-height:120px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
    outline:none;
    border-color:#5B5CEB;
    background:#fff;
}

/* ========================================
   Demo Page Checklist
======================================== */

.demo-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:50px;
    align-items:start;
}

.demo-checklist{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
    margin-top:30px;
}

.demo-checklist li{
    background:#fff;
    padding:16px 20px;
    border-radius:12px;
    border:1px solid #eef2f7;
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:500;
    box-shadow:0 6px 18px rgba(0,0,0,.04);
}

.demo-checklist li i{
    color:#5B5CEB;
}

/* ========================================
   Blog Page
======================================== */

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

.blog-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    border:1px solid #eef2f7;
    transition:.35s;
}

.blog-card:hover{
    transform:translateY(-8px);
    border-color:#5B5CEB;
}

.blog-card-img{
    height:170px;
    background:linear-gradient(135deg,#4338CA,#5B5CEB);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:38px;
}

.blog-card-body{
    padding:26px 28px 30px;
}

.blog-tag{
    display:inline-block;
    background:#eef2ff;
    color:#5B5CEB;
    font-size:12px;
    font-weight:700;
    padding:5px 12px;
    border-radius:20px;
    margin-bottom:14px;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.blog-card h3{
    font-size:20px;
    margin-bottom:12px;
    color:#1e293b;
}

.blog-card p{
    color:#475569;
    font-size:15px;
    margin-bottom:18px;
}

.blog-meta{
    font-size:13px;
    color:#94a3b8;
}

.blog-readmore{
    color:#5B5CEB;
    font-weight:600;
    font-size:14px;
}

/* ========================================
   Responsive - New Sections
======================================== */

@media(max-width:992px){

.contact-grid{
    grid-template-columns:1fr;
}

.demo-grid{
    grid-template-columns:1fr;
}

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

.form-row{
    grid-template-columns:1fr;
}

}

@media(max-width:768px){

.demo-checklist{
    grid-template-columns:1fr;
}

.blog-grid{
    grid-template-columns:1fr;
}

.page-header h1{
    font-size:32px;
}

}

/* ========================================
   Check List (Solution / Module Pages)
======================================== */

.check-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    max-width:900px;
    margin:0 auto;
}

.check-list li{
    background:#fff;
    padding:16px 20px;
    border-radius:12px;
    border:1px solid #eef2f7;
    box-shadow:0 6px 18px rgba(0,0,0,.04);
    font-weight:500;
    display:flex;
    align-items:center;
    gap:10px;
}

.check-list li::before{
    content:"\2713";
    color:#5B5CEB;
    font-weight:700;
}

@media(max-width:768px){

.check-list{
    grid-template-columns:1fr;
}

}