/* ================= GLOBAL ================= */
*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

body{
  font-family:'Inter',sans-serif;
  background:#fff;
  color:#111;
  line-height:1.6;
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}

.wrapper{
  max-width:1280px;
  margin:auto;
  padding:0 20px;
}

/* ================= HERO ================= */
.hero{
  position:relative;
  height:58vh;
  min-height:420px;
  max-height:700px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.45)
  );
}

.hero-content{
  position:relative;
  text-align:center;
  color:#fff;
  max-width:760px;
  padding:20px;
  z-index:2;
}

.hero-content h1{
  font-size:clamp(38px,6vw,68px);
  line-height:1.1;
  font-weight:800;
  margin-bottom:14px;
}

.hero-content p{
  font-size:19px;
  color:#e5e7eb;
  max-width:650px;
  margin:0 auto 25px;
}

/* ================= BUTTONS ================= */
.hero-buttons{
  margin-top:20px;
}

.btn{
  padding:13px 28px;
  border-radius:12px;
  text-decoration:none;
  font-weight:600;
  display:inline-block;
  margin:5px;
  transition:.3s ease;
}

.btn-dark{
  background:#ff9800;
  color:#fff;
}

.btn-dark:hover{
  background:#e68900;
  transform:translateY(-2px);
}

.btn-light{
  border:1px solid #fff;
  color:#fff;
}

.btn-light:hover{
  background:#fff;
  color:#000;
}

/* ================= SECTION ================= */
.section,
.features,
.course-section,
.testimonials{
  padding:90px 0;
}

.features{
  background:#fff;
}

.course-section{
  background:#f5f6f8;
}

.testimonials{
  background:#f9fafb;
}

/* ================= SECTION TITLE ================= */
.section-title{
  text-align:center;
  font-size:36px;
  font-weight:800;
  color:#111827;
  background:none;
  -webkit-text-fill-color:initial;
  margin-bottom:48px;
  position:relative;
}

.section-title span,
.section-title strong{
  color:#b26b16;
}

.section-title::after{
  content:"";
  width:78px;
  height:4px;
  background:linear-gradient(90deg,#0d47a1 0 45%,#f59e0b 45% 100%);
  display:block;
  margin:12px auto 0;
  border-radius:20px;
}

/* ================= FEATURES ================= */
.features-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.feature-box{
  padding:38px 28px;
  border-radius:22px;
  background:linear-gradient(135deg,#f9fafb,#eef2ff);
  text-align:center;
  transition:.35s ease;
  border:1px solid rgba(0,0,0,.04);
  box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.feature-box:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.feature-box .icon{
  font-size:42px;
  margin-bottom:18px;
  color:#0d47a1;
}

.feature-box h3{
  font-size:22px;
  margin-bottom:10px;
  font-weight:700;
}

.feature-box p{
  font-size:15px;
  color:#64748b;
  line-height:1.7;
}

/* ================= COURSE ================= */
.course-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:30px;
}

.course-card{
  background:#fff;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.05);
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  transition:.35s ease;
  padding-bottom:20px;
}

.course-card:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 60px rgba(0,0,0,.14);
}

.course-img{
  overflow:hidden;
}

.course-img img{
  width:100%;
  height:210px;
  object-fit:cover;
  transition:.4s ease;
}

.course-card:hover .course-img img{
  transform:scale(1.06);
}

.badge{
  display:inline-block;
  font-size:12px;
  padding:7px 14px;
  border-radius:30px;
  margin:18px 20px 12px;
  font-weight:700;
}

.badge.new{
  background:#dcfce7;
  color:#166534;
}

.badge.updated{
  background:#dbeafe;
  color:#1e3a8a;
}

.course-title{
  font-size:21px;
  font-weight:800;
  margin:0 20px 10px;
  line-height:1.3;
}

.course-meta{
  font-size:14px;
  color:#64748b;
  margin:0 20px 14px;
}

.course-desc{
  font-size:15px;
  color:#475569;
  line-height:1.8;
  margin:0 20px 20px;
}

.course-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-top:1px solid #eee;
  padding:16px 20px 0;
}

.course-footer a{
  text-decoration:none;
  color:#2563eb;
  font-weight:700;
}

.course-footer a:hover{
  text-decoration:underline;
}

/* ================= TESTIMONIAL ================= */
.testimonial-marquee{
  overflow:hidden;
  position:relative;
  width:100%;
}

.testimonial-track{
  display:flex;
  gap:30px;
  width:max-content;
  animation:scroll-left 20s linear infinite;
}

.testimonial-card{
  width:320px;
  flex-shrink:0;
  background:#fff;
  padding:25px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.testimonial-card p{
  font-size:15px;
  color:#475569;
  margin-bottom:18px;
  line-height:1.8;
  font-style:italic;
}

.testimonial-card h4{
  font-size:18px;
  margin-bottom:4px;
}

.testimonial-card span{
  font-size:14px;
  color:#64748b;
}

@keyframes scroll-left{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-50%);
  }
}

/* ================= FLOATING ENQUIRY ================= */
.floating-enquiry{
  position:fixed;
  right:25px;
  bottom:100px;
  z-index:99999;
}

.enquiry-toggle{
  width:62px;
  height:62px;
  border:none;
  border-radius:50%;
  background:linear-gradient(135deg,#015e8a,#0b7db5);
  color:#fff;
  font-size:22px;
  cursor:pointer;
  box-shadow:0 15px 40px rgba(0,0,0,.22);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.3s ease;
}

.enquiry-toggle:hover{
  transform:translateY(-4px) scale(1.05);
}

.enquiry-popup{
  position:absolute;
  right:0;
  bottom:80px;
  width:360px;
  max-height:85vh;
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  overflow-y:auto;
  box-shadow:0 25px 80px rgba(0,0,0,.28);
  display:none;
  transition:.35s ease;
}

.enquiry-popup.active{
  display:block;
}

.popup-header{
  background:linear-gradient(135deg,#b45309,#d97706);
  padding:18px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.popup-title{
  display:flex;
  align-items:center;
  gap:14px;
}

.popup-icon{
  width:46px;
  height:46px;
  border-radius:14px;
  background:rgba(255,255,255,.16);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:20px;
}

.popup-title h3{
  color:#fff;
  font-size:24px;
  line-height:1.1;
  margin-bottom:3px;
  font-weight:800;
}

.popup-title span{
  color:rgba(255,255,255,.88);
  font-size:12px;
  font-weight:500;
}

.close-popup{
  border:none;
  background:rgba(255,255,255,.15);
  width:36px;
  height:36px;
  border-radius:50%;
  color:#fff;
  cursor:pointer;
  transition:.3s ease;
}

.close-popup:hover{
  background:rgba(255,255,255,.25);
}

.popup-body{
  padding:24px;
}

.popup-form-group{
  position:relative;
  margin-bottom:16px;
}

.popup-form-group i{
  position:absolute;
  left:16px;
  top:50%;
  transform:translateY(-50%);
  color:#94a3b8;
  font-size:15px;
}

.popup-form-group input,
.popup-form-group textarea{
  width:100%;
  border:1px solid #dbe4ee;
  border-radius:14px;
  background:#fff;
  padding:14px 16px 14px 46px;
  font-size:15px;
  color:#111827;
  outline:none;
  transition:.3s ease;
}

.popup-form-group input{
  height:54px;
}

.popup-form-group textarea{
  resize:none;
  min-height:120px;
  padding-top:16px;
}

.popup-form-group input:focus,
.popup-form-group textarea:focus{
  border-color:#015e8a;
  box-shadow:0 0 0 4px rgba(1,94,138,.08);
}

.textarea-group i{
  top:22px;
  transform:none;
}

.send-btn{
  width:100%;
  height:56px;
  border:none;
  border-radius:16px;
  background:linear-gradient(135deg,#015e8a,#0b7db5);
  color:#fff;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  transition:.3s ease;
}

.send-btn:hover{
  transform:translateY(-2px);
}

.send-btn i{
  margin-left:8px;
}

/* ================= WHATSAPP ================= */
.whatsapp-float{
  position:fixed;
  right:25px;
  bottom:25px;
  z-index:9999;
  display:flex;
  align-items:center;
  gap:10px;
  background:#25D366;
  color:#fff;
  text-decoration:none;
  padding:14px 18px;
  border-radius:60px;
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
  font-family:'Inter',sans-serif;
  transition:0.3s ease;
}

.whatsapp-float:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 30px rgba(0,0,0,0.25);
}

.whatsapp-float i{
  font-size:32px;
}

.whatsapp-text{
  line-height:1.1;
}

.whatsapp-text span{
  display:block;
  font-size:12px;
  opacity:0.9;
}

.whatsapp-text strong{
  font-size:16px;
  font-weight:700;
}

/* ================= CONTACT / ENQUIRY ================= */
.contact-box{
  margin-top:70px;
}

.contact-card{
  background:linear-gradient(135deg,#0d47a1 0%,#1565c0 55%,#f59e0b 100%);
  padding:55px 45px;
  border-radius:30px;
  position:relative;
  overflow:hidden;
  box-shadow:0 20px 60px rgba(13,71,161,.18);
  color:#fff;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.contact-card::before{
  content:'';
  position:absolute;
  width:240px;
  height:240px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  top:-120px;
  right:-100px;
}

.contact-card::after{
  content:'';
  position:absolute;
  width:180px;
  height:180px;
  border-radius:50%;
  background:rgba(255,255,255,.05);
  bottom:-70px;
  left:-60px;
}

.contact-card h2{
  font-size:42px;
  line-height:1.1;
  font-weight:800;
  margin-bottom:18px;
  position:relative;
  z-index:2;
  color:#ffffff !important;
}

.contact-card p{
  font-size:17px;
  line-height:1.8;
  color:rgba(255,255,255,.92);
  margin-bottom:30px;
  max-width:700px;
  position:relative;
  z-index:2;
}

.call-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  background:#fff;
  color:#0d47a1;
  padding:15px 30px;
  border-radius:60px;
  text-decoration:none;
  font-size:18px;
  font-weight:700;
  transition:.35s ease;
  position:relative;
  z-index:2;
}

.call-btn:hover{
  transform:translateY(-4px);
  background:#111827;
  color:#fff;
  box-shadow:0 12px 30px rgba(0,0,0,.22);
}

.call-btn i{
  font-size:17px;
}

.thank-you-message{
  display:none;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

/* ================= EV PAGE EXTRA CSS ================= */
.content-box{
  background:#fff;
  padding:58px 42px;
  border-radius:26px;
  margin-bottom:36px;
  border:1px solid rgba(15,23,42,.06);
  box-shadow:0 22px 60px rgba(15,23,42,.08);
}

.grid-2{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:40px;
  align-items:center;
  width:100%;
}

.service-img-large{
  width:100%;
  border-radius:22px;
  overflow:hidden;
  object-fit:cover;
  box-shadow:0 18px 45px rgba(0,0,0,.12);
}

.intro{
  font-size:17px;
  line-height:1.9;
  color:#475569;
  margin-bottom:20px;
}

.intro strong{
  color:#0d47a1;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(210px,1fr));
  gap:24px;
  width:100%;
}

.service-card{
  min-height:190px;
  background:linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);
  padding:28px 22px;
  border-radius:20px;
  text-align:center;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 12px 30px rgba(15,23,42,.06);
  transition:.35s ease;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
}

.service-card:hover{
  transform:translateY(-8px);
  box-shadow:0 24px 55px rgba(15,23,42,.13);
  border-color:rgba(13,71,161,.18);
}

.service-card h4{
  font-size:18px;
  line-height:1.25;
  margin:0 0 10px;
  color:#003b64;
  font-weight:800;
  max-width:180px;
}

.service-card p{
  font-size:14px;
  color:#64748b;
  line-height:1.7;
  margin:0;
  max-width:190px;
}

.service-icon{
  width:64px;
  height:64px;
  min-width:64px;
  margin:0 auto 18px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#0d47a1,#1976d2);
  color:#fff;
  font-size:28px;
  box-shadow:0 14px 28px rgba(13,71,161,.22);
}

.service-icon i,
.feature-box .icon i{
  line-height:1;
}

.content-box img{
  display:block;
}

/* ================= MOBILE ================= */
@media(max-width:768px){

  .wrapper{
    padding:0 15px;
  }

  .hero{
    height:52vh;
    min-height:340px;
  }

  .hero-content h1{
    font-size:42px;
  }

  .hero-content p{
    font-size:15px;
  }

  .section,
  .features,
  .course-section,
  .testimonials{
    padding:70px 0;
  }

  .section-title{
    font-size:28px;
    margin-bottom:34px;
  }

  .features-grid,
  .course-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .testimonial-card{
    width:270px;
  }

  .floating-enquiry{
    right:15px;
    bottom:90px;
    z-index:999999;
  }

  .enquiry-toggle{
    width:58px;
    height:58px;
    font-size:20px;
  }

  .enquiry-popup{
    position:fixed;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%) scale(.95);
    width:92%;
    max-width:340px;
    max-height:85vh;
    overflow-y:auto;
    border-radius:22px;
    right:auto;
    bottom:auto;
  }

  .enquiry-popup.active{
    display:block;
    transform:translate(-50%,-50%) scale(1);
  }

  .popup-header{
    padding:16px 18px;
  }

  .popup-title h3{
    font-size:20px;
  }

  .popup-title span{
    font-size:11px;
  }

  .popup-body{
    padding:18px;
  }

  .popup-form-group{
    margin-bottom:14px;
  }

  .popup-form-group input{
    height:50px;
    font-size:14px;
  }

  .popup-form-group textarea{
    min-height:95px;
    font-size:14px;
  }

  .send-btn{
    height:52px;
    font-size:15px;
  }

  .whatsapp-float{
    right:15px;
    bottom:15px;
    width:58px;
    height:58px;
    padding:0;
    border-radius:50%;
    justify-content:center;
  }

  .whatsapp-text{
    display:none;
  }

  .whatsapp-float i{
    font-size:28px;
  }

  .contact-card{
    padding:38px 24px;
    border-radius:24px;
  }

  .contact-card h2{
    font-size:30px;
  }

  .contact-card p{
    font-size:15px;
    line-height:1.8;
  }

  .call-btn{
    width:100%;
    justify-content:center;
    font-size:16px;
    padding:14px 20px;
  }

  .content-box{
    padding:34px 18px;
    border-radius:22px;
  }

  .grid-2{
    grid-template-columns:1fr;
    gap:25px;
  }

  .service-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .service-card{
    min-height:auto;
    padding:26px 20px;
  }

  .service-icon{
    width:58px;
    height:58px;
    min-width:58px;
    font-size:25px;
    margin-bottom:16px;
  }

  .service-card h4{
    font-size:18px;
    max-width:100%;
  }

  .service-card p{
    font-size:14px;
    max-width:260px;
  }

  .intro{
    font-size:15px;
  }

  .service-img-large{
    border-radius:18px;
  }

}


/* ================= MODERN FOOTER ================= */

footer{
    background:linear-gradient(135deg,#005b8f,#0077b6);
    color:#e2e8f0;
    padding:40px 0 15px;
    margin-top:50px;
}

footer .container{
    max-width:1350px;
    margin:0 auto;
}

footer h3{
    color:#ffffff;
    font-size:20px;
    font-weight:700;
    margin-bottom:20px;
    position:relative;
    padding-bottom:10px;
}

footer h3:after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:55px;
    height:3px;
    background:linear-gradient(90deg,#0d47a1,#f59e0b);
    border-radius:10px;
}

footer p{
    margin-bottom:8px;
    line-height:1.6;
}

footer a{
    color:#f1f5f9;
    text-decoration:none;
    transition:.3s ease;
}

footer a:hover{
    color:#f59e0b;
}

footer .glyphicon{
    color:#f59e0b;
    margin-right:8px;
    font-size:12px;
}

footer .col-md-3,
footer .col-sm-6{
    margin-bottom:20px;
}

.footer-card{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.10);
    border-radius:18px;
    padding:20px;
    box-shadow:0 8px 20px rgba(0,0,0,.18);
    transition:.3s ease;
    height:100%;
}

.footer-card:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(0,0,0,.25);
}

.social-link{
    margin-bottom:12px;
}

.social-link img{
    width:24px;
    height:24px;
    margin-right:10px;
}

footer img{
    display:inline-block !important;
    vertical-align:middle;
}

.contact-info{
    background:rgba(255,255,255,.04);
    padding:12px;
    border-radius:12px;
    margin-top:15px;
    line-height:1.7;
    font-size:14px;
}

.visitor-counter{
    background:rgba(255,255,255,.06);
    padding:12px;
    border-radius:12px;
    text-align:center;
    margin-top:20px;
}

.visitor-counter img{
    margin:0 auto;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.12);
    margin-top:25px;
    padding-top:15px;
    color:#94a3b8;
    font-size:14px;
}

.footer-bottom .text-right{
    text-align:right;
}

/* ================= MOBILE ================= */

@media (max-width:768px){

    footer{
        text-align:left;
        padding:25px 0;
    }

    footer h3{
        text-align:center;
        font-size:20px;
    }

    footer h3:after{
        left:50%;
        transform:translateX(-50%);
    }

    .footer-card{
        height:auto !important;
        min-height:auto !important;
        padding:15px;
        margin-bottom:15px;
    }

    footer p{
        font-size:14px;
    }

    .contact-info{
        font-size:13px;
        padding:10px;
    }

    .visitor-counter{
        padding:10px;
    }
}


/* ================= MOBILE FOOTER FIX ================= */

@media(max-width:768px){

    footer{
        text-align:left !important;
    }

    .footer-card{
        text-align:left !important;
        padding:18px;
        height:auto !important;
        min-height:auto !important;
    }

    .footer-card p{
        display:flex;
        align-items:center;
        justify-content:flex-start;
        gap:10px;
        text-align:left !important;
        margin-bottom:12px;
    }

    .footer-card a{
        display:inline-block;
        text-align:left !important;
    }

    footer h3{
        text-align:center;
        font-size:18px;
    }

    footer h3:after{
        left:50%;
        transform:translateX(-50%);
    }

    .social-link{
        justify-content:flex-start !important;
    }

    .contact-info{
        text-align:left !important;
        font-size:14px;
    }

    .visitor-counter{
        text-align:center;
    }

    .footer-bottom{
        text-align:center;
    }

    .footer-bottom .text-right{
        text-align:center !important;
        margin-top:8px;
    }
}