* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  background-color: #ffffff !important;
  color: #000000;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

.navbar.sticky-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: top 0.3s ease-in-out;
}

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

.navbar .nav-link.selected {
  color: #f39200;
  font-weight: 700;
}

.navbar .nav-link.selected::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #f39200;
  margin-top: 4px;
  border-radius: 2px;
}

.theme-bg {
  background-color: #4dd8d7 !important;
  color: white !important;
}

.theme-btn {
  background-color: #f39200 !important;
  color: #fff;
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.theme-btn:hover {
  color: white !important;
  transform: translateY(-2px);
}

.theme-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #26297b;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.theme-btn:hover::before {
  left: 0;
}

.theme-text {
  color: #4dd8d7 !important;
}
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #4dd8d7;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.brand-logo {
  width: 180px;
  height: auto;
}

#back-to-up {
  width: 40px;
  height: 40px;
  font-size: 16px;
  padding: 5px;
  border-radius: 50%;
  bottom: 2rem;
  right: 1rem;
  z-index: 99;
  background-color: #f39200;
  color: #000;
  border: none;
}
#back-to-up:hover {
  background-color: #26297b;
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  bottom: 5rem;
  right: 15px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  padding: 5px 10px;
  font-size: 22px;
  z-index: 999;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease-in-out;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-form-container {
  position: fixed;
  bottom: 7rem;
  right: 25px;
  width: 300px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  padding: 15px;
  z-index: 998;
  display: none;
}

.whatsapp-form-container input,
.whatsapp-form-container textarea {
  border: 1px solid #ccc;
}

.whatsapp-form-container input:focus,
.whatsapp-form-container textarea:focus {
  border-color: #25d366;
  box-shadow: none;
}

#quickContactBtn {
  position: fixed;
  bottom: 8.5rem;
  right: 15px;
  background-color: #f73d3d;
  color: #000;
  border-radius: 50%;
  padding: 7px 12px;
  font-size: 20px;
  z-index: 999;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease-in-out;
}

#quickContactBtn:hover {
  transform: scale(1.1);
  background-color: #cc0000;
  color: #fff;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  flex-direction: column;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  color: #fff;
}

.brand-name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

#lottie-loader {
  width: 120px;
  height: 120px;
  margin: 0 auto;
}

.navbar-toggler-icon {
  color: white !important;
}

/* Hero Section */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 70vh;
  display: flex;
  align-items: center;
}

/* Slides */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

/* Left: Content */
.hero-content {
  flex: 1;
  color: #fff;
  padding: 3rem;
  max-width: 600px;
  z-index: 2;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #f0f0f0;
}

.hero-btn {
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  background-color: #f39200;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;
}

.hero-btn:hover {
  background-color: #d87b00;
}

/* Right: Image */
.hero-image {
  flex: 1;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* Background Gradients + Images */
.slide-1 {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}
.slide-1 .hero-image {
  background-image: url("../img/hero.jpg");
}

.slide-2 {
  background: linear-gradient(135deg, #2b5876 0%, #4e4376 100%);
}
.slide-2 .hero-image {
  background-image: url("../img/hero2.jpg");
}

.slide-3 {
  background: linear-gradient(135deg, #004e92 0%, #000428 100%);
}
.slide-3 .hero-image {
  background-image: url("../img/hero3.jpg");
}

/* Indicators */
.slider-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.slider-indicators span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}
.slider-indicators span.active {
  background: #f39200;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-slide {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    padding: 2rem 1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-image {
    display: none; /* Hide image on mobile for clarity */
  }
}

.about-section img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .about-section h2 {
    font-size: 1.75rem;
  }
  .about-section p {
    font-size: 0.95rem;
  }
  .about-section .btn {
    width: 100%;
  }
}
#why-choose-us {
  background: linear-gradient(135deg, #f5f7fa, #e3f2fd);
}
#why-choose-us i {
  transition: transform 0.3s ease;
}

#why-choose-us i:hover {
  transform: scale(1.2);
  color: #ffd700;
}
.trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.trust-section {
  background-image: url("../img/hero1.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.course-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid black !important;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.course-card img {
  height: 200px;
  object-fit: cover;
}

/* Testimonials */
.testimonial-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  border-radius: 20px;
  background: rgb(255 255 255 / 0.2);
  border: 1px solid rgb(255 255 255 / 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgb(0 0 0 / 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, #007bff33, transparent 70%);
  transform: rotate(25deg);
  z-index: 0;
  transition: all 0.6s ease;
}

.testimonial-card:hover::before {
  transform: rotate(0deg) scale(1.1);
  opacity: 0.7;
}

.testimonial-card:hover {
  transform: perspective(800px) rotateY(5deg) rotateX(5deg) scale(1.03);
  box-shadow: 0 20px 50px rgb(0 0 0 / 0.3);
}

.testimonial-text {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

.testimonial-card > * {
  position: relative;
  z-index: 1;
}

.testimonial-section .swiper {
  padding-bottom: 2rem;
}

/* Section Background */
.bundle-offer-section {
  background: linear-gradient(135deg, #f5f7fa, #e3f2fd);
  overflow: hidden;
}

/* Gradient Heading Text */
.text-gradient {
  background: linear-gradient(90deg, #007bff, #6610f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight {
  color: #007bff;
}

/* Benefit Badges */
.benefit-badge {
  background: rgba(0, 123, 255, 0.1);
  color: #007bff;
  font-size: 0.9rem;
  padding: 0.6rem 1rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  cursor: default;
}

.benefit-badge:hover {
  background: #007bff;
  color: #fff;
  transform: translateY(-3px);
}

/* Call-to-Action Button */
.explore-btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.explore-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Visual Circle Group */
.bundle-visual {
  position: relative;
  width: 320px;
  height: 320px;
  margin: auto;
}

.course-circle {
  position: absolute;
  width: 120px;
  height: 120px;
  background: #fff;
  border: 2px solid #007bff;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  color: #007bff;
  text-align: center;
  transition: all 0.4s ease;
}

.course-circle:hover {
  background: #007bff;
  color: #fff;
}

.course-1 {
  top: 0;
  left: 30%;
}

.course-2 {
  bottom: 10px;
  left: 25px;
}

.course-3 {
  bottom: 10px;
  right: 25px;
}

.center-benefit {
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  transform: translate(-50%, -50%);
  background: #007bff;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.expert-call-section {
  background: linear-gradient(135deg, #f5f7fa, #e3f2fd);
}

/* Call Now Button */
.btn-call-now {
  background: linear-gradient(90deg, #007bff, #004aad);
  color: #fff;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.btn-call-now:hover {
  background: linear-gradient(90deg, #0069d9, #003c91);
  transform: translateY(-2px);
}

/* Inputs */
.expert-form .form-control,
.expert-form .form-select {
  height: 50px;
  font-size: 0.95rem;
}

/* Responsive tweaks */
@media (max-width: 576px) {
  .btn-call-now {
    width: 100%;
  }
  .btn-submit-now {
    width: 100%;
  }
}
.dynamic-course-card .card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Gradient glow on corners */
.dynamic-course-card .card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
      circle at top left,
      rgba(255, 165, 0, 0.25),
      transparent 40%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(0, 123, 255, 0.25),
      transparent 40%
    );
  z-index: 0;
  pointer-events: none;
}

/* Hover: subtle lift and glow animation */
.dynamic-course-card .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.dynamic-course-card .card:hover::before {
  background: radial-gradient(
      circle at top left,
      rgba(255, 140, 0, 0.35),
      transparent 50%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(0, 140, 255, 0.35),
      transparent 50%
    );
  filter: blur(2px);
  transition: background 0.4s ease;
}

/* Card body and typography */
.dynamic-course-card .card-body {
  position: relative;
  z-index: 1;
  color: #2d2d2d;
  padding: 1.5rem;
}

.dynamic-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #1f2937;
  letter-spacing: 0.3px;
}

.dynamic-card-text {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
  color: #374151;
}

/* CTA Button */
.dynamic-btn-group .btn {
  border-radius: 30px;
  padding: 0.6rem 1.4rem;
  font-weight: 600;
  background: linear-gradient(90deg, #ffb74d, #ff8a00);
  border: none;
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 138, 0, 0.3);
  transition: background 0.3s ease, transform 0.3s ease;
}

.dynamic-btn-group .btn:hover {
  background: linear-gradient(90deg, #ff8a00, #ff7043);
  transform: scale(1.05);
}

/* Smooth fade-in animation */
.dynamic-course-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.5s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive padding */
@media (max-width: 768px) {
  .dynamic-course-card .card-body {
    padding: 1rem;
  }
}

.technologies-section {
  background: linear-gradient(135deg, #f5f7fa, #e3f2fd);
}

.tech-divider {
  height: 3px;
  width: 80px;
  background-color: #3f8cff;
  border-radius: 2px;
}

.tech-logo {
  width: 130px;
  height: 100px;
  object-fit: contain;
}

.tech-logo1 {
  width: 170px;
  height: 100px;
  object-fit: contain;
}

.tech-logo2 {
  width: 235px;
  height: 100px;
  object-fit: contain;
}

/* Map section styling */
.map-section {
  background-color: #ffffff;
}

.map-section .tech-divider {
  height: 4px;
  width: 90px;
  background-color: #3f8cff;
  border-radius: 3px;
  margin-top: 0.75rem;
}

.map-section .card {
  background-color: #ffffff;
}

.map-section .btn-pill {
  border-radius: 50px;
}

/* Who Can Attend Section */
.who-attend-future {
  background: linear-gradient(135deg, #f5f7fa, #e3f2fd);
  color: #1a1a1a;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.lead-text {
  font-size: 1.15rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

/* Audience Blocks */
.attendee-block {
  padding: 1rem 0;
}

.attendee-block .tag {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  background: #0d6efd15;
  color: #0d6efd;
  padding: 0.35rem 0.75rem;
  border-radius: 2rem;
  margin-bottom: 0.75rem;
}

.attendee-block h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.attendee-block p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  max-width: 450px;
}

/* Image Styling */
.who-img {
  border-radius: 1.5rem;
  transition: transform 0.4s ease;
}
.who-img:hover {
  transform: scale(1.03);
}

/* Media Queries */
@media (max-width: 768px) {
  .attendee-block h3 {
    font-size: 1.4rem;
  }
}

/* Privacy Policy Wrapper */
.pp-header .pp-title {
  font-size: 2.2rem;
  color: #0d6efd;
  letter-spacing: 0.5px;
}

.pp-header .pp-subtitle {
  max-width: 700px;
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
}

/* Cards */
.pp-card {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.pp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.pp-card-title {
  color: #0d6efd;
  margin-bottom: 0.75rem;
}

.pp-card-text {
  font-size: 0.95rem;
  color: #495057;
  line-height: 1.7;
}

/* Links */
.pp-link {
  color: #0d6efd;
  text-decoration: none;
  font-weight: 500;
}

.pp-link:hover {
  text-decoration: underline;
}

/* Footer Note */
.pp-footer p {
  color: #6c757d;
}

/* Header */
.tc-header .tc-title {
  font-size: 2.2rem;
  color: #0d6efd;
  letter-spacing: 0.5px;
}

.tc-header .tc-subtitle {
  max-width: 720px;
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
}

/* Cards */
.tc-card {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.tc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.tc-card-title {
  color: #0d6efd;
  margin-bottom: 0.75rem;
}

.tc-card-text {
  font-size: 0.95rem;
  color: #495057;
  line-height: 1.7;
}

/* Links */
.tc-link {
  color: #0d6efd;
  text-decoration: none;
  font-weight: 500;
}

.tc-link:hover {
  text-decoration: underline;
}

/* Footer Note */
.tc-footer p {
  color: #6c757d;
}

.career-flow-section {
  background: linear-gradient(135deg, #f5f7fa, #e3f2fd);
  color: #fff;
  position: relative;
}

.career-flow-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.career-step {
  background: #fff;
  color: #0a3265;
  border-radius: 12px;
  padding: 1rem;
  width: 120px;
  transition: transform 0.3s ease;
}

.career-step:hover {
  transform: translateY(-10px);
}

.career-step-icon img {
  width: 60px;
  height: auto;
}

.career-steps {
  gap: 2rem;
}

.career-step-item {
  background: #0a3265;
  border: 2px solid #fff;
  border-radius: 12px;
  padding: 1rem;
  min-width: 180px;
  color: #fff;
  position: relative;
  transition: transform 0.3s ease;
  height: 10rem;
}

.career-step-item:hover {
  transform: translateY(-10px);
}

.career-step-number {
  font-weight: 700;
  font-size: 1.2rem;
  display: block;
  margin: 0.5rem 0;
}

.career-step-text {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .career-steps {
    flex-direction: column;
    gap: 1.5rem;
  }
}
