/* ===========================
RESET
=========================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}
html{
    overflow-x:hidden;
    width:100%;
}

body{
    overflow-x:hidden;
    width:100%;
    max-width:100%;
}

*{
    box-sizing:border-box;
}

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

section{
    overflow:hidden;
}


img{

max-width:100%;

display:block;

}

a{

text-decoration:none;

color:inherit;

}

ul{

list-style:none;

}

.container{

width:min(1220px,92%);

margin:auto;

}

section{

padding:100px 0;

}

/* ===========================
COLORS
=========================== */

:root{

--primary:#2563EB;

--dark:#0F172A;

--light:#F8FAFC;

--text:#334155;

--success:#22C55E;

--border:#E2E8F0;

}

/* ===========================
BUTTONS
=========================== */

.btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 34px;

background:var(--primary);

color:#fff;

font-weight:700;

border-radius:12px;

transition:.35s;

}

.btn:hover{

transform:translateY(-4px);

box-shadow:0 20px 40px rgba(37,99,235,.25);

}

.btn-outline{

display:inline-flex;

padding:16px 34px;

border:2px solid var(--primary);

border-radius:12px;

font-weight:700;

color:var(--primary);

transition:.35s;

}

.btn-outline:hover{

background:var(--primary);

color:#fff;

}

/* ===========================
HEADINGS
=========================== */

h1{

font-size:64px;

font-weight:800;

line-height:1.1;

}

h2{

font-size:48px;

font-weight:800;

margin-bottom:20px;

}

h3{

font-size:26px;

margin-bottom:15px;

}

p{

font-size:18px;

color:#64748B;

}

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

@media(max-width:992px){

h1{

font-size:46px;

}

h2{

font-size:36px;

}

section{

padding:80px 0;

}

}

@media(max-width:768px){

h1{

font-size:34px;

}

h2{

font-size:30px;

}

p{

font-size:16px;

}

}
/*=========================================
TOP BAR
=========================================*/

.top-bar{

background:#0F172A;

padding:10px 0;

color:#fff;

font-size:14px;

}

.top-bar-wrapper{

display:flex;

justify-content:space-between;

align-items:center;

}

.top-message{

font-weight:600;

}

.top-contact{

display:flex;

gap:25px;

}

.top-contact a{

display:flex;

align-items:center;

gap:8px;

color:#fff;

transition:.3s;

}

.top-contact a:hover{

color:#60A5FA;

}

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

#header{

position:sticky;

top:0;

background:#fff;

z-index:999;

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

}

.nav-wrapper{

height:85px;

display:flex;

align-items:center;

justify-content:space-between;

}

.logo{

display:flex;

flex-direction:column;

font-size:34px;

font-weight:800;

color:#111827;

}

.logo span{

color:#2563EB;

}

.logo small{

font-size:12px;

font-weight:600;

letter-spacing:.5px;

color:#64748B;

margin-top:2px;

}

#navbar ul{

display:flex;

gap:34px;

}

#navbar a{

font-weight:600;

color:#334155;

transition:.3s;

position:relative;

}

#navbar a:hover{

color:#2563EB;

}

#navbar a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:2px;

background:#2563EB;

transition:.3s;

}

#navbar a:hover::after{

width:100%;

}

.nav-buttons{

display:flex;

gap:15px;

}

.call-btn{

display:flex;

align-items:center;

gap:8px;

padding:14px 26px;

border:2px solid #2563EB;

border-radius:12px;

font-weight:700;

color:#2563EB;

transition:.3s;

}

.call-btn:hover{

background:#2563EB;

color:#fff;

}

#menu-btn{

display:none;

background:none;

border:none;

font-size:30px;

cursor:pointer;

}

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

@media (max-width:992px){

.top-bar{
display:none;
}

.nav-buttons{
display:none;
}

.logo{
font-size:28px;
}

.nav-wrapper{
height:75px;
position:relative;
}

#menu-btn{
display:block;
background:none;
border:none;
font-size:30px;
cursor:pointer;
color:#2563EB;
z-index:1001;
}

/* Mobile Menu */

#navbar{

display:none;

position:absolute;

top:75px;

left:0;

width:100%;

background:#fff;

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

border-top:1px solid #eee;

}

#navbar.active{

display:block;

animation:menuDown .35s ease;

}

#navbar ul{

display:flex;

flex-direction:column;

gap:0;

padding:0;

}

#navbar li{

border-bottom:1px solid #eee;

}

#navbar a{

display:block;

padding:18px 25px;

}

}

@keyframes menuDown{

from{

opacity:0;

transform:translateY(-15px);

}

to{

opacity:1;

transform:translateY(0);

}

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

.hero{

padding:90px 0;

background:linear-gradient(135deg,#F8FAFC,#EEF4FF);

}

.hero-wrapper{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.hero-badge{

display:inline-block;

padding:10px 22px;

background:#DBEAFE;

color:#2563EB;

font-weight:700;

border-radius:40px;

margin-bottom:25px;

}

.hero h1{

font-size:64px;

margin-bottom:25px;

}

.hero h1 span{

display:block;

color:#2563EB;

}

.hero p{

font-size:19px;

margin-bottom:35px;

max-width:600px;

}

.hero-buttons{

display:flex;

gap:18px;

margin-bottom:35px;

flex-wrap:wrap;

}

.hero-list{

display:grid;

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

gap:15px;

font-weight:600;

color:#334155;

}

/*=========================================
DASHBOARD
=========================================*/

.dashboard{

background:#fff;

border-radius:24px;

padding:30px;

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

}

.dashboard-header{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:30px;

}

.online{

color:#22C55E;

font-weight:700;

}

.dashboard-cards{

display:grid;

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

gap:18px;

margin-bottom:30px;

}

.dash-card{

background:#F8FAFC;

padding:22px;

border-radius:16px;

}

.dash-card small{

color:#64748B;

}

.dash-card h2{

font-size:26px;

margin-top:8px;

margin-bottom:0;

}

.dashboard-chart{

height:220px;

display:flex;

align-items:flex-end;

justify-content:space-between;

gap:15px;

}

.bar{

flex:1;

background:linear-gradient(#60A5FA,#2563EB);

border-radius:8px 8px 0 0;

animation:grow 2s ease;

}

.b1{height:80px;}
.b2{height:150px;}
.b3{height:120px;}
.b4{height:180px;}
.b5{height:130px;}
.b6{height:200px;}

@keyframes grow{

from{

height:0;

}

}

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

@media(max-width:992px){

.hero-wrapper{

grid-template-columns:1fr;

}

.hero{

text-align:center;

}

.hero-list{

grid-template-columns:1fr;

}

}
/*=========================================
SECTION TITLE
=========================================*/

.section-title{

text-align:center;

max-width:760px;

margin:auto auto 70px;

}

.section-tag{

display:inline-block;

padding:10px 22px;

background:#DBEAFE;

color:#2563EB;

border-radius:40px;

font-size:14px;

font-weight:700;

margin-bottom:20px;

}

.section-title h2{

margin-bottom:20px;

}

.section-title h2 span{

color:#2563EB;

}

.section-title p{

font-size:18px;

}

/*=========================================
PROBLEMS
=========================================*/

.problems{

background:#ffffff;

}

.problem-grid{

display:grid;

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

gap:28px;

}

.problem-card{

background:#fff;

padding:35px;

border-radius:22px;

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

transition:.35s;

border:1px solid #EEF2F7;

}

.problem-card:hover{

transform:translateY(-10px);

border-color:#2563EB;

}

.problem-icon{

width:70px;

height:70px;

border-radius:18px;

background:#EEF4FF;

display:flex;

align-items:center;

justify-content:center;

margin-bottom:25px;

}

.problem-icon i{

font-size:28px;

color:#2563EB;

}

.problem-card h3{

margin-bottom:15px;

}

.problem-card p{

margin:0;

}

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

@media(max-width:992px){

.problem-grid{

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

}

}

@media(max-width:768px){

.problem-grid{

grid-template-columns:1fr;

}

.problem-card{

padding:28px;

}

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

.modules{

background:#F8FAFC;

}

.modules-grid{

display:grid;

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

gap:28px;

}

.module-card{

background:#fff;

border-radius:22px;

padding:35px 28px;

transition:.35s;

box-shadow:0 15px 50px rgba(0,0,0,.05);

border:1px solid #EEF2F7;

}

.module-card:hover{

transform:translateY(-10px);

box-shadow:0 30px 70px rgba(37,99,235,.12);

border-color:#2563EB;

}

.module-icon{

width:72px;

height:72px;

border-radius:18px;

background:#EEF4FF;

display:flex;

align-items:center;

justify-content:center;

margin-bottom:25px;

}

.module-icon i{

font-size:30px;

color:#2563EB;

}

.module-card h3{

margin-bottom:15px;

font-size:22px;

}

.module-card p{

margin:0;

font-size:16px;

}

.highlight{

background:linear-gradient(135deg,#2563EB,#3B82F6);

color:#fff;

}

.highlight p{

color:#E5E7EB;

}

.highlight .module-icon{

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

}

.highlight .module-icon i{

color:#fff;

}

/*=========================================
Responsive
=========================================*/

@media(max-width:1200px){

.modules-grid{

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

}

}

@media(max-width:992px){

.modules-grid{

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

}

}

@media(max-width:768px){

.modules-grid{

grid-template-columns:1fr;

}

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

.dashboard-section{
    padding:110px 0;
    background:linear-gradient(180deg,#F8FAFC 0%,#EEF4FF 100%);
    overflow:hidden;
}

.dashboard-wrapper{

    display:grid;
    grid-template-columns:280px 1fr;

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    box-shadow:
    0 35px 80px rgba(15,23,42,.10);

    margin-top:70px;

}

/* ======================
Sidebar
====================== */

.dashboard-sidebar{

    background:#0F172A;

    padding:35px 28px;

    color:#fff;

}

.sidebar-logo{

    margin-bottom:40px;

    border-bottom:1px solid rgba(255,255,255,.1);

    padding-bottom:25px;

}

.sidebar-logo h3{

    color:#fff;

    font-size:28px;

    margin-bottom:5px;

}

.sidebar-logo small{

    color:#94A3B8;

}

.dashboard-sidebar ul{

    display:flex;

    flex-direction:column;

    gap:8px;

}

.dashboard-sidebar li{

    display:flex;

    align-items:center;

    gap:14px;

    padding:14px 16px;

    border-radius:14px;

    cursor:pointer;

    transition:.35s;

    font-weight:600;

}

.dashboard-sidebar li i{

    width:20px;

    text-align:center;

}

.dashboard-sidebar li:hover{

    background:#1E3A8A;

}

.dashboard-sidebar .active{

    background:#2563EB;

}

/* ======================
Content
====================== */

.dashboard-content{

    padding:40px;

}

.dashboard-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:35px;

}

.dashboard-top h3{

    margin-bottom:8px;

    font-size:30px;

}

.dashboard-user{

    display:flex;

    align-items:center;

    gap:20px;

}

.dashboard-user img{

    width:55px;

    height:55px;

    border-radius:50%;

    border:3px solid #2563EB;

}

.notification{

    position:relative;

    width:50px;

    height:50px;

    border-radius:50%;

    background:#EEF4FF;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#2563EB;

    font-size:20px;

}

.notification span{

    position:absolute;

    top:-4px;

    right:-4px;

    width:22px;

    height:22px;

    border-radius:50%;

    background:#EF4444;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:11px;

    font-weight:700;

}

/* ======================
Stats
====================== */

.dashboard-stats{

    display:grid;

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

    gap:22px;

    margin-bottom:35px;

}

.stat-box{

    background:#F8FAFC;

    border-radius:20px;

    padding:25px;

    transition:.35s;

    border:1px solid #E5E7EB;

}

.stat-box:hover{

    transform:translateY(-6px);

    box-shadow:0 25px 50px rgba(37,99,235,.10);

    border-color:#2563EB;

}

.stat-box small{

    color:#64748B;

    font-size:14px;

}

.stat-box h2{

    font-size:34px;

    margin:12px 0;

    color:#0F172A;

}

.stat-box span{

    color:#22C55E;

    font-weight:600;

}

/* ======================
Bottom
====================== */

.dashboard-bottom{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:30px;

}

/* ======================
Cards
====================== */

.attendance-chart,
.recent-activity{

    background:#F8FAFC;

    border-radius:22px;

    padding:28px;

    border:1px solid #E5E7EB;

}

.card-header{

    margin-bottom:30px;

}

.card-header h4{

    font-size:22px;

    margin:0;

}

/* ======================
Chart
====================== */

.chart{

    height:260px;

    display:flex;

    align-items:flex-end;

    justify-content:space-between;

    gap:16px;

}

.chart .bar{

    flex:1;

    border-radius:12px 12px 0 0;

    background:linear-gradient(
        180deg,
        #60A5FA,
        #2563EB
    );

    animation:growBars 1.8s ease;

}

.h1{height:90px;}
.h2{height:170px;}
.h3{height:130px;}
.h4{height:220px;}
.h5{height:160px;}
.h6{height:250px;}
.h7{height:190px;}

@keyframes growBars{

    from{

        height:0;

    }

}

/* ======================
Activity
====================== */

.recent-activity ul{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.recent-activity li{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:500;

    color:#334155;

}

.recent-activity i{

    color:#22C55E;

    font-size:18px;

}

/* ======================
Responsive
====================== */

@media(max-width:1200px){

.dashboard-stats{

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

}

}

@media(max-width:992px){

.dashboard-wrapper{

grid-template-columns:1fr;

}

.dashboard-sidebar{

display:none;

}

.dashboard-bottom{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.dashboard-content{

padding:25px;

}

.dashboard-top{

flex-direction:column;

align-items:flex-start;

gap:20px;

}

.dashboard-stats{

grid-template-columns:1fr;

}

.chart{

height:180px;

}

.card-header h4{

font-size:20px;

}

.stat-box h2{

font-size:28px;

}

}
/* =========================================
WHY SECTION
========================================= */

.why-section{

padding:110px 0;

background:#ffffff;

}

.why-grid{

display:grid;

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

gap:28px;

margin-top:70px;

}

.why-card{

background:#fff;

padding:35px 28px;

border-radius:22px;

text-align:center;

border:1px solid #EEF2F7;

transition:.35s;

box-shadow:0 15px 45px rgba(0,0,0,.05);

}

.why-card:hover{

transform:translateY(-10px);

border-color:#2563EB;

box-shadow:0 30px 70px rgba(37,99,235,.12);

}

.why-card i{

width:80px;

height:80px;

border-radius:20px;

background:#EEF4FF;

display:flex;

align-items:center;

justify-content:center;

margin:0 auto 25px;

font-size:32px;

color:#2563EB;

}

.why-card h3{

margin-bottom:15px;

font-size:22px;

}

.why-card p{

font-size:16px;

line-height:1.7;

}

@media(max-width:1200px){

.why-grid{

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

}

}

@media(max-width:768px){

.why-grid{

grid-template-columns:1fr;

}

}
/*======================================================
INDUSTRIES
======================================================*/

.industries{

padding:110px 0;

background:#F8FAFC;

}

.industry-grid{

display:grid;

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

gap:28px;

margin-top:70px;

}

.industry-card{

background:#fff;

padding:35px 28px;

border-radius:22px;

text-align:center;

transition:.35s;

border:1px solid #EEF2F7;

box-shadow:0 15px 45px rgba(0,0,0,.05);

}

.industry-card:hover{

transform:translateY(-10px);

border-color:#2563EB;

box-shadow:0 30px 70px rgba(37,99,235,.12);

}

.industry-card i{

width:80px;

height:80px;

background:#EEF4FF;

color:#2563EB;

display:flex;

align-items:center;

justify-content:center;

margin:auto;

border-radius:20px;

font-size:32px;

margin-bottom:22px;

}

.industry-card h3{

margin-bottom:12px;

font-size:22px;

}

.industry-card p{

font-size:16px;

line-height:1.7;

}

.highlight-industry{

background:linear-gradient(135deg,#2563EB,#3B82F6);

color:#fff;

}

.highlight-industry p{

color:#E5E7EB;

}

.highlight-industry i{

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

color:#fff;

}

@media(max-width:1200px){

.industry-grid{

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

}

}

@media(max-width:768px){

.industry-grid{

grid-template-columns:1fr;

}

}
/*=========================================
DEMO CTA
=========================================*/

.demo-section{

padding:110px 0;

background:#2563EB;

}

.demo-wrapper{

display:grid;

grid-template-columns:2fr 1fr;

gap:60px;

align-items:center;

}

.demo-left h2{

color:#fff;

margin:20px 0;

}

.demo-left p{

color:#E2E8F0;

margin-bottom:35px;

}

.demo-list{

display:grid;

gap:18px;

}

.demo-list li{

display:flex;

align-items:center;

gap:12px;

color:#fff;

font-size:17px;

}

.demo-list i{

color:#22C55E;

}

.demo-right{

display:flex;

flex-direction:column;

gap:20px;

}

.demo-right .btn{

background:#fff;

color:#2563EB;

}

.demo-right .btn:hover{

background:#F8FAFC;

}

.demo-right .btn-outline{

border:2px solid #fff;

color:#fff;

}

.demo-right .btn-outline:hover{

background:#fff;

color:#2563EB;

}

@media(max-width:992px){

.demo-wrapper{

grid-template-columns:1fr;

text-align:center;

}

.demo-list{

justify-content:center;

}

}
/*=========================================
TESTIMONIALS
=========================================*/

.testimonials{

padding:110px 0;

background:#fff;

}

.testimonial-grid{

display:grid;

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

gap:30px;

margin-top:70px;

}

.testimonial-card{

background:#F8FAFC;

padding:40px;

border-radius:24px;

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

transition:.35s;

font-size:22px;

color:#F59E0B;

}

.testimonial-card:hover{

transform:translateY(-10px);

}

.testimonial-card p{

margin:20px 0;

font-style:italic;

font-size:17px;

color:#334155;

}

.testimonial-card h4{

margin-bottom:5px;

color:#111827;

}

.testimonial-card span{

color:#64748B;

}

@media(max-width:992px){

.testimonial-grid{

grid-template-columns:1fr;

}

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

.faq-section{

padding:110px 0;

background:#F8FAFC;

}

.faq-wrapper{

max-width:900px;

margin:auto;

margin-top:60px;

}

.faq-item{

background:#fff;

margin-bottom:18px;

border-radius:18px;

overflow:hidden;

border:1px solid #E5E7EB;

}

.faq-question{

width:100%;

padding:24px;

display:flex;

justify-content:space-between;

align-items:center;

background:#fff;

border:none;

font-size:18px;

font-weight:700;

cursor:pointer;

}

.faq-answer{

display:none;

padding:0 24px 24px;

}

.faq-item.active .faq-answer{

display:block;

}
.contact-section{

padding:110px 0;

}

.contact-wrapper{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:start;

}

.contact-box{

display:flex;

gap:18px;

margin:25px 0;

}

.contact-box i{

width:60px;

height:60px;

background:#EEF4FF;

color:#2563EB;

display:flex;

align-items:center;

justify-content:center;

border-radius:18px;

font-size:24px;

}

.contact-form{

background:#fff;

padding:40px;

border-radius:24px;

box-shadow:0 25px 60px rgba(0,0,0,.08);

}

.contact-form input,

.contact-form textarea{

width:100%;

padding:18px;

margin-bottom:18px;

border-radius:12px;

border:1px solid #E5E7EB;

font-family:inherit;

}

.contact-form textarea{

height:140px;

resize:none;

}

@media(max-width:992px){

.contact-wrapper{

grid-template-columns:1fr;

}

}
.footer{

background:#0F172A;

color:#fff;

padding:80px 0 30px;

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr 1fr;

gap:40px;

margin-bottom:50px;

}

.footer h3,

.footer h4{

margin-bottom:20px;

}

.footer p,

.footer li{

color:#CBD5E1;

margin-bottom:12px;

}

.footer a{

color:#CBD5E1;

}

.footer a:hover{

color:#60A5FA;

}

.footer hr{

border:none;

height:1px;

background:#334155;

margin:30px 0;

}

.footer-bottom{

display:flex;

justify-content:space-between;

align-items:center;

}

@media(max-width:992px){

.footer-grid{

grid-template-columns:1fr 1fr;

}

.footer-bottom{

flex-direction:column;

gap:15px;

text-align:center;

}

}

@media(max-width:768px){

.footer-grid{

grid-template-columns:1fr;

}

}
/*======================================================
LEGAL MODALS
======================================================*/

.legal-modal{

display:none;

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(15,23,42,.75);

backdrop-filter:blur(8px);

z-index:99999;

overflow:auto;

padding:40px 20px;

}

.legal-box{

max-width:900px;

margin:40px auto;

background:#fff;

border-radius:24px;

padding:45px;

position:relative;

animation:legalPop .35s ease;

}

@keyframes legalPop{

from{

transform:translateY(40px);

opacity:0;

}

to{

transform:translateY(0);

opacity:1;

}

}

.close-modal{

position:absolute;

right:25px;

top:20px;

font-size:34px;

cursor:pointer;

color:#64748B;

transition:.3s;

}

.close-modal:hover{

color:#2563EB;

}

.legal-box h2{

margin-bottom:10px;

}

.legal-date{

color:#64748B;

margin-bottom:25px;

}

.legal-box h3{

margin-top:30px;

margin-bottom:15px;

}

.legal-box ul{

margin-left:20px;

margin-top:10px;

}

.legal-box li{

margin-bottom:12px;

list-style:disc;

line-height:1.8;

}

@media(max-width:768px){

.legal-box{

padding:30px;

}

}
/*=====================================================
MASTER RESPONSIVE CSS
=====================================================*/

@media screen and (max-width:1200px){

.container{

width:95%;

}

.hero-wrapper,
.demo-wrapper,
.contact-wrapper,
.dashboard-wrapper{

grid-template-columns:1fr;

gap:50px;

}

.dashboard-sidebar{

display:none;

}

.modules-grid,
.problem-grid,
.why-grid,
.industry-grid,
.testimonial-grid{

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

}

.footer-grid{

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

}

.dashboard-stats{

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

}

.dashboard-bottom{

grid-template-columns:1fr;

}

}

@media screen and (max-width:992px){

h1{

font-size:42px;

}

h2{

font-size:34px;

}

section{

padding:80px 0;

}

.top-bar{

display:none;

}

.nav-buttons{

display:none;

}

#navbar{

display:none;

}

#menu-btn{

display:block;

}

.hero{

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.hero-list{

grid-template-columns:1fr;

}

.dashboard-content{

padding:25px;

}

.contact-wrapper{

text-align:center;

}

.contact-box{

justify-content:center;

}

.footer-bottom{

flex-direction:column;

text-align:center;

gap:15px;

}

}

@media screen and (max-width:768px){

.container{

width:92%;

}

h1{

font-size:32px;

line-height:1.2;

}

h2{

font-size:28px;

}

h3{

font-size:22px;

}

p{

font-size:16px;

}

.hero{

padding:70px 0;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

.hero-buttons a{

width:100%;

max-width:320px;

}

.modules-grid,
.problem-grid,
.why-grid,
.industry-grid,
.dashboard-stats,
.testimonial-grid,
.footer-grid{

grid-template-columns:1fr;

}

.dashboard-content{

padding:20px;

}

.chart{

height:170px;

}

.chart .bar{

border-radius:8px 8px 0 0;

}

.contact-form{

padding:25px;

}

.contact-form input,
.contact-form textarea{

padding:15px;

}

.demo-right{

width:100%;

}

.demo-right a{

width:100%;

}

.footer{

text-align:center;

}

.footer ul{

padding:0;

}

.legal-box{

padding:25px;

margin:20px auto;

}

}

@media screen and (max-width:480px){

body{

overflow-x:hidden;

}

.container{

width:94%;

}

h1{

font-size:28px;

}

h2{

font-size:24px;

}

.hero-badge,
.section-tag{

font-size:12px;

padding:8px 18px;

}

.btn,
.btn-outline{

padding:14px 20px;

font-size:15px;

width:100%;

}

.dashboard-user{

flex-direction:column;

gap:10px;

}

.notification{

width:45px;

height:45px;

}

.stat-box{

padding:18px;

}

.stat-box h2{

font-size:26px;

}

.problem-card,
.module-card,
.why-card,
.industry-card,
.testimonial-card{

padding:25px;

}

.contact-form{

padding:20px;

}

.footer{

padding:60px 0 25px;

}

}

