*{
margin:0;
padding:0;
box-sizing:border-box;
font-family: "Poppins", sans-serif;
}

body{
background:#fff;
}

/* HEADER */

/* HEADER */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}


/* HEADER */

.header{
width:100%;
background:#f6f7fb;
border-bottom:1px solid #eee;
position:sticky;
top:0;
z-index:999;
}


.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}


.nav-wrapper{
display:flex;
align-items:center;
justify-content:space-between;
height:75px;
}


/* LOGO */

.logo-area img{
height:42px;
width:auto;
object-fit:contain;
}

/* TEXT LOGO */

.logo-text{
font-size:22px;
font-weight:700;
text-decoration:none;
color:#1e293b;
}

.logo-text span{
color:#4a57d4;
}

/* NAVIGATION */

.nav{
display:flex;
gap:35px;
}

.nav a{
text-decoration:none;
color:#333;
font-size:15px;
font-weight:500;
transition:.3s;
}

.nav a:hover{
color:#4a57d4;
}


/* ACTION AREA */

.nav-actions{
display:flex;
align-items:center;
gap:12px;
}


/* CALL BUTTON */

.call-btn{
background:#22c55e;
color:#fff;
padding:9px 14px;
border-radius:8px;
text-decoration:none;
font-size:14px;
font-weight:500;
transition:.3s;
}

.call-btn:hover{
background:#16a34a;
}


/* APPLY BUTTON */

.apply-btn{
background:#4a57d4;
color:#fff;
padding:10px 18px;
border-radius:8px;
text-decoration:none;
font-weight:500;
transition:.3s;
}

.apply-btn:hover{
background:#3b46b3;
}


/* MENU TOGGLE */

.menu-toggle{
display:none;
font-size:26px;
cursor:pointer;
}


/* MOBILE NAV */
@media (max-width:768px){

.nav{
position:fixed;
top:75px;
left:0;
width:100%;
background:#fff;
flex-direction:column;
align-items:center;
gap:20px;
padding:30px 0;
display:none;
z-index:1000;
box-shadow:0 8px 25px rgba(0,0,0,0.1);
}

.nav.active{
display:flex;
}

.menu-toggle{
display:block;
}

.call-btn,
.apply-btn{
display:none;
}

}
.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
}

@media(max-width:768px){
.menu-toggle{
display:block;
}
}


/* FLOATING CALL BUTTON */

.mobile-call{
position:fixed;
bottom:20px;
right:20px;
background:#22c55e;
color:#fff;
width:55px;
height:55px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
text-decoration:none;
box-shadow:0 6px 15px rgba(0,0,0,0.25);
z-index:999;
}

@media (min-width:769px){
.mobile-call{
display:none;
}
}


/* HERO */

/* HERO */

.hero{
position:relative;
height:95vh;
min-height:620px;
display:flex;
align-items:center;
background:url("images/hero.jpg") center/cover no-repeat;
overflow:hidden;
}

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

/* BLUE OVERLAY */

.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;

background:linear-gradient(
90deg,
rgba(26,35,126,0.95) 0%,
rgba(26,35,126,0.88) 40%,
rgba(26,35,126,0.45) 75%
);
}

/* BOTTOM FADE */

.hero-bottom-fade{
position:absolute;
bottom:0;
left:0;
width:100%;
height:70px;

background:linear-gradient(
to bottom,
rgba(255,255,255,0),
rgba(255,255,255,1)
);
}

/* GRID */

.hero-grid{
position:relative;
display:grid;
grid-template-columns:1.1fr 0.9fr;
gap:50px;
align-items:center;
}

/* HERO TEXT */

.hero-content h1{
font-size:52px;
color:white;
line-height:1.15;
font-weight:700;
}

.hero-content span{
color:#ffd23f;
}

.hero-content p{
margin-top:18px;
color:#d7d7ff;
font-size:17px;
}

/* BUTTONS */

.hero-buttons{
margin-top:28px;
display:flex;
gap:15px;
}

.apply-btn-yellow{
background:#f8c437;
border:none;
padding:12px 22px;
border-radius:8px;
font-weight:600;
cursor:pointer;
}

.brochure-btn{
background:transparent;
border:1px solid white;
color:white;
padding:12px 22px;
border-radius:8px;
cursor:pointer;
}

/* STATS */

.hero-stats{
display:flex;
gap:35px;
margin-top:35px;
color:white;
}

.hero-stats h3{
color:#ffd23f;
font-size:26px;
}

.hero-stats p{
font-size:13px;
opacity:.9;
}

/* FORM */

.hero-form{
background:white;
padding:26px;
border-radius:16px;
box-shadow:0 20px 40px rgba(0,0,0,0.25);
max-width:450px;
}

.hero-form h3{
font-size:21px;
margin-bottom:5px;
}

.form-sub{
color:#666;
font-size:14px;
margin-bottom:18px;
}

/* FORM INPUTS */

.hero-form form{
display:flex;
flex-direction:column;
gap:8px;
}

.hero-form label{
font-size:13px;
font-weight:500;
margin-top:6px;
}

.hero-form input,
.hero-form select{
padding:11px;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;
}

/* SUBMIT */

.submit-btn{
margin-top:12px;
background:#4a57d4;
color:white;
border:none;
padding:13px;
border-radius:8px;
font-weight:600;
cursor:pointer;
}

.form-note{
font-size:12px;
text-align:center;
color:#777;
margin-top:6px;
}

/* MOBILE */

@media(max-width:900px){

.hero{
height:auto;
padding:100px 0;
}

.hero-grid{
grid-template-columns:1fr;
}

.hero-content h1{
font-size:36px;
}

.hero-stats{
justify-content:space-between;
}

.hero-form{
margin-top:35px;
max-width:100%;
}

}

/* why choose section */

.why-section{
padding:90px 0;
background:#f8f9fb;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-size:36px;
font-weight:700;
margin-bottom:12px;
}

.section-title p{
color:#555;
max-width:650px;
margin:auto;
}

/* GRID */

.why-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

/* CARD */

.why-card{
background:white;
padding:35px;
border-radius:14px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:all .35s ease;
text-align:left;
}

.why-card:hover{
transform:translateY(-8px) scale(1.02);
box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

/* ICON BOX */

.icon-box{
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
border-radius:14px;
font-size:26px;
margin-bottom:18px;



/* gradient background */

background:linear-gradient(135deg,#4a57d4,#6a74ff);
color:white;
}


.icon-box i{
font-size:28px;
color:white;
line-height:1;
}
/* TITLE */

.why-card h3{
font-size:18px;
margin-bottom:10px;
}

/* TEXT */

.why-card p{
font-size:14px;
color:#666;
line-height:1.6;
}

/* RESPONSIVE */

@media(max-width:1024px){

.why-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.why-grid{
grid-template-columns:1fr;
}

.section-title h2{
font-size:28px;
}

}


/* betech program */
/* 
.programs-section{

background:#f8f9fb;
padding:90px 0;

}

.program-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:50px;

}

.program-card{

background:white;
padding:30px;
border-radius:12px;
border:1px solid #e6e6e6;
transition:0.3s;

}

.program-card:hover{

transform:translateY(-6px);
box-shadow:0 10px 25px rgba(0,0,0,0.08);

}

.program-icon{

width:50px;
height:50px;
background:#eef2ff;
display:flex;
align-items:center;
justify-content:center;
border-radius:10px;
font-size:22px;
margin-bottom:15px;

}

.program-card h3{

font-size:18px;
margin-bottom:6px;

}

.duration{

font-size:13px;
color:#666;
display:block;
margin-bottom:10px;

}

.program-desc{

font-size:14px;
color:#555;
margin-bottom:20px;

}

.career h4{

font-size:12px;
text-transform:uppercase;
color:#777;
margin-bottom:8px;

}

.career ul{

padding-left:16px;
font-size:13px;
color:#444;
line-height:1.7;

}

.learn-more{

display:inline-block;
margin-top:15px;
font-size:14px;
color:#4a57d4;
font-weight:500;
cursor:pointer;

}

@media(max-width:1024px){

.program-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.program-grid{
grid-template-columns:1fr;
}

} */


.programs-section{
background:#f8f9fb;
padding:0px 0;
}

.section-title{
text-align:center;
margin-bottom:40px;
}

.section-title h2{
font-size:34px;
margin-bottom:10px;
}

.section-title p{
color:#666;
font-size:15px;
}

/* Tabs */

.program-tabs{
display:flex;
justify-content:center;
gap:15px;
margin-bottom:40px;
}

.tab-btn{
padding:10px 24px;
border:none;
background:#eee;
border-radius:30px;
cursor:pointer;
font-weight:500;
transition:0.3s;
}

.tab-btn.active{
background:linear-gradient(45deg,#5c6cff,#7d8cff);
color:white;
}

/* Grid */

.program-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

/* Cards */

.program-card{
background:white;
padding:28px;
border-radius:12px;
border:1px solid #e6e6e6;
transition:0.3s;
}

.program-card:hover{
transform:translateY(-6px);
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.program-icon{
width:50px;
height:50px;
background:#eef2ff;
display:flex;
align-items:center;
justify-content:center;
border-radius:10px;
font-size:22px;
margin-bottom:15px;
}

.program-card h3{
font-size:18px;
margin-bottom:8px;
}

.program-card p{
font-size:14px;
color:#555;
}

/* more card */

.more-card{
display:flex;
align-items:center;
justify-content:center;
font-size:18px;
font-weight:600;
color:#5c6cff;
cursor:pointer;
border:2px dashed #d4d9ff;
}

/* tab content */

.tab-content{
display:none;
}

.tab-content.active{
display:block;
}

/* responsive */

@media(max-width:1024px){
.program-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.program-grid{
grid-template-columns:1fr;
}
}

.program-card{
background:white;
padding:22px;
border-radius:12px;
border:1px solid #e6e6e6;
transition:all .35s ease;
}

.program-card:hover{
transform:translateY(-6px) scale(1.03);
box-shadow:0 12px 30px rgba(0,0,0,0.12);
}

.program-icon{
width:48px;
height:48px;
background:linear-gradient(135deg,#5c6cff,#7d8cff);
display:flex;
align-items:center;
justify-content:center;
border-radius:10px;
margin-bottom:12px;
color:white;
font-size:22px;
transition:.35s;
}

.program-card:hover .program-icon{
transform:rotate(10deg) scale(1.1);
}

/* campus */
.campus-section{
padding:80px 0;
background:#f8f9fb;
}

/* GRID */

.campus-grid{
margin-top:50px;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

/* CARD */

.campus-card{
position:relative;
overflow:hidden;
border-radius:16px;
cursor:pointer;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:.4s;
}

.campus-card:hover{
transform:translateY(-5px);
}

/* IMAGE */

.campus-card img{
width:100%;
height:260px;
object-fit:cover;
display:block;
transition:.6s;
}

/* OVERLAY */

.campus-overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
height:100%;

display:flex;
flex-direction:column;
justify-content:flex-end;

padding:20px;

color:white;

background:linear-gradient(
to top,
rgba(0,0,0,0.8),
rgba(0,0,0,0.15)
);

opacity:.85;
transition:.4s;
}

/* HOVER EFFECT */

.campus-card:hover img{
transform:scale(1.1);
}

.campus-card:hover .campus-overlay{
background:linear-gradient(
to top,
rgba(0,0,0,0.85),
rgba(0,0,0,0.05)
);
}

/* TEXT */

.campus-overlay h3{
font-size:20px;
margin-bottom:5px;
}

.campus-overlay p{
font-size:14px;
color:#ddd;
}

/* RESPONSIVE */

@media(max-width:1024px){

.campus-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.campus-grid{
grid-template-columns:1fr;
}

.campus-card img{
height:220px;
}

}

/* placement highlight  */

/* .placement-section{

padding:100px 0;

background:linear-gradient(135deg,#2c3ea8,#3c47b5);

color:white;

text-align:center;

}

.placement-title h2{

font-size:36px;
margin-bottom:10px;

}

.placement-title p{

color:#d0d6ff;

}

.placement-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;

margin-top:50px;

}

.placement-card{

background:rgba(255,255,255,0.08);

padding:35px;

border-radius:16px;

backdrop-filter:blur(6px);

}

.placement-icon{

width:55px;
height:55px;

background:#ffd23f;

border-radius:12px;

display:flex;
align-items:center;
justify-content:center;

margin:auto;

font-size:22px;

margin-bottom:15px;

}

.placement-card h3{

font-size:36px;
margin-bottom:5px;

}

.placement-card span{

color:#dbe0ff;

font-size:14px;

}

/* recruiters */

/* .recruiters{

margin-top:50px;

}

.recruiter-list{

margin-top:20px;

display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;

} */
/* 
.recruiter-list span{

background:rgba(255,255,255,0.12);

padding:10px 18px;

border-radius:8px;

font-size:14px;

}
@media(max-width:900px){

.placement-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:500px){

.placement-grid{
grid-template-columns:1fr;
}

} */ 


.placement-section{
padding:120px 0;
background:linear-gradient(135deg,#2c3ea8,#4a5cff);
color:white;
text-align:center;
overflow:hidden;
}

.placement-title h2{
font-size:42px;
font-weight:700;
margin-bottom:10px;
}

.placement-title p{
color:#d0d6ff;
font-size:16px;
}

.placement-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-top:60px;
}

/* CARD */

.placement-card{
background:rgba(255,255,255,0.08);
padding:40px 25px;
border-radius:18px;
backdrop-filter:blur(10px);
border:1px solid rgba(255,255,255,0.15);
transition:all .35s ease;
position:relative;
}

.placement-card:hover{
transform:translateY(-10px);
background:rgba(255,255,255,0.12);
}

/* ICON */

.placement-icon{
width:60px;
height:60px;
background:linear-gradient(135deg,#ffd23f,#ffb703);
border-radius:14px;
display:flex;
align-items:center;
justify-content:center;
margin:auto;
font-size:26px;
margin-bottom:18px;
color:#2c3ea8;
box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

/* NUMBER */

.placement-card h3{
font-size:40px;
font-weight:700;
margin-bottom:6px;
}

.placement-card span{
color:#dbe0ff;
font-size:15px;
}

/* Recruiters */

.recruiters{
margin-top:70px;
}

.recruiters p{
color:#dbe0ff;
margin-bottom:25px;
}

.recruiter-list{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:14px;
}

.recruiter-list span{
background:rgba(255,255,255,0.12);
padding:10px 18px;
border-radius:30px;
font-size:14px;
transition:0.3s;
}

.recruiter-list span:hover{
background:white;
color:#2c3ea8;
}

/* RESPONSIVE */

@media(max-width:992px){

.placement-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.placement-grid{
grid-template-columns:1fr;
}

.placement-title h2{
font-size:32px;
}

}



/* testomonial */

.testimonial-section{

padding:90px 0;
background:#f8f9fb;

}

.testimonial-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:50px;

}

.testimonial-card{

background:white;
padding:35px;
border-radius:16px;

border-left:4px solid #4c5cff;

box-shadow:0 8px 20px rgba(0,0,0,0.08);

position:relative;

}

.testimonial-header{

display:flex;
align-items:center;
gap:15px;
margin-bottom:15px;

}

.testimonial-header img{

width:50px;
height:50px;
border-radius:50%;
object-fit:cover;

}

.testimonial-header h4{

font-size:16px;
margin-bottom:3px;

}

.testimonial-header span{

font-size:13px;
color:#777;

}

.stars{

color:#f6c400;
margin-bottom:15px;
font-size:18px;

}

.testimonial-text{

font-size:14px;
color:#555;
line-height:1.6;

}

.quote{

font-size:40px;
color:#e2e6ff;
margin-top:20px;

}

@media(max-width:900px){

.testimonial-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.testimonial-grid{
grid-template-columns:1fr;
}

}

/* faq */

.faq-section{

padding:0px 0;
background:#f8f9fb;

}

.faq-container{

max-width:800px;
margin:auto;
margin-top:50px;

}

.faq-item{

background:white;
border-radius:10px;
margin-bottom:15px;
overflow:hidden;

box-shadow:0 5px 12px rgba(0,0,0,0.06);

}

.faq-question{

width:100%;
padding:18px 20px;

background:white;
border:none;

display:flex;
justify-content:space-between;
align-items:center;

font-size:16px;
font-weight:500;

cursor:pointer;

}

.faq-question span{

font-size:20px;
color:#777;

}

.faq-answer{

max-height:0;
overflow:hidden;

transition:max-height 0.35s ease;

padding:0 20px;

}

.faq-answer p{

padding-bottom:20px;
font-size:14px;
color:#555;

}

/* cta */
.cta-section{
padding:50px 0;
background:#f8f9fb;
}

/* CARD */

.cta-card{
max-width:700px;
margin:auto;
background:linear-gradient(135deg,#4a57d4,#6a74ff);
padding:50px 40px;
border-radius:16px;
text-align:center;
color:white;
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

/* TITLE */

.cta-card h2{
font-size:28px;
margin-bottom:12px;
}

/* TEXT */

.cta-card p{
opacity:.9;
margin-bottom:28px;
font-size:15px;
}

/* BUTTONS */

.cta-buttons{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

/* BUTTON */

.cta-btn{
display:inline-flex;
align-items:center;
gap:8px;
background:white;
color:#4a57d4;
padding:12px 22px;
border-radius:8px;
font-weight:600;
text-decoration:none;
transition:.3s;
}

.cta-btn:hover{
transform:translateY(-3px);
box-shadow:0 8px 20px rgba(0,0,0,0.2);
}

/* WHATSAPP */

.whatsapp-btn{
background:#25D366;
color:white;
}

.whatsapp-btn:hover{
background:#20bd5a;
}

/* RESPONSIVE */

@media(max-width:600px){

.cta-card{
padding:40px 25px;
}

.cta-card h2{
font-size:22px;
}

}

/* footer */
.footer{
background:#0f1a2c;
color:#cbd3e4;
padding-top:60px;
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1.5fr;
gap:40px;
}

.footer-logo img{
height:55px;
margin-bottom:15px;
}

.footer-desc{
font-size:14px;
line-height:1.6;
margin-bottom:20px;
}

.footer-col h4{
margin-bottom:15px;
color:white;
font-size:16px;
}

/* links */

.footer-col ul{
list-style:none;
}

.footer-col ul li{
margin-bottom:10px;
}

.footer-col a{
color:#cbd3e4;
text-decoration:none;
font-size:14px;
}

.footer-col a:hover{
color:white;
}

/* social */

.social-icons{
display:flex;
gap:10px;
}

.social-icons a{
width:36px;
height:36px;
background:#1e2a44;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:white;
font-size:16px;
text-decoration:none;
transition:.3s;
}

.social-icons a:hover{
background:#4a57d4;
}

/* contact */

.footer-col p{
font-size:14px;
margin-bottom:10px;
display:flex;
gap:8px;
align-items:flex-start;
}

/* bottom */

.footer-bottom{
margin-top:40px;
border-top:1px solid rgba(255,255,255,0.1);
padding:18px 0;
display:flex;
justify-content:space-between;
font-size:13px;
flex-wrap:wrap;
}

.disclaimer{
opacity:.7;
}

/* responsive */

@media(max-width:900px){

.footer-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:600px){

.footer-grid{
grid-template-columns:1fr;
}

.footer-bottom{
flex-direction:column;
gap:8px;
text-align:center;
}

}

/* timer section */

.countdown-section{

background:linear-gradient(135deg,#2f3ca8,#3b48c2);

color:white;

padding:100px 0;

text-align:center;

}

.countdown-container h2{

font-size:40px;

margin-bottom:15px;

}

.countdown-sub{

color:#d9dcff;

margin-bottom:20px;

}

.closing-text{

color:#ffcc33;

font-weight:500;

margin-bottom:30px;

}

.countdown-grid{

display:flex;

justify-content:center;

gap:20px;

margin-bottom:35px;

}

.count-box{

background:rgba(255,255,255,0.08);

padding:25px 30px;

border-radius:12px;

min-width:110px;

}

.count-box h3{

font-size:38px;

margin-bottom:5px;

}

.count-box span{

font-size:13px;

color:#d9dcff;

}

.countdown-buttons{

display:flex;

justify-content:center;

gap:15px;

margin-bottom:20px;

}

.guidance-btn{

border:1px solid white;

padding:12px 24px;

border-radius:8px;

color:white;

text-decoration:none;

}

.help-text{

color:#d9dcff;

}

.help-text span{

color:#ffd23f;

font-weight:600;

}
@media(max-width:768px){

.countdown-grid{

flex-wrap:wrap;

}

.count-box{

min-width:80px;

}

.countdown-container h2{

font-size:28px;

}

}

/* get in touch */
.contact-section{

padding:90px 0;
background:#f8f9fb;

}

.contact-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
margin-top:40px;

}

.contact-info h3{

margin-bottom:20px;

}

.contact-item{

display:flex;
gap:15px;
margin-bottom:18px;

}

.contact-icon{

background:#e9edff;
width:40px;
height:40px;

display:flex;
align-items:center;
justify-content:center;

border-radius:8px;

}

.contact-item h4{

font-size:15px;

}

.contact-item p{

font-size:14px;
color:#666;

}

.contact-map{

margin-top:20px;
border-radius:12px;
overflow:hidden;

}

.contact-form-card{

background:white;
padding:35px;

border-radius:14px;

box-shadow:0 8px 25px rgba(0,0,0,0.08);

}

.contact-form-card h3{

margin-bottom:20px;

}

.contact-form-card form{

display:flex;
flex-direction:column;
gap:15px;

}

.form-row{

display:flex;
gap:15px;

}

.contact-form-card input,
.contact-form-card textarea{

padding:12px;

border:1px solid #ddd;

border-radius:6px;

font-size:14px;

}

.contact-form-card textarea{

height:120px;
resize:none;

}

.contact-form-card button{

background:linear-gradient(135deg,#3b4fd6,#4f6df0);

border:none;

color:white;

padding:12px;

border-radius:8px;

cursor:pointer;

font-weight:500;

}

@media(max-width:900px){

.contact-grid{

grid-template-columns:1fr;

}

.form-row{

flex-direction:column;

}

}

html{
scroll-behavior:smooth;
}