@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&family=Space+Grotesk:wght@400;600;700&display=swap");

/* @import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap"); */

@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

@font-face {
  font-family: "HelveticaNeueBlack";
  src: url("maritime-course-assets/fonts/helvetica-neue-black_freefontdownload_org/helvetica-neue-black.ttf")
    format("truetype");
  font-weight: bold;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 .hero-text h1,
.course-title {
  /* font-family: "Space Grotesk", sans-serif; */
  font-family: "Bebas Neue", sans-serif;
  /* letter-spacing: 1.5px; */
}
p {
  font-family: "Inter", sans-serif !important;
}
/* Modern color scheme and variables */
:root {
  --welding-primary: #1e3a8a;
  --welding-secondary: #0ea5e9;
  --welding-accent: #f59e0b;
  --welding-dark: #1e293b;
  --welding-light: #f8fafc;
  --welding-gradient: linear-gradient(135deg, var(--welding-primary), var(--welding-secondary));
}

#welding-content {
  font-family: "Inter", sans-serif !important;
  /* font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; */
  line-height: 1.6;
  color: var(--welding-dark);
  background-color: var(--welding-light);
}

/* Banner with integrated course section styles */
.hero-banner {
  position: relative;
  width: 100%;
  /* height: 100vh; */
  /* min-height: 800px; */
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  mix-blend-mode: multiply;
  /* z-index: 2; */
  z-index: 1;
}

.hero-content {
  position: relative;
  /* z-index: 3; */
  z-index: 1;
  display: flex;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: center;
  /* justify-content: space-between; */
  justify-content: center;
}

.hero-text {
  flex: 1;
  text-align: center;
  color: white;
  /* max-width: 600px; */
  max-width: 800px;
}

.hero-text h1 {
  color: white;
  font-size: 2.6rem;
  /* font-size: 3.5rem; */
  /* font-size: 3rem; */
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  /* font-family: "Inter", sans-serif !important; */
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: "HelveticaNeueBlack", sans-serif !important;
}
.bannerSpanOil {
  color: #f2e95b;
}

.pageNameWelding {
  font-size: 1.5rem;
  font-weight: bold;
  /* color: var(--welding-accent) !important; */
  color: #fe810d !important;
  margin-bottom: 15px;
  text-transform: uppercase;
  /* letter-spacing: 2px; */
  font-family: "Montserrat", sans-serif !important;
}

.course-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.course-logo {
  background: white;
  padding: 15px;
  max-width: 350px;
  border-radius: 15px;
  /* max-width: 250px; */
  /* margin-bottom: 20px; */
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.course-card {
  /* background: rgba(255, 255, 255, 0.1); */
  border-radius: 15px;
  /* padding: 20px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.course-card:hover {
  /* background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3); */
  transform: translateY(-5px);
}

.course-title {
  color: white;
  /* font-size: 1.2rem; */
  font-size: 2rem;
  font-weight: bold;
}

.course-icon {
  width: 30px;
  height: 30px;
  color: white;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.course-card:hover .course-icon {
  opacity: 1;
}

@media (max-width: 1200px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    /* margin-bottom: 40px; */
    margin-bottom: 10px;
  }

  .course-section {
    width: 100%;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    /* font-size: 2.5rem; */
    font-size: 1.9rem;
  }

  .pageNameWelding {
    font-size: 1.2rem;
  }
}

/* end banner section and course style */

/* Feature highlights */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--welding-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  min-width: 60px;
  max-width: 60px;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  color: white;
  object-fit: contain;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--welding-dark);
  font-family: "Inter", sans-serif !important;
}

.feature-text {
  color: #64748b;
  font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .video-hero {
    height: 70vh;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .hero-content {
    width: 95%;
    padding: 30px 15px;
  }

  .institute-logo {
    /* max-width: 450px; */
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  /* .institute-logo {
        max-width: 450px;
    } */
}

/* testimonial section */
.batch-slider-section {
  padding: 100px 0;
  background-color: #f8f9fa;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--welding-dark);
  margin-bottom: 60px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--welding-gradient);
  border-radius: 2px;
}

.slider-container {
  position: relative;
  overflow: hidden;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 480px;
}

.slide {
  min-width: 100%;
  flex: 0 0 100%;
}

.slide-inner {
  display: flex;
  height: 100%;
  margin: 0 auto;
  max-width: 1100px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.slide-image {
  flex: 0 0 50%;
  overflow: hidden;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.slide:hover .slide-image img {
  transform: scale(1.03);
}

.slide-content {
  flex: 0 0 50%;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.batch-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--welding-primary);
  margin-bottom: 20px;
}

.batch-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--welding-dark);
  margin-bottom: 30px;
  text-align: justify;
}

/* .batch-meta {
  display: flex;
  gap: 15px;
  margin-top: auto;
}

.batch-cert,
.batch-location {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 30px;
  color: white;
}

.batch-cert {
  background: var(--welding-primary);
}

.batch-location {
  background: var(--welding-secondary);
} */

.batch-meta {
  display: flex;
  gap: 15px;
  margin-top: auto;
}

.batch-cert,
.batch-location {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 4px;
  color: var(--welding-dark);
  background: transparent;
  border: 1px solid #e0e0e0;
  display: inline-flex;
  align-items: center;
}

.batch-cert:before {
  content: "•";
  margin-right: 6px;
  color: var(--welding-primary);
}

.batch-location:before {
  content: "📍";
  margin-right: 6px;
  font-size: 1rem;
}

/* Navigation buttons */
.slider-navigation {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: var(--welding-primary);
  color: white;
  transform: scale(1.1);
}

/* Pagination */
.slider-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  padding-bottom: 10px;
}

.pagination-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-dot.active {
  background: var(--welding-primary);
  transform: scale(1.2);
}

.pagination-dot:hover {
  background: var(--welding-secondary);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .slide-inner {
    flex-direction: column;
    height: auto;
  }

  .slide-image,
  .slide-content {
    flex: 0 0 100%;
  }

  .slide-content {
    padding: 40px 30px;
  }

  .slider-wrapper {
    height: auto;
  }

  .batch-title {
    font-size: 1.75rem;
  }
  .mobHide {
    display: none;
  }
  /* cta btns */
  .float-register-btn img {
    width: 90px;
  }
  .whatsapp-icon {
    right: 35px !important;
  }
  /* end cta btns  */
  .collaboratedWithSectionRow {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .slider-navigation {
    padding: 0 10px;
  }

  .nav-btn {
    width: 40px;
    height: 40px;
  }

  .batch-title {
    font-size: 1.5rem;
  }

  .batch-description {
    font-size: 1rem;
  }
}

/* end testimonial section */

/* section upcoming batches  */

.schedule-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.schedule-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%); */
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.7; /* Increased opacity for better visibility */
}

.container {
  position: relative;
  z-index: 2; /* Ensure content is above the overlay */
}

.schedule-cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  position: relative;
  z-index: 2; /* Ensure cards are above the overlay */
  margin-bottom: 1.5rem;
}

.schedule-card {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.2); /* Transparent white background */
  backdrop-filter: blur(10px); /* Blur effect */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15); /* Soft shadow */
  border: 1px solid rgba(255, 255, 255, 0.18); /* Light border */
  position: relative;
  transition: all 0.3s ease;
}

.schedule-card:hover {
  background: rgba(255, 255, 255, 0.3); /* Slightly more opaque on hover */
  transform: translateY(-5px);
  box-shadow: 0 12px 36px 0 rgba(31, 38, 135, 0.2);
}

.schedule-card-header {
  position: relative;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1); /* Subtle header background */
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.schedule-card-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff; /* White text for better contrast */
  display: flex;
  align-items: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* Slight text shadow for readability */
  letter-spacing: 1.5px;
}

.schedule-card-title svg {
  margin-right: 12px;
  color: #ffffff; /* Adjusted icon color */
}

.schedule-card-content {
  padding: 30px;
  position: relative;
  color: #ffffff; /* White text for better contrast */
}

.date-display {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.calendar-icon {
  /* background: rgba(255, 255, 255, 0.2); */
  background: var(--welding-primary);
  backdrop-filter: blur(5px);
  min-width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.date-info {
  flex-grow: 1;
}

.date-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 5px 0;
  font-weight: 600;
  letter-spacing: 1px;
}

.date-value {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 900;
  color: #ffffff;
}

.location-display {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.3);
}

.location-icon {
  min-width: 60px;
  max-width: 60px;
  height: 60px;
  /* background: rgba(255, 255, 255, 0.2); */
  background: var(--welding-primary);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.location-info {
  display: flex;
  flex-direction: column;
}

.location-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-weight: 600;
}

.location-value {
  font-size: 1.1rem;
  font-weight: 900;
  color: #ffffff;
  margin: 2px 0 0 0;
}

/* Existing background patterns and decorative elements */
.bg-pattern {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.03) 0%, rgba(30, 58, 138, 0.01) 70%);
  border-radius: 50%;
  z-index: -1;
}

.bg-pattern-1 {
  top: -300px;
  right: -200px;
}

.bg-pattern-2 {
  bottom: -350px;
  left: -250px;
}

.decorative-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: -1;
}

.decorative-circle-1 {
  width: 120px;
  height: 120px;
  background-color: var(--welding-secondary);
  top: 80px;
  left: 10%;
}

.decorative-circle-2 {
  width: 80px;
  height: 80px;
  background-color: var(--welding-accent);
  bottom: 100px;
  right: 15%;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .schedule-cards-container {
    flex-direction: column;
  }

  .schedule-card {
    width: 100%;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
  }

  .section-title {
    font-size: 2rem;
  }
}
/* end section upcoming batches  */

/* contact section */

/* Two-column Layout Container */
.two-column-section {
  padding: 90px 0;
  background-color: var(--welding-light);
  position: relative;
}

.two-column-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Left Column (Content) Styles */
.content-column {
  flex: 1;
}

.info-header {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}

/* .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--welding-primary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
} */

.title-underline {
  width: 80px;
  height: 4px;
  background: var(--welding-gradient);
  margin: 0 auto;
  border-radius: 2px;
}

.content-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

.content-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--welding-gradient);
}

.card-text {
  padding: 40px 50px;
}

.card-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 20px;
  text-align: justify;
}

.card-text p:last-child {
  margin-bottom: 0;
}

/* Right Column (Form) Styles */
.form-column {
  width: 400px;
}

.enquiry-form-wrapper {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(30, 58, 138, 0.1);
  position: relative;
  overflow: hidden;
}

.enquiry-form-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--welding-gradient);
}

.form-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--welding-primary);
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.form-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--welding-gradient);
  border-radius: 3px;
}

.form-status-message {
  text-align: center;
  margin-bottom: 20px;
  min-height: 24px;
}

.error-message {
  color: #ef4444;
  font-weight: 600;
  margin: 0;
}

.success-message {
  color: #10b981;
  font-weight: 600;
  margin: 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus {
  border-color: var(--welding-secondary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

.captcha-container {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.button-container {
  margin-top: 25px;
}

.submit-button {
  width: 100%;
  background: var(--welding-gradient);
  color: white;
  border: none;
  padding: 16px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.waiting-button {
  width: 100%;
  background: #94a3b8;
  color: white;
  border: none;
  padding: 16px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .card-text {
    padding: 30px 40px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .form-column {
    width: 350px;
  }
}

@media (max-width: 768px) {
  .two-column-container {
    flex-direction: column;
  }

  .form-column {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .section-title {
    font-size: 2rem;
  }

  .card-text {
    padding: 25px 30px;
  }

  .card-text p {
    font-size: 1rem;
  }
  /* .breakHeadingBanner {
    display: block;
  } */
}

@media (max-width: 576px) {
  .two-column-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .card-text {
    padding: 20px 25px;
  }

  .enquiry-form-wrapper {
    padding: 30px 20px;
  }

  .form-title {
    font-size: 1.8rem;
  }
}

/* end contact section */

.collaboratedWithSection {
  /* padding: 80px 0; */
  padding: 0 0 80px 0;
}

.collaboratedWithSectionRow {
  display: flex;
  justify-content: center;
}

.stroke-text {
  color: #0082c6; /* Text color */
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 1px 1px 0 white;
}

@media (min-width: 992px) {
  .collabImgDiv img {
    /* width: 250px; */
    width: 150px;
    object-fit: contain;
  }
  .collabHeading {
    font-size: 2rem !important;
  }
  /* cta btn */
  .float-register-btn img {
    width: 120px;
  }
  .whatsapp-icon {
    right: 60px !important;
  }
  /* end cta btns */
}
.collabImgDiv {
  display: flex;
  justify-content: center;
}

.content-section {
  padding: 60px 0;
}

/* what's app styling */

/* .whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  z-index: 1000;
  animation-name: floating;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.whatsapp-icon img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0px);
  }
} */

#scrollUp {
  display: none !important;
}

/* register now btn */

@keyframes pulse-animation {
  0% {
    transform: scale(1);
    /* box-shadow: 0 0 0 0 rgba(30, 58, 138, 0.7); */
  }
  70% {
    transform: scale(1.05);
    /* box-shadow: 0 0 0 20px rgba(30, 58, 138, 0); */
  }
  100% {
    transform: scale(1);
    /* box-shadow: 0 0 0 0 rgba(30, 58, 138, 0); */
  }
}

@keyframes shine-effect {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.float-register-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;

  /* background: var(--welding-gradient);
  color: var(--welding-light);
  padding: 15px 30px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3), 0 5px 15px rgba(14, 165, 233, 0.2);
  text-decoration: none;
  border: 2px solid var(--welding-light);
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  overflow: hidden; */

  transition: all 0.4s ease;
  animation: pulse-animation 2s infinite;
}

/* .float-register-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-45deg);
  animation: shine-effect 3s infinite linear;
} */

/* .float-register-btn::after {
  content: "✨";
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--welding-accent);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
} */

.float-register-btn:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 15px 30px rgba(30, 58, 138, 0.4), 0 7px 20px rgba(14, 165, 233, 0.3);
  background: linear-gradient(135deg, #0ea5e9, #1e3a8a); */
}

.float-register-btn:active {
  transform: translateY(2px);
  /* box-shadow: 0 5px 10px rgba(30, 58, 138, 0.2), 0 2px 5px rgba(14, 165, 233, 0.1); */
}

@media (max-width: 768px) {
  .float-register-btn {
    bottom: 20px;
    right: 20px;
    /* padding: 12px 24px;
    font-size: 14px; */
  }
}
/* end register now btn */

.whatsapp-icon {
  bottom: 130px !important;
  /* right: 60px !important; */
}
.borderTopCstm {
  border-top: 1px dashed rgba(255, 255, 255, 0.3);
}
.classTypeContainer {
  display: flex;
  justify-content: space-between;
}
.classTypeContainer a {
  font-size: medium;
  background: #1e3a8a;
  padding: 10px 15px;
  border-radius: 10px;
}

.programs-list {
  list-style: none;
  padding-left: 0;
}

.programs-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.8rem;
  color: #374151;
  line-height: 1.6;
}

.programs-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  background: #1e3a8a;
  border-radius: 50%;
  transform: translateY(-50%);
}

/* Alternative diamond bullet */
.programs-list.diamond li::before {
  width: 8px;
  height: 8px;
  background: #1e3a8a;
  border-radius: 0;
  transform: translateY(-50%) rotate(45deg);
}

/* why choose */

.features-section {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 4rem 2rem;
  background: white;
  /* border-radius: 20px; */
  box-shadow: 0 20px 60px rgba(30, 58, 138, 0.1);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  /* margin-bottom: 1rem; */
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #1e3a8a, #2563eb);
  border-radius: 2px;
}

.section-subtitle {
  color: #64748b;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card-why-choose-us {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(30, 58, 138, 0.1);
  position: relative;
  overflow: hidden;
}

.feature-card-why-choose-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e3a8a, #2563eb);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card-why-choose-us:hover::before {
  transform: scaleX(1);
}

.feature-card-why-choose-us:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
}

.feature-icon-why-choose-us {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
  transition: all 0.3s ease;
}

.feature-card-why-choose-us:hover .feature-icon-why-choose-us {
  transform: scale(1.1) rotate(5deg);
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.feature-description {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Animation for cards */
.feature-card-why-choose-us {
  animation: fadeInUp 0.6s ease-out forwards;
}

.feature-card-why-choose-us:nth-child(1) {
  animation-delay: 0.1s;
}
.feature-card-why-choose-us:nth-child(2) {
  animation-delay: 0.2s;
}
.feature-card-why-choose-us:nth-child(3) {
  animation-delay: 0.3s;
}
.feature-card-why-choose-us:nth-child(4) {
  animation-delay: 0.4s;
}
.feature-card-why-choose-us:nth-child(5) {
  animation-delay: 0.5s;
}
.feature-card-why-choose-us:nth-child(6) {
  animation-delay: 0.6s;
}
.feature-card-why-choose-us:nth-child(7) {
  animation-delay: 0.7s;
}
.feature-card-why-choose-us:nth-child(8) {
  animation-delay: 0.8s;
}

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

/* Highlight card for 100% placement */
.feature-card-why-choose-us.highlight {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: white;
  border: none;
}

.feature-card-why-choose-us.highlight .feature-icon-why-choose-us {
  background: white;
  color: #1e3a8a;
}

.feature-card-why-choose-us.highlight .feature-title {
  color: white;
}

.feature-card-why-choose-us.highlight .feature-description {
  color: rgba(255, 255, 255, 0.9);
}

.feature-card-why-choose-us.highlight::before {
  background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .features-section {
    padding: 2rem 1rem;
    margin: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card-why-choose-us {
    padding: 2rem;
  }
}
/* end why choose */

.view-all-courses-container {
  padding-top: 35px;
  text-align: center;
}
.view-all-courses-container a {
  background: #1e3a8a;
  padding: 15px;
  border-radius: 5px;
}
