/* ===========================================================
   GOOGLE FONT & RESET
=========================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
    font-family:'Poppins',sans-serif;
}

/* ===========================================================
   COLOR VARIABLES
=========================================================== */

:root{

    --primary:#00E676;
    --secondary:#00C853;
    --darkgreen:#009245;
    --black:#111111;
    --white:#ffffff;
    --light:#f8f9fa;
    --border:#e5e7eb;
    --text:#555555;

}

/* ===========================================================
   BODY
=========================================================== */

body{

    background:var(--white);
    overflow-x:hidden;
    color:var(--black);

}

img{

    max-width:100%;
    height:auto;

}

/* ===========================================================
   CONTAINER
=========================================================== */

.container{

    width:90%;
    max-width:1300px;
    margin:auto;

}

/* ===========================================================
   TOP ANNOUNCEMENT BAR
=========================================================== */

.top-bar{

background:linear-gradient(90deg,#0f172a,#2563eb,#7c3aed,#06b6d4);

background-size:400% 400%;

animation:gradientMove 8s ease infinite;

padding:12px 0;

text-align:center;

overflow:hidden;

}

.top-bar p{

margin:0;

color:#fff;

font-size:17px;

font-weight:600;

transition:.4s;

animation:bounceText 1s infinite;

}

@keyframes gradientMove{

0%{

background-position:0% 50%;

}

50%{

background-position:100% 50%;

}

100%{

background-position:0% 50%;

}

}

@keyframes bounceText{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-5px);

}

}

/* ===========================================================
   HEADER
=========================================================== */

header{

    width:100%;
    position:sticky;
    top:0;
    left:0;
    background:#fff;
    z-index:999;
    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

/* ===========================================================
   HEADER CONTAINER
=========================================================== */

header .container{

    display:flex;
    align-items:center;
    justify-content:space-between;
    height:110px;

}

/* ===========================================================
   LOGO
=========================================================== */

/* ===========================================================
   LOGO
=========================================================== */

.logo{

display:flex;

align-items:center;

justify-content:flex-start;

flex:1;

}

.logo img{

height:120px;

width:auto;

display:block;

object-fit:contain;

cursor:pointer;

transition:.3s;

margin-left:-15px;

}

.logo img:hover{

transform:scale(1.05);

}

/* ===========================================================
   NAVIGATION
=========================================================== */
nav{

flex:2;

display:flex;

justify-content:center;

}
nav ul{

    display:flex;
    list-style:none;
    gap:40px;

}

nav ul li a{

    text-decoration:none;
    color:var(--black);
    font-size:16px;
    font-weight:600;
    position:relative;
    transition:.3s;

}

nav ul li a:hover{

    color:var(--secondary);

}

nav ul li a::after{

    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:3px;
    background:var(--secondary);
    border-radius:50px;
    transition:.3s;

}

nav ul li a:hover::after{

    width:100%;

}

/* ===========================================================
   LOGIN BUTTON
=========================================================== */

.login-btn{

    display:flex;
    align-items:center;
    gap:8px;

    text-decoration:none;

    padding:13px 28px;

    color:#fff;

    background:linear-gradient(135deg,#00E676,#009245);

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.login-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(0,200,83,.35);

}

/* ===========================================================
   MOBILE MENU
=========================================================== */

.menu-btn{

    display:none;
    font-size:28px;
    cursor:pointer;
    color:var(--black);

}

/* ===========================================================
   RESPONSIVE
=========================================================== */

@media(max-width:992px){

    nav{

        display:none;

    }

    .menu-btn{

        display:block;

    }

    .header-buttons{

flex:1;

display:flex;

justify-content:flex-end;

}

    .logo img{

        height:50px;

    }

}
@media(max-width:768px){

    .top-bar{

        font-size:12px;
        padding:8px;

    }

    header .container{

        height:100px;

    }

}
/* ===========================================================
   HERO SECTION
=========================================================== */

.hero{

    padding:120px 0 80px;
    background:linear-gradient(to right,#ffffff,#f5fff8);

}

.hero-container{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;

}

.hero-content{

    flex:1;

}

.hero-badge{

    display:inline-block;

    background:#e9fff2;

    color:#009245;

    padding:10px 20px;

    border-radius:50px;

    font-weight:600;

    margin-bottom:25px;

}

.hero h1{

    font-size:58px;

    line-height:1.2;

    color:#111;

    margin-bottom:25px;

}

.hero h1 span{

    color:#00C853;

}

.hero p{

    font-size:18px;

    color:#555;

    line-height:1.8;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:50px;

}

.primary-btn{

    background:#00C853;

    color:#fff;

    text-decoration:none;

    padding:16px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.primary-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 30px rgba(0,200,83,.35);

}

.secondary-btn{

    border:2px solid #00C853;

    color:#00C853;

    text-decoration:none;

    padding:16px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.secondary-btn:hover{

    background:#00C853;

    color:#fff;

}

.hero-stats{

    display:flex;

    gap:60px;

}

.hero-stats h2{

    color:#00C853;

    font-size:34px;

}

.hero-stats p{

    margin-top:5px;

    font-size:15px;

    margin-bottom:0;

}

.hero-image{

    flex:1;

    text-align:right;

}

.hero-image img{

    width:100%;

    max-width:600px;

    border-radius:25px;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

    transition:.4s;

}

.hero-image img:hover{

    transform:scale(1.02);

}

/* ===========================================================
   HERO RESPONSIVE
=========================================================== */

@media(max-width:992px){

.hero-container{

flex-direction:column;

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.hero-stats{

justify-content:center;

}

.hero-image{

text-align:center;

}

.hero h1{

font-size:42px;

}

}

@media(max-width:576px){

.hero{

padding:90px 0 60px;

}

.hero h1{

font-size:34px;

}

.hero p{

font-size:16px;

}

.hero-stats{

gap:25px;

flex-wrap:wrap;

}

.hero-buttons{

flex-direction:column;

}

.primary-btn,
.secondary-btn{

text-align:center;

}

}
/* ===========================================================
   ABOUT SECTION
=========================================================== */

.about{

    padding:110px 0;

    background:#ffffff;

}

.about-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:70px;

}

.about-image{

    flex:1;

}

.about-image img{

    width:100%;

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.10);

    transition:.4s;

}

.about-image img:hover{

    transform:scale(1.02);

}

.about-content{

    flex:1;

}

.section-tag{

    display:inline-block;

    background:#e9fff2;

    color:#009245;

    padding:10px 22px;

    border-radius:50px;

    font-weight:600;

    margin-bottom:20px;

}

.about-content h2{

    font-size:42px;

    line-height:1.3;

    margin-bottom:25px;

}

.about-content h2 span{

    color:#00C853;

}

.about-content p{

    color:#555;

    line-height:1.9;

    margin-bottom:20px;

    font-size:17px;

}

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin:35px 0;

}

.about-features div{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

}

.about-features i{

    color:#00C853;

    font-size:20px;

}

.about-btn{

    display:inline-block;

    padding:15px 35px;

    border-radius:50px;

    background:#00C853;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.about-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 30px rgba(0,200,83,.35);

}

/* ===========================================================
   ABOUT RESPONSIVE
=========================================================== */

@media(max-width:992px){

.about-container{

flex-direction:column;

}

.about-content{

text-align:center;

}

.about-features{

grid-template-columns:1fr;

}

.about-btn{

margin:auto;

display:inline-block;

}

}
/* ===========================================================
   WHY CHOOSE US
=========================================================== */

.why-choose{

    padding:110px 0;

    background:#f8f9fa;

}

.section-title{

    text-align:center;

    max-width:760px;

    margin:auto auto 70px;

}

.section-title span{

    color:#00C853;

    font-weight:700;

    letter-spacing:1px;

}

.section-title h2{

    font-size:42px;

    margin:20px 0;

    color:#111;

}

.section-title h2 span{

    color:#00C853;

}

.section-title p{

    color:#666;

    line-height:1.8;

    font-size:17px;

}

.choose-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.choose-card{

    background:#fff;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    transition:.4s;

    border:1px solid #e5e7eb;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.choose-card:hover{

    transform:translateY(-12px);

    border-color:#00C853;

    box-shadow:0 20px 45px rgba(0,200,83,.18);

}

.choose-card i{

    width:80px;

    height:80px;

    line-height:80px;

    border-radius:50%;

    background:#e9fff2;

    color:#00C853;

    font-size:32px;

    margin-bottom:25px;

}

.choose-card h3{

    font-size:22px;

    margin-bottom:15px;

    color:#111;

}

.choose-card p{

    color:#666;

    line-height:1.8;

    font-size:15px;

}

/* ===========================================================
   RESPONSIVE
=========================================================== */

@media(max-width:992px){

.choose-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.choose-grid{

grid-template-columns:1fr;

}

.section-title h2{

font-size:32px;

}

}
/* ===========================================================
FEATURED COURSES
=========================================================== */

.featured-courses{

padding:110px 0;
background:#fff;

}

.course-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}

.course-card{

background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 35px rgba(0,0,0,.08);
transition:.35s;

}

.course-card:hover{

transform:translateY(-10px);

}

.course-card img{

width:100%;
height:220px;
object-fit:cover;

}

.course-content{

padding:30px;

}

.course-category{

display:inline-block;
background:#e9fff2;
color:#00C853;
padding:8px 18px;
border-radius:30px;
font-size:14px;
font-weight:600;

}

.course-content h3{

margin:20px 0 15px;
font-size:25px;

}

.course-content p{

line-height:1.8;
color:#666;

}

.course-info{

display:flex;
justify-content:space-between;
margin:25px 0;
font-weight:600;

}

.course-info i{

color:#00C853;

}

.course-btn{

display:block;
text-align:center;
padding:14px;
background:#00C853;
color:#fff;
text-decoration:none;
border-radius:10px;
font-weight:600;

}

/* ===========================================================
LEARNING PROCESS
=========================================================== */

.process{

padding:110px 0;
background:#f8f9fa;

}

.process-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;

}

.process-card{

background:#fff;
padding:40px 25px;
text-align:center;
border-radius:20px;
position:relative;
transition:.35s;
box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.process-card:hover{

transform:translateY(-10px);

}

.process-number{

position:absolute;
top:-15px;
left:50%;
transform:translateX(-50%);
width:45px;
height:45px;
background:#00C853;
color:#fff;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-weight:bold;

}

.process-card i{

font-size:42px;
color:#00C853;
margin:30px 0 20px;

}

.process-card h3{

margin-bottom:15px;

}

.process-card p{

color:#666;
line-height:1.8;

}

@media(max-width:992px){

.course-grid,
.process-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.course-grid,
.process-grid{

grid-template-columns:1fr;

}

}
/* ===========================================================
ACHIEVEMENTS
=========================================================== */

.achievement,
.testimonials,
.faq,
.contact{
padding:110px 0;
}

.achievement{
background:#fff;
}

.achievement-grid,
.testimonial-grid,
.contact-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.achievement-card,
.contact-card{
background:#fff;
padding:40px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 35px rgba(0,0,0,.08);
transition:.35s;
}

.achievement-card:hover,
.contact-card:hover{
transform:translateY(-10px);
}

.achievement-card i,
.contact-card i{
font-size:45px;
color:#00C853;
margin-bottom:20px;
}

.achievement-card h2{
font-size:38px;
margin-bottom:10px;
}

/* ===========================================================
TESTIMONIALS
=========================================================== */

.testimonials{
background:#f8f9fa;
}

.testimonial-grid{
grid-template-columns:repeat(3,1fr);
}

.testimonial-card{
background:#fff;
padding:35px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.35s;
}

.testimonial-card:hover{
transform:translateY(-10px);
}

.testimonial-card i{
font-size:35px;
color:#00C853;
margin-bottom:20px;
}

.testimonial-card p{
line-height:1.8;
color:#666;
margin-bottom:20px;
}

.testimonial-card h3{
margin-bottom:5px;
}

/* ===========================================================
FAQ
=========================================================== */

.faq-box{
max-width:900px;
margin:auto;
}

.faq-item{
background:#fff;
padding:30px;
margin-bottom:20px;
border-radius:15px;
box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.faq-item h3{
margin-bottom:12px;
color:#00C853;
}

.faq-item p{
line-height:1.8;
color:#666;
}

/* ===========================================================
CONTACT
=========================================================== */

.contact{
background:#f8f9fa;
}

/* ===========================================================
RESPONSIVE
=========================================================== */

@media(max-width:992px){

.achievement-grid,
.contact-grid{
grid-template-columns:repeat(2,1fr);
}

.testimonial-grid{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

.achievement-grid,
.contact-grid{
grid-template-columns:1fr;
}

}
/* ===========================================================
GOOGLE MAP
=========================================================== */

.map-section iframe{

width:100%;

height:450px;

border:none;

}

/* ===========================================================
FOOTER
=========================================================== */

footer{

background:#111;

color:#fff;

padding:80px 0 20px;

}

.footer-container{

display:grid;

grid-template-columns:2fr 1fr 1fr 1fr;

gap:50px;

}

.footer-box img{

width:160px;

margin-bottom:20px;

background:#fff;

padding:10px;

border-radius:10px;

}

.footer-box p{

line-height:1.8;

color:#ddd;

margin-bottom:15px;

}

.footer-box h3{

margin-bottom:25px;

}

.footer-box ul{

list-style:none;

}

.footer-box ul li{

margin-bottom:12px;

}

.footer-box ul li a{

color:#ddd;

text-decoration:none;

transition:.3s;

}

.footer-box ul li a:hover{

color:#00E676;

}

.social-icons{

display:flex;

gap:15px;

margin-top:20px;

}

.social-icons a{

width:45px;

height:45px;

display:flex;

justify-content:center;

align-items:center;

background:#00C853;

color:#fff;

border-radius:50%;

text-decoration:none;

transition:.3s;

}

.social-icons a:hover{

transform:translateY(-5px);

}

.copyright{

margin-top:60px;

padding-top:20px;

border-top:1px solid rgba(255,255,255,.1);

text-align:center;

color:#bbb;

}

/* ===========================================================
LIVE CHAT
=========================================================== */

.live-chat{
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;

    box-shadow: 0 10px 25px rgba(0,0,0,.25);
    transition: 0.3s;
    animation: floatWhatsapp 2.5s ease-in-out infinite,
               pulseWhatsapp 2s infinite;
}

.live-chat:hover{
    transform: scale(1.15);
}
/* ===========================================================
CALL BUTTON
=========================================================== */

.call-btn{

    position: fixed;

    right: 25px;

    bottom: 100px;

    width: 60px;

    height: 60px;

    background: #0d6efd;

    color: white;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    text-decoration: none;

    font-size: 26px;

    box-shadow: 0 10px 25px rgba(0,0,0,.25);

    transition: 0.3s;

    animation: floatWhatsapp 2.5s ease-in-out infinite,
               pulseWhatsapp 2s infinite;

    z-index: 999;

}

.call-btn:hover{

    transform: scale(1.15);

    color: white;

}
/* ===========================================================
SCROLL TOP
=========================================================== */

.scroll-top{

position:fixed;

right:25px;

bottom:15px;

width:55px;

height:55px;

background:#111;

color:#fff;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

text-decoration:none;

font-size:22px;

transition:.3s;

z-index:999;

}

.scroll-top:hover{

background:#00C853;

}

/* ===========================================================
RESPONSIVE
=========================================================== */

@media(max-width:992px){

.footer-container{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.footer-container{

grid-template-columns:1fr;

text-align:center;

}

.social-icons{

justify-content:center;

}

}
/* ===========================================================
POPULAR COURSES
=========================================================== */

.popular-courses{

padding:110px 0;

background:#ffffff;

}

.courses-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:60px;

}

.course-box{

background:#fff;

padding:35px;

border-radius:20px;

text-align:center;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.35s;

border:1px solid #e5e7eb;

}

.course-box:hover{

transform:translateY(-10px);

box-shadow:0 20px 45px rgba(0,200,83,.15);

border-color:#00C853;

}

.course-box i{

font-size:55px;

color:#00C853;

margin-bottom:25px;

}

.course-box h3{

font-size:24px;

margin-bottom:18px;

}

.course-box p{

color:#666;

line-height:1.8;

margin-bottom:25px;

}

.course-box a{

text-decoration:none;

color:#00C853;

font-weight:600;

}

.course-box a:hover{

color:#009245;

}

@media(max-width:992px){

.courses-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.courses-grid{

grid-template-columns:1fr;

}

}
/* ===========================================================
PLACEMENT PARTNERS
=========================================================== */

.placement-partners{

padding:110px 0;

background:#f8f9fa;

}

.company-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:60px;

}

.company-card{

background:#fff;

height:140px;

display:flex;

justify-content:center;

align-items:center;

border-radius:18px;

box-shadow:0 8px 25px rgba(0,0,0,.08);

transition:.35s;

}

.company-card:hover{

transform:translateY(-8px);

box-shadow:0 18px 40px rgba(0,200,83,.18);

}

.company-card img{

max-width:150px;

max-height:70px;

object-fit:contain;

filter:grayscale(100%);

transition:.35s;

}

.company-card:hover img{

filter:grayscale(0%);

transform:scale(1.08);

}

@media(max-width:992px){

.company-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.company-grid{

grid-template-columns:1fr;

}

}
/* ===========================================================
STUDENT TESTIMONIALS
=========================================================== */

.student-testimonials{

padding:110px 0;

background:#ffffff;

}

.testimonial-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:60px;

}

.testimonial-card{

background:#fff;

padding:40px 30px;

text-align:center;

border-radius:20px;

box-shadow:0 10px 35px rgba(0,0,0,.08);

transition:.35s;

}

.testimonial-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 45px rgba(0,200,83,.18);

}

.testimonial-card img{

width:100px;

height:100px;

border-radius:50%;

object-fit:cover;

margin-bottom:20px;

border:4px solid #00C853;

}

.testimonial-card h3{

font-size:24px;

margin-bottom:8px;

}

.testimonial-card h5{

color:#00C853;

font-size:16px;

margin-bottom:15px;

font-weight:600;

}

.stars{

margin-bottom:20px;

color:#FFD700;

font-size:18px;

}

.testimonial-card p{

color:#666;

line-height:1.8;

font-size:15px;

}

@media(max-width:992px){

.testimonial-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.testimonial-grid{

grid-template-columns:1fr;

}

}
/* ===========================================================
CALL TO ACTION
=========================================================== */

.cta-section{

padding:100px 0;

background:linear-gradient(135deg,#00C853,#009245);

}

.cta-box{

max-width:900px;

margin:auto;

text-align:center;

color:#fff;

}

.cta-box h2{

font-size:46px;

margin-bottom:20px;

font-weight:700;

}

.cta-box p{

font-size:18px;

line-height:1.8;

margin-bottom:40px;

opacity:.95;

}

.cta-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.cta-section .primary-btn{

background:#fff;

color:#00C853;

}

.cta-section .primary-btn:hover{

background:#f5f5f5;

}

.cta-section .secondary-btn{

border:2px solid #fff;

color:#fff;

}

.cta-section .secondary-btn:hover{

background:#fff;

color:#00C853;

}

@media(max-width:768px){

.cta-box h2{

font-size:34px;

}

.cta-box p{

font-size:16px;

}

.cta-buttons{

flex-direction:column;

align-items:center;

}

}
/* ===========================================================
WHAT YOU'LL GET
=========================================================== */

.features-section{

padding:110px 0;

background:#ffffff;

}

.features-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:60px;

}

.feature-card{

background:#fff;

padding:35px;

text-align:center;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.35s;

border:1px solid #e5e7eb;

}

.feature-card:hover{

transform:translateY(-10px);

border-color:#00C853;

box-shadow:0 20px 40px rgba(0,200,83,.15);

}

.feature-card i{

font-size:50px;

color:#00C853;

margin-bottom:25px;

}

.feature-card h3{

margin-bottom:15px;

font-size:22px;

}

.feature-card p{

color:#666;

line-height:1.8;

}

@media(max-width:992px){

.features-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.features-grid{

grid-template-columns:1fr;

}

}
/* Floating Animation */

@keyframes floatWhatsapp{

    0%,100%{
        transform: translateY(0);
    }

    50%{
        transform: translateY(-10px);
    }

}

/* Pulse Animation */

@keyframes pulseWhatsapp{

    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.7);
    }

    70%{
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }

}
/* ===========================
WELCOME POPUP
=========================== */

.popup-overlay{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.6);

    display:flex;
    justify-content:center;
    align-items:center;

    z-index:9999;

}

.popup-box{

    width:420px;
    max-width:90%;
    background:#fff;
    border-radius:18px;
    padding:35px;
    text-align:center;
    position:relative;

    animation:popupShow .5s ease;

}

.popup-box h2{

    color:#00b14f;
    margin-bottom:15px;

}

.popup-box p{

    color:#555;
    line-height:1.6;

}

.popup-box ul{

    text-align:left;
    margin:20px 0;
    padding-left:20px;

}

.popup-box li{

    margin:10px 0;

}

.popup-buttons{

    display:flex;
    gap:15px;
    justify-content:center;
    margin-top:25px;

}

.popup-login,
.popup-signup{

    padding:12px 25px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;

}

.popup-login{

    background:#00b14f;
    color:#fff;

}

.popup-signup{

    background:#111;
    color:#fff;

}

.close-popup{

    position:absolute;
    top:12px;
    right:18px;
    border:none;
    background:none;
    font-size:28px;
    cursor:pointer;

}

@keyframes popupShow{

    from{

        opacity:0;
        transform:scale(.8);

    }

    to{

        opacity:1;
        transform:scale(1);

    }

}
/* ========================================================= */
/* LOGIN POPUP */
/* ========================================================= */

.login-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;

    opacity:0;
    visibility:hidden;
    transition:.4s;
}

.login-popup.show{
    opacity:1;
    visibility:visible;
}

.popup-box{

    width:420px;
    max-width:90%;

    background:#fff;
    border-radius:20px;
    padding:35px;

    text-align:center;

    position:relative;

    animation:bounceIn .8s ease;

    box-shadow:0 20px 60px rgba(0,0,0,.25);

}

.popup-icon{

    width:90px;
    height:90px;

    margin:auto;

    background:#0d6efd;
    color:#fff;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:40px;

    animation:floatIcon 2s ease-in-out infinite;

}

.popup-box h2{

    margin:20px 0 15px;

}

.popup-box p{

    color:#555;
    line-height:1.8;

}

.popup-buttons{

    margin-top:30px;

    display:flex;
    gap:15px;
    justify-content:center;

}

.popup-buttons a{

    text-decoration:none;
    padding:13px 30px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;

}

.popup-login{

    background:#0d6efd;
    color:white;

}

.popup-signup{

    background:#28a745;
    color:white;

}

.popup-buttons a:hover{

    transform:translateY(-4px);

}

.close-popup{

    position:absolute;
    top:15px;
    right:15px;

    border:none;
    background:none;

    font-size:22px;
    cursor:pointer;

}

/* Bounce Animation */

@keyframes bounceIn{

0%{
transform:scale(.3) translateY(-250px);
opacity:0;
}

50%{
transform:scale(1.08) translateY(30px);
opacity:1;
}

70%{
transform:scale(.96) translateY(-12px);
}

100%{
transform:scale(1) translateY(0);
}

}

/* Floating Animation */

@keyframes floatIcon{

0%,100%{
transform:translateY(0);
}

50%{
transform:translateY(-10px);
}

}
/* ===========================
PROFILE DROPDOWN
=========================== */

.profile-dropdown{
    position:relative;
    display:inline-block;
}

.profile-btn{
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#00C853;
    color:#fff;
    font-size:26px;
    cursor:pointer;
}

.dropdown-content{
    position:absolute;
    top:65px;
    right:0;
    min-width:170px;
    background:#fff;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    display:none;
    overflow:hidden;
}

.profile-dropdown:hover .dropdown-content{
    display:block;
}

.dropdown-content a{
    display:block;
    padding:15px;
    color:#111;
    text-decoration:none;
    font-weight:600;
    text-decoration:none;
}

.dropdown-content a:hover{
    background:#f5f5f5;
}
/* ===========================================================
   MOBILE NAV DROPDOWN
=========================================================== */

@media(max-width:992px){

nav{

    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    box-shadow:0 15px 25px rgba(0,0,0,.12);
    padding:20px 0;

}

nav.active{

    display:flex;

}

nav ul{

    flex-direction:column;
    align-items:center;
    gap:20px;

}

}

/* ===========================================================
   TOP BAR MOBILE FONT FIX
=========================================================== */

@media(max-width:768px){

.top-bar p{

    font-size:12px;

}

}