/*==================================================
 YOUR ENGLISH MENTOR
 STYLE.CSS - PART 1
 Reset + Variables + Theme Engine + Navbar
==================================================*/

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==============================
RESET
==============================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;
    line-height:1.7;
    transition:.35s;
}

/*==============================
THEME VARIABLES
==============================*/

:root{

    --primary:#350b6d;
    --secondary:#FFC107;

    --dark:#1b063d;
    --light:#ffffff;

    --text:#333333;
    --gray:#777777;

    --bg:#F5F7FB;
    --card:#ffffff;

    --border:#e8e8e8;

    --radius:18px;

    --shadow:0 12px 30px rgba(0,0,0,.08);

    --shadow-hover:0 18px 40px rgba(0,0,0,.14);

}

/*==============================
COLOR THEMES
==============================*/

body.theme-blue{

    --primary:#0B5ED7;
    --secondary:#FFC107;
    --dark:#083b88;

}

body.theme-green{

    --primary:#198754;
    --secondary:#B4E197;
    --dark:#0b4d2f;

}

body.theme-red{

    --primary:#DC3545;
    --secondary:#FFD166;
    --dark:#82131d;

}

body.theme-purple{

    --primary:#6F42C1;
    --secondary:#FFC107;
    --dark:#3f2274;

}

body.theme-orange{

    --primary:#F97316;
    --secondary:#FFE082;
    --dark:#b45309;

}

/*==============================
COMMON
==============================*/

a{

    text-decoration:none;

    transition:.3s;

}

img{

    max-width:100%;

    display:block;

}

section{

    padding:90px 0;

}

.section-title{

    font-size:44px;

    font-weight:800;

    color:var(--primary);

    margin-bottom:15px;

}

.section-subtitle{

    color:var(--gray);

    max-width:700px;

    margin:auto;

}

.sub-heading{

    display:inline-block;

    background:var(--secondary);

    color:#000;

    padding:8px 20px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    margin-bottom:15px;

}

.shadow-box{

    background:var(--card);

    border-radius:var(--radius);

    box-shadow:var(--shadow);

}

/*==============================
BUTTONS
==============================*/

.btn{

    border-radius:50px;

    padding:14px 34px;

    font-weight:600;

    transition:.3s;

}

.btn-primary{

    background:var(--primary);

    border:none;

}

.btn-primary:hover{

    background:var(--dark);

    transform:translateY(-3px);

}

.btn-warning{

    background:var(--secondary);

    border:none;

}

.btn-warning:hover{

    transform:translateY(-3px);

}

/*==============================
TOP BAR
==============================*/

.top-bar{

    background:var(--dark);

    color:var(--light);

    padding:8px 0;

    font-size:14px;

}

.top-bar i{

    color:var(--secondary);

}

.social-icons a{

    color:var(--light);

    margin-left:15px;

}

.social-icons a:hover{

    color:var(--secondary);

}

/*==============================
NAVBAR
==============================*/

.custom-navbar{
    background:var(--primary);
}

.custom-navbar .nav-link{
    color:#fff;
}

.custom-navbar .navbar-toggler{
    border-color:#fff;
}

.custom-navbar .navbar-toggler-icon{
    filter:invert(1);
}


.custom-navbar{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--dark)
    );

    padding:15px 0;

    transition:.35s;

    box-shadow:0 5px 20px rgba(0,0,0,.12);

}

.navbar-brand img{

    max-height:65px;

}

.brand-text{

    margin-left:10px;

}

.brand-text h4{

    color:#fff;

    font-weight:700;

    margin:0;

}

.brand-text small{

    color:var(--secondary);

}

.nav-link{

    color:#fff !important;

    margin:0 12px;

    font-weight:500;

    position:relative;

}

.nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--secondary);

    transition:.3s;

}

.nav-link:hover{

    color:var(--secondary)!important;

}

.nav-link:hover::after{

    width:100%;

}

/*==============================
THEME SWITCHER
==============================*/

.theme-switcher{

    display:flex;

    align-items:center;

    gap:8px;

    margin-left:20px;

}

.theme-switcher span{

    color:#fff;

    font-size:14px;

    font-weight:600;

}

.theme-color{

    width:22px;

    height:22px;

    border-radius:50%;

    cursor:pointer;

    border:2px solid #fff;

    transition:.3s;

}

.theme-color:hover{

    transform:scale(1.2);

}

.theme-color.blue{

    background:#0B5ED7;

}

.theme-color.green{

    background:#198754;

}

.theme-color.red{

    background:#DC3545;

}

.theme-color.purple{

    background:#6F42C1;

}

.theme-color.orange{

    background:#F97316;

}

/*==============================
UTILITY
==============================*/

.text-primary{

    color:var(--primary)!important;

}

.text-secondary{

    color:var(--secondary)!important;

}

.bg-primary{

    background:var(--primary)!important;

}

.bg-secondary{

    background:var(--secondary)!important;

}

/*==================================================
 YOUR ENGLISH MENTOR
 STYLE.CSS - PART 2
 Hero + Slider
==================================================*/

/*==============================
HERO SECTION
==============================*/

.hero{

    position:relative;

    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    var(--primary),
    var(--dark)
    );

    color:var(--light);

    padding:100px 0;

}

.hero::before{

    content:"";

    position:absolute;

    top:-120px;

    right:-120px;

    width:380px;

    height:380px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

}

.hero::after{

    content:"";

    position:absolute;

    bottom:-150px;

    left:-150px;

    width:450px;

    height:450px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

}

.hero .container{

    position:relative;

    z-index:2;

}

.hero-tag{

    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(255,255,255,.15);

    font-weight:600;

    margin-bottom:25px;

}

.hero h1{

    font-size:58px;

    font-weight:800;

    line-height:1.2;

    margin-bottom:20px;

}

.hero h1 span{

    color:var(--secondary);

}

.hero p{

    font-size:18px;

    opacity:.95;

    max-width:600px;

    margin-bottom:35px;

}

.hero-buttons .btn{

    margin-right:15px;

    margin-bottom:15px;

}

.hero-buttons .btn-outline-light{

    border:2px solid #fff;

    color:#fff;

}

.hero-buttons .btn-outline-light:hover{

    background:#fff;

    color:var(--primary);

}

/*==============================
HERO IMAGE
==============================*/

.hero-image{

    max-width:100%;

    animation:floatImage 4s ease-in-out infinite;

    filter:drop-shadow(0 25px 45px rgba(0,0,0,.30));

}

@keyframes floatImage{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0);

    }

}

/*==============================
HERO FEATURES
==============================*/

.hero-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:45px;

}

.hero-feature{

    display:flex;

    align-items:center;

    gap:15px;

    padding:18px;

    border-radius:15px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(6px);

}

.hero-feature i{

    font-size:26px;

    color:var(--secondary);

}

.hero-feature h6{

    margin:0;

    color:#fff;

    font-weight:600;

}

/*==============================
HERO COUNTER
==============================*/

.hero-counter{

    display:flex;

    gap:40px;

    margin-top:40px;

}

.hero-counter h2{

    color:var(--secondary);

    font-size:36px;

    font-weight:800;

    margin:0;

}

.hero-counter p{

    margin:0;

    font-size:15px;

}

/*==============================
SLIDER SECTION
==============================*/

.slider-section{

    background:var(--bg);

    padding:50px 0;

}

#mainSlider{

    border-radius:20px;

    overflow:hidden;

    box-shadow:var(--shadow);

}

#mainSlider img{

    width:100%;

    height:520px;

    object-fit:cover;

}

/*==============================
SLIDER CAPTION
==============================*/

.carousel-caption{

    left:8%;

    right:auto;

    bottom:18%;

    text-align:left;

}

.carousel-caption h2{

    font-size:48px;

    font-weight:800;

    text-shadow:0 5px 20px rgba(0,0,0,.40);

}

.carousel-caption p{

    font-size:18px;

    max-width:500px;

}

.carousel-caption .btn{

    margin-top:15px;

}

/*==============================
CAROUSEL CONTROL
==============================*/

.carousel-control-prev-icon,

.carousel-control-next-icon{

    width:55px;

    height:55px;

    border-radius:50%;

    background-color:rgba(0,0,0,.35);

    background-size:55%;

}

.carousel-indicators [data-bs-target]{

    width:12px;

    height:12px;

    border-radius:50%;

    background:var(--secondary);

}

/*==============================
SCROLL DOWN
==============================*/

.scroll-down{

    position:absolute;

    left:50%;

    bottom:25px;

    transform:translateX(-50%);

    color:#fff;

    font-size:28px;

    animation:scrollDown 1.6s infinite;

}

@keyframes scrollDown{

    0%{

        transform:translate(-50%,0);

        opacity:1;

    }

    100%{

        transform:translate(-50%,20px);

        opacity:0;

    }

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:991px){

.hero{

text-align:center;

padding:80px 0;

}

.hero h1{

font-size:42px;

}

.hero-image{

margin-top:40px;

}

.hero-features{

grid-template-columns:1fr;

}

.hero-counter{

justify-content:center;

}

.carousel-caption{

left:5%;

bottom:12%;

}

.carousel-caption h2{

font-size:34px;

}

#mainSlider img{

height:350px;

}

}

@media(max-width:576px){

.hero{

padding:70px 0;

}

.hero h1{

font-size:30px;

}

.hero p{

font-size:16px;

}

.hero-counter{

flex-direction:column;

gap:20px;

}

.carousel-caption{

display:none;

}

#mainSlider img{

height:220px;

}

}

/*==================================================
 YOUR ENGLISH MENTOR
 STYLE.CSS - PART 3A
 About + Features
==================================================*/

/*==============================
ABOUT SECTION
==============================*/

.about{
    background:var(--light);
    position:relative;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
}

.about-badge{
    position:absolute;
    right:-20px;
    bottom:30px;

    background:var(--primary);
    color:var(--light);

    padding:18px 22px;

    border-radius:15px;

    box-shadow:var(--shadow);
}

.about-badge h3{
    margin:0;
    font-size:32px;
    font-weight:800;
}

.about-badge p{
    margin:0;
    font-size:14px;
}

.about-content h2{
    color:var(--primary);
    font-size:44px;
    font-weight:800;
    margin-bottom:20px;
}

.about-content p{
    color:var(--gray);
    margin-bottom:20px;
    line-height:1.9;
}

.about-list{
    list-style:none;
    padding:0;
    margin:30px 0;
}

.about-list li{

    display:flex;
    align-items:center;

    margin-bottom:18px;

    color:var(--text);

    font-weight:500;
}

.about-list i{

    width:42px;
    height:42px;

    background:var(--primary);

    color:var(--light);

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-right:15px;

    flex-shrink:0;
}

.about-btn{

    margin-top:20px;

}

/*==============================
FEATURE SECTION
==============================*/

.features{

    background:var(--bg);

}

.feature-box{

    background:var(--card);

    border-radius:var(--radius);

    padding:35px 25px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

    height:100%;

    border:1px solid var(--border);

}

.feature-box:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-hover);

}

.feature-icon{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--dark)
    );

    display:flex;

    align-items:center;

    justify-content:center;

    color:var(--light);

    font-size:34px;

}

.feature-box h4{

    font-size:24px;

    font-weight:700;

    color:var(--primary);

    margin-bottom:15px;

}

.feature-box p{

    color:var(--gray);

    margin-bottom:0;

}

/*==============================
FEATURE NUMBER
==============================*/

.feature-number{

    position:absolute;

    top:20px;

    right:20px;

    font-size:42px;

    font-weight:800;

    color:rgba(0,0,0,.05);

}

/*==============================
FEATURE HOVER BORDER
==============================*/

.feature-box{

    position:relative;

    overflow:hidden;

}

.feature-box::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:0;

    height:4px;

    background:var(--secondary);

    transition:.35s;

}

.feature-box:hover::before{

    width:100%;

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:991px){

.about{

text-align:center;

}

.about-image{

margin-bottom:40px;

}

.about-badge{

position:static;

display:inline-block;

margin-top:20px;

}

.about-list li{

justify-content:center;

text-align:left;

}

}

@media(max-width:576px){

.about-content h2{

font-size:32px;

}

.feature-box{

padding:25px;

}

.feature-icon{

width:75px;

height:75px;

font-size:28px;

}

}

/*==================================================
 YOUR ENGLISH MENTOR
 STYLE.CSS - PART 3B
 Courses + Why Choose Us + Counter + Results
==================================================*/

/*==============================
COURSES
==============================*/

.courses{
    background:var(--light);
}

.course-card{
    background:var(--card);
    border-radius:var(--radius);
    padding:35px;
    box-shadow:var(--shadow);
    border:1px solid var(--border);
    transition:.35s;
    height:100%;
    position:relative;
    overflow:hidden;
}

.course-card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow-hover);
}

.course-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,var(--primary),var(--secondary));
}

.course-icon{
    width:90px;
    height:90px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--primary),var(--dark));
    color:var(--light);
    font-size:34px;
    margin-bottom:25px;
}

.course-card h3{
    color:var(--primary);
    font-weight:700;
    margin-bottom:15px;
}

.course-card p{
    color:var(--gray);
}

.course-card ul{
    list-style:none;
    padding:0;
    margin:25px 0;
}

.course-card ul li{
    margin-bottom:12px;
    color:var(--text);
}

.course-card ul i{
    color:var(--secondary);
    margin-right:10px;
}

/*==============================
WHY CHOOSE US
==============================*/

.why-us{
    background:var(--bg);
}

.why-box{
    background:var(--card);
    border-radius:var(--radius);
    padding:30px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.35s;
    border:1px solid var(--border);
    height:100%;
}

.why-box:hover{
    background:var(--primary);
    color:var(--light);
    transform:translateY(-10px);
}

.why-box i{
    font-size:42px;
    color:var(--secondary);
    margin-bottom:20px;
}

.why-box:hover i{
    color:var(--light);
}

.why-box h4{
    font-weight:700;
    margin-bottom:15px;
}

.why-box p{
    color:inherit;
}

/*==============================
COUNTER
==============================*/

.counter-section{
    background:linear-gradient(135deg,var(--primary),var(--dark));
    color:var(--light);
}

.counter-box{
    text-align:center;
}

.counter-box h2{
    color:var(--secondary);
    font-size:52px;
    font-weight:800;
}

.counter-box p{
    margin-top:10px;
    font-size:18px;
}

/*==============================
RESULTS
==============================*/

.results{
    background:var(--light);
}

.result-card{
    background:var(--card);
    border-radius:var(--radius);
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.35s;
    border:1px solid var(--border);
}

.result-card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow-hover);
}

.result-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.result-content{
    padding:25px;
}

.result-content h4{
    color:var(--primary);
    font-weight:700;
}

.result-content span{
    display:inline-block;
    margin-top:10px;
    color:var(--secondary);
    font-weight:600;
}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:768px){

.course-card,
.why-box,
.result-card{

margin-bottom:30px;

}

.counter-box{

margin-bottom:30px;

}

.counter-box h2{

font-size:40px;

}

}

/*==================================================
 YOUR ENGLISH MENTOR
 STYLE.CSS - PART 4A
 Testimonials + Gallery
==================================================*/

/*==================================
TESTIMONIAL SECTION
==================================*/

.testimonials{
    background:var(--bg);
    position:relative;
}

.testimonial-card{

    background:var(--card);

    border-radius:var(--radius);

    padding:35px;

    box-shadow:var(--shadow);

    transition:.35s;

    border:1px solid var(--border);

    text-align:center;

    height:100%;

    position:relative;

    overflow:hidden;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-hover);

}

.testimonial-card::before{

    content:"❝";

    position:absolute;

    top:10px;

    left:25px;

    font-size:90px;

    color:rgba(0,0,0,.05);

    font-family:serif;

}

.student-img{

    width:100px;

    height:100px;

    border-radius:50%;

    object-fit:cover;

    border:5px solid var(--secondary);

    margin:0 auto 20px;

}

.testimonial-card h4{

    color:var(--primary);

    font-weight:700;

    margin-bottom:5px;

}

.testimonial-card span{

    color:var(--secondary);

    font-size:15px;

    font-weight:600;

}

.testimonial-card p{

    color:var(--gray);

    margin-top:20px;

    line-height:1.8;

}

.rating{

    margin-top:20px;

}

.rating i{

    color:var(--secondary);

    margin:0 2px;

}

/*==================================
GALLERY
==================================*/

.gallery{

    background:var(--light);

}

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    cursor:pointer;

}

.gallery-item img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.45s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-overlay{

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.55);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    transition:.35s;

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}

.gallery-overlay i{

    width:65px;

    height:65px;

    border-radius:50%;

    background:var(--secondary);

    color:#000;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    transition:.35s;

}

.gallery-overlay i:hover{

    transform:rotate(180deg);

}

/*==================================
VIDEO GALLERY
==================================*/

.video-card{

    border-radius:var(--radius);

    overflow:hidden;

    box-shadow:var(--shadow);

    background:var(--card);

}

.video-card iframe{

    width:100%;

    height:250px;

    border:0;

}

.video-content{

    padding:20px;

}

.video-content h5{

    color:var(--primary);

    font-weight:700;

}

.video-content p{

    color:var(--gray);

    margin-bottom:0;

}

/*==================================
PHOTO FILTER
==================================*/

.gallery-filter{

    text-align:center;

    margin-bottom:40px;

}

.gallery-filter button{

    border:none;

    background:var(--card);

    color:var(--primary);

    padding:12px 25px;

    margin:5px;

    border-radius:50px;

    box-shadow:var(--shadow);

    transition:.3s;

    font-weight:600;

}

.gallery-filter button:hover,

.gallery-filter button.active{

    background:var(--primary);

    color:var(--light);

}

/*==================================
RESPONSIVE
==================================*/

@media(max-width:768px){

.testimonial-card{

padding:25px;

}

.student-img{

width:80px;

height:80px;

}

.gallery-item img{

height:220px;

}

.video-card iframe{

height:220px;

}

}

/*==================================================
 YOUR ENGLISH MENTOR
 STYLE.CSS - PART 4B1
 Demo Form + FAQ
==================================================*/

/*==============================
DEMO REGISTRATION
==============================*/

.demo-section{
    background:var(--bg);
    position:relative;
}

.demo-box{
    background:var(--card);
    border-radius:var(--radius);
    padding:45px;
    box-shadow:var(--shadow);
    border:1px solid var(--border);
}

.demo-box h2{
    color:var(--primary);
    font-size:38px;
    font-weight:800;
    margin-bottom:15px;
}

.demo-box p{
    color:var(--gray);
    margin-bottom:30px;
}

.demo-form .form-label{
    font-weight:600;
    color:var(--text);
}

.demo-form .form-control,
.demo-form .form-select{
    height:56px;
    border-radius:12px;
    border:1px solid var(--border);
    background:var(--light);
    transition:.3s;
}

.demo-form textarea.form-control{
    height:140px;
    resize:none;
}

.demo-form .form-control:focus,
.demo-form .form-select:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 .2rem rgba(53,11,109,.15);
}

.demo-form .btn{
    width:100%;
    height:56px;
    font-size:17px;
    font-weight:700;
}

/*==============================
FORM INFO BOX
==============================*/

.demo-info{
    background:linear-gradient(135deg,var(--primary),var(--dark));
    color:var(--light);
    border-radius:var(--radius);
    padding:40px;
    height:100%;
}

.demo-info h3{
    font-weight:700;
    margin-bottom:20px;
}

.demo-info ul{
    list-style:none;
    padding:0;
    margin:0;
}

.demo-info li{
    margin-bottom:18px;
    display:flex;
    align-items:center;
}

.demo-info i{
    width:42px;
    height:42px;
    border-radius:50%;
    background:var(--secondary);
    color:#000;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-right:15px;
}

/*==============================
FAQ SECTION
==============================*/

.faq{
    background:var(--light);
}

.accordion-item{
    border:none;
    border-radius:var(--radius)!important;
    overflow:hidden;
    margin-bottom:18px;
    box-shadow:var(--shadow);
}

.accordion-button{
    background:var(--card);
    color:var(--text);
    font-weight:600;
    padding:20px;
}

.accordion-button:focus{
    box-shadow:none;
}

.accordion-button:not(.collapsed){
    background:var(--primary);
    color:var(--light);
}

.accordion-body{
    padding:20px;
    color:var(--gray);
    line-height:1.8;
}

/*==============================
FAQ CONTACT BOX
==============================*/

.faq-contact{
    margin-top:40px;
    background:var(--primary);
    color:var(--light);
    padding:35px;
    border-radius:var(--radius);
    text-align:center;
}

.faq-contact h4{
    font-weight:700;
    margin-bottom:15px;
}

.faq-contact p{
    margin-bottom:25px;
    opacity:.95;
}

.faq-contact .btn{
    background:var(--secondary);
    color:#000;
    font-weight:700;
}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:991px){

.demo-box,
.demo-info{

margin-bottom:30px;

}

}

@media(max-width:576px){

.demo-box{

padding:25px;

}

.demo-info{

padding:25px;

}

.demo-box h2{

font-size:28px;

}

.accordion-button{

padding:16px;

}

}

/*==================================================
 YOUR ENGLISH MENTOR
 STYLE.CSS - PART 4B2
 Contact + YouTube + Google Map
==================================================*/

/*==============================
CONTACT SECTION
==============================*/

.contact{
    background:var(--light);
    position:relative;
}

.contact-box{
    background:var(--card);
    border-radius:var(--radius);
    padding:35px;
    box-shadow:var(--shadow);
    border:1px solid var(--border);
    height:100%;
    transition:.35s;
}

.contact-box:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-hover);
}

.contact-icon{
    width:75px;
    height:75px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary),var(--dark));
    color:var(--light);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    margin-bottom:20px;
}

.contact-box h4{
    color:var(--primary);
    font-weight:700;
    margin-bottom:15px;
}

.contact-box p{
    color:var(--gray);
    margin-bottom:8px;
}

.contact-box a{
    color:var(--text);
    transition:.3s;
}

.contact-box a:hover{
    color:var(--primary);
}

/*==============================
CONTACT FORM
==============================*/

.contact-form{

    background:var(--card);

    border-radius:var(--radius);

    padding:40px;

    box-shadow:var(--shadow);

    border:1px solid var(--border);

}

.contact-form .form-control,
.contact-form .form-select{

    height:55px;

    border-radius:12px;

    border:1px solid var(--border);

}

.contact-form textarea.form-control{

    height:150px;

    resize:none;

}

.contact-form .form-control:focus,
.contact-form .form-select:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 .2rem rgba(53,11,109,.15);

}

.contact-form button{

    height:55px;

    font-weight:700;

}

/*==============================
YOUTUBE SECTION
==============================*/

.youtube-section{

    background:var(--bg);

}

.video-box{

    overflow:hidden;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    border:1px solid var(--border);

}

.video-box iframe{

    width:100%;

    height:500px;

    border:0;

}

.video-info{

    margin-top:25px;

}

.video-info h3{

    color:var(--primary);

    font-weight:700;

}

.video-info p{

    color:var(--gray);

    margin-top:10px;

}

/*==============================
LIVE BADGE
==============================*/

.live-badge{

    display:inline-block;

    background:#ff0000;

    color:#fff;

    padding:8px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    margin-bottom:20px;

    animation:livePulse 1.2s infinite;

}

@keyframes livePulse{

0%{

transform:scale(1);

opacity:1;

}

50%{

transform:scale(1.08);

opacity:.8;

}

100%{

transform:scale(1);

opacity:1;

}

}

/*==============================
GOOGLE MAP
==============================*/

.map-section{

    background:var(--light);

}

.map-box{

    overflow:hidden;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    border:1px solid var(--border);

}

.map-box iframe{

    width:100%;

    height:450px;

    border:0;

}

/*==============================
LOCATION CARD
==============================*/

.location-card{

    margin-top:35px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--dark)
    );

    color:var(--light);

    border-radius:var(--radius);

    padding:30px;

}

.location-card h4{

    font-weight:700;

    margin-bottom:20px;

}

.location-card ul{

    list-style:none;

    padding:0;

    margin:0;

}

.location-card li{

    display:flex;

    align-items:flex-start;

    margin-bottom:18px;

}

.location-card i{

    color:var(--secondary);

    margin-right:15px;

    margin-top:5px;

    font-size:18px;

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:991px){

.contact-box{

margin-bottom:30px;

}

.video-box iframe{

height:380px;

}

.contact-form{

margin-top:30px;

}

}

@media(max-width:768px){

.video-box iframe{

height:280px;

}

.map-box iframe{

height:300px;

}

.contact-form{

padding:25px;

}

.location-card{

padding:25px;

}

.contact-icon{

width:65px;

height:65px;

font-size:24px;

}

}

/*==================================================
 YOUR ENGLISH MENTOR
 STYLE.CSS - PART 4C
 Footer + Floating Buttons + Loader +
 Scroll Top + Theme Switcher + Responsive
==================================================*/

/*==============================
FOOTER
==============================*/

.footer{
    background:var(--dark);
    color:var(--light);
    padding:70px 0 20px;
}

.footer-logo img{
    max-height:70px;
    margin-bottom:20px;
}

.footer h4,
.footer h5{
    color:var(--secondary);
    font-weight:700;
    margin-bottom:20px;
}

.footer p{
    color:#d8d8d8;
    line-height:1.9;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#ddd;
    transition:.3s;
}

.footer-links a:hover{
    color:var(--secondary);
    padding-left:8px;
}

.footer-contact li{
    list-style:none;
    margin-bottom:15px;
    display:flex;
    align-items:flex-start;
}

.footer-contact i{
    color:var(--secondary);
    margin-right:12px;
    margin-top:5px;
}

.footer-social{
    margin-top:25px;
}

.footer-social a{
    width:45px;
    height:45px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    margin-right:10px;
    transition:.35s;
}

.footer-social a:hover{
    background:var(--secondary);
    color:#000;
    transform:translateY(-5px);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.10);
    margin-top:40px;
    padding-top:20px;
    text-align:center;
    color:#bbb;
}

/*==============================
WHATSAPP
==============================*/

.floating-whatsapp{

    position:fixed;

    right:20px;

    bottom:95px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    z-index:999;

    box-shadow:var(--shadow);

    transition:.3s;

}

.floating-whatsapp:hover{

    transform:scale(1.08);

    color:#fff;

}

/*==============================
CALL BUTTON
==============================*/

.floating-call{

    position:fixed;

    right:20px;

    bottom:20px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:26px;

    z-index:999;

    transition:.3s;

    box-shadow:var(--shadow);

}

.floating-call:hover{

    background:var(--secondary);

    color:#000;

}

/*==============================
SCROLL TO TOP
==============================*/

#scrollTop{

    position:fixed;

    left:20px;

    bottom:20px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:none;

    cursor:pointer;

    z-index:999;

    transition:.35s;

}

#scrollTop:hover{

    background:var(--secondary);

    color:#000;

}

/*==============================
LOADER
==============================*/

#loader{

    position:fixed;

    left:0;

    top:0;

    width:100%;

    height:100%;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:999999;

}

.loader-circle{

    width:70px;

    height:70px;

    border-radius:50%;

    border:6px solid #eee;

    border-top:6px solid var(--primary);

    animation:loaderSpin 1s linear infinite;

}

@keyframes loaderSpin{

    100%{

        transform:rotate(360deg);

    }

}

/*==============================
THEME SWITCHER
==============================*/

.theme-switcher{

    display:flex;

    align-items:center;

    gap:8px;

}

.theme-btn{

    width:22px;

    height:22px;

    border-radius:50%;

    cursor:pointer;

    border:2px solid #fff;

    transition:.3s;

}

.theme-btn:hover{

    transform:scale(1.2);

}

.theme-blue{
    background:#0d6efd;
}

.theme-green{
    background:#198754;
}

.theme-red{
    background:#dc3545;
}

.theme-purple{
    background:#6f42c1;
}

.theme-orange{
    background:#fd7e14;
}

/*==============================
UTILITY
==============================*/

.radius{
    border-radius:var(--radius);
}

.shadow-box{
    box-shadow:var(--shadow);
}

.bg-theme{
    background:var(--primary);
}

.text-theme{
    color:var(--primary);
}

/*==============================
ANIMATION
==============================*/

.fade-up{

    animation:fadeUp .8s ease;

}

@keyframes fadeUp{

0%{

opacity:0;

transform:translateY(40px);

}

100%{

opacity:1;

transform:translateY(0);

}

}

.zoom{

animation:zoomIn .6s ease;

}

@keyframes zoomIn{

0%{

transform:scale(.8);

opacity:0;

}

100%{

transform:scale(1);

opacity:1;

}

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:992px){

.footer{

text-align:center;

}

.footer-contact li{

justify-content:center;

}

.footer-social{

margin-bottom:25px;

}

}

@media(max-width:768px){

.floating-call,
.floating-whatsapp{

width:55px;

height:55px;

font-size:24px;

}

#scrollTop{

width:50px;

height:50px;

}

.theme-switcher{

justify-content:center;

margin-top:20px;

}

}

@media(max-width:576px){

.footer{

padding:50px 0 20px;

}

.footer h4{

font-size:22px;

}

.footer h5{

font-size:18px;

}

.footer-logo img{

max-height:55px;

}

}

/*==============================
PRINT
==============================*/

@media print{

.navbar,
.footer,
.floating-call,
.floating-whatsapp,
#scrollTop{

display:none !important;

}

body{

background:#fff;

}

}