body {
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  margin: 0;
  color: #222
}

/* Header Starts */
.top-marquee {
  background: linear-gradient(270deg, #ff6ec4, #7873f5, #00c9ff, #fcb045);
  background-size: 600% 600%;
  animation: gradientFlow 10s ease infinite;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 7px 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.top-marquee marquee {
  color: #fff;
  letter-spacing: 0.4px;
}

.top-marquee strong {
  color: #ffff7e;
}

.hero {
  background: linear-gradient(180deg, rgba(13, 110, 253, 0.08), rgba(13, 110, 253, 0.02));
  padding: 3.5rem 0
}

.logo-img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 767px) {
  .logo-img {
    max-height: 40px;
  }
}

.nav-link {
  font-weight: 600
}

.lead-strong {
  font-size: 1.05rem;
  font-weight: 600
}

.card-service {
  border: 0;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06)
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 6px 18px rgba(3, 10, 45, 0.04)
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all .6s ease-out
}

.reveal.visible {
  opacity: 1;
  transform: none
}


.btn-cta {
  background: var(--brand);
  color: #fff;
  border-radius: 10px;
  padding: 10px 18px
}

@media (max-width:575.98px) {
  .hero {
    padding: 2rem 0
  }

  .feature-icon {
    width: 48px;
    height: 48px
  }
}

/* Header ends */

/* Footer Starts */
.footer-particles {
  background: #111;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

.wave-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: repeating-linear-gradient(-45deg,
      rgba(255, 255, 255, 0.03) 0 1px,
      transparent 1px 10px);
  animation: waveMove 15s linear infinite;
  transform: rotate(0deg);
  z-index: 0;
}

@keyframes waveMove {
  0% {
    transform: translateX(0) rotate(0deg);
  }

  50% {
    transform: translateX(-50%) rotate(3deg);
  }

  100% {
    transform: translateX(0) rotate(0deg);
  }
}

.particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.footer-particles .container {
  position: relative;
  z-index: 1;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
  background: linear-gradient(90deg, #ffb400, #ff6ec4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateX(4px);
}

.social-icons a {
  display: inline-block;
  margin-right: 12px;
  color: #ccc;
  font-size: 1.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: #ffb400;
  transform: rotate(-10deg) scale(1.3);
}

hr {
  opacity: 0.2;
}

@media (max-width:768px) {
  .footer-particles {
    text-align: center;
  }

  .newsletter input {
    margin-bottom: 8px;
  }
}


/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all .6s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Card hover effect */
.card:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease-in-out;
}

/* Button styles */
.btn-primary {
  background: #ff0080;
  border: none;
  border-radius: 8px;
}

.btn-primary:hover {
  background: #ff66b2;
}

/* Responsive spacing */
@media(max-width: 767px) {
  .card-body {
    padding: 1rem;
  }
}

.modern-btn {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  transition: all 0.3s ease;
}

.modern-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  /* subtle partial white */
  transform: skewX(-20deg);
  transition: all 0.5s ease;
}

.modern-btn:hover::before {
  left: 120%;
}

.modern-btn:hover {
  color: #cccbcb;
  background-color: rgba(132, 129, 129, 0.1);
  /* subtle partial white background */
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(255, 255, 255, 0.2);
}


/* Footer Base */
.footer-glow {
  background: #111;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

/* Wave Background */
.wave-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 10px);
  animation: waveMove 15s linear infinite;
  z-index: 0;
}

@keyframes waveMove {
  0% {
    transform: translateX(0) rotate(0deg);
  }

  50% {
    transform: translateX(-50%) rotate(3deg);
  }

  100% {
    transform: translateX(0) rotate(0deg);
  }
}

/* Particles Canvas */
.particles-canvas,
.hover-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Ensure content is visible above particles */
.footer-glow .container {
  position: relative;
  z-index: 5;
}

/* Footer Links */
.footer-links a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
  background: linear-gradient(90deg, #ffb400, #ff6ec4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateX(4px);
}

/* Social Icons */
.social-icons a {
  display: inline-block;
  margin-right: 12px;
  color: #ccc;
  font-size: 1.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: #ffb400;
  transform: rotate(-10deg) scale(1.3);
}

/* Star Divider */
.hr-star-line {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1.5rem 0;
}

.hr-star-line hr {
  flex: 1;
  border: 0;
  border: 1px solid #e1dfdf;
  opacity: 0.2;
}

.hr-star-line span {
  padding: 0 10px;
  font-size: 1.2rem;
  color: #b2b0ac;
}

@media (max-width:576px) {
  .hr-star-line span {
    font-size: 1rem;
  }
}

/* Footer Logo */
.footer-logo-img {
  max-height: 50px;
  width: auto;
  transition: all 0.3s;
  box-shadow: 0 0 12px rgba(255, 180, 0, 0.5);
  border-radius: 6px;
}

.footer-tagline {
  font-size: 15px;
  color: #ddd;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.footer-tagline strong {
  color: #ffb400;
}

@media (max-width: 576px) {
  .footer-logo-img {
    max-height: 40px;
  }

  .footer-tagline {
    font-size: 14px;
    padding: 0 15px;
  }
}

/* Responsive adjustments */
@media (max-width:768px) {
  .footer-glow {
    text-align: center;
  }

  .footer-glow .row {
    gap: 1.5rem;
  }

  .footer-links a {
    margin-bottom: 6px;
  }

  .social-icons a {
    margin-right: 10px;
    font-size: 1.3rem;
  }
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
}

@media (max-width: 767px) {
  .card-img-top {
    height: 180px;
  }
}

.review-section {
  max-width: 900px;
  margin: 60px auto;
  text-align: center;
  padding: 20px;
}

.review-section h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #222;
}

.review-section p.subtitle {
  color: #666;
  font-size: 1rem;
  margin-bottom: 30px;
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.review-slider {
  display: flex;
  transition: transform 0.7s ease-in-out;
}

.review-card {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 30px 20px;
}

.review-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #6c63ff;
  margin-bottom: 10px;
}

.review-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: #222;
}

.review-stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin: 5px 0;
}

.review-text {
  font-size: 0.95rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Dots */
.dots {
  text-align: center;
  margin-top: 15px;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background-color: #6c63ff;
  width: 25px;
  border-radius: 6px;
}

@media (max-width: 600px) {
  .review-section h2 {
    font-size: 1.6rem;
  }

  .review-text {
    font-size: 0.9rem;
    padding: 0 10px;
  }
}

/* ===== Section Styling ===== */
#about {
  position: relative;
  padding: 70px;
  background: linear-gradient(135deg, #f3f8ff 0%, #ffffff 100%);
  overflow: hidden;
  cursor: default;
  margin-bottom: 0;

}

/* Animated Gradient Text */
.gradient-text {
  background: linear-gradient(90deg, #007bff, #00c6ff, #00ffc6, #007bff);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 5s linear infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

#about p {
  color: #555;
  line-height: 1.7;
}

#about img {
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

#about img:hover {
  transform: scale(1.05);
}

/* Gradient Button */
.btn-gradient {
  background: linear-gradient(45deg, #007bff, #00c6ff);
  border: none;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  transform: translateY(-2px);
}

/* Service Cards */
.service-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  z-index: 2;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px) rotate(-3deg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-card i {
  font-size: 28px;
  color: #007bff;
  margin-bottom: 10px;
}

/* ===== Parallax Shapes ===== */
.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 198, 255, 0.1);
  pointer-events: none;
  z-index: 0;
}

.shape.circle1 {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 5%;
}

.shape.circle2 {
  width: 60px;
  height: 60px;
  top: 30%;
  right: 10%;
}

.shape.circle3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 15%;
}

/*
.shape.wave {
  width: 150%;
  height: 100px;
  background: rgba(0, 200, 255, 0.416);
  border-radius: 50%;
  bottom: -50px;
  left: -25%;
}
*/
/* Floating icons */
.floating-icon {
  position: absolute;
  font-size: 24px;
  color: #00c6ff;
  opacity: 0.7;
  animation: floatIcon 6s ease-in-out infinite alternate;
}

@keyframes floatIcon {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(15deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@media (max-width: 767px) {
  #about {
    text-align: center;
    padding: 60px 20px;
  }

  .shape,
  .shape.wave,
  .floating-icon {
    display: none;
  }

  .service-card {
    margin-bottom: 20px;
  }
}

/* Hero Section Starts */
.landing {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at 10% 20%, #0b0013 0%, #000000 90%);
  color: white;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

/* 🔮 Background Circles */
.bg-anim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 17, 140, 0.4), transparent 70%);
  animation: move 25s linear infinite;
}

@keyframes move {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(40px, -40px) scale(1.3);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

.circle:nth-child(1) {
  width: 180px;
  height: 180px;
  top: 10%;
  left: 5%;
}

.circle:nth-child(2) {
  width: 250px;
  height: 250px;
  bottom: 15%;
  right: 10%;
  background: radial-gradient(circle, rgba(0, 150, 255, 0.3), transparent 70%);
  animation-delay: 5s;
}

.circle:nth-child(3) {
  width: 120px;
  height: 120px;
  top: 60%;
  left: 25%;
  animation-delay: 2s;
}

/* 🌟 Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(90deg, #ff008c, #ff5bbd, #00c8ff, #ff008c);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 6s ease infinite, fadeInUp 1.5s ease forwards;
  opacity: 0;
}

@keyframes gradientText {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 🖋 Typing Animation */
.typing-wrapper {
  height: 1.5em;
  overflow: hidden;
  display: inline-block;
  max-width: 100%;
  /* Added max-width for better mobile handling */
}

.typing-text {
  display: inline-block;
  white-space: nowrap;
  color: #bbb;
  font-weight: 700;
  /* Adjusted steps for better mobile fit */
  animation: typing 4s steps(26) forwards, blink 0.7s infinite step-end;
}

@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 26ch;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

/* 💖 Buttons */
.btn-pink {
  background: linear-gradient(90deg, #ff008c, #ff5bbd);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 0 15px rgba(255, 0, 140, 0.5);
  transition: all 0.3s ease;
  animation: blinkGlow 2s infinite ease-in-out;
  /* ✅ Added */
}

/* ✅ Hover Effect (kept same) */
.btn-pink:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 0, 140, 0.9);
}

/* ✅ Blinking + Glow Animation */
@keyframes blinkGlow {
  0% {
    opacity: 1;
    box-shadow: 0 0 12px rgba(255, 0, 140, 0.672);
  }

  50% {
    opacity: 0.65;
    box-shadow: 0 0 22px rgba(255, 0, 140, 0.9);
  }

  100% {
    opacity: 1;
    box-shadow: 0 0 12px rgba(255, 0, 140, 0.877);
  }
}


/* Added custom style for outline button hover */
.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* 🧑‍🎓 Student Scroll */
/* Course Scroll */
/* ✅ Course Scroll */
.course-scroll {
  overflow: hidden;
  width: 100%;
  margin-top: 1.5rem;
}

.course-scroll-inner {
  display: flex;
  gap: 1rem;
  animation: courseScroll 25s linear infinite;
}

@keyframes courseScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ✅ Course Card */
.course-card {
  width: 340px;
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  color: white;
  padding-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  flex: 0 0 auto;
}

/* ✅ Responsive width */
@media (max-width: 768px) {
  .course-card {
    width: 260px;
  }
}

@media (max-width: 576px) {
  .course-card {
    width: 220px;
  }
}

/* ✅ Course Image */
.course-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

/* ✅ Course Content */
.course-content {
  padding: 15px;
}

.course-content h5 {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 6px;
}

.course-meta {
  font-size: 13px;
  color: #ccc;
  margin-bottom: 10px;
}

.live-badge {
  background: red;
  padding: 2px 6px;
  color: white;
  border-radius: 4px;
  font-size: 11px;
}

/* ✅ Bullet Points */
.course-content ul {
  padding-left: 18px;
  margin-bottom: 10px;
}

.course-content ul li {
  font-size: 13px;
  margin-bottom: 4px;
}

/* ✅ Button */
/* ✅ Blinking Effect */
.course-card button {
  width: 100%;
  background: transparent;
  border: 2px solid #f4edf1;
  color: #fefbfd;
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
  animation: blink 1.2s infinite ease-in-out;
}

/* ✅ Hover Effect */
.course-card button:hover {
  background: #ff008c;
  color: #fff;
  border-color: #ff008c;
  transform: scale(1.05);
}

/* ✅ Smooth Blink Animation */
@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.45;
  }

  100% {
    opacity: 1;
  }
}


.hero .row {
  --bs-gutter-x: 0 !important;
}

.hero .col-lg-5,
.hero .col-lg-6 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.hero-left {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* centers everything */
}


@media (max-width: 768px) {
  .hero-left {
    padding-left: 20px;
    /* mobile-friendly */
  }
}

/* Hero section ends */

/* ✅ CONTACT US — CLEAN & RESPONSIVE */

/* Background Wrapper */
.query {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at top left, #0f2027, #203a43, #2c5364);
  color: #fff;
}

/* Main Contact Section */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
  min-height: 100vh;
}

/* Contact Card */
.contact-card {
  flex: 1;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 153, 255, 0.4);
  border-radius: 20px;
  padding: 40px;
  margin: 20px;
  backdrop-filter: blur(15px);
  box-shadow: 0 0 25px rgba(0, 153, 255, 0.5);
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
}

/* Card Border Effect */
.contact-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, #00f0ff, #8a2be2, #00f0ff);
  animation: spin 6s linear infinite;
  opacity: 0.2;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Neon Heading */
.neon-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #00f0ff, #8a2be2, #00f0ff);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: normal !important;
  animation: shimmerGlow 5s infinite linear;
}

@keyframes shimmerGlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Card Text */
.contact-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 15px;
}

/* Highlight Text */
.contact-card span {
  color: #00f0ff;
  font-weight: 600;
}

/* Contact Form Area */
.contact-form-card {
  flex: 1;
  background: #ffffff10;
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #ffffff20;
  box-shadow: 0 0 10px #ff008050;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 18px;
  border: 2px solid #ddd;
  font-size: 15px;
  outline: none;
}

.contact-btn {
  width: 100%;
  padding: 12px;
  background: #39a459;
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #5ebd6f;
}

/* ✅ TABLET RESPONSIVE */
@media (max-width: 768px) {

  .contact-card,
  .contact-form-card {
    flex: unset;
    width: 100%;
  }
}

/* ✅ FINAL FIX — PERFECT MOBILE SPACING */
@media (max-width: 576px) {

  .contact-card {
    margin: 0 !important;
    width: 100% !important;
    padding: 20px !important;
    border-radius: 18px;
  }

  .contact-section {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}


.bg-land {
  background: #e4edfe;

}

/* ===== CEO SECTION ===== */
.ceo-section {
  background: #e4edfe;
  padding: 60px 20px;
  text-align: center;
}

.ceo-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

.ceo-role {
  font-size: 1rem;
  color: #444;
  margin-bottom: 20px;
  opacity: 0.85;
}

.ceo-desc {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 10px;
  text-align: justify;
  animation: fadeSlide 2s ease forwards;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== WORKSHOP SECTION ===== */
.workshop-section {
  background-color: #fcf8f8;
}

.workshop-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.workshop-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.icon-box i {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 10px;
  transition: transform 0.4s;
}

.workshop-card:hover i {
  transform: scale(1.2) rotate(8deg);
}

.workshop-card h5 {
  font-weight: 600;
  color: #151515;
  margin-bottom: 8px;
}

.workshop-card p {
  color: #222;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .ceo-img {
    width: 150px;
    height: 150px;
  }

  .ceo-name {
    font-size: 1.5rem;
  }

  .ceo-desc {
    font-size: 0.9rem;
  }
}


/* ===== WORKSHOP SECTION ===== */
.workshop-section {
  background-color: #fcf8f8;
  padding: 60px 20px;
}

.workshop-section h3 {
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
}

.workshop-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.workshop-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.workshop-card i {
  font-size: 2rem;
  color: #53a5fd;
  margin-bottom: 10px;
  transition: transform 0.4s;
}

.workshop-card:hover i {
  transform: rotate(10deg) scale(1.2);
}

.workshop-card h5 {
  font-weight: 600;
  color: #151515;
  margin-bottom: 8px;
}

.workshop-card p {
  color: #222121;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .ceo-name {
    font-size: 1.6rem;
  }

  .ceo-img {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 768px) {
  .ceo-section {
    text-align: center;
  }

  .workshop-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .ceo-name {
    font-size: 1.5rem;
  }

  .ceo-role {
    font-size: 0.95rem;
  }

  .ceo-desc {
    font-size: 0.9rem;
  }

  .workshop-card h5 {
    font-size: 1rem;
  }

  .workshop-card p {
    font-size: 0.85rem;
  }
}

/* Common Button Styles */
#goTopBtn,
.whatsapp-float {
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

/* Show on scroll */
#goTopBtn.show,
.whatsapp-float.show {
  opacity: 1;
  visibility: visible;
}

/* Go To Top Button */
#goTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: #333;
  color: #fff;
  border: none;
  outline: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

#goTopBtn:hover {
  background-color: #555;
  transform: scale(1.1);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 175px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle at 30% 30%, #25d366, #128c7e);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  z-index: 1000;
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.8), 0 0 20px rgba(18, 140, 126, 0.6);
  transition: all 0.3s ease-in-out;
  animation: pulseGlow 2s infinite;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.9), 0 0 35px rgba(18, 140, 126, 0.8);
}

/* Pulse Glow Animation */
@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.7), 0 0 20px rgba(18, 140, 126, 0.5);
  }

  50% {
    box-shadow: 0 0 20px rgba(37, 211, 102, 1), 0 0 40px rgba(18, 140, 126, 0.9);
  }
}


/* Bounce Animation */
@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-4px);
  }

  60% {
    transform: translateY(-2px);
  }
}

/* Our acheivements section starts */
.stats-section {
  background: #e4edfe;
  padding: 90px 0;
  overflow: hidden;
}

.stats-heading h2 {
  font-weight: 700;
  font-size: 2.2rem;
  color: #4c4c4c;
}

.stats-heading p {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Horizontal cards */
.stats-row {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: nowrap;
}

.stat-box {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.stat-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.59);
}

.stat-icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  font-size: 34px;
  color: #fff;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
  animation: pulseGlow 2.5s infinite ease-in-out;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.4);
  }

  50% {
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.6);
  }

  100% {
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.4);
  }
}

.stat-number {
  font-size: 40px;
  font-weight: 700;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
}

.stat-text {
  font-size: 16px;
  color: #444;
}

/* Responsive */
.desktop-stats {
  display: block;
}

.mobile-carousel {
  display: none;
}

@media (max-width: 991px) {
  .stats-row {
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .desktop-stats {
    display: none;
  }

  .mobile-carousel {
    display: block;
  }
}

/* Our acheivements section ends */