:root{
  --blue:#0A66C2;
  --navy:#071B34;
  --orange:#F47B20;
  --light:#F8FAFC;
  --dark:#0F172A;
}

*{
  scroll-behavior:smooth;
}

body{
  font-family:Segoe UI, Arial, sans-serif;
  background:var(--light);
  color:var(--dark);
  overflow-x:hidden;
}

.navbar{
  background:rgba(7,27,52,.85);
  backdrop-filter:blur(15px);
}

.navbar-brand{
  color:#fff!important;
  font-weight:800;
}

.nav-link{
  color:#eaf4ff!important;
  font-weight:500;
}

.btn-main{
  background:linear-gradient(135deg,var(--blue),var(--orange));
  color:#fff;
  border:none;
  border-radius:50px;
  padding:12px 28px;
  font-weight:700;
  transition:.3s;
}

.btn-main:hover{
  transform:translateY(-4px);
  color:#fff;
}


/* HERO SECTION */


.glass-card{
  background:rgba(255, 255, 255, 0.12);
  border:1px solid rgba(255,255,255,.25);
  backdrop-filter:blur(20px);

  border-radius:20px;

  padding:25px;

  box-shadow:
  0 20px 50px rgba(0,0,0,.25);
}

.glass-card h3{
  font-size:1.7rem;
  margin-bottom:15px;
}

.glass-card h5{
  font-size:1rem;
  margin-bottom:12px;
}

@media(max-width:768px){

.hero{
  min-height:60vh;
  padding-top:100px;
  padding-bottom:50px;
}

.hero h1{
  font-size:2.3rem;
}

.hero p{
  font-size:1rem;
}

}

/* ==========================
   PREMIUM HERO SECTION
========================== */

.hero{
    min-height:70vh;
    padding-top:120px;
    padding-bottom:80px;

    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;

    background:
    linear-gradient(
        135deg,
        #071B34 0%,
        #0A66C2 40%,
        #1E88E5 70%,
        #F47B20 100%
    );

    color:#fff;
}

/* Blue Glow */
.hero::before{
    content:"";
    position:absolute;

    width:600px;
    height:600px;

    top:-200px;
    left:-150px;

    background:rgba(10,102,194,.35);

    border-radius:50%;
    filter:blur(120px);
}

/* Orange Glow */
.hero::after{
    content:"";
    position:absolute;

    width:500px;
    height:500px;

    bottom:-200px;
    right:-150px;

    background:rgba(244,123,32,.30);

    border-radius:50%;
    filter:blur(120px);
}

/* Floating Circle 1 */
.hero-circle-1{
    position:absolute;
    width:250px;
    height:250px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:15%;
    right:20%;

    animation:float 8s ease-in-out infinite;
}

/* Floating Circle 2 */
.hero-circle-2{
    position:absolute;
    width:180px;
    height:180px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    bottom:10%;
    left:10%;

    animation:float 10s ease-in-out infinite;
}

.hero h1{
    font-size:clamp(2.5rem,5vw,4rem);
    font-weight:900;
    line-height:1.1;
    margin-bottom:20px;
}

.hero p{
    font-size:1.1rem;
    color:#e6f1ff;
    max-width:650px;
}

.glass-card{
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.20);

    border-radius:20px;
    padding:25px;

    box-shadow:
    0 20px 60px rgba(0,0,0,.25);
}

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-25px);
    }
}

@media(max-width:768px){

.hero{
    min-height:60vh;
}

.hero h1{
    font-size:2.2rem;
}

}

.hero::before{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  background:rgba(244,123,32,.25);
  border-radius:50%;
  filter:blur(90px);
  top:10%;
  right:-100px;
}

.hero h1{
  font-size:clamp(2.5rem,6vw,5rem);
  font-weight:900;
}

.hero p{
  font-size:1.2rem;
  color:#dbeafe;
}

.glass-card{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.25);
  backdrop-filter:blur(20px);
  border-radius:20px;
  padding:30px;
  box-shadow:0 25px 60px rgba(0,0,0,.25);
}

.floating-icon{
  position:absolute;
  font-size:3rem;
  color:rgba(255,255,255,.15);
  animation:float 6s ease-in-out infinite;
}

.f1{top:25%;left:8%;}
.f2{top:30%;right:12%;}
.f3{bottom:18%;left:18%;}

@keyframes float{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-25px);}
}

/* SECTIONS */
section{
  padding:90px 0;
}

.section-title{
  font-weight:900;
  color:var(--navy);
}

.section-badge{
  display:inline-block;
  background:#eaf4ff;
  color:var(--blue);
  padding:10px 22px;
  border-radius:50px;
  font-weight:800;
  margin-bottom:15px;
}

/* STATS */
.stat-box{
  background:#fff;
  border-radius:18px;
  padding:35px;
  text-align:center;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.stat-box h3{
  color:var(--blue);
  font-size:2.5rem;
  font-weight:900;
}

/* SERVICES */
.service-card,
.course-card,
.store-card,
.testimonial-card{
  background:#fff;
  border-radius:18px;
  padding:35px;
  height:100%;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  transition:.4s;
  border:1px solid #eef2f7;
}

.service-card:hover,
.course-card:hover,
.store-card:hover,
.testimonial-card:hover{
  transform:translateY(-12px);
  box-shadow:0 25px 60px rgba(10,102,194,.18);
}

.service-card i,
.course-card i,
.store-card i{
  font-size:45px;
  color:var(--blue);
  margin-bottom:20px;
}

/* BENTO */
.bento{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.bento-card{
  min-height:220px;
  background:linear-gradient(145deg,#fff,#eef6ff);
  border-radius:22px;
  padding:30px;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  transition:.4s;
}

.bento-card:hover{
  transform:scale(1.03);
}

.bento-card.large{
  grid-column:span 2;
}

.price{
  display:inline-block;
  background:var(--orange);
  color:#fff;
  padding:8px 16px;
  border-radius:50px;
  font-weight:800;
  margin-bottom:15px;
}

/* TIMELINE */
.timeline{
  position:relative;
}

.timeline-step{
  background:#fff;
  padding:25px;
  border-radius:18px;
  margin-bottom:20px;
  box-shadow:0 12px 35px rgba(0,0,0,.08);
  border-left:5px solid var(--orange);
}

/* CORPORATE */
.corporate{
  background:linear-gradient(135deg,var(--navy),var(--blue));
  color:#fff;
}

.corporate .section-title{
  color:#fff;
}

/* NEWSLETTER */
.newsletter{
  background:linear-gradient(135deg,var(--blue),var(--orange));
  color:#fff;
  border-radius:30px;
  padding:50px;
}

/* FOOTER */
footer{
  background:var(--navy);
  color:#dbeafe;
  padding:60px 0 20px;
}

footer a{
  color:#dbeafe;
  text-decoration:none;
}

.social a{
  width:40px;
  height:40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.12);
  border-radius:50%;
  margin-right:8px;
}

/* WhatsApp */
.whatsapp{
  position:fixed;
  right:20px;
  bottom:20px;
  background:#25D366;
  color:#fff;
  width:58px;
  height:58px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  z-index:999;
  box-shadow:0 12px 30px rgba(0,0,0,.25);
}

/* Dark mode */
.dark-mode{
  background:#020617;
  color:#e5e7eb;
}

.dark-mode .service-card,
.dark-mode .course-card,
.dark-mode .store-card,
.dark-mode .testimonial-card,
.dark-mode .stat-box,
.dark-mode .timeline-step,
.dark-mode .bento-card{
  background:#2a1d0f;
  color:#ebe9e5;
  border-color:#1e293b;
}

.dark-mode .section-title{
  color:#ffffff;
}

@media(max-width:992px){
  .bento{
    grid-template-columns:1fr;
  }

  .bento-card.large{
    grid-column:span 1;
  }
}
.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;

    background:
    linear-gradient(
        rgba(5,20,40,0.75),
        rgba(5,20,40,0.75)
    ),
    url("assets/images/logo-4.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top right,
    rgba(0,123,255,.25),
    transparent 40%);
    z-index:1;
}

.hero .container{
    position:relative;
    z-index:2;
}

.hero h1{
    font-size:4rem;
    font-weight:800;
    color:#fff;
    line-height:1.1;
    text-shadow:0 4px 20px rgba(0,0,0,.4);
}

.hero p{
    font-size:1.2rem;
    color:#f1f5f9;
    max-width:700px;
}

.glass-card{
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.2);
    border-radius:25px;
    padding:35px;
    color:#fff;
    box-shadow:0 20px 50px rgba(0,0,0,.3);
}

#training{
    background:#0f172a;
    color:white;
}

.course-card{
    background:#1e293b;
    border-radius:20px;
    overflow:hidden;
    transition:.5s;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
}

.course-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.45);
}

.course-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:.6s;
}

.course-card:hover img{
    transform:scale(1.08);
}

.course-content{
    padding:25px;
}

.price{
    background:linear-gradient(
        135deg,
        #ff7a00,
        #ffb000
    );
    color:white;
    padding:8px 18px;
    border-radius:50px;
    font-weight:700;
}

.course-content h4{
    margin-top:20px;
    margin-bottom:15px;
}

.course-content ul{
    padding-left:18px;
}

.course-content li{
    margin-bottom:8px;
}

.duration{
    color:#38bdf8;
    font-weight:600;
    margin-bottom:15px;
}

.btn-main{
    background:linear-gradient(
        135deg,
        #ff7a00,
        #ffb000
    );
    color:white;
    border:none;
    padding:12px;
    border-radius:12px;
    font-weight:600;
    margin-top:10px;
}

.btn-main:hover{
    background:#ff7a00;
    color:white;
}