:root {
  --bg-color: #2c3e50; /* Footer/nav background */
  --text-color: #101011;
  --accent: #38bdf8;
  --shadow: rgba(0, 0, 0, 0.15);
  --backdrop: blur(14px);
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: #f4f4f5;
  color: var(--text-color);
}

/*================ NAVBAR ================*/
.navbar {
  width: 100%;
  max-width: none;
  left: 0;
  right: 0;
  border-radius: 0;
  margin: 0;
  background: linear-gradient(
    120deg,
    #2c3e50 80%,
    #38bdf8 100%
  ) !important; /* Footer-style gradient */
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.13);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.8rem 2rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1030;
  overflow: hidden;
}
.navbar:before,
.navbar:after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
  border-radius: 50%;
  opacity: 0.13;
  filter: blur(2px);
}
.navbar:before {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #38bdf8, #ffd700);
  left: -24px;
  bottom: -10px;
  animation: navShape1 7s infinite alternate;
}
.navbar:after {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1cc88a, #2c3e50 80%);
  right: -22px;
  top: 3px;
  animation: navShape2 6.5s infinite alternate;
}

@keyframes navShape1 {
  to {
    transform: translateY(-10px) scale(1.12) rotate(-7deg);
    opacity: 0.19;
  }
}
@keyframes navShape2 {
  to {
    transform: translateX(13px) scale(1.16) rotate(12deg);
    opacity: 0.22;
  }
}

.navbar.scrolled,
.navbar.sticky-top.scrolled {
  background: linear-gradient(120deg, #2c3e50 92%, #38bdf8 100%) !important;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.35rem;
  color: #ffd700;
  text-shadow: 0 3px 16px #ffd70011;
  letter-spacing: 0.02em;
  z-index: 2;
  position: relative;
}

.nav-link {
  color: #fff !important;
  position: relative;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
  z-index: 2;
}
.navbar-nav .nav-link {
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #ffd700 !important;
}
.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 0%;
  height: 2px;
  background: #ffd700;
  transition: width 0.3s cubic-bezier(0.44, 2.1, 0.45, 1);
  z-index: 2;
}

.nav-link:hover::before {
  width: 80%;
}

.nav-link:hover {
  color: #ffd700 !important;
}

.navbar-toggler {
  border: none;
  outline: none;
  background: transparent;
  z-index: 2;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,255,255,0.9%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Responsive Nav */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
    border-radius: 0;
    margin: 0;
  }
  .navbar-brand {
    font-size: 1.1rem;
  }
  .navbar-nav .nav-link {
    margin-left: 0;
    padding: 0.8rem 1rem;
    text-align: center;
  }
}

@import url("https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css");

/*================ HERO SECTION ================*/
.hero-section {
  position: relative;
  min-height: 100vh;
  background: #0d1117;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-anim-bg {
  position: absolute;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  pointer-events: none;
}
.hero-anim-bg .circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  animation: hero-float 13s cubic-bezier(0.45, 1.6, 0.41, 0.92) infinite;
  filter: blur(2px);
}
.hero-anim-bg .circle1 {
  width: 430px;
  height: 430px;
  left: -120px;
  top: 60px;
  background: radial-gradient(
    circle at 30% 30%,
    #00eaffcc,
    #0072ff44 70%,
    transparent 100%
  );
  animation-delay: 0s;
}
.hero-anim-bg .circle2 {
  width: 340px;
  height: 340px;
  right: -110px;
  top: 180px;
  background: radial-gradient(
    circle at 60% 60%,
    #ff4ecdcc,
    #7a42fa44 80%,
    transparent 100%
  );
  animation-delay: 1.9s;
}
.hero-anim-bg .circle3 {
  width: 340px;
  height: 340px;
  left: 42vw;
  bottom: -150px;
  background: radial-gradient(
    circle at 70% 80%,
    #00ffdcaa,
    #007bff44 90%,
    transparent 100%
  );
  animation-delay: 4.2s;
}
.hero-anim-bg .circle4 {
  width: 180px;
  height: 180px;
  left: 12vw;
  top: 66vh;
  background: radial-gradient(
    circle at 80% 20%,
    #ffd700cc,
    #f953c688 80%,
    transparent 100%
  );
  animation-delay: 3.1s;
}
.hero-anim-bg .circle5 {
  width: 110px;
  height: 110px;
  right: 14vw;
  top: 28vh;
  background: radial-gradient(
    circle at 20% 80%,
    #ff742baa,
    #ffec4088 100%,
    transparent 100%
  );
  animation-delay: 6.6s;
}
@keyframes hero-float {
  0% {
    transform: translateY(0) scale(1);
  }
  28% {
    transform: translateY(-20px) scale(1.05);
  }
  55% {
    transform: translateY(40px) scale(0.97);
  }
  80% {
    transform: translateY(-18px) scale(1.02);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
/* SVG Tech Grid Animation */
.hero-svg-grid {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0.18;
  z-index: 0;
}

/* Glassmorphism effect for content */
.hero-content {
  position: relative;
  z-index: 2;
  background: rgba(24, 34, 54, 0.66);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.13);
  border-radius: 28px;
  padding: 2.7rem 2rem 2.1rem 2rem;
  backdrop-filter: blur(7px);
}
.hero-title {
  font-size: 2.8rem;
  letter-spacing: -1px;
  line-height: 1.15;
  font-weight: 700;
  color: #fff;
}
.text-gradient-hero {
  background: linear-gradient(90deg, #38bdf8 20%, #1cc88a 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-highlight {
  color: #ffd700;
  text-shadow: 0 2px 18px rgba(255, 189, 45, 0.22);
}
.hero-subtitle {
  color: #eaf4fb;
  font-size: 1.22rem;
  line-height: 1.7;
  font-weight: 500;
  text-shadow: 0 1px 8px rgba(44, 62, 80, 0.13);
}
.hero-descriptor {
  color: #a3f3e6;
  font-size: 1.08rem;
  font-weight: 600;
}
.hero-seo-keywords-ticker-container {
  width: 100%;
  overflow: hidden;
  background: rgba(20, 27, 40, 0.45);
  border-radius: 18px;
  margin-top: 2.3rem;
  box-shadow: 0 1.5px 8px 0 rgba(56, 189, 248, 0.05);
  border: 1.5px solid #18345a23;
  height: 2.2em;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-seo-keywords-ticker {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  animation: ticker-move 90s linear infinite;
  font-size: 1.01rem;
  color: #7fd4ff;
  font-weight: 600;
  letter-spacing: 0.01em;
  align-items: center;
  gap: 3.5rem;
  padding-left: 10vw;
  padding-right: 10vw;
}

.hero-seo-keywords-ticker span {
  display: inline-block;
  padding-right: 6rem;
}

@keyframes ticker-move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive: smaller font and height on mobile */
@media (max-width: 768px) {
  .hero-seo-keywords-ticker-container {
    height: 1.7em;
    border-radius: 12px;
    margin-top: 1.4rem;
  }
  .hero-seo-keywords-ticker {
    font-size: 0.92rem;
    padding-left: 2vw;
    padding-right: 2vw;
    gap: 1.7rem;
  }
  .hero-seo-keywords-ticker span {
    padding-right: 2rem;
  }
}
.btn-cta-hero {
  font-size: 1.22rem;
  padding: 14px 42px;
  border-radius: 2rem;
  font-weight: 700;
  color: #236f9d;
  background: #fff;
  border: none;
  transition: background 0.3s, color 0.3s, box-shadow 0.25s;
  box-shadow: 0 3px 16px rgba(56, 189, 248, 0.14);
}
.btn-cta-hero:hover {
  color: #fff !important;
  background: linear-gradient(90deg, #0d6efd 60%, #38bdf8 100%);
  box-shadow: 0 8px 32px rgba(56, 189, 248, 0.18);
}
.hero-seo-keywords {
  font-size: 0.97rem;
  color: #c7e5ff;
  line-height: 1.8;
  word-break: break-word;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-content {
    padding: 1.5rem 0.5rem;
  }
}

/*================ ABOUT SECTION ================*/
.themed-about .section-title.text-gradient {
  background: linear-gradient(90deg, #0d6efd 20%, #38bdf8 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 0.7rem;
}
.about-tagline {
  font-size: 1.13rem;
  color: #2c3e50;
  font-weight: 600;
  line-height: 1.5;
}
.about-features {
  margin: 0 0 1.2rem 0;
  padding: 0;
}
.about-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
  color: #222;
  gap: 0.7rem;
}
.about-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  font-size: 1.2rem;
  margin-right: 0.6rem;
  box-shadow: 0 2px 10px rgba(56, 189, 248, 0.09);
}
.about-description {
  color: #354052;
  font-size: 1.06rem;
}
.about-highlight {
  background: linear-gradient(90deg, #eafff2 0, #f5fff9 100%);
  border: none;
  font-size: 1.08rem;
  border-radius: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.05rem 1.2rem;
  margin-top: 1.25rem;
  box-shadow: 0 4px 24px rgba(30, 191, 115, 0.08);
  border: 1.5px solid #1dbf73;
}
.about-highlight .icon-star {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 193, 7, 0.16);
  border-radius: 50%;
  width: 48px;
  height: 48px;
}
.about-highlight .icon-star i {
  color: #ffc107;
  font-size: 2rem;
}
@media (max-width: 991.98px) {
  .themed-about .section-title.text-gradient {
    font-size: 1.45rem;
  }
  .about-highlight {
    font-size: 1rem;
    padding: 0.85rem 0.7rem;
  }
}

/*================ GENERAL SECTIONS ================*/
section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto 30px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

section h2 {
  text-align: center;
  font-size: 2.75rem;
  margin-bottom: 40px;
  color: #2c3e50;
}
.courses-section .course-card {
  cursor: pointer;
  transition: transform 0.17s cubic-bezier(0.44, 2.1, 0.45, 1), box-shadow 0.18s;
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.09),
    0 1.5px 6px rgba(56, 189, 248, 0.07);
}
.courses-section .course-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 18px 50px rgba(44, 62, 80, 0.16),
    0 2px 12px rgba(56, 189, 248, 0.1);
  border: 1.5px solid #38bdf8;
}
.courses-section .btn-pink {
  background: linear-gradient(135deg, #f857a6, #ff5858);
  color: #fff;
  border: none;
}
.courses-section .btn-pink:hover {
  background: linear-gradient(135deg, #ff5858, #f857a6);
}

.courses-section .card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #2c3e50;
  letter-spacing: 0.01em;
  margin-bottom: 0.7rem;
}
.courses-section .card ul {
  min-height: 105px;
  margin-bottom: 0;
}
.courses-section .card ul li {
  font-size: 1.01rem;
  color: #3b4252;
  margin-bottom: 5px;
}
.courses-section .alert-info {
  font-size: 1.06rem;
  border-radius: 1rem;
  background: linear-gradient(90deg, #eaf4fb 90%, #f7f9fc 100%);
}

/* Modal style tweak */
.modal-content {
  border-radius: 1.2rem;
}

/* --- Services Section Theming --- */
.services-section {
  background: linear-gradient(135deg, #f7f9fc 60%, #eaf4fb 100%);
  padding-bottom: 90px;
}

.service-card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.09),
    0 1.5px 6px rgba(56, 189, 248, 0.07);
  padding: 2.3rem 1.6rem 1.8rem 1.6rem;
  text-align: center;
  transition: transform 0.23s cubic-bezier(0.4, 2.3, 0.3, 1), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.035);
  box-shadow: 0 18px 50px rgba(44, 62, 80, 0.16),
    0 2px 12px rgba(56, 189, 248, 0.1);
}

.service-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  margin: 0 auto 18px auto;
  box-shadow: 0 2px 16px rgba(44, 62, 80, 0.08);
  border: 3px solid #fff;
}

.bg-pink {
  background: linear-gradient(135deg, #f857a6, #ff5858);
}
.bg-teal {
  background: linear-gradient(135deg, #11998e, #38ef7d);
}
.bg-orange {
  background: linear-gradient(135deg, #ff8008 0%, #ffc837 100%);
}

.service-card h4 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.7rem;
  letter-spacing: 0.02em;
}

.service-card p {
  color: #3b4252;
  font-size: 1.02rem;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.5;
  min-height: 85px;
}

/* --- Unique Card Animations --- */
@keyframes floatIn1 {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes floatIn2 {
  from {
    opacity: 0;
    transform: translateX(-40px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes floatIn3 {
  from {
    opacity: 0;
    transform: translateX(40px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes floatIn4 {
  from {
    opacity: 0;
    transform: translateY(-40px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes floatIn5 {
  from {
    opacity: 0;
    transform: scale(0.6) rotate(-12deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes floatIn6 {
  from {
    opacity: 0;
    transform: scale(0.6) rotate(12deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes floatIn7 {
  from {
    opacity: 0;
    transform: translateY(60px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes floatIn8 {
  from {
    opacity: 0;
    transform: translateX(-60px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes floatIn9 {
  from {
    opacity: 0;
    transform: translateX(60px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes floatIn10 {
  from {
    opacity: 0;
    transform: scale(0.7) rotate(-18deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.service-animate-1 {
  animation: floatIn1 0.8s 0.05s both cubic-bezier(0.44, 2.1, 0.45, 1);
}
.service-animate-2 {
  animation: floatIn2 0.9s 0.12s both cubic-bezier(0.44, 2.1, 0.45, 1);
}
.service-animate-3 {
  animation: floatIn3 0.9s 0.22s both cubic-bezier(0.44, 2.1, 0.45, 1);
}
.service-animate-4 {
  animation: floatIn4 1s 0.32s both cubic-bezier(0.44, 2.1, 0.45, 1);
}
.service-animate-5 {
  animation: floatIn5 0.85s 0.42s both cubic-bezier(0.44, 2.1, 0.45, 1);
}
.service-animate-6 {
  animation: floatIn6 0.85s 0.52s both cubic-bezier(0.44, 2.1, 0.45, 1);
}
.service-animate-7 {
  animation: floatIn7 0.8s 0.62s both cubic-bezier(0.44, 2.1, 0.45, 1);
}
.service-animate-8 {
  animation: floatIn8 0.9s 0.72s both cubic-bezier(0.44, 2.1, 0.45, 1);
}
.service-animate-9 {
  animation: floatIn9 0.9s 0.82s both cubic-bezier(0.44, 2.1, 0.45, 1);
}
.service-animate-10 {
  animation: floatIn10 0.9s 0.92s both cubic-bezier(0.44, 2.1, 0.45, 1);
}

/* Responsive */
@media (max-width: 991.98px) {
  .service-card {
    min-height: 310px;
  }
}
@media (max-width: 767.98px) {
  .service-card {
    min-height: 260px;
    padding: 1.3rem 0.7rem 1.2rem 0.7rem;
  }
  .service-icon {
    width: 54px;
    height: 54px;
    font-size: 1.3rem;
  }
}

/* Custom colors for new icons */
.bg-pink {
  background: linear-gradient(135deg, #f857a6, #ff5858);
}
.bg-teal {
  background: linear-gradient(135deg, #11998e, #38ef7d);
}
.bg-orange {
  background: linear-gradient(135deg, #ff8008 0%, #ffc837 100%);
}

/*================ CONTACT SECTION ================*/
.contact-section {
  max-width: 700px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
}

.contact__title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.contact__content {
  position: relative;
  flex: 1;
  min-width: 280px;
}

.contact__input {
  width: 100%;
  padding: 1.2rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.7rem;
  background-color: transparent;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact__input:focus {
  border-color: #0d6efd;
  background-color: #f9f9f9;
}

.contact__label {
  position: absolute;
  top: 1.1rem;
  left: 1rem;
  font-size: 1rem;
  color: #777;
  background-color: #fff;
  padding: 0 0.3rem;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
}

.contact__input:focus + .contact__label,
.contact__input:not(:placeholder-shown) + .contact__label {
  top: -0.6rem;
  left: 0.8rem;
  font-size: 0.85rem;
  color: #0d6efd;
  background-color: #fff;
  padding: 0 0.4rem;
  border-radius: 0.3rem;
}

textarea.contact__input {
  resize: vertical;
}

.contact__button {
  align-self: center;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  color: #fff;
  background-color: #0d6efd;
  border: none;
  border-radius: 0.7rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact__button:hover {
  background-color: #0b5ed7;
}

@media (max-width: 600px) {
  .contact__inputs {
    flex-direction: column;
  }
}

/*================ ENROLL SECTION ================*/

.enroll-section {
  background: linear-gradient(120deg, #4e73df 35%, #38bdf8 100%);
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.09),
    0 1.5px 6px rgba(56, 189, 248, 0.07);
  margin-bottom: 2rem;
}
.enroll-section h2,
.enroll-section .lead {
  color: #fff;
}
.enroll-graphic {
  filter: drop-shadow(0 2px 12px rgba(56, 189, 248, 0.14));
}
@media (max-width: 991.98px) {
  .enroll-graphic {
    display: none;
  }
  .enroll-section {
    border-radius: 0.7rem;
  }
}

/* ============ MODERN BUTTON GROUP FOR ENROLL/DEMO ============ */
.enroll-action-group {
  gap: 1.1rem;
}

.enroll-action-group .btn {
  border-radius: 2.5rem;
  padding: 0.85rem 2.4rem;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.22s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 12px 0 rgba(44, 62, 80, 0.09);
  display: flex;
  align-items: center;
  gap: 0.5em;
  border: none;
}

.enroll-action-group .enroll-btn-main {
  background: linear-gradient(90deg, #fff 60%, #e3f0ff 100%);
  color: #1a237e;
}
.enroll-action-group .enroll-btn-main:hover,
.enroll-action-group .enroll-btn-main:focus {
  color: #fff;
  background: linear-gradient(90deg, #3b82f6 30%, #1e40af 100%);
  box-shadow: 0 4px 24px 0 rgba(30, 64, 175, 0.18);
  transform: translateY(-2px) scale(1.05);
}

.enroll-action-group .demo-btn-main {
  background: linear-gradient(90deg, #1e40af 60%, #3b82f6 100%);
  color: #fff;
}
.enroll-action-group .demo-btn-main:hover,
.enroll-action-group .demo-btn-main:focus {
  color: #fff;
  background: linear-gradient(90deg, #3b82f6 30%, #1e40af 100%);
  box-shadow: 0 4px 24px 0 rgba(30, 64, 175, 0.22);
  transform: translateY(-2px) scale(1.05);
}

.enroll-action-group .btn i {
  font-size: 1.25em;
  opacity: 0.88;
}

/* Responsive tweaks */
@media (max-width: 575.98px) {
  .enroll-action-group .btn {
    width: 100%;
    justify-content: center;
    font-size: 1.07rem;
    padding: 0.85rem 1.2rem;
  }
}

/*================ FOOTER ================*/
.footer-animated {
  position: relative;
  background: linear-gradient(120deg, #2c3e50 80%, #38bdf8 100%);
  color: #fff;
  box-shadow: 0 -4px 32px rgba(44, 62, 80, 0.13);
  overflow: hidden;
  padding-top: 12px;
  padding-bottom: 10px;
  margin-top: 50px;
}
.footer-animated .footer-link {
  color: #ffd700;
  text-decoration: none;
  transition: color 0.25s;
}
.footer-animated .footer-link:hover {
  color: #38bdf8;
  text-decoration: underline;
}
.footer-contact i {
  color: #ffd700;
  margin-right: 5px;
  margin-left: 10px;
}
.social-icons-footer {
  font-size: 1.6rem;
  gap: 0.5rem;
  display: flex;
  justify-content: center;
}
.social-icons-footer a {
  color: #fff;
  margin: 0 8px;
  display: inline-block;
  transition: transform 0.33s cubic-bezier(0.44, 2.1, 0.45, 1), color 0.22s;
  position: relative;
}
.social-icons-footer a:hover {
  color: #ffd700;
  transform: translateY(-8px) scale(1.13) rotate(-8deg);
  text-shadow: 0 2px 16px #ffd70066;
}
.social-anim {
  animation-duration: 3.5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.anim-fb {
  animation-name: floatFb;
  animation-delay: 0.1s;
}
.anim-tw {
  animation-name: floatTw;
  animation-delay: 0.5s;
}
.anim-ln {
  animation-name: floatLn;
  animation-delay: 0.3s;
}
.anim-ig {
  animation-name: floatIg;
  animation-delay: 0.7s;
}
.anim-gm {
  animation-name: floatGm;
  animation-delay: 0.9s;
}
@keyframes floatFb {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px) scale(1.08);
  }
}
@keyframes floatTw {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px) scale(1.14);
  }
}
@keyframes floatLn {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px) scale(1.09);
  }
}
@keyframes floatIg {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-13px) scale(1.18);
  }
}
@keyframes floatGm {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px) scale(1.07);
  }
}

/* Animated background shapes */
.footer-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.16;
  filter: blur(2px);
  animation-timing-function: cubic-bezier(0.44, 2.1, 0.45, 1);
}
.shape1 {
  width: 86px;
  height: 86px;
  background: linear-gradient(135deg, #38bdf8, #ffd700);
  left: -30px;
  bottom: -18px;
  animation: footerShape1 8.5s infinite alternate;
}
.shape2 {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #0d6efd, #38bdf8);
  right: 15vw;
  top: 0px;
  animation: footerShape2 12s infinite alternate;
}
.shape3 {
  width: 63px;
  height: 63px;
  background: linear-gradient(135deg, #1cc88a, #2c3e50 80%);
  right: -25px;
  bottom: 0;
  animation: footerShape3 7.4s infinite alternate;
}
@keyframes footerShape1 {
  to {
    transform: translateY(-18px) scale(1.12) rotate(-10deg);
    opacity: 0.21;
  }
}
@keyframes footerShape2 {
  to {
    transform: translateX(16px) scale(1.16) rotate(18deg);
    opacity: 0.22;
  }
}
@keyframes footerShape3 {
  to {
    transform: translateY(-10px) scale(0.97) rotate(11deg);
    opacity: 0.18;
  }
}

@media (max-width: 991.98px) {
  .footer-animated {
    font-size: 0.98rem;
  }
  .footer-shape {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .footer-animated {
    font-size: 0.92rem;
    padding: 9px 0 5px 0;
  }
  .social-icons-footer {
    font-size: 1.28rem;
  }
}

/*================ ANIMATIONS ================*/
.opacity-0 {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.animate {
  opacity: 1 !important;
}

.fade-in {
  animation: fadeInUp 1s ease-out both;
}

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

/* Floating Action Buttons */
.fab-btn {
  position: fixed;
  z-index: 10010; /* ensure above chatbot popup */
  width: 54px;
  height: 54px;
  border-radius: 50%;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.19);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 2rem;
  transition: box-shadow 0.2s, background 0.2s, transform 0.13s;
  background: #fff;
  opacity: 0.92;
}
.fab-btn:hover {
  background: #f0f4ff;
  box-shadow: 0 6px 32px rgba(30, 144, 255, 0.2);
  transform: scale(1.1);
}

/* WhatsApp Button */
.fab-btn-whatsapp {
  right: 28px;
  bottom: 96px;
  background: linear-gradient(135deg, #25d366 60%, #128c7e 100%);
  color: #fff;
  border: none;
  animation: fab-pulse 2s infinite;
  display: flex;
}

/* Floating Action Button - Scroll Up */
.fab-btn-scrollup {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  z-index: 9999;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.2s, background 0.2s, transform 0.13s;
}

.fab-btn-scrollup i {
  position: absolute;
  font-size: 1.5rem;
  z-index: 2;
}

/* The SVG fills the button */
.scroll-progress-ring {
  position: absolute;
  width: 46px;
  height: 46px;
  top: 4px;
  left: 4px;
  z-index: 1;
  pointer-events: none;
}

.scroll-progress-bg {
  stroke: #e8eaf6;
}

.scroll-progress {
  stroke: #38bdf8;
  stroke-width: 4;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: center;
  transition: stroke-dashoffset 0.18s cubic-bezier(0.44, 2.1, 0.45, 1);
}

/* Responsive: Mobile adjustment */
@media (max-width: 600px) {
  .fab-btn-scrollup {
    right: 13px;
    bottom: 13px;
    width: 44px;
    height: 44px;
  }
  .scroll-progress-ring {
    width: 36px;
    height: 36px;
    top: 4px;
    left: 4px;
  }
  .fab-btn-scrollup i {
    font-size: 1.1rem;
  }
}

/* Chatbot Button */
.fab-btn-chatbot {
  left: 28px;
  bottom: 28px;
  background: linear-gradient(135deg, #1d2b64 50%, #f8cdda 100%);
  color: #fff;
  border: none;
}

/* Animation for WhatsApp Btn */
@keyframes fab-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.35);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.35);
  }
}

/* Chatbot Popup */
.chatbot-popup {
  display: none;
  position: fixed;
  left: 32px;
  bottom: 96px;
  width: 340px;
  max-width: 95vw;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 8px 32px 0 rgba(44, 62, 80, 0.2);
  z-index: 10001;
  animation: chatbot-pop 0.22s;
  max-height: 70vh; /* Limit popup height for scroll */
  display: flex;
  flex-direction: column;
}
@keyframes chatbot-pop {
  0% {
    transform: translateY(50px) scale(0.96);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
.chatbot-header {
  background: linear-gradient(135deg, #1d2b64 50%, #f8cdda 100%);
  color: #fff;
  padding: 14px 19px;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top-left-radius: 17px;
  border-top-right-radius: 17px;
}
.chatbot-header i.fas.fa-times {
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0.77;
}
.chatbot-header i.fas.fa-times:hover {
  opacity: 1;
}
/* Make chatbot-body scrollable */
.chatbot-body {
  padding: 18px 20px 18px 20px;
  background: #f8fafd;
  font-size: 1.05rem;
  color: #222;
  min-height: 80px;
  max-height: 50vh; /* Set max height for scroll area */
  overflow-y: auto; /* Enable vertical scroll if needed */
  flex: 1 1 auto;
}
/* ===== Chatbot Options Buttons and Response ===== */
.chatbot-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0.5rem 0;
}
.chatbot-option-btn {
  background: linear-gradient(90deg, #38bdf8 60%, #1cc88a 100%);
  color: #fff;
  border: none;
  border-radius: 1.3rem;
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  margin-bottom: 0.2rem;
  box-shadow: 0 1px 6px rgba(56, 189, 248, 0.12);
}
.chatbot-option-btn:hover,
.chatbot-option-btn:focus {
  background: linear-gradient(90deg, #1cc88a 60%, #38bdf8 100%);
  box-shadow: 0 3px 16px rgba(56, 189, 248, 0.18);
  outline: none;
}
.chatbot-response {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: #236f9d;
  min-height: 22px;
}

/* Remove duplicate .fab-btn and .fab-btn-chatbot at the end of your original CSS */

/* Responsive */
@media (max-width: 600px) {
  .fab-btn {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }
  .fab-btn-scrollup {
    right: 13px;
    bottom: 13px;
  }
  .fab-btn-whatsapp {
    right: 13px;
    bottom: 68px;
  }
  .fab-btn-chatbot {
    left: 13px;
    bottom: 13px;
  }
  .chatbot-popup {
    width: 97vw;
    left: 1vw;
  }
}

/* ===================== FAST DELAYED SCROLL ANIMATION CSS ====================== */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s cubic-bezier(0.44, 2.1, 0.45, 1),
    transform 0.5s cubic-bezier(0.44, 2.1, 0.45, 1);
  will-change: opacity, transform;
}
.scroll-animate.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Much faster stagger delay: 0.06s increments */
.delay-1 {
  transition-delay: 0.06s !important;
  animation-delay: 0.06s !important;
}
.delay-2 {
  transition-delay: 0.12s !important;
  animation-delay: 0.12s !important;
}
.delay-3 {
  transition-delay: 0.18s !important;
  animation-delay: 0.18s !important;
}
.delay-4 {
  transition-delay: 0.24s !important;
  animation-delay: 0.24s !important;
}
.delay-5 {
  transition-delay: 0.3s !important;
  animation-delay: 0.3s !important;
}
.delay-6 {
  transition-delay: 0.36s !important;
  animation-delay: 0.36s !important;
}
.delay-7 {
  transition-delay: 0.42s !important;
  animation-delay: 0.42s !important;
}
.delay-8 {
  transition-delay: 0.48s !important;
  animation-delay: 0.48s !important;
}
.delay-9 {
  transition-delay: 0.54s !important;
  animation-delay: 0.54s !important;
}
.delay-10 {
  transition-delay: 0.6s !important;
  animation-delay: 0.6s !important;
}
.delay-11 {
  transition-delay: 0.66s !important;
  animation-delay: 0.66s !important;
}

@media (max-width: 991.98px) {
  .scroll-animate {
    transform: translateY(32px);
  }
}
@media (max-width: 575.98px) {
  .scroll-animate {
    transform: translateY(18px);
  }
}

/* Add to your styles.css for advanced testimonial slider styling */

.testimonials-section {
  background: #fff;
}
.testimonial-slide {
  background: linear-gradient(135deg, #e8f0fe 0%, #fff 100%);
  border-radius: 2em;
  box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.08);
  padding: 2em 1.5em 1.5em 1.5em;
  max-width: 430px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  transition: box-shadow 0.25s, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #e6eaf2;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonial-slide:hover {
  box-shadow: 0 12px 36px 0 rgba(0, 0, 0, 0.14);
  transform: translateY(-8px) scale(1.04);
}
.testimonial-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #4f8dfd;
  box-shadow: 0 2px 12px #4f8dfd44;
  margin-bottom: 1em;
  background: #fff;
}
.testimonial-stars {
  color: #ffd700;
  font-size: 1.12em;
  margin-bottom: 0.3em;
  letter-spacing: 0.08em;
}
.testimonial-name {
  font-weight: bold;
  font-size: 1.12em;
  color: #384b6e;
  margin-bottom: 0.1em;
}
.testimonial-role {
  font-size: 0.97em;
  color: #6e8ab1;
  margin-bottom: 0.1em;
}
.testimonial-date {
  font-size: 0.87em;
  color: #8ca1c7;
  margin-bottom: 0.9em;
}
.testimonial-text {
  font-size: 1.08em;
  color: #31395c;
  line-height: 1.7;
  margin-bottom: 1.2em;
  text-align: center;
  flex-grow: 1;
}
.swiper-pagination-bullet-active {
  background: linear-gradient(90deg, #4f8dfd, #13e2fc) !important;
}
.swiper-pagination {
  margin-top: 1.5em;
}
@media (max-width: 600px) {
  .testimonial-slide {
    min-height: 320px;
    padding: 1.4em 1em 1em 1em;
  }
}

/* Hide scrollbars globally */
html,
body {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
}
*::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
}


/* Container and Glow Animation */
/* Responsive floating offer fix */
.hot-offer-pos-fix {
  left: 0;
  bottom: -65px;
  max-width: 97%;
  margin-left:1.5%;
  border-radius: 16px;
  z-index: 3;
}
@media (max-width: 991px) {
  .hot-offer-pos-fix {
    position: static !important;
    left: auto;
    bottom: auto;
    transform: none;
    margin: 24px auto 0 auto;
    max-width: 99vw;
    box-sizing: border-box;
  }
  .service-card.pb-5 { padding-bottom: 1rem !important; }
  .hot-offer-glow { font-size: 0.97em; }
  .hot-offer-feature { font-size: 1em; }
}
.hot-offer-feature {
  margin: 3px 0 0 0;
  font-size: 1em;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
}
.hot-offer-glow {
  background: linear-gradient(135deg, #fffae7 70%, #fff6e0 100%);
  border-left: 5px solid #ff9800;
  border-radius: 18px;
  box-shadow: 0 4px 24px #ffd96680, 0 0 0 2px #fffbe7;
  animation: offerPulse 2.2s infinite;
  position: relative;
  transition: box-shadow 0.2s;
  overflow: hidden;
}
@keyframes offerPulse {
  0% { box-shadow: 0 4px 24px #ffd96680, 0 0 0 2px #fffbe7;}
  60% { box-shadow: 0 8px 42px #ffd966bb, 0 0 0 10px #ffedb6;}
  100% { box-shadow: 0 4px 24px #ffd96680, 0 0 0 2px #fffbe7;}
}
.hot-offer-fire-ribbon {
  background: linear-gradient(90deg, #ff9800 60%, #ffd700 100%);
  color: #fff;
  font-weight: bold;
  border-radius: 0 0 18px 18px;
  padding: 1px 20px 3px 20px;
  font-size: 1.05em;
  letter-spacing: 1px;
  box-shadow: 0 6px 18px #ff980099;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: ribbonWave 2.2s infinite alternate;
  justify-content: center;
}
@keyframes ribbonWave {
  0% { filter: brightness(1);}
  100% { filter: brightness(1.18);}
}
.hot-offer-fire-icon {
  animation: fireFlame 0.5s infinite alternate;
  font-size: 1.18em;
  filter: drop-shadow(0 0 5px #ff9800cc);
  margin: 0 2px;
}
.hot-offer-fire-text { font-size:1em; text-shadow: 0 1px 6px #fff2; letter-spacing:1px; }
.flash-text {
  animation: flashText 1s infinite alternate;
}
@keyframes flashText {
  0% { color: #d63384; }
  100% { color: #f44336; }
}
.hot-offer-bounce {
  animation: bounceBadge 1.15s infinite alternate;
}
@keyframes bounceBadge {
  0% { transform: translateY(0);}
  60% { transform: translateY(-5px);}
  100% { transform: translateY(0);}
}
.hot-offer-anim {
  animation: colorWave 1.5s infinite alternate;
  font-weight: 500;
}
@keyframes colorWave {
  0% { color: #d63384; }
  100% { color: #ff9800; }
}
.hot-offer-fire-emoji {
  display: inline-block;
  animation: fireFlame 0.5s infinite alternate;
  font-size: 1.12em;
  filter: drop-shadow(0 0 6px #ff9800bb);
}
@keyframes fireFlame {
  0% { transform: scale(1) translateY(0); color: #ff9800;}
  50% { transform: scale(1.12) translateY(-1.5px); color: #ff4500;}
  100% { transform: scale(1.06) translateY(-2px); color: #ffc107;}
}
.hot-offer-sparkle {
  position: absolute;
  color: #ffd700;
  opacity: 0.75;
  font-size: 1.2em;
  pointer-events: none;
  filter: blur(0.5px);
  z-index:1;
  animation: sparkleTwinkle 2.4s infinite;
}
.hot-offer-sparkle.sparkle1 { top: 8px; left: 14px; font-size: 1em; animation-delay: 0s;}
.hot-offer-sparkle.sparkle2 { top: 38px; right: 18px; font-size: 1.1em; animation-delay: 0.9s;}
.hot-offer-sparkle.sparkle3 { bottom: 12px; left: 34px; font-size: 0.98em; animation-delay: 1.4s;}
@keyframes sparkleTwinkle {
  0%,100% { opacity: 0.5;}
  10% { opacity: 1;}
  50% { opacity: 0.25;}
  80% { opacity: 1;}
}