/* ===========================
   GOOGLE FONT
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fb;
    padding-top:80px;
    overflow-x:hidden;
}

/* ===========================
NAVBAR
=========================== */

.navbar{

    background:rgba(8,15,36,.92)!important;

    backdrop-filter:blur(20px);

    box-shadow:0 8px 30px rgba(0,0,0,.15);

}

.navbar-brand{

display:flex;

align-items:center;

}

.navbar-brand img{

width:52px;

height:52px;

border-radius:50%;

border:3px solid rgba(255,255,255,.15);

}

.navbar-brand h4{

color:#fff;

font-weight:700;

margin:0;

}

.navbar-brand small{

color:#fbbf24;

font-size:14px;

}

.nav-link{

color:white!important;

margin-left:18px;

font-weight:500;

position:relative;

transition:.3s;

}

.nav-link:hover{

color:#fbbf24!important;

}

.nav-link::after{

content:"";

position:absolute;

left:0;

bottom:-6px;

width:0;

height:2px;

background:#f97316;

transition:.3s;

}

.nav-link:hover::after{

width:100%;

}

/* ===========================
HERO
=========================== */

.hero{

min-height:90vh;

display:flex;

align-items:center;

position:relative;

overflow:hidden;

background:linear-gradient(
135deg,
#0f172a 0%,
#1e3a8a 45%,
#2563eb 100%
);

color:white;

}

/* background circles */

.hero::before{

content:"";

position:absolute;

width:550px;

height:550px;

background:rgba(255,255,255,.05);

border-radius:50%;

top:-220px;

right:-180px;

}

.hero::after{

content:"";

position:absolute;

width:420px;

height:420px;

background:rgba(255,255,255,.04);

border-radius:50%;

bottom:-180px;

left:-180px;

}

.hero h1{

font-size:70px;

font-weight:800;

line-height:1.15;

}

.hero h1 span{

color:#fbbf24;

}

.hero p{

font-size:20px;

color:#dbeafe;

line-height:1.8;

}

.badge{

padding:12px 20px;

font-size:15px;

border-radius:50px;

}

.hero-logo{
    width:420px;
    height:420px;
    object-fit:cover;

    border-radius:50%;

    background:#ffffff;
    padding:20px;

    border:8px solid rgba(255,255,255,0.15);

    box-shadow:0 20px 50px rgba(0,0,0,.35);

    animation:float 4s ease-in-out infinite;
}
/* ===========================
BUTTONS
=========================== */

.btn-orange{

background:#f97316;

border:none;

color:white;

padding:14px 34px;

font-weight:600;

border-radius:12px;

transition:.3s;

}

.btn-orange:hover{

background:#ea580c;

transform:translateY(-4px);

box-shadow:0 15px 30px rgba(249,115,22,.35);

color:white;

}

.btn-outline-light{

padding:14px 34px;

border-radius:12px;

transition:.3s;

}

.btn-outline-light:hover{

background:white;

color:#1e3a8a;

}

/* ===========================
COUNTER
=========================== */

.hero h2{

font-size:42px;

font-weight:700;

color:#fbbf24;

}

.hero .col-4 p{

color:#dbeafe;

}

/* ===========================
SECTION
=========================== */

section{

padding:90px 0;

}

/* ===========================
ABOUT SECTION
=========================== */

.about-section{
    background:#f8fafc;
}

.about-section h2{
    font-size:48px;
    font-weight:800;
    color:#0f172a;
}

.about-section h2 span{
    color:#2563eb;
}

.about-section h3{
    font-size:34px;
    font-weight:700;
    color:#0f172a;
}

.about-section p{
    font-size:18px;
    color:#555;
    line-height:1.8;
}

.about-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.about-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(37,99,235,.20);
}

.about-card h1{
    font-size:45px;
    font-weight:800;
    color:#2563eb;
}

.about-card p{
    margin-top:10px;
    font-weight:600;
    color:#444;
}
.about-section{
    background:linear-gradient(to bottom,#ffffff,#f8fbff);
}

.about-card{
    background:white;
    border-radius:20px;
    padding:35px;
    text-align:center;
    transition:.4s;
    border:1px solid #e5e7eb;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.about-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(37,99,235,.20);
}

.about-card h1{
    font-size:48px;
    font-weight:800;
    color:#2563eb;
}

.about-card p{
    color:#666;
    font-weight:600;
}

.about-section h2 span{
    color:#2563eb;
}

.about-section h3{
    color:#0f172a;
}

/* ===========================
COURSES
=========================== */

#courses{

background:#eef4ff;

}

.card{

border:none;

border-radius:20px;

transition:.35s;

overflow:hidden;

}

.card:hover{

transform:translateY(-10px);

box-shadow:0 20px 50px rgba(0,0,0,.15);

}

table td{

vertical-align:middle;

padding:16px;

}

table th{

padding:16px;

}

.btn-success{

border-radius:8px;

font-weight:500;

}

/* ===========================
HEADING
=========================== */

h2{

font-weight:700;

}

/* ===========================
RESPONSIVE
=========================== */

@media(max-width:992px){

.hero{

text-align:center;

}

.hero h1{

font-size:48px;

}

.hero-logo{

margin-top:50px;

width:280px;

}

.navbar-brand small{

display:none;

}

}

@media(max-width:576px){

.hero h1{

font-size:38px;

}

.hero p{

font-size:17px;

}

.hero-logo{

width:220px;

}

}
.course-box{
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border-top:6px solid #1d4ed8;
}

.course-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
    border-bottom:1px solid #ddd;
}

.course-name{
    font-weight:600;
}

.course-duration{
    font-size:14px;
    color:#666;
}

.course-price{
    color:#111827;
    font-size:20px;
    font-weight:700;
}
.apply-btn{
    display:inline-block;
    background:#f97316;
    color:#fff;
    padding:10px 18px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.apply-btn:hover{
    background:#ea580c;
    color:#fff;
    transform:translateY(-2px);
}
/* ===========================
WHY CHOOSE US
=========================== */

.why-section{

background:#ffffff;

}

.why-section h2{

font-size:46px;

font-weight:800;

color:#111827;

}

.why-section span{

 color:#1d4ed8;

}

.why-card{

background:#fff;

padding:35px;

border-radius:20px;

text-align:center;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.4s;

height:100%;

border-top:5px solid #1d4ed8;

}

.why-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.icon{

font-size:55px;

margin-bottom:20px;

}

.why-card h4{

font-weight:700;

margin-bottom:15px;

}

.why-card p{

color:#666;

line-height:1.7;

}
/* ===========================
GALLERY
=========================== */

.gallery-section{

background:#f8fafc;

}

.gallery-section h2{

font-size:46px;

font-weight:800;

color:#111827;

}

.gallery-section span{

color:#2563eb;

}

.gallery-card{

overflow:hidden;

border-radius:18px;

box-shadow:0 10px 30px rgba(0,0,0,.12);

}

.gallery-img{

width:100%;

height:260px;

object-fit:cover;

transition:.4s;

cursor:pointer;

}

.gallery-img:hover{

transform:scale(1.08);

}
/* GLightbox Fullscreen */

.gslide-image img{
    max-width:95vw !important;
    max-height:95vh !important;
    width:auto !important;
    height:auto !important;
}

.goverlay{
    background:rgba(0,0,0,0.95) !important;
}
/* ===========================
CONTACT
=========================== */

.contact-section{

background:#ffffff;

}

.contact-section h2{

font-size:46px;

font-weight:800;

}

.contact-section span{

color:#2563eb;

}

.contact-box{

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

height:100%;

border-top:5px solid #2563eb;

}

.contact-box h3{

margin-bottom:25px;

font-weight:700;

}

.contact-box p{

font-size:17px;

line-height:1.8;

color:#555;

}

/*==========================================
        PREMIUM FOOTER V2
==========================================*/

.premium-footer{
    position:relative;
    overflow:hidden;
    background:linear-gradient(-45deg,#020617,#0f172a,#1e3a8a,#312e81);
    background-size:400% 400%;
    animation:gradientMove 12s ease infinite;
    color:#fff;
    padding-top:120px;
    padding-bottom:40px;
}

@keyframes gradientMove{

0%{
background-position:0% 50%;
}

50%{
background-position:100% 50%;
}

100%{
background-position:0% 50%;
}

}

/* Wave */

.footer-wave{

position:absolute;

top:0;

left:0;

width:100%;

line-height:0;

}

.footer-wave svg{

display:block;

width:100%;

height:120px;

}

/* Animated Blobs */

.footer-bg{

position:absolute;

inset:0;

overflow:hidden;

pointer-events:none;

}

.blob{

position:absolute;

border-radius:50%;

filter:blur(80px);

opacity:.35;

animation:floatBlob 15s infinite ease-in-out;

}

.blob1{

width:260px;
height:260px;

background:#3b82f6;

top:10%;
left:5%;

}

.blob2{

width:300px;
height:300px;

background:#9333ea;

right:10%;
top:20%;

animation-delay:4s;

}

.blob3{

width:220px;
height:220px;

background:#06b6d4;

bottom:0;
left:40%;

animation-delay:8s;

}

@keyframes floatBlob{

0%{

transform:translateY(0) scale(1);

}

50%{

transform:translateY(-30px) scale(1.15);

}

100%{

transform:translateY(0) scale(1);

}

}

/* Logo */

.footer-logo{

width:90px;

background:#fff;

padding:10px;

border-radius:50%;

box-shadow:0 10px 30px rgba(255,255,255,.2);

}

/* Glass Cards */

.glass-card{

background:rgba(255,255,255,.08);

border:1px solid rgba(255,255,255,.15);

backdrop-filter:blur(15px);

border-radius:20px;

padding:25px;

height:100%;

transition:.4s;

}

.glass-card:hover{

transform:translateY(-10px);

background:rgba(255,255,255,.12);

}

/* Links */

.glass-card ul{

list-style:none;

padding:0;

margin:0;

}

.glass-card ul li{

margin:14px 0;

}

.glass-card ul li a{

color:#e2e8f0;

text-decoration:none;

transition:.3s;

}

.glass-card ul li a:hover{

color:#38bdf8;

padding-left:8px;

}

/* WhatsApp Button */

.footer-btn{

display:inline-block;

margin-top:20px;

padding:12px 28px;

background:#25D366;

color:white;

text-decoration:none;

border-radius:40px;

font-weight:bold;

transition:.3s;

box-shadow:0 10px 25px rgba(37,211,102,.4);

}

.footer-btn:hover{

transform:translateY(-4px);

background:#1ebe5d;

color:#fff;

}

/* Social */

.social-icons{

margin-bottom:20px;

}

.social-icons a{

display:inline-flex;

align-items:center;

justify-content:center;

width:50px;

height:50px;

margin:0 10px;

border-radius:50%;

background:rgba(255,255,255,.08);

color:white;

font-size:24px;

transition:.4s;

}

.social-icons a:hover{

background:#38bdf8;

transform:rotate(360deg) scale(1.1);

}

/* Footer Bottom */

.footer-bottom{

text-align:center;

margin-top:40px;

}

.footer-bottom p{

color:#cbd5e1;

margin:8px 0;

}

/* Responsive */

@media(max-width:991px){

.premium-footer{

text-align:center;

padding-top:90px;

}

.glass-card{

margin-top:20px;

}

.footer-logo{

margin:auto;

display:block;

}

}
.footer-phone{
    color:#ffffff;
    text-decoration:none;
    transition:.3s;
}

.footer-phone:hover{
    color:#25D366;
    text-decoration:underline;
}
.footer-email{
    color:#ffffff;
    text-decoration:none;
    transition:0.3s;
}

.footer-email:hover{
    color:#38bdf8;
    text-decoration:underline;
}
.footer-location{
    color:#ffffff;
    text-decoration:none;
    transition:.3s;
}

.footer-location:hover{
    color:#facc15;
    text-decoration:underline;
}
/* ==========================
   FLOATING WHATSAPP
========================== */

.whatsapp-container{
    position:fixed;
    bottom:25px;
    right:25px;
    z-index:99999;
}

.whatsapp-text{
    position:absolute;
    right:80px;
    top:50%;
    transform:translateY(-50%);
    background:#25D366;
    color:#fff;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    white-space:nowrap;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    box-shadow:0 8px 20px rgba(0,0,0,.2);
}

.whatsapp-container:hover .whatsapp-text{
    opacity:1;
    visibility:visible;
}

.whatsapp-btn{
    width:65px;
    height:65px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:34px;
    box-shadow:0 10px 25px rgba(0,0,0,.3);
    transition:.3s;
}

.whatsapp-btn:hover{
    transform:scale(1.1);
    color:#fff;
}
.contact-link{
    color:#212529;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
    cursor:pointer;
}

.contact-link:hover{
    color:#25D366;
    text-decoration:underline;
}

/* ===========================
   ABOUT FEATURE CARDS
=========================== */

.about-card{
    background:#fff;
    padding:35px 30px;
    border-radius:20px;
    text-align:center;
    height:100%;
    border-top:5px solid #2563eb;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:all .35s ease;
}

.about-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.about-icon{
    width:80px;
    height:80px;
    margin:0 auto 20px;
    background:#eaf3ff;
    color:#2563eb;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    transition:.35s;
}

.about-card:hover .about-icon{
    background:#2563eb;
    color:#fff;
    transform:rotate(10deg) scale(1.08);
}

.about-card h3{
    font-size:24px;
    font-weight:700;
    color:#111827;
    margin-bottom:15px;
}

.about-card p{
    font-size:15px;
    color:#6b7280;
    line-height:1.7;
    margin:0;
}
/* ===== Section Title ===== */

.section-title{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    margin-bottom:25px;
}

.section-title h2{
    margin:0;
    font-size:48px;
    font-weight:800;
    letter-spacing:2px;
    color:#0d6efd;
    text-transform:uppercase;
}

.title-line{
    width:90px;
    height:4px;
    background:linear-gradient(90deg,#0d6efd,#38bdf8);
    border-radius:50px;
}

@media(max-width:768px){

.section-title h2{
    font-size:34px;
}

.title-line{
    width:45px;
}

}

/*=========================================
        PREMIUM CONTACT SECTION
=========================================*/

.contact-section{
    background:linear-gradient(to bottom,#f8fbff,#eef5ff);
    padding:90px 0;
}

.contact-box{
    background:#ffffff;
    border-radius:25px;
    padding:35px;
    height:100%;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s ease;
}

.contact-box:hover{
    transform:translateY(-6px);
    box-shadow:0 25px 50px rgba(37,99,235,.15);
}

.contact-title{
    font-size:32px;
    font-weight:700;
    color:#111827;
    margin-bottom:10px;
}

.contact-subtitle{
    color:#6b7280;
    line-height:1.8;
    margin-bottom:30px;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
}

.contact-icon{
    width:60px;
    height:60px;
    min-width:60px;
    border-radius:18px;
    background:linear-gradient(135deg,#2563eb,#3b82f6);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
    transition:.35s;
}

.contact-item:hover .contact-icon{
    transform:rotate(-8deg) scale(1.08);
}

.contact-item h5{
    font-size:20px;
    font-weight:700;
    margin-bottom:8px;
    color:#111827;
}

.contact-item p{
    margin:0;
    color:#6b7280;
    line-height:1.7;
}

.contact-link{
    color:#6b7280;
    text-decoration:none;
    line-height:1.7;
    transition:.3s;
}

.contact-link:hover{
    color:#2563eb;
}

.contact-box hr{
    margin:25px 0;
    opacity:.12;
}

/* Map */

.contact-box iframe{
    border-radius:20px;
    transition:.35s;
}

.contact-box:hover iframe{
    transform:scale(1.01);
}
/* ===========================
        GALLERY SECTION
=========================== */

.gallery-section{
    padding:80px 0;
    background:linear-gradient(135deg,#f8fbff,#eef5ff);
}

.gallery-section h2{
    font-size:42px;
    font-weight:800;
    color:#0d3b66;
}

.gallery-section h2 span{
    color:#0d6efd;
}

.gallery-section p{
    font-size:18px;
    color:#6c757d;
}

/* Category Heading */

.gallery-title{
    display:inline-block;
    padding:12px 30px;
    background:linear-gradient(45deg,#0d6efd,#00b4ff);
    color:#fff;
    border-radius:50px;
    font-size:28px;
    font-weight:700;
    margin:40px 0 25px;
    box-shadow:0 10px 25px rgba(13,110,253,.25);
}

/* Gallery Card */

.gallery-card{
    overflow:hidden;
    border-radius:18px;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.10);
    transition:.4s;
}

.gallery-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.gallery-img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.5s;
}

.gallery-card:hover .gallery-img{
    transform:scale(1.08);
}
