*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial;
}

.header{
width:100%;
background:#ffffff;
border-bottom:1px solid #eee;
}

.container{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
padding:10px 15px;   /* height kam kar di */
}

.logo img{
height:32px;   /* logo size bhi thoda chhota */
}

.nav-links{
display:flex;
list-style:none;
gap:25px;
}

.nav-links a{
text-decoration:none;
color:#333;
font-size:15px;
font-weight:500;
}

.menu-toggle{
display:none;
font-size:26px;
cursor:pointer;
color:#333;
}

/* Mobile */

@media (max-width:768px){

.nav-links{
position:absolute;
top:55px;
left:0;
width:100%;
background:#fff;
flex-direction:column;
align-items:center;
display:none;
padding:15px 0;
box-shadow:0 5px 10px rgba(0,0,0,0.1);
}

.nav-links.active{
display:flex;
}

.menu-toggle{
display:block;
}

}



*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins, sans-serif;
}

body{
background:linear-gradient(135deg,#0b2e59,#071f3f);
color:white;
}

.wrapper{
max-width:1200px;
margin:auto;
padding:60px 20px;
display:flex;
gap:40px;
align-items:center;
justify-content:space-between;
flex-wrap:wrap;
}

.left{
flex:1;
min-width:320px;
}

.logo{
font-size:28px;
font-weight:700;
margin-bottom:20px;
}

.tag{
display:inline-block;
background:white;
color:#0b2e59;
padding:8px 16px;
border-radius:25px;
font-size:14px;
margin-bottom:20px;
}

.title{
font-size:42px;
font-weight:700;
line-height:1.3;
margin-bottom:20px;
}

.highlight{
 
}

.highlight::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:100%;
height:6px;
background:#ffc107;
border-radius:5px;
}

.subtitle{
display:inline-block;
background:linear-gradient(90deg,#ffc107,#ffda54);
color:black;
padding:12px 22px;
border-radius:40px;
margin-bottom:25px;
font-size:15px;
font-weight:600;
box-shadow:0 10px 25px rgba(255,193,7,0.4);
}

.features{
font-size:17px;
margin-bottom:25px;
line-height:1.6;
}

.brands{
display:flex;
gap:15px;
margin-bottom:30px;
flex-wrap:wrap;
}

.brand{
background:white;
padding:10px 18px;
border-radius:6px;
font-size:14px;
color:#333;
}

.stats{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:15px;
margin-bottom:30px;
}

.stat-box{
background:#143c73;
padding:22px;
border-radius:12px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,0.25);
}

.stat-box i{
font-size:26px;
color:#ffc107;
margin-bottom:10px;
}

.stat-box h3{
color:#ffc107;
font-size:22px;
}

.stat-box p{
font-size:14px;
opacity:0.9;
}

.download{
background:#ffc107;
padding:16px 28px;
border:none;
font-weight:600;
border-radius:8px;
cursor:pointer;
font-size:16px;
animation:ring 2s infinite;
}

@keyframes ring{

0%{transform:rotate(0deg);}
5%{transform:rotate(3deg);}
10%{transform:rotate(-3deg);}
15%{transform:rotate(3deg);}
20%{transform:rotate(0deg);}

}

.form-box{
flex:0.45;
min-width:320px;
background:#f2f2f2;
padding:35px;
border-radius:12px;
color:black;
box-shadow:0 20px 50px rgba(0,0,0,0.25);
}

.form-title{
font-weight:700;
text-align:center;
margin-bottom:15px;
font-size:20px;
}

.form-sub{
text-align:center;
font-size:13px;
margin-bottom:20px;
color:#555;
}

input{
width:100%;
padding:12px;
margin-bottom:15px;
border-radius:6px;
border:1px solid #ccc;
}

.phone{
display:flex;
}

.phone span{
background:#ddd;
padding:12px;
border-radius:6px 0 0 6px;
}

.phone input{
border-radius:0 6px 6px 0;
border-left:none;
}

button{
width:100%;
background:#ffc107;
border:none;
padding:14px;
font-weight:600;
border-radius:6px;
cursor:pointer;
}

.rating{
text-align:center;
margin-top:25px;
font-size:13px;
color:#444;
}

@media(max-width:900px){

.wrapper{
flex-direction:column;
}

.title{
font-size:40px;
}

.stats{
grid-template-columns:repeat(2,1fr);
}

}

/* OUTCOMES SECTION */

.outcomes-section{
background:#f4f6f8;
padding:80px 20px;
text-align:center;
}

.outcomes-sub{
color:#555;
margin-bottom:15px;
font-size:16px;
}

.outcomes-title{
font-size:36px;
font-weight:700;
margin-bottom:40px;
color:#111;
}

.outcomes-title span{
color:#ffc107;
}

/* STATS */

.outcomes-stats{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
max-width:1000px;
margin:auto;
margin-bottom:60px;
}

.outcome-card{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.outcome-card h3{
font-size:38px;
color:#0b2e59;
margin-bottom:5px;
}

/* VIDEO GRID */

.video-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
max-width:1200px;
margin:auto;
}

.video-card{
border-radius:16px;
overflow:hidden;
box-shadow:0 15px 30px rgba(0,0,0,0.15);
}

.video-card img{
width:100%;
height:420px;
object-fit:cover;
display:block;
}

/* RESPONSIVE */

@media(max-width:900px){

.video-grid{
grid-template-columns:repeat(2,1fr);
}

.outcomes-stats{
grid-template-columns:1fr;
}

}

@media(max-width:500px){

.video-grid{
grid-template-columns:1fr;
}

}

/* TEAM SECTION */

.team-section{
background:linear-gradient(135deg,#071f3f,#020b18);
padding:90px 20px;
text-align:center;
color:white;
}

.team-sub{
color:#aaa;
margin-bottom:10px;
font-size:15px;
}

.team-title{
font-size:36px;
margin-bottom:60px;
}

.team-title span{
color:#ffc107;
}

/* TEAM GRID */

.team-grid{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

/* TEAM CARD */

.team-card{
background:rgba(255,255,255,0.05);
padding:30px 20px;
border-radius:14px;
backdrop-filter:blur(10px);
transition:0.4s;
border:1px solid rgba(255,255,255,0.08);
}

.team-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,0.4);
}

.team-card img{
width:120px;
height:120px;
border-radius:50%;
object-fit:cover;
margin-bottom:15px;
border:3px solid #ffc107;
}

.team-card h3{
font-size:20px;
margin-bottom:5px;
}

.role{
color:#ffc107;
font-size:14px;
margin-bottom:10px;
}

.desc{
font-size:13px;
color:#bbb;
line-height:1.5;
}

/* RESPONSIVE */

@media(max-width:900px){

.team-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:500px){

.team-grid{
grid-template-columns:1fr;
}

}

/* MENTOR PREMIUM SECTION */

.mentor-section{
background:linear-gradient(180deg,#f9fafc,#eef2f7);
padding:100px 20px;
}

.mentor-wrapper{
max-width:1150px;
margin:auto;
display:flex;
align-items:center;
gap:70px;
flex-wrap:wrap;
}

/* IMAGE */

.image-frame{
padding:8px;
border-radius:18px;
background:linear-gradient(135deg,#ffc107,#ffda54);
display:inline-block;
box-shadow:0 20px 40px rgba(0,0,0,0.15);
animation:floatImage 5s ease-in-out infinite;
}

@keyframes floatImage{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-10px);
}

100%{
transform:translateY(0px);
}

}

.image-frame img{
width:380px;
border-radius:14px;
display:block;
}

/* CONTENT */

.mentor-content{
flex:1;
color:#222;
}

.mentor-tag{
color:#ffc107;
font-weight:600;
letter-spacing:1px;
margin-bottom:10px;
}

.mentor-title{
font-size:38px;
margin-bottom:20px;
}

.mentor-title span{
color:#0b2e59;
}

.mentor-desc{
font-size:16px;
line-height:1.7;
color:#555;
margin-bottom:35px;
}

/* STATS */

.mentor-stats{
display:flex;
gap:20px;
margin-bottom:35px;
flex-wrap:wrap;
}

.mentor-stat{
background:white;
padding:20px 24px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
text-align:center;
min-width:140px;
transition:0.3s;
}

.mentor-stat:hover{
transform:translateY(-5px);
box-shadow:0 20px 35px rgba(0,0,0,0.15);
}

.mentor-stat i{
font-size:24px;
color:#ffc107;
margin-bottom:8px;
}

.mentor-stat h3{
font-size:20px;
color:#0b2e59;
margin-bottom:4px;
}

.mentor-stat p{
font-size:13px;
color:#666;
}

/* BUTTON */

.mentor-btn{
background:linear-gradient(90deg,#ffc107,#ffda54);
border:none;
padding:16px 32px;
font-size:16px;
font-weight:600;
border-radius:10px;
cursor:pointer;
position:relative;
overflow:hidden;
transition:all 0.3s ease;
}

/* Hover Lift */

.mentor-btn:hover{
transform:translateY(-4px);
box-shadow:0 15px 30px rgba(0,0,0,0.2);
}

/* Shimmer Animation */

.mentor-btn::before{

content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;

background:linear-gradient(
120deg,
transparent,
rgba(255,255,255,0.6),
transparent
);

animation:shine 3s infinite;

}

@keyframes shine{

0%{
left:-100%;
}

100%{
left:120%;
}

}

.image-frame img{
width:380px;
border-radius:14px;
display:block;
transition:transform 0.4s ease;
}

.image-frame:hover img{
transform:scale(1.05);
}

.mentor-btn:hover{
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

/* RESPONSIVE */

@media(max-width:900px){

.mentor-wrapper{
flex-direction:column;
text-align:center;
}

.image-frame img{
width:320px;
}

.mentor-stats{
justify-content:center;
}

}

/* CTA BUTTON */

.mentor-btn{
background:linear-gradient(90deg,#ffc107,#ffda54);
border:none;
padding:16px 32px;
font-size:16px;
font-weight:600;
border-radius:10px;
cursor:pointer;
position:relative;
animation:ring 2.5s infinite;
transition:all 0.3s ease;
}

/* Hover Effect */

.mentor-btn:hover{
transform:translateY(-4px);
box-shadow:0 15px 30px rgba(0,0,0,0.2);
}


/* RING ANIMATION */

@keyframes ring {

0% { transform: rotate(0); }
2% { transform: rotate(2deg); }
4% { transform: rotate(-2deg); }
6% { transform: rotate(2deg); }
8% { transform: rotate(-2deg); }
10% { transform: rotate(0); }

100% { transform: rotate(0); }

}

.mentor-btn::after{
content:"";
position:absolute;
top:0;
left:0;
right:0;
bottom:0;
border-radius:10px;
box-shadow:0 0 0 0 rgba(255,193,7,0.7);
animation:pulse 2s infinite;
}

@keyframes pulse {

0%{
box-shadow:0 0 0 0 rgba(255,193,7,0.7);
}

70%{
box-shadow:0 0 0 15px rgba(255,193,7,0);
}

100%{
box-shadow:0 0 0 0 rgba(255,193,7,0);
}

}

/* BATCH SECTION */

.batch-section{
background:linear-gradient(180deg,#071f3f,#020b18);
padding:100px 20px;
text-align:center;
color:white;
}

.batch-sub{
color:#aaa;
margin-bottom:10px;
font-size:15px;
letter-spacing:1px;
}

.batch-title{
font-size:36px;
margin-bottom:60px;
}

.batch-title span{
color:#ffc107;
}

/* GRID */

.batch-grid{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

/* CARD */

.batch-card{
border-radius:14px;
overflow:hidden;
position:relative;
box-shadow:0 20px 40px rgba(0,0,0,0.4);
transition:all 0.4s ease;
}

.batch-card img{
width:100%;
height:260px;
object-fit:cover;
transition:transform 0.6s ease;
}

/* HOVER EFFECT */

.batch-card:hover{
transform:translateY(-8px);
}

.batch-card:hover img{
transform:scale(1.08);
}

/* RESPONSIVE */

@media(max-width:900px){

.batch-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:500px){

.batch-grid{
grid-template-columns:1fr;
}

.batch-title{
font-size:28px;
}

}

/* DESKTOP FIXED CTA */

.fixed-cta{

position:fixed;
bottom:0;
left:0;
width:100%;

background:white;
padding:14px 20px;

box-shadow:0 -5px 20px rgba(0,0,0,0.15);

z-index:9999;

display:flex;
justify-content:center;
}

.cta-content{
display:flex;
align-items:center;
gap:20px;
}

.cta-text{
color:#333;
font-weight:500;
}

.cta-phone{

background:#ffc107;
padding:12px 20px;
border-radius:8px;

font-weight:600;
color:black;
text-decoration:none;

display:flex;
align-items:center;
gap:8px;

animation:ringPhone 2s infinite;

}

/* RING EFFECT */

@keyframes ringPhone{

0%{transform:rotate(0);}
5%{transform:rotate(4deg);}
10%{transform:rotate(-4deg);}
15%{transform:rotate(4deg);}
20%{transform:rotate(0);}
100%{transform:rotate(0);}

}

/* MOBILE CTA */

.mobile-cta{

display:none;

position:fixed;
bottom:0;
left:0;
width:100%;

z-index:9999;

}

/* CALL BUTTON */

.call-btn{

flex:1;
text-align:center;

background:#ffc107;
padding:16px;

font-weight:600;
color:black;
text-decoration:none;

}

/* WHATSAPP */

.whatsapp-btn{

flex:1;
text-align:center;

background:#25D366;
padding:16px;

color:white;
font-weight:600;
text-decoration:none;

}

/* MOBILE RESPONSIVE */

@media(max-width:768px){

.fixed-cta{
display:none;
}

.mobile-cta{
display:flex;
}

}



/* LEARN SECTION */

.learn-section{
background:#f5f7fb;
padding:110px 20px;
}

/* HEADER */

.learn-header{
text-align:center;
margin-bottom:80px;
}

.learn-badge{
background:#6c4bff;
color:white;
padding:8px 22px;
border-radius:30px;
font-size:14px;
font-weight:500;
}

.learn-title{
font-size:50px;
font-weight:700;
margin-top:18px;
color:#111;
}

/* GRID */

.learn-grid{
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:50px 80px;
}

/* ITEM */

.learn-item{
display:flex;
gap:22px;
align-items:flex-start;
padding-bottom:28px;
border-bottom:1px solid #e3e6ee;
}

/* ICON */

.learn-icon{

width:85px;
height:85px;

border-radius:50%;

background:#37e07a;

display:flex;
align-items:center;
justify-content:center;

font-size:30px;
color:#0b2e59;

box-shadow:0 8px 20px rgba(0,0,0,0.15);

border:6px solid #bff5d4;
}

/* TEXT */

.learn-content h3{
font-size:22px;
font-weight:600;
margin-bottom:6px;
color:#111;
}

.learn-content p{
font-size:15px;
color:#555;
line-height:1.6;
}

/* HOVER EFFECT */

.learn-item:hover .learn-icon{
transform:scale(1.1);
transition:0.3s;
}

/* RESPONSIVE */

@media(max-width:900px){

.learn-grid{
grid-template-columns:1fr;
gap:40px;
}

.learn-title{
font-size:36px;
}

}
/* CURRICULUM SECTION */

.curriculum-section{

background:linear-gradient(135deg,#ffc107,#ffd84d);

padding:100px 20px;

}

/* CONTAINER */

.curriculum-container{

max-width:1100px;

margin:auto;

display:flex;

align-items:center;

justify-content:space-between;

gap:60px;

flex-wrap:wrap;

}

/* LEFT TEXT */

.curriculum-left{

flex:1;

color:#111;

}

.curriculum-left h2{

font-size:42px;

font-weight:700;

margin-bottom:15px;

}

.curriculum-left p{

font-size:16px;

line-height:1.6;

max-width:450px;

}

/* FORM CARD */

.curriculum-form{

background:white;

padding:40px;

border-radius:14px;

box-shadow:0 20px 40px rgba(0,0,0,0.15);

max-width:420px;

width:100%;

}

/* INPUTS */

.curriculum-form input{

width:100%;

padding:14px;

margin-bottom:15px;

border:1px solid #ddd;

border-radius:8px;

font-size:15px;

}

/* BUTTON */

.curriculum-form button{

width:100%;

padding:15px;

border:none;

border-radius:8px;

background:#111;

color:white;

font-size:16px;

font-weight:600;

cursor:pointer;

transition:0.3s;

}

.curriculum-form button:hover{

transform:translateY(-2px);

box-shadow:0 10px 20px rgba(0,0,0,0.2);

}

/* RESPONSIVE */

@media(max-width:900px){

.curriculum-container{

flex-direction:column;

text-align:center;

}

.curriculum-left h2{

font-size:32px;

}

.curriculum-left p{

margin:auto;

}

}
/* RESULTS SECTION */

.results-section{

background:#f5f7fb;

padding:100px 20px;

text-align:center;

}

.results-sub{

color:#555;
margin-bottom:10px;

}

.results-title{

font-size:42px;
font-weight:700;
margin-bottom:50px;

}

.results-title span{
color:#ffc107;
}

/* STATS */

.results-stats{

display:flex;
justify-content:center;
gap:30px;
margin-bottom:60px;
flex-wrap:wrap;

}

.result-card{

background:white;
padding:35px 50px;

border-radius:14px;

box-shadow:0 15px 35px rgba(0,0,0,0.08);

}

.result-card h3{

font-size:40px;
color:#0b2e59;

}

.result-card p{
color:#555;
}

/* SLIDER */

.testimonial-slider{

position:relative;
max-width:1200px;
margin:auto;

}

.testimonial-track{

display:flex;
gap:20px;
overflow-x:auto;
scroll-behavior:smooth;

padding:10px;

}

/* CARD */

.testimonial-card{

position:relative;

min-width:260px;

height:450px;

border-radius:16px;

overflow:hidden;

box-shadow:0 15px 30px rgba(0,0,0,0.15);

}

.testimonial-card img{

width:100%;
height:100%;
object-fit:cover;

transition:0.4s;

}

.testimonial-card iframe{

position:absolute;
top:0;
left:0;

width:100%;
height:100%;

opacity:0;

transition:0.4s;

}

/* HOVER VIDEO */

.testimonial-card:hover img{
opacity:0;
}

.testimonial-card:hover iframe{
opacity:1;
}

/* SLIDER BUTTON */

.slider-btn{

position:absolute;
top:50%;

transform:translateY(-50%);

background:white;

border:none;

width:40px;
height:40px;

border-radius:50%;

box-shadow:0 10px 20px rgba(0,0,0,0.2);

cursor:pointer;

}

.slider-btn.left{
left:-20px;
}

.slider-btn.right{
right:-20px;
}

/* MOBILE */

@media(max-width:900px){

.results-title{
font-size:32px;
}

.result-card{
padding:25px;
}

}

.about-section{
padding:60px 10%;
background:#f8f8f8;
}

.about-container{
display:flex;
align-items:center;
gap:40px;
flex-wrap:wrap;
}

.about-image{
flex:1;
min-width:280px;
}

.about-image img{
width:100%;
border-radius:10px;
}

.about-content{
flex:1;
min-width:280px;
}

.about-content h2{
font-size:32px;
margin-bottom:20px;
}

.about-content p{
font-size:16px;
line-height:1.7;
margin-bottom:25px;
color:#555;
}

.contact-btn{
display:inline-block;
padding:12px 28px;
background:#007BFF;
color:white;
text-decoration:none;
border-radius:5px;
transition:0.3s;
}

.contact-btn:hover{
background:#0056b3;
}

/* Responsive */

@media(max-width:768px){

.about-container{
flex-direction:column;
text-align:center;
}

}

.footer {
  background: #111;
  color: #fff;
  padding: 40px 0 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px;
}

.footer h3 {
  margin-bottom: 15px;
}

.footer-about {
  flex: 1;
  min-width: 250px;
}

.logo {
  color: #ffcc00;
}

.footer-links {
  flex: 1;
  min-width: 200px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-links ul li a:hover {
  color: #fff;
}

.footer-social {
  flex: 1;
  min-width: 200px;
}

.social-icons a {
  display: block;
  margin-bottom: 8px;
  color: #ccc;
  text-decoration: none;
}

.social-icons a:hover {
  color: #ffcc00;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 14px;
  color: #aaa;
}





.courses{
    padding:60px 10%;
    text-align:center;
}

.courses h2{
    font-size:36px;
    margin-bottom:40px;
    color:#222;
}

/* Grid */

.course-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

/* Card */

.course-card{
    background:white;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    overflow:hidden;
    transition:0.3s;
}

.course-card:hover{
    transform:translateY(-10px);
}

/* Image */

.course-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

/* Content */

.course-content{
    padding:25px;
}

.course-content h3{
    color:#0f62fe;
    margin-bottom:15px;
}

.course-content p{
    color:#555;
    line-height:1.6;
}

/* Button */

.course-btn{
    display:inline-block;
    margin-top:20px;
    padding:10px 20px;
    background:#0f62fe;
    color:white;
    text-decoration:none;
    border-radius:6px;
    font-weight:bold;
}

.course-btn:hover{
    background:#084cdf;
}



/* CONTACT SECTION */

.contact{
padding:70px 10%;
background:linear-gradient(180deg,#071f3f,#020b18);
color:white;
}

.contact h2{
text-align:center;
font-size:36px;
margin-bottom:50px;
color:white;
}

.contact-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

/* Contact Info */

.contact-info{
background:#f5f7fb;
padding:30px;
border-radius:10px;
}

.contact-info h3{
color:#0f62fe;
margin-bottom:20px;
}

.contact-info p{
line-height:1.7;
color:#444;
}

/* Form */

.contact-form form{
display:flex;
flex-direction:column;
gap:15px;
}

.contact-form input,
.contact-form textarea{
padding:12px;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;
}

.contact-form textarea{
height:120px;
resize:none;
}

.contact-form button{
padding:12px;
background:#0f62fe;
color:white;
border:none;
border-radius:6px;
font-size:16px;
cursor:pointer;
}

.contact-form button:hover{
background:#084cdf;
}

/* Responsive */

@media(max-width:768px){

.contact-container{
grid-template-columns:1fr;
}

}

 .cta-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  z-index: 999;
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

/* BUTTONS */
.cta-btn {
  flex: 1;
  padding: 14px;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;font-size: 90%;
}

/* LEFT BUTTON */
.call-btn {
  background: #FFC107;
  color: #000;
}

/* RIGHT BUTTON */
.demo-btn {
  background: #25D366;
  color: #fff;
  position: relative;
}

 
