/* ======================================================
   GLOBAL RESET & ROOT
====================================================== */
:root{
  --blue:#ed2024;
  --blue-soft:#e9f2ff;
  --bg-white:#ffffff;
  --bg-light:#f3f7fd;
  --bg-dark:#0b1320;
  --text:#1e1e1e;
  --muted:#6b7280;
}

*{
  box-sizing:border-box;
}

body{
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont;
  margin:0;
  padding-top:90px;
  background:var(--bg-light);
  color:var(--text);
}

/* ======================================================
   CONTAINER OVERRIDE (BOOTSTRAP TODA)
====================================================== */
.container{
  max-width:1180px !important;
}

/* ======================================================
   SECTION RHYTHM (REFERENCE SS)
====================================================== */
section{
  padding:110px 0;
}

.hero-section{ background:var(--bg-white); }
.about-section{ background:var(--bg-light); }
.tp-section{ background:var(--bg-white); }
.market-section{ background:var(--bg-light); }
.services-section{ background:var(--bg-white); }
.gallery-section{ background:var(--bg-light); }
.team-section{ background:var(--bg-white); }
.faq-section{ background:var(--bg-light); }
.contact-section{ background:var(--bg-white); }

/* ======================================================
   NAVBAR
====================================================== */
.custom-navbar{
  background:#fff;
  border-radius:64px;
  margin:14px;
  padding:12px 28px;
  box-shadow:0 20px 45px rgba(0,0,0,.08);
}

/* ======================================================
   COMMON BADGE
====================================================== */
.section-badge{
  display:inline-block;
  padding:6px 14px;
  background:var(--blue-soft);
  color:#ed2024;
  border-radius:999px;
  font-size:12px;
  margin-bottom:16px;
}

/* ======================================================
   HERO
====================================================== */
.hero-tag{
  font-size:12px;
  letter-spacing:3px;
  color:#ed2024;;
}

.hero-text h1{
  font-size:52px;
  line-height:1.1;
  font-weight:800;
  margin:18px 0;
}

.hero-text h1 span{ color:#ed2024; }

.hero-text p{
  max-width:520px;
  color:var(--muted);
  font-size:16px;
}

.hero-tags{
  margin-top:18px;
}

.hero-tags .tag{
  display:inline-block;
  padding:6px 14px;
  background:var(--blue-soft);
  border-radius:999px;
  font-size:13px;
  margin-right:6px;
}

.hero-tags .active{
  background:#ed2024;
  color:#fff;
}

/* ======================================================
   FLOAT CARD (CHART)
====================================================== */
.chart-card{
  background:#fff;
  padding:16px;
  border-radius:24px;
  box-shadow:0 10px 15px rgba(55, 55, 55, 0.15);
  animation:float 4s ease-in-out infinite;
}

@keyframes float{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-14px); }
}

/* ======================================================
   ABOUT
====================================================== */
/* ABOUT IMAGE */
/* .about-image{
  background:#fff;
  padding:14px;
  border-radius:22px;
  box-shadow:0 25px 60px rgba(0,0,0,.12);
} */

.about-image img{
  border-radius:16px;
}

/* INFO CARD WITH ICON */
.info-card{
  display:flex;
  gap:14px;
  background:#f8fbff;
  padding:18px;
  border-radius:18px;
  height:100%;
  box-shadow:0 12px 25px rgba(0,0,0,.06);
  transition:.3s;
}

.info-card:hover{
  transform:translateY(-6px);
}

.info-icon{
  width:44px;
  height:44px;
  background:#e9f2ff;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#0d6efd;
  font-size:20px;
  flex-shrink:0;
}

.info-card h6{
  font-size:14px;
  font-weight:700;
  margin-bottom:4px;
}

.info-card p{
  font-size:13px;
  color:#6b7280;
  line-height:1.6;
  margin:0;
}

/* MOBILE */
@media(max-width:768px){
  .about-image{
    margin-bottom:20px;
  }
}

/* ======================================================
   TIME & PRICE
====================================================== */
.image-card{
  position:relative;
  background:#fff;
  padding:16px;
  border-radius:28px;
  box-shadow:0 35px 80px rgba(0,0,0,.14);
}

.badge-card{
  position:absolute;
  right:-28px;
  bottom:-28px;
  background:#fff;
  padding:20px;
  border-radius:18px;
  box-shadow:0 20px 50px rgba(0,0,0,.18);
  text-align:center;
}

.progress-box{
  margin-top:20px;
  margin: 20px;
}

.progress{
  height:8px;
  background:#e5e7eb;
  border-radius:999px;
}

.progress-bar{
  background:linear-gradient(90deg,#fd0d0d,#01090c);
}

/* ======================================================
   MARKET TIMING
====================================================== */
.feature-box{
  background:#fff;
  padding:16px;
  border-radius:18px;
  text-align:center;
  font-weight:600;
  box-shadow:0 20px 45px rgba(0,0,0,.1);
}

.program-card{
  background:#fff;
  padding:28px;
  border-radius:28px;
  box-shadow:0 35px 80px rgba(0,0,0,.12);
}
.program-card h6{
  font-size:18px;
  font-weight:700;
  margin-bottom:12px;
}

/* ======================================================
   SERVICES
====================================================== */
/* ======================================================
   SERVICES – 2 CARD PER ROW + ICON TOP RIGHT
====================================================== */

.services-section .service-card{
  background:#fff;
  padding:36px 32px;
  border-radius:28px;
  box-shadow:0 30px 70px rgba(0,0,0,.12);
  height:100%;
  transition:.35s ease;
}

.services-section .service-card:hover{
  transform:translateY(-8px);
}

/* ICON TOP RIGHT */
.service-icon{
  position:absolute;
  top:20px;
  right:20px;
  width:48px;
  height:48px;
  background:var(--blue-soft);
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--blue);
  font-size:22px;
}

/* CARD TITLE */
.services-section .service-card h6{
  font-size:18px;
  font-weight:700;
  margin-bottom:10px;
  color:#111827;
}

/* CARD TEXT */
.services-section .service-card p{
  font-size:15.5px;
  line-height:1.8;
  color:var(--muted);
  margin-bottom:16px;
}

/* CARD LINK */
.services-section .service-card a{
  font-size:15px;
  font-weight:600;
   color:#ed2024;
  text-decoration:none;
  display:inline-block;
  transition:.3s;
}

.services-section .service-card a:hover{
  transform:translateX(6px);
}

/* ======================================================
   MOBILE FIX
====================================================== */
@media(max-width:768px){

  .services-section .service-card{
    padding:28px 24px;
  }

  .services-section .service-card h6{
    font-size:17px;
  }

  .service-icon{
    width:42px;
    height:42px;
    font-size:20px;
  }
}


/* ======================================================
   GALLERY
====================================================== */
.gallery-img{
  width:100%;
  border-radius:26px;
  box-shadow:0 35px 80px rgba(0,0,0,.16);
  transition:.4s;
}

.gallery-img:hover{
  transform:scale(1.05);
}

/* ======================================================
   TEAM
====================================================== */
.team-card{
  background:#fff;
  padding:18px;
  border-radius:26px;
  text-align:center;
  box-shadow:0 35px 80px rgba(0,0,0,.12);
}

.team-card img{
  width:100%;
  border-radius:20px;
}

/* ======================================================
   CONTACT
====================================================== */
.contact-info{
  background:#fff;
  padding:30px;
  border-radius:28px;
  box-shadow:0 35px 80px rgba(0,0,0,.12);
}

/* ======================================================
   FOOTER
====================================================== */
.footer{
  background:var(--bg-dark);
  color:#cbd5e1;
  padding:80px 0 30px;
}

/* ======================================================
   SCROLL ANIMATION
====================================================== */
.fade{
  opacity:0;
  transform:translateY(50px);
  transition:1s ease;
}
.fade.show{
  opacity:1;
  transform:none;
}

/* ======================================================
   MOBILE – EXACT FLOW (REFERENCE SS)
====================================================== */
@media(max-width:768px){
  section{ padding:80px 0; }

  .hero-text h1{ font-size:34px; }
  .about-section h2,
  .tp-section h2,
  .market-section h2{
    font-size:30px;
  }

  .badge-card{
    position:static;
    margin-top:16px;
  }

  .container{
    padding-left:18px;
    padding-right:18px;
  }
}
/* ======================================================
   PREMIUM TYPOGRAPHY SYSTEM (HERO-STYLE)
====================================================== */

/* SECTION HEADINGS (ABOUT, TP, MARKET, SERVICES...) */
.about-section h2,
.tp-section h2,
.market-section h2,
.services-section h2,
.gallery-section h2,
.team-section h2,
.contact-section h2{
  font-size:46px;
  line-height:1.15;
  font-weight:800;
  letter-spacing:-0.6px;
  margin-bottom:22px;
}

/* BLUE HIGHLIGHT WORD */
.about-section h2 span,
.tp-section h2 span,
.market-section h2 span,
.services-section h2 span,
.gallery-section h2 span,
.team-section h2 span,
.contact-section h2 span{
   color:#e10202;
}

/* MAIN CONTENT PARAGRAPH */
.about-text,
.tp-section p,
.market-section p,
.services-section p,
.contact-section p{
  font-size:16.5px;
  line-height:1.85;
  color:var(--muted);
  max-width:560px;
  margin: 20px;
}

/* STRONG WORDS INSIDE TEXT */
.about-text b,
.tp-section p b,
.market-section p b{
  color:#111827;
  font-weight:600;
}

/* CTA LINKS (Discover, View More, etc.) */
.about-link,
.services-section a,
.gallery-section a{
  display:inline-block;
  margin-top:14px;
  font-size:15px;
  font-weight:600;
   color:#ffffff;
  text-decoration:none;
  transition:all .3s ease;
}

.about-link:hover,
.services-section a:hover,
.gallery-section a:hover{
  transform:translateX(6px);
}

/* ======================================================
   INFO CARD TYPOGRAPHY (MATCH HERO FEEL)
====================================================== */
.info-card h6{
  font-size:15.5px;
  font-weight:700;
  letter-spacing:-0.2px;
  color:#111827;
}

.info-card p{
  font-size:14.5px;
  line-height:1.75;
  color:#6b7280;
}

/* ======================================================
   HERO PARITY (BALANCED)
====================================================== */
.hero-text p{
  font-size:17.5px;
  line-height:1.9;
}

/* ======================================================
   MOBILE TYPOGRAPHY
====================================================== */
@media(max-width:768px){

  .about-section h2,
  .tp-section h2,
  .market-section h2,
  .services-section h2,
  .gallery-section h2,
  .team-section h2,
  .contact-section h2{
    font-size:32px;
    line-height:1.25;
  }

  .about-text,
  .tp-section p,
  .market-section p{
    font-size:15.5px;
  }

  .info-card h6{
    font-size:14.5px;
  }

  .info-card p{
    font-size:13.8px;
  }
}
/* ======================================================
   MARKET SECTION – ICONS & ANIMATIONS
====================================================== */

/* FEATURE BOX */
.feature-box{
  background:#fff;
  padding:18px 20px;
  border-radius:18px;
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:600;
  box-shadow:0 20px 45px rgba(0,0,0,.1);
  transition:.35s ease;
}

.feature-box i{
  font-size:20px;
  color:#ed2024;
  background:var(--blue-soft);
  padding:10px;
  border-radius:12px;
}

.feature-box span{
  font-size:15px;
}

.feature-box:hover{
  transform:translateY(-6px) scale(1.02);
  box-shadow:0 30px 70px rgba(13,110,253,.25);
}

/* PROGRAM CARD */
.program-card h5{
  font-size:18px;
  font-weight:700;
  margin-bottom:14px;
  display:flex;
  align-items:center;
  gap:10px;
}

.program-card h5 i{
   color:#ed2024;
  font-size:22px;
}

.program-card ul{
  padding-left:0;
  list-style:none;
}

.program-card ul li{
  font-size:14.8px;
  color:var(--muted);
  margin-bottom:10px;
  position:relative;
  padding-left:26px;
}

.program-card ul li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
   color:#ed2024;
  font-weight:700;
}

/* HOVER EFFECT */
.program-card{
  transition:.35s ease;
}

.program-card:hover{
  transform:translateY(-8px);
  box-shadow:0 40px 90px rgba(0,0,0,.18);
}

/* ======================================================
   SCROLL FADE ANIMATION
====================================================== */
.fade-item{
  opacity:0;
  transform:translateY(60px);
  transition:1s ease;
}

.fade-item.show{
  opacity:1;
  transform:none;
}
/* ======================================================
   TEAM SECTION – PREMIUM CARD DESIGN
====================================================== */

.team-section h2{
  margin-bottom:10px;
}

/* CARD */
.team-card{
  background:#fff;
  padding:22px;
  border-radius:28px;
  text-align:center;
  box-shadow:0 35px 80px rgba(0,0,0,.12);
  transition:.4s ease;
  height:100%;
}

.team-card:hover{
  transform:translateY(-10px);
  box-shadow:0 45px 100px rgba(13,110,253,.25);
}

/* IMAGE */
.team-img{
  overflow:hidden;
  border-radius:22px;
  margin-bottom:18px;
}

.team-img img{
  width:100%;
  height:260px;
  object-fit:cover;
  transition:.4s ease;
}

.team-card:hover img{
  transform:scale(1.08);
}

/* NAME */
.team-card h6{
  font-size:17px;
  font-weight:700;
  margin-bottom:4px;
}

/* ROLE */
.team-card small{
  font-size:14px;
  color:var(--muted);
}

/* MOBILE */
@media(max-width:768px){
  .team-img img{
    height:380px;
  }
}
/* ================= CONTACT UI (IMAGE MATCH) ================= */

.contact-ui-section{
  background:#f4f8ff;
  padding:110px 0;
  font-family:'Inter',sans-serif;
}

.contact-title{
  font-size:42px;
  font-weight:800;
}
.contact-title span{
   color:#ed2024;
}

/* LEFT CARD */
.contact-info-box{
  background:#fff;
  padding:34px;
  border-radius:26px;
  box-shadow:0 30px 70px rgba(0,0,0,.08);
}

.contact-info-box h5{
  font-size:18px;
  font-weight:700;
  margin-bottom:28px;
}

.contact-row{
  display:flex;
  gap:16px;
  margin-bottom:22px;
}

.contact-row small{
  font-size:11px;
  letter-spacing:.08em;
  color:#6b7280;
  font-weight:600;
}

.contact-row p{
  margin:4px 0 0;
  font-size:14.5px;
  color:#111827;
  line-height:1.6;
}

/* ICON */
.icon-circle{
  width:42px;
  height:42px;
  background:#eef4ff;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
   color:#ed2024;
  font-size:18px;
  flex-shrink:0;
}

/* NOTE */
.contact-note{
  margin-top:26px;
  background:#eef6ff;
  padding:16px;
  border-radius:14px;
  font-size:13.5px;
  color:#334155;
}

/* RIGHT FORM */
.contact-form-box{
  background:#fff;
  padding:34px;
  border-radius:26px;
  box-shadow:0 30px 70px rgba(0,0,0,.08);
}

.contact-form-box label{
  font-size:13px;
  font-weight:600;
  margin-bottom:6px;
}

.contact-form-box .form-control{
  border-radius:12px;
  padding:14px;
  font-size:14px;
}

.contact-form-box .form-control:focus{
   color:#ed2024;
  box-shadow:0 0 0 3px rgba(13,110,253,.15);
}

/* PHONE */
.phone-input{
  display:flex;
  align-items:center;
  gap:10px;
}

.phone-input span{
  background:#f1f5f9;
  padding:12px;
  border-radius:12px;
  font-size:14px;
}

/* MOBILE */
@media(max-width:768px){
  .contact-title{ font-size:30px; }
  .contact-info-box,
  .contact-form-box{ padding:24px; }
}
/* ===============================
   TIME & PRICE – PREMIUM UI
================================ */

.tp-section{
  background:#fff;
}

/* IMAGE WRAP */
.tp-image-wrap{
  position:relative;
  background:#fff;
  padding:18px;
  border-radius:30px;
  box-shadow:0 40px 90px rgba(0,0,0,.15);
  animation:fadeUp 1s ease;
}

.tp-main-img{
  border-radius:22px;
}

/* EXPERIENCE BADGE */
.tp-badge{
  position:absolute;
  right:-15px;
  bottom:-34px;
  background:#fff;
  padding:5px 5px;
  border-radius:22px;
  box-shadow:0 25px 60px rgba(0,0,0,.18);
  text-align:center;
  animation:floatBadge 3s ease-in-out infinite;
}

.tp-badge h3{
  font-size:36px;
  font-weight:800;
   color:#ed2024;
  margin:0;
}

.tp-badge p{
  font-size:14px;
  color:var(--muted);
  margin-top:6px;
  line-height:1.4;
}

/* CONTENT */
.tp-content h2{
  font-size:44px;
  font-weight:800;
  margin:16px 0;
}

.tp-content h2 span{
  color:#ed2024;

}

.tp-desc{
  color:var(--muted);
  max-width:520px;
  margin-bottom:30px;
  font-size:16px;
}

/* PROGRESS */
.tp-progress{
  margin-bottom:22px;
}

.tp-progress-head{
  display:flex;
  justify-content:space-between;
  font-size:14px;
  font-weight:600;
  margin-bottom:8px;
}

.progress{
  height:8px;
  border-radius:999px;
  background:#e5e7eb;
}

.progress-bar{
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,#b00101,#000304);
  animation:fillBar 1.8s ease forwards;
}

.w-70{ width:70%; }
.w-80{ width:80%; }
.w-90{ width:90%; }

/* ANIMATIONS */
@keyframes fadeUp{
  from{ opacity:0; transform:translateY(40px); }
  to{ opacity:1; transform:none; }
}

@keyframes floatBadge{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-10px); }
}

@keyframes fillBar{
  from{ width:0; }
}

/* RESPONSIVE FIX (IMPORTANT) */
@media(max-width:991px){
  .tp-badge{
    position:static;
    margin-top:20px;
  }
}

@media(max-width:768px){
  .tp-content h2{
    font-size:30px;
  }
}

/* HERO SLIDER */
.carousel-item{
  transition:transform .9s ease-in-out, opacity .9s ease-in-out;
}

.hero-text{
  animation:slideFade 1s ease;
}

.hero-image{
  animation:zoomFade 1s ease;
}

@keyframes slideFade{
  from{ opacity:0; transform:translateX(-40px); }
  to{ opacity:1; transform:none; }
}

@keyframes zoomFade{
  from{ opacity:0; transform:scale(.95); }
  to{ opacity:1; transform:scale(1); }
}

/* Hide arrows on mobile */
@media(max-width:768px){
  .carousel-control-prev,
  .carousel-control-next{
    display:none;
  }
}
/* ===============================
   FOOTER – PREMIUM DARK
================================ */
.main-footer{
  background:radial-gradient(circle at top,#111827,#020617);
  color:#cbd5e1;
  padding:90px 0 0;
  font-size:14px;
}

.footer-logo{
  height:100px;
  /* background-color: white;
  border-radius: 20% 20% 20% 20%; */
}

.footer-desc{
  margin:18px 0 24px;
  color:#94a3b8;
  line-height:1.7;
}

/* SOCIAL */
.footer-social a{
  display:inline-flex;
  width:38px;
  height:38px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  align-items:center;
  justify-content:center;
  color:#fff;
  margin-right:8px;
  transition:.3s;
}

.footer-social a:hover{
  background:#0d6efd;
  transform:translateY(-4px);
}

/* TITLES */
.footer-title{
  color:#fff;
  font-weight:700;
  margin-bottom:18px;
}

/* LINKS */
.footer-links{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-links li{
  margin-bottom:10px;
}

.footer-links a{
  color:#94a3b8;
  text-decoration:none;
  transition:.3s;
}

.footer-links a:hover{
  color:#fff;
  padding-left:4px;
}

/* CONTACT */
.footer-contact{
  display:flex;
  gap:12px;
  margin-bottom:14px;
  color:#94a3b8;
}

.footer-contact i{
  color:#0d6efd;
  font-size:16px;
  margin-top:3px;
}

/* BOTTOM */
.footer-bottom{
  margin-top:60px;
  padding:20px 0;
  border-top:1px solid rgba(255,255,255,.08);
  font-size:13px;
  color:#94a3b8;
}

.footer-bottom a{
  color:#cbd5e1;
  text-decoration:none;
}

.footer-bottom span{
  color:#0d6efd;
  font-weight:600;
}

/* MOBILE */
@media(max-width:768px){
  .footer-bottom{
    text-align:center;
  }
}
/* ================= STATS SECTION ================= */

.stats-section{
  background:#f3f4f6;
  padding:90px 0;
}

.stat-card{
  background:#ffffff;
  border-radius:28px;
  text-align:center;
  padding:60px 20px;
  transition:.3s ease;
  height:100%;
}

.stat-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 50px rgba(0,0,0,.1);
}

.stat-card h2{
  font-size:48px;
  font-weight:800;
  color:#0d6efd; /* orange */
  margin-bottom:16px;
}

.stat-card p{
  font-size:18px;
  font-weight:600;
  color:#1f2937;
  letter-spacing:.5px;
}

/* mobile */
@media(max-width:768px){
  .stat-card{
    padding:40px 20px;
  }

  .stat-card h2{
    font-size:36px;
  }

  .stat-card p{
    font-size:16px;
  }
}
.team-modal {
  height: 85vh;
  overflow: hidden;
}

.team-modal .col-lg-7 {
  height: 85vh;
  overflow-y: auto;
}


.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
}

.info-box {
  display: flex;
  gap: 12px;
  padding: 15px;
  background: #f8f9fc;
  border-radius: 14px;
}

/* ===== TOP NEWS LINE ===== */
.top-newsline {
  position: fixed;
  top: 0;
  width: 100%;
  height: 38px;
  background: #c90000;
  color: #fff;
  text-decoration: none;
  z-index: 9999;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* navbar ko niche push karo */
.custom-navbar {
  top: 38px;
}

/* moving text */
.newsline-track {
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
}

.newsline-track span {
  display: inline-block;
  padding-left: 100%;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  animation: newsMove 14s linear infinite;
}

@keyframes newsMove {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}


/* ===== FREE TRIAL SECTION ===== */
.free-trial-section {
  background: #0d0d0d;
  padding: 90px 0;
  overflow: hidden;
  color: #fff;
}

.trial-animation-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* moving background text */
.trial-left,
.trial-right {
  position: absolute;
  font-size: 80px;
  font-weight: 800;
  color: rgba(255,255,255,0.05);
  white-space: nowrap;
}

.trial-left {
  left: -100%;
  animation: leftMove 10s linear infinite;
}

.trial-right {
  right: -100%;
  animation: rightMove 10s linear infinite;
}

@keyframes leftMove {
  from { left: -100%; }
  to { left: 100%; }
}

@keyframes rightMove {
  from { right: -100%; }
  to { right: 100%; }
}



/* center box */
.trial-center {
  background: #111;
  padding: 60px;
  border-radius: 22px;
  z-index: 2;
  box-shadow: 0 0 45px rgba(255,0,0,0.35);
}

.trial-center h2 {
  font-size: 56px;
  font-weight: 800;
  color: #ff3b3b;
  letter-spacing: 3px;
  animation: glowPulse 1.6s infinite;
}

.trial-center p {
  opacity: 0.85;
  margin-bottom: 30px;
}

@keyframes glowPulse {
  0% { text-shadow: 0 0 10px #ff3b3b; }
  50% { text-shadow: 0 0 30px #ff3b3b; }
  100% { text-shadow: 0 0 10px #ff3b3b; }
}

/* mobile */
@media (max-width: 768px) {
  .trial-left,
  .trial-right {
    display: none;
  }

  .trial-center h2 {
    font-size: 30px;
  }
}
.trial-heading-wrap {
  width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}

.trial-moving-text {
  display: inline-block;
  white-space: nowrap;
  font-size: 56px;
  font-weight: 800;
  color: #ff3b3b;
  letter-spacing: 4px;
  animation: moveLeftRight 6s linear infinite;
}

/* LEFT → RIGHT → RESET */
@keyframes moveLeftRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
/* mobile */
@media (max-width: 768px) {
  .trial-moving-text {
    font-size: 38px;
  }
}
/* ===== IMAGE FEATURE BOXES ===== */
/* IMAGE FEATURE */
.img-feature{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 20px 45px rgba(0,0,0,.12);
  transition: .4s ease;
}

.img-feature img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .5s ease;
}

/* BUTTON WRAPPER */
.img-hover-btn{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0,0,0,.45);
  opacity: 0;
  transition: .4s ease;
}

/* BUTTON STYLE */
.trial-btn{
  padding: 12px 30px;
  border-radius: 999px;
  background: #ed2024;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: .5px;

  transform: translateY(20px);
  transition: .4s ease;
  box-shadow: 0 12px 30px rgba(237,32,36,.55);
}

/* HOVER EFFECT */
.img-feature:hover img{
  transform: scale(1.08);
}

.img-feature:hover .img-hover-btn{
  opacity: 1;
}

.img-feature:hover .trial-btn{
  transform: translateY(0);
}

/* ACTIVE GLOW */
.img-feature.active{
  box-shadow:
    0 0 0 3px #ed2024,
    0 35px 90px rgba(237,32,36,.45);
}

/* MOBILE */
@media(max-width:768px){
  .img-feature img{
    height:180px;
  }
}
/* FLOATING SOCIAL BAR */
.social-float{
  position: fixed;
  left: 1px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* BUTTON */
.social-btn{
  width: 52px;
  height: 52px;
  background: #ffffff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;

  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  transition: all 0.35s ease;
}

/* ICON */
.social-btn i{
  font-size: 22px;
  color: #0d6efd;
}

/* HOVER EFFECT */
.social-btn:hover{
  transform: translateX(6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* PLATFORM COLORS (ICON ONLY – clean look) */
.social-btn.fb i{ color:#1877F2; }
.social-btn.ig i{ color:#E4405F; }
.social-btn.tg i{ color:#229ED9; }
.social-btn.in i{ color:#0A66C2; }
.social-btn.yt i{ color:#FF0000; }

/* MOBILE HIDE (optional) */
@media(max-width:768px){
  .social-float{
    display:none;
  }
}
/* FLOAT BUTTON */
/* FLOAT BUTTON */
.wa-float{
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 16px 35px rgba(0,0,0,.35);
}

/* CHAT BOX */
.wa-chat{
  position: fixed;
  right: 36px;
  bottom: 73px;
  width: 335px;
  background: #eaeef2;
  border-radius: 16px;
  overflow: hidden;
  display: none;
  z-index: 9999;
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
  animation: waUp .35s ease;
}

/* HEADER */
.wa-header{
  background: #25D366;
  padding: 14px 16px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wa-profile{
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-avatar{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.wa-title strong{
  font-size: 15px;
  display: block;
}

.wa-title span{
  font-size: 12px;
  opacity: .9;
}

.wa-close{
  font-size: 22px;
  cursor: pointer;
}

/* BODY */
.wa-body{
  padding: 16px;
}

.wa-msg{
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  max-width: 85%;
  box-shadow: 0 6px 14px rgba(0,0,0,.08);
}

.wa-msg small{
  display: block;
  text-align: right;
  font-size: 11px;
  color: #666;
  margin-top: 6px;
}

/* FOOTER */
.wa-footer{
  background: #fff;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wa-footer input{
  flex: 1;
  border: none;
  outline: none;
  background: #f0f2f5;
  padding: 10px 14px;
  border-radius: 20px;
  font-size: 14px;
}

.wa-footer button{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #25D366;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

/* ANIMATION */
@keyframes waUp{
  from{ opacity:0; transform:translateY(20px); }
  to{ opacity:1; transform:none; }
}
/* ===============================
   FREE AUTO + HOVER NUDGE
================================ */
.free-nudge{
  position:fixed;
  right:16px;
  top:50%;
  transform:translateY(-50%);
  z-index:9999;
  font-family:'Inter',system-ui;
}

/* BLINK EFFECT */
.blink{
  animation:blinkFree 1.2s infinite;
}

@keyframes blinkFree{
  0%,100%{ opacity:1; }
  50%{ opacity:.35; }
}

/* MINI FREE */
.free-mini{
  background:#111;
  color:#fff;
  padding:10px 14px;
  border-radius:10px;
  font-size:13px;
  font-weight:900;
  letter-spacing:1px;
  box-shadow:0 12px 30px rgba(0,0,0,.35);
  cursor:pointer;
}

/* POPUP */
.free-popup{
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%) scale(.6);
  background:#000;
  color:#fff;
  padding:16px 22px;
  border-radius:18px;
  opacity:0;
  pointer-events:none;
  box-shadow:0 20px 45px rgba(0,0,0,.45);
  transition:.35s ease;
  min-width:125px;
}

/* SHOW POPUP (HOVER OR AUTO) */
.free-nudge.show .free-popup,
.free-nudge:hover .free-popup{
  opacity:1;
  transform:translateY(-50%) scale(1);
  pointer-events:auto;
}

/* BIG FREE */
.free-big{
  font-size:22px;
  font-weight:900;
  color:#ff2b2b;
  letter-spacing:2px;
}

/* TEXT */
.free-text strong{
  font-size:20px;
  display:block;
  margin-top:4px;
}

.free-text span{
  font-size:14px;
  opacity:.85;
}

/* MOBILE */
@media(max-width:768px){
  .free-nudge{
    top:auto;
    bottom:350px;
  }
}
/* ===== BASE ===== */
.scroll-anim{
  opacity: 0;
  transition: all 0.8s ease;
  will-change: transform, opacity;
}

/* WHEN ACTIVE */
.scroll-anim.active{
  opacity: 1;
  transform: translate(0,0);
}

/* ===== ANIMATION TYPES ===== */

/* Fade Up */
.fade-up{
  transform: translateY(60px);
}

/* Fade Down */
.fade-down{
  transform: translateY(-60px);
}

/* Fade Left */
.fade-left{
  transform: translateX(-60px);
}

/* Fade Right */
.fade-right{
  transform: translateX(60px);
}

/* Zoom */
.zoom-in{
  transform: scale(0.85);
}
.zoom-in.active{
  transform: scale(1);
}
