/* ===== GLOBAL ===== */
body{
  background:#0b0b0b;
  color:#fff;
  overflow-x:hidden;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
:root{
  --theme-orange:#ff7a00;
}
/* ===== TOP BAR ===== */
.top-bar{
  background:#000;
  color:#fff;
  font-size:14px;
}
.top-bar span{
  margin-right:15px;
  color:#f1a80a;
}
.top-right .join-btn{
  display:inline-block;
  padding:5px 15px;
  background:#f1a80a;
  color:#000;
  border-radius:6px;
  font-weight:600;
  text-decoration:none;
  transition:0.3s;
}
.top-right .join-btn:hover{
  background:var(--theme-orange);
  color:#fff;
}

/* ===== HEADER / NAVBAR ===== */
.glass-header{
  background:#000000;
  border-bottom:1px solid rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

/* ===== NAVBAR ===== */
.navbar{
  font-family: 'Poppins', sans-serif;
}
.nav-link{
  position:relative;
  color:#f0eded !important;
  margin:0 12px;
  font-weight:500;
  transition:0.3s;
  text-transform: uppercase;
  font-size:14px;
}
.nav-link:hover{
  color:var(--theme-orange) !important;
}

/* ===== LOGO ===== */
.navbar-brand{
  padding:0;
}
.navbar-logo{
  height:120px; /* bigger logo */
  width:30%;
  max-width:100%; /* full width */
  object-fit:contain;
}

/* ===== MOBILE LOGO ===== */
@media (max-width: 991px){
  .navbar-logo{
    height:80px;
    max-width:180px;
    width: 60%;
  }
}

/* ===== LINK UNDERLINE EFFECT ===== */
.glass-link::after{
  content:"";
  position:absolute;
  bottom:0;
  left:50%;
  width:0%;
  height:2px;
  background:var(--theme-orange);
  transition:0.3s;
  transform:translateX(-50%);
}
.glass-link:hover::after{
  width:70%;
}

/* ===== MOBILE MENU ===== */
@media(max-width:991px){
  .top-bar{
    display:none;
  }
  .navbar-collapse{
    background:#000; /* black background for mobile menu */
    padding:20px;
    border-radius:12px;
    margin-top:10px;
  }
  .glass-link{
    display:block;
    margin:10px 0;
    color:#fff !important;
  }
}

/* ===== MOBILE TOGGLER ICON COLOR ===== */
.navbar-toggler{
  border-color: var(--theme-orange);
}
.navbar-toggler-icon{
  filter: invert(47%) sepia(86%) saturate(1400%) hue-rotate(2deg) brightness(101%) contrast(101%);
}
/* ===== MENU TEXT FIX (NO LINE BREAK) ===== */
.nav-link{
  white-space: nowrap;   /* text ek line me rahe */
  display: inline-block; /* proper width handle kare */
}

/* agar space kam ho to font thoda adjust */
@media (max-width: 1200px){
  .nav-link{
    font-size:13px;
    margin:0 8px;
  }
}


.hero-slider{
  min-height:calc(100vh - 80px); /* navbar height adjust */
  display:flex;
  align-items:center;
  justify-content:center;
  padding-top:20px;  /* ? space kam */
}
.slide{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  max-width:1200px;
  padding:40px 30px; /* pehle 60px tha */
}


.content{
  max-width:50%;
}

.badge{
  display:inline-block;
  background:#ff7a00;
  padding:6px 14px;
  border-radius:20px;
  margin-bottom:20px;
}

h1{
  font-size:52px;
  line-height:1.2;
}

h1 span{
  color:#ff7a00;
}

p{
  opacity:0.8;
  margin:20px 0 30px;
}

.btns{
  background:#ff7a00;
  color:#000;
  padding:14px 32px;
  border-radius:40px;
  text-decoration:none;
  font-weight:500;
  display:inline-block;
  transition:.3s;
}

.btns:hover{
  transform:translateY(-4px);
}

/* Image Side */
.image-area{
  position:relative;
  width:420px;
  height:420px;
}

.circle-bg{
  position:absolute;
  inset:0;
  background:#ff7a00;
  border-radius:50%;
}

.profile{
  position:absolute;
  inset:25px;
  width:calc(100% - 50px);
  height:calc(100% - 50px);
  object-fit:cover;
  border-radius:50%;
  z-index:2;
}

/* Social Icons */

.social {
  width:40px;
  height:40px;
  color:#fff; /* white icons on orange background */
  background:#0a0a0a; /* circle background */
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  position:absolute;
  cursor:pointer;
  z-index:3;
  transition: transform .3s ease, background .3s ease, color .3s ease;
}
.social:hover {
  background:#000; /* hover effect */
  color:#ff7a00;
}

a, button, .btn, .social{
  cursor: pointer !important;  /* ? clickable */
}

.linkedin{ top:-10px; left:50%; transform:translateX(-50%); }
.youtube{ right:-10px; top:50%; transform:translateY(-50%); }
.instagram{ bottom:-10px; left:50%; transform:translateX(-50%); }
.facebook{ left:-10px; top:50%; transform:translateY(-50%); }
.tiktok{ bottom:-10px; left:50%; transform:translateX(-50%); }
/* Responsive */
@media(max-width:900px){
  .slide{
    flex-direction:column;
    text-align:center;
  }

  .content{
    max-width:100%;
    margin-bottom:50px;
  }

  h1{
    font-size:36px;
  }

  .image-area{
    width:300px;
    height:300px;
  }
}
/*slider end*/
/*why chosee us start*/
/* SECTION WRAPPER */
.why-choose {
  background: #0c0c0c;
  padding: 80px 20px;
}

/* CONTAINER */
.wc-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARDS */
.wc-card {
  background: #111;
  border-radius: 20px;
  padding: 40px 25px;
  color: #fff;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* MAIN LEFT CARD */
.main-card {
  background: linear-gradient(135deg, #ff7a00, #ff9a2f);
  color: #000;
}

.main-card h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.main-card p {
  font-size: 16px;
  line-height: 1.6;
}

/* ICON */
.wc-card .icon {
  font-size: 36px;
  margin-bottom: 20px;
}

/* HEADINGS */
.wc-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

/* TEXT */
.wc-card p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

/* HIGHLIGHT CARD */
.highlight {
  background: #ff7a00;
  color: #000;
}

/* HOVER EFFECT */
.wc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(12, 12, 12, 0.15);
  transition: 0.4s;
}

.wc-card:hover::before {
  left: 0;
}

.wc-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .wc-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .wc-container {
    grid-template-columns: 1fr;
  }

  .wc-card {
    padding: 30px 20px;
  }

  .main-card h2 {
    font-size: 24px;
  }
}
/*why chosee us end*/
 :root {
    --primary-color: #c2ddd9;
    --secondary-color: #be7b15;
  }

  .expertise-section {
    padding: 80px 20px;
    background: var(--bg-gradient);
    color: #fff;
    overflow: hidden;
  }

  .expertise-section .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
  }

  .left-col, .right-col {
    flex: 1 1 500px;
    min-width: 300px;
  }

  .left-col h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    
    position: relative;
    display: inline-block;
  }

  .left-col h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    background: var(--secondary-color);
    bottom: -10px;
    left: 0;
    border-radius: 2px;
    animation: slideIn 1s ease forwards;
    transform: scaleX(0);
    transform-origin: left;
  }

  @keyframes slideIn {
    to {
      transform: scaleX(1);
    }
  }

  .left-col p {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .left-col .highlight {
    color: var(--secondary-color);
    font-weight: 600;
  }

  .left-col ul {
    list-style: none;
    margin-bottom: 20px;
  }

  .left-col ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    position: relative;
    padding-left: 30px;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
  }

  .left-col ul li::before {
    content: "?";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
  }

  .left-col .btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .left-col .btn:hover {
    background: #fff;
    color: var(--primary-color);
  }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
    from {
      opacity: 0;
      transform: translateY(20px);
    }
  }

  .right-col .animated-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.5s ease;
  }

  .right-col .animated-box:hover {
    transform: scale(1.05) rotate(2deg);
  }

  .right-col img {
    max-width: 100%;
    border-radius: 20px;
    display: block;
  }

  /* Mobile Responsive */
  @media (max-width: 900px) {
    .expertise-section .container {
      flex-direction: column-reverse;
      gap: 30px;
    }

    .left-col, .right-col {
      flex: 1 1 100%;
    }
  }
  .video-box{
  overflow:hidden;
}

.video-box video{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:20px;
  display:block;
}
.services-modern{
padding:60px 20px;
background:#070707;
font-family:'Poppins',sans-serif;
text-align:center;
}

/* heading */

.services-head h2{
font-size:44px;
font-weight:700;
color:#fff;
margin-bottom:10px;
}

.services-head h2 span{
color:#ff7a00;
}

.services-head p{
color:#bbb;
max-width:600px;
margin:auto;
margin-bottom:70px;
font-size:17px;
}

/* grid */

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
max-width:1200px;
margin:auto;
}

/* card */

.service-box{
background:#111;
border-radius:18px;
padding:20px;
transition:.4s;
border:1px solid rgba(255,122,0,.25);
box-shadow:0 15px 40px rgba(0,0,0,.4);
cursor:pointer;
position:relative;
overflow:hidden;
}

.service-box:hover{
transform:translateY(-12px);
box-shadow:0 25px 60px rgba(255,122,0,.35);
}

/* image */

.service-box img{
width:100%;
height:170px;
object-fit:cover;
border-radius:12px;
margin-bottom:15px;
}

/* title */

.service-box h3{
font-size:20px;
color:#ff7a00;
margin-bottom:10px;
}

/* text */

.service-box p{
color:#ccc;
font-size:14px;
line-height:1.6;
}

/* glow hover effect */

.service-box::before{
content:"";
position:absolute;
inset:0;
background:linear-gradient(120deg,transparent,#ff7a00,transparent);
opacity:0;
transition:.4s;
}

.service-box:hover::before{
opacity:.15;
}

/* mobile */

@media(max-width:768px){

.services-head h2{
font-size:32px;
}

.services-head p{
font-size:15px;
}

.service-box img{
height:150px;
}

}
/* Custom slider navigation logo */
.slider-nav{
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none; /* allow clicks only on images */
}

.slider-nav img{
  width: 50px;
  cursor: pointer;
  pointer-events: all; 
  transition: transform 0.3s ease;
}
.slider-nav img:hover{
  transform: scale(1.2);
}

/* Responsive */
@media(max-width:768px){
  .service-card{ min-width: 200px; padding: 25px 15px; }
  .slider-nav img{ width: 40px; }
}
@media(max-width:480px){
  .service-card{ min-width: 180px; padding: 15px 10px; }
  .slider-nav img{ width: 35px; }
}
 

 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    
    }

   

    /* Custom Cursor */
    .cursor {
      width: 20px;
      height: 20px;
      border: 2px solid var(--orange);
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      transform: translate(-50%, -50%);
      animation: blink 1.2s infinite;
      z-index: 9999;
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }


.booking{
  max-width:1150px;
  margin:40px auto;
  background:var(--dark);
  border-radius:18px;
  display:grid;
  grid-template-columns:420px 1fr;
  overflow:hidden;
}
.left{padding:30px}
.right{
  background:#ff8c00;
  color:#000;
  padding:50px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.step{display:none}
.step.active{display:block}
.header{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:20px;
}
.back{
  cursor:pointer;
  border:1px solid #333;
  padding:6px 10px;
  border-radius:8px;
}
.calendar{text-align:center}
.month{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:15px;
}
.month button{
  background:none;
  border:none;
  color:var(--orange);
  font-size:22px;
  cursor:pointer;
}
.days,.dates{display:grid;grid-template-columns:repeat(7,1fr)}
.days div{font-size:12px;opacity:.6;padding:6px 0}
.dates button{
  background:none;border:none;color:#ff8c00;
  padding:10px 0;cursor:pointer;border-radius:50%;
}
.dates button.active,.dates button:hover{background:var(--orange);color:white;}
.times button{
  width:100%;background:#ff8c00;border:1px solid var(--orange);
  color:white;padding:14px;border-radius:10px;margin-bottom:10px;cursor:pointer
}
.times button:hover{background:#d89037; color:whitesmoke;}
form input,form textarea{
  width:100%;padding:14px;margin-bottom:12px;border-radius:10px;border:none
}
.submit{background:#ff8c00; color:white;border:none;padding:14px;border-radius:12px;font-weight:600}
.summary{font-size:14px;opacity:.9;margin-bottom:15px}
@media(max-width:900px){.booking{grid-template-columns:1fr}}


/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

.qoc-section{
  padding:90px 20px;
  background:#121213;
  font-family:'Poppins', sans-serif;
}

.qoc-wrapper{
  max-width:1200px;
  margin:auto;
}

.qoc-heading{
  text-align:center;
  margin-bottom:60px;
}

.qoc-heading h2{
  font-size:36px;
  font-weight:700;
  margin-bottom:15px;
}

.qoc-heading span{
  color:#ff8c00;
}

.qoc-heading p{
  max-width:600px;
  margin:auto;
  color:#c98a15;
  font-size:15px;
}

.qoc-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.qoc-card{
  perspective:1000px;
}

.qoc-inner{
  position:relative;
  width:100%;
  height:320px;
  transition:transform 0.7s;
  transform-style:preserve-3d;
}

.qoc-card:hover .qoc-inner{
  transform:rotateY(180deg);
}

.qoc-front,
.qoc-back{
  position:absolute;
  width:100%;
  height:100%;
  border-radius:20px;
  overflow:hidden;
  backface-visibility:hidden;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.qoc-front img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.qoc-front h3{
  position:absolute;
  bottom:20px;
  left:20px;
  color:#fff;
  font-size:22px;
  font-weight:600;
}

.qoc-back{
  background:#fff;
  padding:30px;
  transform:rotateY(180deg);
}

.qoc-back h3{
  color:#ff8c00;
  margin-bottom:10px;
}

.qoc-back p{
  font-size:14px;
  margin-bottom:15px;
  color:#555;
}

.qoc-back ul{
  list-style:none;
  padding:0;
}

.qoc-back ul li{
  font-size:13px;
  margin-bottom:6px;
}

.qoc-view{
  text-align:center;
  margin-top:50px;
}

.qoc-view a{
  display:inline-block;
  padding:12px 30px;
  background:#ff8c00;
  color:#fff;
  text-decoration:none;
  border-radius:30px;
  font-weight:500;
  transition:0.3s;
}

.qoc-view a:hover{
  background:#e67600;
  transform:translateY(-3px);
}

@media(max-width:768px){
  .qoc-heading h2{
    font-size:26px;
  }
  .qoc-inner{
    height:280px;
  }
}

/* Testimonial Section Black & Orange Theme */
#unique-testimonial-section {
    background: #111;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

#unique-testimonial-section .uts-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

#unique-testimonial-section .uts-title {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #ff7f00; /* Orange */
}

#unique-testimonial-section .uts-testimonial-wrapper {
    position: relative;
    min-height: 150px;
    margin-bottom: 40px;
}

#unique-testimonial-section .uts-testimonial-slide {
    font-size: 1.1rem;
    color: #fff;
    transition: opacity 0.5s ease-in-out;
}

#unique-testimonial-section .uts-review-form {
    background: #222;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

#unique-testimonial-section .uts-review-form h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #ff7f00;
}

#unique-testimonial-section .uts-review-form input,
#unique-testimonial-section .uts-review-form textarea,
#unique-testimonial-section .uts-review-form select {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #444;
    background: #333;
    color: #fff;
    font-size: 1rem;
}

#unique-testimonial-section .uts-review-form button {
    padding: 12px 30px;
    background: #ff7f00;
    color: #111;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

#unique-testimonial-section .uts-review-form button:hover {
    background: #e66f00;
}

/* Popup */
#uts-thankyou-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: #ff7f00;
    color: #111;
    padding: 25px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    z-index: 9999;
    font-size: 1.1rem;
    text-align: center;
    transition: 0.4s ease-in-out;
}

#uts-thankyou-popup.show {
    transform: translate(-50%, -50%) scale(1);
}

/* Responsive */
@media(max-width:768px){
    #unique-testimonial-section .uts-title { font-size: 1.6rem; }
    #unique-testimonial-section .uts-review-form h3 { font-size: 1.3rem; }
}

/* PORTFOLIO SECTION */

#portfolio{
background:#0b0b0b;
padding:80px 20px;
font-family:'Poppins',sans-serif;
}

#portfolio .section-title{
text-align:center;
font-size:40px;
font-weight:700;
color:#fff;
margin-bottom:30px;
}

#portfolio .section-title span{
color:#ff7a00;
}

/* categories */

.portfolio-categories{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:15px;
margin-bottom:50px;
padding:0;
list-style:none;
}

.portfolio-categories li{
padding:10px 22px;
border:2px solid #ff7a00;
color:#ff7a00;
border-radius:30px;
cursor:pointer;
font-weight:600;
transition:.3s;
}

.portfolio-categories li:hover,
.portfolio-categories li.active{
background:#ff7a00;
color:#fff;
}

/* grid */

.portfolio-items{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:20px;
}

/* card */

.portfolio-item{
flex:0 1 260px;
height:260px;
border-radius:12px;
overflow:hidden;
position:relative;
cursor:pointer;
box-shadow:0 15px 40px rgba(0,0,0,.4);
}

.portfolio-item img{
width:100%;
height:100%;
object-fit:cover;
transition:transform .5s ease;
}

.portfolio-item:hover img{
transform:scale(1.15);
}

/* overlay */

.portfolio-overlay{
position:absolute;
inset:0;
background:linear-gradient(to top,rgba(0,0,0,.85),transparent);
display:flex;
align-items:flex-end;
justify-content:center;
padding-bottom:20px;
opacity:0;
transition:.4s;
}

.portfolio-item:hover .portfolio-overlay{
opacity:1;
}

.portfolio-overlay span{
background:#ff7a00;
color:#fff;
padding:6px 18px;
border-radius:20px;
font-size:14px;
}

/* empty card */

.empty-card{
display:flex;
justify-content:center;
align-items:center;
background:#111;
border:2px dashed #ff7a00;
color:#ff7a00;
font-weight:600;
}

/* button */

.view-more{
text-align:center;
margin-top:50px;
}

.view-more a{
display:inline-block;
padding:12px 28px;
border:2px solid #ff7a00;
color:#ff7a00;
border-radius:30px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.view-more a:hover{
background:#ff7a00;
color:#fff;
}

/* responsive */

@media(max-width:768px){

.portfolio-item{
flex:0 1 45%;
height:200px;
}

}

@media(max-width:500px){

.portfolio-item{
flex:0 1 48%;
height:170px;
}

}



/* PAGE */

#qs-course-page{

background:#000;

color:#fff;

font-family:'Montserrat',sans-serif;

padding:70px 0;

}

/* HEADING */

.qs-course-heading{

text-align:center;

font-size:42px;

font-weight:700;

margin-bottom:25px;

}

.qs-white{color:#fff;}
.qs-orange{color:orange;}

/* INTRO */

.qs-course-intro{

text-align:center;

max-width:850px;

margin:auto;

font-size:16px;

line-height:1.8;

opacity:.9;

margin-bottom:50px;

}

/* GRID */

.qs-course-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(270px,1fr));

gap:35px;

}

/* CARD */

.qs-course-card{

background:#111;

border-radius:18px;

border:1px solid rgba(255,165,0,.4);

overflow:hidden;

transition:.4s;

box-shadow:0 10px 30px rgba(0,0,0,.7);

}

.qs-course-card:hover{

transform:translateY(-8px);

box-shadow:0 0 35px rgba(255,165,0,.6);

}

/* IMAGE */

.qs-course-img{

height:190px;

background-size:cover;

background-position:center;

position:relative;

}

.qs-course-label{

position:absolute;

top:10px;

left:10px;

background:orange;

color:#000;

font-size:12px;

padding:4px 8px;

border-radius:6px;

font-weight:600;

}

/* CONTENT */

.qs-course-content{

padding:20px;

}

.qs-course-content h3{

color:orange;

font-size:21px;

margin-bottom:10px;

}

.qs-course-content p{

font-size:14px;

opacity:.85;

line-height:1.6;

}

/* BUTTONS */

.qs-course-buttons{

display:flex;

gap:10px;

margin-top:15px;

}

.qs-btn-details{

background:#222;

color:#fff;

padding:9px 18px;

border-radius:6px;

text-decoration:none;

font-size:13px;

}

.qs-btn-enroll{

background:linear-gradient(45deg,#ff8c00,#ff3c00);

color:#fff;

padding:9px 18px;

border-radius:6px;

text-decoration:none;

font-size:13px;

font-weight:600;

transition:.3s;

}

.qs-btn-enroll:hover{

transform:scale(1.05);

}

/* ===== WHATSAPP TESTIMONIAL ===== */

#qs-wa-testimonial{

position:fixed;

bottom:20px;

left:20px;

width:420px;

z-index:9999;

}

/* message */

.qs-wa-message{

display:flex;

align-items:flex-end;

gap:10px;

display:none;

}

/* avatar */

.qs-wa-avatar{

width:32px;

height:32px;

background:#25D366;

color:#fff;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:13px;

font-weight:600;

}

/* bubble */

.qs-wa-bubble{

background:#1a1a1a;

border:1px solid orange;

border-radius:18px;

padding:8px 14px;

width:360px;

color:#fff;

box-shadow:0 5px 18px rgba(0,0,0,.6);

}

.qs-wa-bubble strong{

color:orange;

font-size:12px;

}

.qs-wa-bubble p{

font-size:13px;

margin:0;

line-height:1.4;

}

.qs-wa-time{

font-size:9px;

opacity:.6;

}

/* MOBILE */

@media(max-width:600px){

#qs-wa-testimonial{

width:90%;

left:5%;

}

.qs-wa-bubble{

width:100%;

}

}
#servicesPage{
  background:#000;
  padding:90px 7%;
  color:white;
  font-family:'Poppins',sans-serif;
}

#servicesPage h1{
  text-align:center;
  font-size:46px;
  margin-bottom:20px;
}

#servicesPage h1 .orange{ color:#ff7a00; }
#servicesPage h1 .white{ color:#fff; }

.services-slogan{
  font-size:18px;
  opacity:.85;
  margin-bottom:50px;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.service-box{
  background:#0e0e0e;
  border-radius:18px;
  overflow:hidden;
  border:1px solid #222;
  transition:.4s;
  position:relative;
}

.service-box:hover{
  transform:translateY(-12px) scale(1.03);
  box-shadow:0 0 35px rgba(255,120,0,0.6);
  border-color:#ff7a00;
}

.service-box img{
  width:100%;
  height:190px;
  object-fit:cover;
  filter:grayscale(100%);
  transition:.4s;
}

.service-box:hover img{
  filter:grayscale(0);
}

.service-content{
  padding:18px;
}

.service-content h3{
  color:#ff7a00;
  margin-bottom:8px;
}

.service-content p{
  font-size:14px;
  opacity:.8;
  line-height:1.4;
}

.coming{
  color:#ff7a00;
  font-size:12px;
}
@media(max-width:600px){
  #servicesPage h1{font-size:32px;}
}
/* ===== GLOBAL FONT SAME AS SERVICES ===== */
body, 
h1, h2, h3, h4, h5, h6, 
p, span, a, button, input, textarea {
    font-family: 'Poppins', sans-serif !important;
}