/* Tailwind Base Equivalents */
body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  background: white;
  scroll-behavior: smooth;
}

* {
  scroll-margin-top: 5rem;
  box-sizing: border-box;
}

/* Navigation */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
}





/*  */
/* HOME PAGE HEADER CSS */
/* Reset default styles */

body {
  font-family: 'Inter', sans-serif;
}

.nav {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0 20px;
  flex-wrap: wrap;
}

.nav li {
  margin: 0 15px;
}

.nav a {
  text-decoration: none;
  font-weight: 600;
  color: #333;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

/* .nav a:hover {
  background: linear-gradient(135deg,#10b981,#14b8a6);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
} */

/* Active link */
.nav a.active {
  background: linear-gradient(135deg,#01049d,#01049d);
  color: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}



/* mobile version 3 dots */
/* Desktop Active Link */
.nav a.active {
  background: linear-gradient(135deg, #fcb213, #dd3468);
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Mobile Active Link */
@media (max-width: 768px) {
  .nav a.active {
    background: linear-gradient(135deg, #fcb213, #dd3468);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    transition: all 0.3s ease;
  }

  /* Optional: spacing between mobile links */
  .nav a {
    margin-bottom: 0px;
  }
}




/* Optional: underline animation */
.nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 4px;
  left: 0;
  background-color: #10b981;
  transition: width 0.3s;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

/* Responsive */
@media(max-width:768px) {
  .nav ul {
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
  }
  .nav li {
    margin: 0;
  }
}


/* CONTINUE */
.html {
  scroll-behavior: smooth;
}



/*  */
/* for header home,about us etc */
/* ===== NAVBAR STYLING ===== */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* LOGO */
.logo-img {
  height: 60px;
  transition: transform 0.3s ease;
}
.logo-img:hover {
  transform: scale(1.05);
}

/* LINKS */
.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  margin: 0 10px;
  padding: 10px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* Hover Effect */
.nav-links a:hover {
  background: #f0f0f0;
  color: #000 !important;   /* Force text color to black */
}


/* Active Page Effect */
.nav-link.active {
  background: linear-gradient(to right, #2196f3, #00bcd4);
  color: #fff !important;
  box-shadow: 0 4px 10px rgba(33,150,243,0.3);
  transform: translateY(-1px);
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  border-top: 1px solid #eee;
  text-align: center;
}

.mobile-menu a {
  padding: 15px;
  display: block;
  color: #ffcf4f;
  border-bottom: 1px solid #f1f1f1;
}

.mobile-menu a:hover {
  background: #f7f7f7;
}

.mobile-menu.show {
  display: flex;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .desktop {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}


/* ===== HERO SECTION ===== */
.hero-section {
  margin-top: 80px; /* for fixed navbar */
  background: #f9f9f9; /* 🟢 Gradient removed */
  color: #222;
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: auto;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-content h1 span {
  color: #00796b;
}

.hero-content p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
}

.cta-btn {
  background: linear-gradient(to right, #2196f3, #00bcd4);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: linear-gradient(to right, #00bcd4, #2196f3);
  transform: scale(1.05);
}



/* FOOTER CSS */
/* ===== FOOTER STYLES ===== */
.footer {
  background: #0c0a6f; /* Dark blue base */
  color: #e2e8f0;
  padding: 70px 20px 30px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to right, #dc3169, #fec33b, #f64f2a, #0c0a6f);
  filter: blur(60px);
  opacity: 0.2;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  width: 220px;
  margin-bottom: 15px;
  border-radius: 10px;
}

.footer p {
  font-size: 15px;
  line-height: 1.7;
  color: #cbd5e1;
}

.footer h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
}

.footer h3::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 3px;
  background: #fec33b; /* Highlight line using logo-inspired color */
  border-radius: 2px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer ul li a:hover {
  color: #fec33b; /* Hover matches logo colors */
  transform: translateX(4px);
}


/* footer social media css */
  .social-icons {
    display: flex;
    gap: 18px;
    align-items: center;
  }

  /* Center align on mobile */
  @media (max-width: 768px) {
    .social-icons {
      justify-content: center;
    }
  }

  .brand-icon {
    margin-top: 10px;
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .brand-icon:hover {
    transform: scale(1.15);
    opacity: 0.8;
  }

  /* Custom size ONLY for YouTube icon */
  .yt-icon {
    width: 40px !important;
    height: 32px !important;
  }



.footer .contact p i {
  color: #fec33b;
  margin-right: 8px;
}

.footer .map-container iframe {
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer .map-container iframe:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: #94a3b8;
}

.footer-bottom p a {
  color: #fec33b;
  text-decoration: none;
}

/* ===== WAVE ANIMATION ===== */
.footer-wave {
  position: absolute;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.footer-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 120px; /* Taller wave */
  animation: waveMove 10s linear infinite;
}

@keyframes waveMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

.footer-col:nth-child(1) { animation-delay: 0.2s; }
.footer-col:nth-child(2) { animation-delay: 0.4s; }
.footer-col:nth-child(3) { animation-delay: 0.6s; }
.footer-col:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .footer-container {
    text-align: center;
  }

  .footer h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer .social {
    margin: 5px;
  }
}

/* FOOTER WAVE ANIMATION */
.footer-wave {
  position: absolute;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.footer-wave svg {
  position: relative;
  display: block;
  width: calc(200% + 1.3px); /* double width for continuous horizontal movement */
  height: 120px;
}

.footer-wave path {
  animation: waveMove 10s linear infinite, waveFloat 6s ease-in-out infinite alternate;
}

/* Horizontal movement */
@keyframes waveMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Subtle vertical float */
@keyframes waveFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(5px); }
  100% { transform: translateY(0); }
}


/* tackle-d footer */
.footer-bottom {
  text-align: center;
  padding: 18px 0;
  font-size: 0.95rem;
  color: #fff;
  background-color: #0c0a6f;
}

/* Tackle-D branding */
.footer-bottom {
  text-align: center;
  padding: 18px 0;
  font-size: 0.95rem;
  color: #fff;
  background-color: #0c0a6f;
}

/* Tackle-D branding */
.footer-link {
  text-decoration: none;
}

.tackle-d {
  color: #000;
  font-weight: 700;
  background: #ffc50a;
  padding: 3px 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.tackle-d:hover {
  color: #ffc50a;
  background: #000;
  text-shadow: 0 0 8px rgba(255, 197, 10, 0.6);
}

/* Heart animation */
.heart {
  color: #ffc50a;
  animation: heartbeat 1.5s infinite ease-in-out;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}


/* fb,insta */





/*NAVIGATION CSS INDEX */
/* NAVIGATION BAR */
.nav {
  position: sticky;
  top: 0;
  width: 100%;
  background: linear-gradient(90deg, #0c0a6f);
  background-size: 300% 300%;
  animation: gradientFlow 10s ease infinite;
  box-shadow: 0 5px 25px rgba(0,0,0,0.3);
  z-index: 1000;
  backdrop-filter: blur(10px);
}

/* Container */
.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 10px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo-img {
  height: 60px;
  width: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.logo-img:hover {
  transform: scale(1.05);
}

/* Desktop Links */
.nav-links {
  display: flex;
  gap: 25px;
}

.nav-link {
  position: relative;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 3px;
  background: #fec33b;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #fec33b;
}

.nav-link:hover::after {
  width: 100%;
}

/* Active Page */
.nav-link.active {
  color: #fec33b;
}
.nav-link.active::after {
  width: 100%;
}

/* Mobile Menu Button */
.menu-toggle {
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  display: none;
}

/* Mobile Dropdown */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(5, 14, 143, 0.95);
  text-align: center;
  padding: 15px 0;
}

.mobile-menu.show {
  display: flex;
  animation: slideDown 0.4s ease forwards;
}

/* Mobile Links */
.mobile-menu .nav-link {
  padding: 10px;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Animations */
@keyframes slideDown {
  from {opacity: 0; transform: translateY(-10px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes gradientFlow {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

/* Responsive */
@media (max-width: 992px) {
  .nav-links.desktop {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}


:root {
  --blue: #0c0a6f;
  --pink: #dc3169;
  --yellow: #fec33b;
  --orange: #f86f48;
}

/* --- SLIDER BASE --- */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

/* --- SLIDES --- */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.3s ease, transform 1.3s ease;
  text-shadow: 0 3px 12px rgba(0,0,0,0.5);
}
.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* --- HEADINGS --- */
.slide h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--yellow);
  line-height: 1.2;
  animation: fadeUp 1.4s ease both;
}

/* --- PARAGRAPH --- */
.slide p {
  max-width: 750px;
  font-size: 1.5rem;
  line-height: 1.8;
  margin: 1rem auto 0;
  animation: fadeUp 1.6s 0.2s ease both;
}

/* --- BUTTON --- */
.btn {
  margin-top: 2rem;
  padding: 16px 36px;
  font-size: 1.1rem;
  border-radius: 10px;
  font-weight: 800;
  background: var(--yellow);
  color: #111;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: fadeUp 1.8s 0.4s ease both;
}
.btn:hover {
  background: var(--orange);
  transform: scale(1.05);
}

/* --- DOTS --- */
.dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.dot {
  width: 14px;
  height: 14px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot.active {
  background: var(--yellow);
  transform: scale(1.3);
  box-shadow: 0 0 10px var(--yellow), 0 0 20px var(--orange);
  animation: pulse 2s infinite alternate;
}

/* --- SIDE BUTTONS --- */
.nav-btn {
  position: absolute;
  top: 62%;
  transform: translateY(-50%);
  background: #ffffff;   /* SOLID COLOR */
  color: #000000;
  border: none;
  font-size: 2.2rem;
  padding: 5px 15px;
  border-radius: 100%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.nav-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 20px var(--yellow), 0 0 35px var(--orange);
}
.prev { left: 40px; }
.next { right: 40px; }

/* --- ANIMATIONS --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 5px var(--yellow), 0 0 10px var(--pink); }
  100% { box-shadow: 0 0 20px var(--yellow), 0 0 40px var(--orange); }
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .slide h1 { font-size: 2.5rem; }
  .slide p { font-size: 1.1rem; max-width: 90%; }
  .btn { padding: 12px 24px; font-size: 1rem; }
  .prev { left: 15px; }
  .next { right: 15px; }
  .nav-btn { font-size: 1.4rem; padding: 8px 14px; }
}


/* INDEX */
/* ABOUT US */
:root {
  --blue: #0c0a6f;
  --pink: #dc3169;
  --yellow: #fec33b;
  --orange: #f86f48;
}

/* About Section */
.about-us-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f0f4ff, #e0e7ff);
  overflow: hidden;
}

.about-us-section .container {
  max-width: 1200px;
  margin: auto;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1 1 500px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s forwards;
  animation-delay: 0.3s;
}

.about-text h2 {
  font-size: 3rem;
  color: var(--blue);
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 25px;
}

.features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.features li {
  background: var(--yellow);
  color: #111;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

.features li:nth-child(1) { animation-delay: 0.5s; }
.features li:nth-child(2) { animation-delay: 0.7s; }
.features li:nth-child(3) { animation-delay: 0.9s; }
.features li:nth-child(4) { animation-delay: 1.1s; }

.about-image {
  flex: 1 1 400px;
  text-align: center;
  opacity: 0;
  transform: scale(0.8);
  animation: popIn 1s forwards;
  animation-delay: 0.6s;
}

.about-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Animations */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
  0% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}

/* Responsive */
@media (max-width: 992px) {
  .about-content { flex-direction: column; }
  .about-text h2 { font-size: 2.4rem; }
  .about-text p { font-size: 1.1rem; }
  .features li { font-size: 0.95rem; padding: 8px 15px; }
}


/* INDEX */
/* WHY CHOOSE US */
/* ===== WHY CHOOSE SECTION ===== */
.why-choose {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0c0a6f 0%, #0b1365 100%);
  text-align: center;
  color: white;
  overflow: hidden;
}

/* ===== TITLES ===== */
.why-choose .section-title {
  font-size: 2.6rem;
  font-weight: 700;
  background: linear-gradient(90deg, #fec33b, #dc3169, #f86f48);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeInUp 1s forwards;
}

.why-choose .underline {
  width: 90px;
  height: 4px;
  margin: 10px auto 25px;
  background: linear-gradient(90deg, #fec33b, #dc3169, #f86f48);
  border-radius: 2px;
  opacity: 0;
  animation: growWidth 1s forwards 0.3s;
}

.why-choose .subtitle {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeInUp 1s forwards 0.5s;
}

/* ===== GRID ===== */
.stats-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

/* ===== CARD ===== */
.stat {
  width: 220px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  perspective: 1000px;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUpGlow 1.2s forwards;
  transition: transform 0.3s ease;
}

.card-inner {
  padding: 35px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.stat:hover .card-inner {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  border: 2px solid;
  border-image: linear-gradient(90deg, #fec33b, #dc3169, #f86f48) 1;
}

/* ===== TEXT ===== */
.stat h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #fec33b;
  margin-bottom: 10px;
}

.stat p {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes growWidth {
  0% { width: 0; opacity: 0; }
  100% { width: 90px; opacity: 1; }
}

@keyframes fadeUpGlow {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ===== STAGGER ANIMATION ===== */
.stat:nth-child(1) { animation-delay: 0.6s; }
.stat:nth-child(2) { animation-delay: 0.8s; }
.stat:nth-child(3) { animation-delay: 1s; }
.stat:nth-child(4) { animation-delay: 1.2s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .stats-grid { gap: 25px; }
  .stat { width: 160px; }
  .why-choose .section-title { font-size: 2rem; }
}

/* ===== MOBILE 2x2 GRID FIX ===== */
@media (max-width: 768px) {
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 25px;
  }

  .stat {
    width: 160px;
  }
}


/* INDEX */
/* SERVICES CARD */
/* ===== SERVICES SECTION ===== */
/* ===== SERVICES SECTION ===== */
.services {
  padding: 50px 20px;
  background: linear-gradient(135deg, #e6f2ff, #f9f9f9);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #dc3169, #dc3169, #fec33b, #f86f48);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 6s ease infinite;
}

.section-description {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 60px;
}

/* Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  perspective: 1200px;
}

/* Card */
.service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  padding: 30px 20px;
  transition: all 0.5s ease;
  box-shadow: 0 20px 35px rgba(0,0,0,0.1), 0 0 15px rgba(254,195,59,0.1) inset;
  cursor: pointer;
  overflow: hidden;
  transform-style: preserve-3d;
}

/* Shimmer effect */
.service-card .shimmer {
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: shimmer 2s infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes shimmer {
  0% { left: -75%; }
  100% { left: 125%; }
}

/* Hover Glow */
.service-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 35px 60px rgba(0,0,0,0.25), 0 0 30px rgba(254,195,59,0.2) inset;
}

.service-card .icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #0c0a6f;
  transition: transform 0.3s ease;
}

.service-card:hover .icon {
  transform: rotate(15deg) scale(1.2);
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #0c0a6f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* ===== MOBILE SCROLL & DOTS ===== */
@media(max-width: 768px) {
  .service-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .service-card {
    flex: 0 0 80%;
    scroll-snap-align: center;
  }

  .service-grid::-webkit-scrollbar { display: none; }

  .service-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
  }

  .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(5,14,143,0.3);
    transition: all 0.3s ease;
  }

  .dot.active {
    background: #fec33b;
    transform: scale(1.3);
    box-shadow: 0 0 10px #f86f48;
    animation: pulseDot 2s infinite alternate;
  }

  @keyframes pulseDot {
    0% { box-shadow: 0 0 5px #dc3169, 0 0 10px #fec33b; }
    100% { box-shadow: 0 0 15px #f86f48, 0 0 25px #fec33b; }
  }
}

/* Gradient Text Animation */
@keyframes gradientText {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

/* INDEX */
/* Transform Your Financial Future */
/* ===== CTA SECTION ===== */
.cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0c0a6f, #dc3169);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Trophy Container */
.award-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

/* Trophy Icon */
.award {
  font-size: 4rem;
  color: #FFD700;
  text-shadow: 0 0 10px #FFD700, 0 0 25px #fec33b, 0 0 35px #fec33b;
  animation: floatTrophy 3s ease-in-out infinite, shimmerGlow 2s infinite alternate;
}

/* Floating Trophy Motion */
@keyframes floatTrophy {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Glow Animation for Trophy */
@keyframes shimmerGlow {
  0% { text-shadow: 0 0 10px #FFD700, 0 0 20px #fec33b; }
  100% { text-shadow: 0 0 25px #FFD700, 0 0 35px #fec33b; }
}

/* Heading with Shimmer */
.shimmer-text {
  font-size: 2.8rem;
  font-weight: 700;
  display: inline-block;
  background: linear-gradient(90deg, #fec33b, #f86f48, #dc3169, #0c0a6f, #fec33b);
  background-size: 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerSlide 20s linear infinite;
  margin-bottom: 15px;
}

/* Shimmer Animation */
@keyframes shimmerSlide {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Paragraph */
.cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Button */
.cta-btn {
  display: inline-block;
  padding: 14px 35px;
  border-radius: 30px;
  background: linear-gradient(90deg, #0c0a6f, #dc3169);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(90deg, #fec33b, #f86f48);
}

/* Responsive */
@media (max-width: 768px) {
  .shimmer-text {
    font-size: 2rem;
  }
  .award {
    font-size: 3rem;
  }
}



/* INDEX */
/* EXPERTISE YOU CAN TRUST */
/* ===== Futuristic Trust Section ===== */
.trust-futuristic {
  position: relative;
  background: linear-gradient(135deg, #0c0a6f, #060d6f);
  color: #fff;
  padding: 5rem 0;
  text-align: center;
  font-family: 'Inter','Poppins', sans-serif;
  overflow: hidden;
}

/* Header */
.trust-futuristic .trust-header .section-subtitle {
  text-transform: uppercase;
  font-weight: 600;
  color: #fec33b;
  display: block;
  margin-bottom: 0.5rem;
  animation: fadeInUp 1s forwards;
}
.trust-futuristic .trust-header .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #FFD700;
  animation: fadeInUp 1s forwards 0.2s;
}
.trust-futuristic .trust-header .section-description {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 4rem;
  animation: fadeInUp 1s forwards 0.4s;
}



/* Grid */
.trust-futuristic .trust-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
  z-index: 1;
  perspective: 1200px;
}

/* Card */
.trust-futuristic .trust-item {
  background: rgba(255,255,255,0.05);
  border-radius: 1rem;
  padding: 2rem 1rem;
  width: 250px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4), 0 0 20px rgba(254,195,59,0.2) inset;
  transform-style: preserve-3d;
  animation: floatLoop 6s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

/* Inner light streak animation */
.trust-futuristic .trust-item .inner-light {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(120deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.05) 100%);
  transform: skewX(-25deg);
  animation: lightSweep 3s infinite;
  pointer-events: none;
}

/* Icon */
.trust-futuristic .trust-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: iconPulse 2s infinite;
}

/* Hover */
.trust-futuristic .trust-item:hover {
  transform: translateY(-15px) rotateX(0deg) scale(1.08);
  box-shadow: 0 25px 50px rgba(254,195,59,0.7), 0 0 40px rgba(255,255,255,0.3) inset;
  border: 1px solid rgba(254,195,59,0.4);
}

/* Animations */
@keyframes rotateRings {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes floatLoop {
  0%, 100% { transform: translateY(0) rotateX(5deg); }
  50% { transform: translateY(-15px) rotateX(-5deg); }
}

@keyframes lightSweep {
  0% { left: -200%; }
  100% { left: 200%; }
}

@keyframes iconPulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.2) rotateZ(5deg); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media(max-width:768px){
  .trust-futuristic .trust-grid { flex-direction: column; align-items: center; }
}


.trust-futuristic .trust-item h3 {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  background: linear-gradient(120deg, #fff, #fec33b, #dc3169, #fff);
  background-size: 250%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerText 3s infinite linear;

  /* 👇 Added space between h3 and paragraph */
  margin-bottom: 12px;
}



/* INDEX */
/* AWARDS AND ACHIEVEMENTS */
/* for mobile version img dispay center */


/* ==================== Achievements Section ==================== */
.achievements {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f9f9f9, #f0f0f0);
  padding: 5rem 0;
  text-align: center;
}

.achievements-header {
  margin-bottom: 3rem;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #dc3169;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0c0a6f;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.1rem;
  color: #555;
}

/* ==================== Carousel ==================== */
.achievements-carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s ease;
  will-change: transform;
  cursor: grab;
}

/* ==================== Achievement Items ==================== */
.achievement-item {
  position: relative;
  min-width: 200px;
  height: 200px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  cursor: grab;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Glowing Animated Background */
.achievement-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0c0a6f, #dc3169, #fec33b, #f86f48);
  background-size: 400%;
  filter: blur(30px);
  z-index: 0;
  opacity: 0.4;
  animation: moveGlow 6s linear infinite;
}

@keyframes moveGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.achievement-item img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.achievement-item:hover img {
  transform: scale(1.05);
}

.achievement-item:hover::before {
  opacity: 0.7;
}


/* ==================== Modal ==================== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal.show {
  display: flex !important;
}

.modal-content {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 1rem;
  object-fit: contain;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.4s ease forwards;
}

.close {
  position: absolute;
  top: 15px;
  right: 25px;
  color: #fff;
  font-size: 35px;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover {
  color: #fec33b;
  transform: scale(1.1);
}

/* ==================== Animations ==================== */
@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ==================== Responsive ==================== */
@media (max-width: 768px) {
  .achievement-item { min-width: 130px; height: 130px; }
  .section-title { font-size: 2rem; }
  .section-description { font-size: 1rem; }
}

@media (max-width: 480px) {
  .achievement-item { min-width: 100px; height: 100px; }
  .section-title { font-size: 1.8rem; }
}




/*  */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(45deg,#dc3169);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0.2rem 1rem;
  cursor: pointer;
  border-radius: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  z-index: 2;
  animation: glow 2s infinite alternate;
}
.carousel-btn.prev { left: 1rem; }
.carousel-btn.next { right: 1rem; }
.carousel-btn:hover {
  transform: translateY(-50%) scale(1.2);
  box-shadow: 0 0 20px #dc3169, 0 0 30px #0c0a6f;
}

/* Modal Close Button */
.modal-image-wrapper {
  position: relative;
  display: inline-block;
}
.close {
  position: absolute;
  top: 8px;
  right: 48px;
  font-size: 28px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border-radius: 50%;
  padding: 5px 10px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}
.close:hover {
  background: linear-gradient(45deg, #0c0a6f, #dc3169);
  transform: scale(1.1);
}
@media (max-width: 480px) {
  .close {
    font-size: 24px;
    top: 5px;
    right: 25px;
    padding: 4px 8px;
  }
}


/*  */
/* =============== ACHIEVEMENT ITEM GLOW EFFECT =============== */
.achievement-item {
  position: relative;
  min-width: 180px;
  height: 180px;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
}

/* Add glow behind each image */
.achievement-item::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 1.2rem;
  background: radial-gradient(circle at center,
    rgba(254, 195, 59, 0.7),
    rgba(216, 49, 105, 0.4),
    rgba(5, 14, 143, 0.3),
    transparent 70%);
  filter: blur(15px);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 0;
  animation: softGlow 4s ease-in-out infinite alternate;
}

/* Hover makes the glow more visible */
.achievement-item:hover::before {
  opacity: 1;
  transform: scale(1);
}

/* Keep the image on top */
.achievement-item img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

/* On hover, image zooms slightly */
.achievement-item:hover img {
  transform: scale(1.05);
}

/* =============== GLOW ANIMATION =============== */
@keyframes softGlow {
  0% {
    filter: blur(12px);
    opacity: 0.4;
    background: radial-gradient(circle at 30% 30%,
      rgba(254, 195, 59, 0.6),
      rgba(248, 111, 72, 0.3),
      rgba(5, 14, 143, 0.2),
      transparent 70%);
  }
  50% {
    filter: blur(18px);
    opacity: 0.8;
    background: radial-gradient(circle at 70% 70%,
      rgba(220, 49, 105, 0.6),
      rgba(248, 111, 72, 0.4),
      rgba(254, 195, 59, 0.3),
      transparent 80%);
  }
  100% {
    filter: blur(14px);
    opacity: 0.5;
    background: radial-gradient(circle at center,
      rgba(5, 14, 143, 0.5),
      rgba(220, 49, 105, 0.4),
      rgba(254, 195, 59, 0.3),
      transparent 80%);
  }
}


/*  */
/* Show 3 images at once on mobile */
@media (max-width: 768px) {
  .carousel-track {
    gap: 0.8rem !important; /* reduce spacing */
  }

  .achievement-item {
    min-width: calc(33.33% - 0.8rem); /* 3 images per row */
    height: 100px; /* reduce height for better fit */
  }

  .achievement-item img {
    border-radius: 10px;
    object-fit: cover;
  }

  /* Reduce button overlap */
  .carousel-btn {
    font-size: 1.2rem;
    padding: 0.4rem 0.6rem;
    top: 45%;
    z-index: 2;
  }

  .carousel-btn.prev { left: 0.2rem; }
  .carousel-btn.next { right: 0.2rem; }

  /* Ensure title and description fit well */
  .achievements-header .section-title {
    font-size: 1.5rem;
  }
  .achievements-header .section-description {
    font-size: 0.9rem;
  }
}



 



/* INDEX */
/* TESTIMONIALS */    
/* Premium Testimonials Header Alignment & Spacing */
.premium-testimonials .testimonials-header {
  text-align: center !important; /* force center */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px; /* space between header and cards */
}

.premium-testimonials .testimonials-header .section-subtitle,
.premium-testimonials .testimonials-header .section-title,
.premium-testimonials .testimonials-header .section-description {
  text-align: center !important;
  margin: 5px 0; /* spacing between lines */
}

/* Optional: Add extra spacing above the slider */
.premium-testimonials .testimonials-slider-wrapper {
  margin-top: 20px; /* adds some breathing room */
}

    /* Section Background & Text */
    .premium-testimonials {
      background: linear-gradient(135deg, #0c0a6f, #dc3169);
      padding: 80px 20px;
      color: #fff;
      overflow: hidden;
    }
    .testimonials-header .section-subtitle {
      font-weight: 700;
      color: #fec33b;
      text-transform: uppercase;
      letter-spacing: 2px;
      display: block;
      margin-bottom: 10px;
      font-size: 0.9rem;
    }
    .testimonials-header .section-title {
      font-size: 2.5rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 10px;
    }
    .testimonials-header .section-description {
      font-size: 1.1rem;
      color: #f0f0f0;
      margin-bottom: 50px;
    }

    /* Slider Wrapper */
    .testimonials-slider-wrapper {
      overflow: hidden;
      max-width: 1100px;
      margin: 0 auto;
      position: relative;
    }

    /* Slide Track */
    .testimonial-slide-track {
      display: flex;
      transition: transform 0.7s ease-in-out;
    }

    /* Slide */
    .testimonial-slide {
      display: flex;
      justify-content: space-between;
      flex: 0 0 100%;
    }
    

    /* Testimonial Card */
    .testimonial-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 25px;
      padding: 60px 25px;
      box-shadow: 0 15px 35px rgba(0,0,0,0.2);
      text-align: center;
      flex: 1;
      margin: 0 10px;
      position: relative;
      overflow: hidden;
      animation: floatCard 6s ease-in-out infinite;
    }

    /* Floating Animation */
    @keyframes floatCard {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    /* Client Image + Glow */
    .img-wrapper { position: relative; display: inline-block; margin-bottom: 15px; }
    .client-img { width: 90px; height: 90px; border-radius: 50%; border: 3px solid #fec33b; object-fit: cover; z-index: 2; position: relative; }
    .img-glow { position: absolute; top: -5px; left: -5px; width: 70px; height: 70px; border-radius: 50%; background: radial-gradient(circle, rgba(252,195,59,0.6) 0%, transparent 70%); animation: glowPulse 2s ease-in-out infinite; z-index: 1; }
    @keyframes glowPulse { 0%,100% { transform: scale(1); opacity: 0.7; } 50% { transform: scale(1.2); opacity: 0.4; } }

    /* Texts */
    .testimonial-text { font-size: 1rem; font-style: italic; margin-bottom: 15px; color: #fff; }
    .client-name { font-weight: 700; color: #f64f2a; margin-bottom: 10px; font-size: 1.05rem; }
    .stars { font-size: 1.2rem; color: #fec33b; }
    .testimonial-card:hover { transform: translateY(-12px) scale(1.03); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }

    /* Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(252, 195, 59, 0.9);
  color: #0c0a6f;
  border: none;
  font-size: 1.8rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  opacity: 0.85;
  transition: opacity 0.25s ease, transform 0.2s ease, background 0.2s;
}

.slider-btn:hover,
.slider-btn:focus {
  opacity: 1;
  background: #fec33b;
  transform: translateY(-50%) scale(1.08);
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

/* Always visible except on tiny mobile screens */
.slider-btn {
  display: flex;           /* better centering of arrow */
  align-items: center;
  justify-content: center;
}

@media (max-width: 576px) {    /* phones only */
  .slider-btn {
    display: none;           /* swipe friendly */
  }
}

/* Optional: make them a bit smaller & inset on tablets */
@media (min-width: 577px) and (max-width: 992px) {
  .prev-btn { left: 5px; }
  .next-btn { right: 5px; }
  .slider-btn {
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
  }
}

    /* Responsive */
    @media(max-width:992px){
      .testimonial-slide { flex-direction: column; }
      .testimonial-card { margin: 10px 0; }
      .slider-btn { display: block; }
    }


    /*  */
.testimonial-card {
    /* existing styles ... */

    /* NEW */
    min-height: 380px;           /* ← adjust this value after testing */
    display: flex;
    flex-direction: column;
    justify-content: space-between;   /* pushes name/stars to bottom */
}

.testimonial-text {
    /* existing ... */
    flex-grow: 1;               /* ← very important: text takes available space */
    display: flex;
    align-items: center;        /* centers shorter text vertically if you want */
    margin-bottom: 20px;        /* more breathing room before name */
}

    

/* INDEX */
/* FINANCIAL FREEDOM CLASSES */
:root {
  --blue: #0c0a6f;
  --pink: #dc3169;
  --yellow: #fec33b;
  --orange: #f86f48;
}

/* Base Section */
.premium-offer-section {
  position: relative;
  background: radial-gradient(circle at top, #f0f4ff, #e0e7ff);
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
}

/* Titles */
.offer-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 15px;
  text-transform: uppercase;
  animation: slideDown 1s ease-out;
}
.offer-subtitle {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 40px;
  animation: fadeIn 1s 0.5s forwards;
  opacity: 0;
}



/* Wrapper */
.coin-btn-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  position: relative;
}

/* Coin Container */
.coin-above-btn {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.2), rgba(0,0,0,0.3));
  box-shadow:
    0 4px 15px rgba(0,0,0,0.3),
    0 10px 20px rgba(0,0,0,0.2),
    inset 0 0 15px rgba(255,255,255,0.4);
  animation: coinPop 2s ease-in-out infinite;
  overflow: visible;
  z-index: 2;
}

/* Coin Image */
.coin-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: inset 0 0 20px rgba(255,255,255,0.3);
  transition: transform 0.4s ease;
}

.coin-above-btn:hover .coin-img {
  transform: scale(1.08) rotate(5deg);
}

/* Sparkles remain same */


/* Sparkle Particles */
.sparkle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--pink), var(--yellow));
  box-shadow: 0 0 6px var(--yellow), 0 0 10px var(--pink);
  opacity: 0;
  animation: sparkleAnim 2s infinite;
}

.sparkle1 { top: -10px; left: 20%; animation-delay: 0s; }
.sparkle2 { top: 10%; right: -10px; animation-delay: 0.3s; }
.sparkle3 { bottom: -10px; left: 50%; animation-delay: 0.6s; }

/* Enroll Button */
.enroll-btn {
  background: linear-gradient(90deg, var(--blue), var(--pink), var(--yellow), var(--orange));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 16px 50px;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(254,195,59,0.5), 0 0 40px rgba(220,49,105,0.4);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  animation: buttonPulse 2s ease-in-out infinite;
}

.enroll-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: linear-gradient(120deg, rgba(255,255,255,0.4), rgba(255,255,255,0) , rgba(255,255,255,0.4));
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.enroll-btn:hover::before {
  transform: translateX(120%);
}

.enroll-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(254,195,59,0.8), 0 0 50px rgba(220,49,105,0.6);
}

/* Animations */
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes slideDown {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes coinPop {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(0,0,0,0.3), 0 10px 20px rgba(0,0,0,0.2), inset 0 0 15px #fff; }
  50% { transform: scale(1.15); box-shadow: 0 6px 25px rgba(0,0,0,0.4), 0 12px 30px rgba(0,0,0,0.25), inset 0 0 20px #fff; }
}
@keyframes sparkleAnim {
  0% { opacity: 0; transform: scale(0) translate(0,0); }
  50% { opacity: 1; transform: scale(1.2) translate(5px,-5px); }
  100% { opacity: 0; transform: scale(0) translate(-5px,5px); }
}
@keyframes buttonPulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Responsive */
@media (max-width: 768px) {
  .offer-title { font-size: 2rem; }
  .offer-subtitle { font-size: 1rem; }
  .coin-above-btn { width: 90px; height: 90px; font-size: 3rem; line-height: 90px; }
  .enroll-btn { padding: 12px 35px; font-size: 1rem; }
}


/* PRELOADER CSS */
/* PRELOADER */
:root {
  --blue: #0c0a6f;
  --pink: #dc3169;
  --yellow: #fec33b;
  --orange: #f86f48;
}

#preloader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #0c0a6f 10%, #000 90%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Logo container */
.logo-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Logo animation */
.wt-logo {
  width: 200px;
  height: auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 2s ease forwards, glowPulse 3s ease-in-out infinite;
}

/* Smooth fade-up entrance */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Soft glowing pulse */
@keyframes glowPulse {
  0% {
    filter: drop-shadow(0 0 0px var(--yellow));
  }
  50% {
    filter: drop-shadow(0 0 15px var(--orange))
            drop-shadow(0 0 25px var(--pink));
  }
  100% {
    filter: drop-shadow(0 0 0px var(--yellow));
  }
}


/* youtube section for home page */
/* YOUTUBE PLAY */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  cursor: pointer;
  opacity: 0.95;
  transition: 0.2s;
  z-index: 5;
}

.play-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  opacity: 1;
}




.video-info {
  padding: 18px 15px 20px 15px;
  background: #ffffff;
  border-top: 1px solid #e3e3e3;
}

.video-title {
  font-size: 20px;
  font-weight: 700;
  color: #0c0a6f;
  margin-bottom: 6px;
  line-height: 1.3;
}

.video-stats {
  font-size: 15px;
  font-weight: 500;
  color: #555;
  display: flex;
  gap: 20px;
  align-items: center;
  opacity: 0.9;
}

.video-stats span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.video-stats i {
  font-size: 16px;
  color: #dc3169;
}

  .youtube-section {
  padding: 60px 20px;
  background: #0c0a6f0d;
}

.yt-title {
  text-align: center;
  color: #0c0a6f;
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 700;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.video-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid #0c0a6f;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  cursor: pointer;
  background: #000;
}

.thumbnail img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: #ff0000;
  opacity: 0.9;
}

.play-btn:hover {
  opacity: 1;
}

.video-card iframe {
  width: 100%;
  height: 220px;
  border: none;
}

.view-more-box {
  text-align: center;
  margin-top: 40px;
}

.view-more-btn {
  background: #dc3169;
  padding: 12px 28px;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.3s;
}

.view-more-btn:hover {
  background: #f86f48;
}


.video-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: #ff0000;
  cursor: pointer;
  opacity: 0.9;
}

.video-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: none;
}

.video-info {
  padding: 12px 5px 5px 5px;
}

.video-title {
  font-size: 18px;
  font-weight: 600;
  color: #0c0a6f;
}

.video-stats {
  font-size: 14px;
  color: #444;
}


.video-info {
  padding: 18px 15px 22px 15px;
  background: #ffffff;
  text-align: center;     /* CENTER EVERYTHING */
  border-top: 1px solid #e3e3e3;
}

.video-title {
  font-size: 20px;
  font-weight: 700;
  color: #0c0a6f;
  margin-bottom: 8px;
  line-height: 1.3;
  text-align: center;     /* CENTER TITLE */
}

.video-stats {
  font-size: 15px;
  font-weight: 500;
  color: #555;
  display: flex;
  justify-content: center;     /* CENTER ITEMS */
  gap: 25px;
  align-items: center;
  opacity: 0.9;
  margin-top: 6px;
}

.video-stats span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.video-stats i {
  font-size: 16px;
  color: #dc3169;
}


