:root {
  --primary-color: #395433;
  --primary-light: #4a6e43;
  --primary-dark: #2a3f25;
  --accent-color: #8cff6e;
  --text-color: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --transition: all 0.3s ease;
  --darker-bg: #050505;
  --text-color: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --light-bg: #f8f9fa;
  --border-color: rgba(57, 84, 51, 0.2);
  --card-bg: #ffffff;
  --form-bg: #ffffff;
  --footer-bg: #395433;
  --footer-bottom-bg: #2a3f25;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
  --bg-light: #f8f9fa;
  --text-light: #666666;
  --text-white: #ffffff;
  --light-gray: #f8f8f8;
  --dark-gray: #333333;
  --medium-gray: #666666;
}

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

/* Custom text selection */
::selection {
  background-color: var(--primary-color);
  color: white;
}

::-moz-selection {
  background-color: var(--primary-color);
  color: white;
}

body {
  font-family: "Poppins", sans-serif;
  /* color: var(--dark-gray); */
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.z-index-1 {
  position: relative;
  z-index: 1;
}

/* Bootstrap Overrides */
.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-primary-dark {
  background-color: var(--primary-dark) !important;
}

.bg-primary-light {
  background-color: var(--primary-light) !important;
}

.bg-accent {
  background-color: var(--accent-color) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-accent {
  color: var(--accent-color) !important;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: var(--transition);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(57, 84, 51, 0.3);
}

.btn-accent {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--primary-dark);
  font-weight: 500;
}

.btn-accent:hover,
.btn-accent:focus {
  background-color: #7aea62;
  border-color: #7aea62;
  color: var(--primary-dark);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-control:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 0.25rem rgba(57, 84, 51, 0.25);
}

.cursor-trail {
  position: fixed;
  width: 20px;
  height: 20px;
  background-color: var(--accent-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999999999999999999999;
  opacity: 0.7;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
  mix-blend-mode: screen;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-accent {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--primary-dark);
}

.btn-accent:hover,
.btn-accent:focus {
  background-color: var(--primary-light);
  border-color: var(--primary-light);
  color: white;
}

.navbar a {
  color: var(--primary-color);
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1cqb 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

.nav-link {
  color: var(--primary-color) !important;
  font-weight: 500;
  position: relative;
  margin: 0 15px;
  transition: var(--transition);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
  padding: 0;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  bottom: -5px;
  left: 0;
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Hero Slider */
.swiper-container {
  width: 100%;
  height: 100vh;
  margin-top: 0;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
}

.slide-1 {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8)),
    url("assets/img/slider-1.jpg") no-repeat center center / cover;
}

.slide-2 {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8)),
    url("assets/img/soft_skills.jpg") no-repeat center center / cover;
}

.slide-3 {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8)),
    url("assets/img/slider-3.jpg") no-repeat center center / cover;
}

.slide-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px;
  z-index: 2;
}

.slide-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><rect width="2" height="2" fill="%23395433" /></svg>');
  opacity: 0.3;
  z-index: -1;
}
.text-justify {
  text-align: justify;
}

.slide-title {
  font-size: 5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-color);
  text-shadow: 0 0 15px rgba(57, 84, 51, 0.8);
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 0.8s forwards 0.5s;
}

.slide-description {
  font-size: 2.2rem;
  /* max-width: 700px; */
  margin-bottom: 30px;
  color: var(--text-secondary);
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 0.8s forwards 0.7s;
  margin-top: 40px;
  /* text-align: justify; */
  font-weight: 600;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 0.8s forwards 0.3s;
  color: var(--form-bg);
}

.status-badge i {
  color: var(--accent-color);
  font-size: 0.7rem;
}

.price-tag {
  margin-bottom: 30px;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 0.8s forwards 0.9s;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
}

.period {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

.slide-content .cta-button {
  padding: 15px 30px;
  font-size: 1rem;
  letter-spacing: 1px;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 0.8s forwards 1.1s;
}

/* Swiper Navigation */
.swiper-button-prev,
.swiper-button-next {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
  opacity: 0;
  transform: scale(0.8);
}

.swiper-button-prev:after,
.swiper-button-next:after {
  content: "";
}

.swiper-button-prev i,
.swiper-button-next i {
  font-size: 1.2rem;
}

.swiper-container:hover .swiper-button-prev,
.swiper-container:hover .swiper-button-next {
  opacity: 1;
  transform: scale(1);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: var(--primary-light);
  transform: scale(1.1);
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

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

/* Add a scanline effect to slides */
.scanline-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(0, 0, 0, 0.05) 50%
  );
  background-size: 100% 4px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.3;
}

/* Add permanent glow to slide titles */
.slide-title {
  font-size: 5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-color);
  text-shadow: 0 0 15px rgba(57, 84, 51, 0.8);
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 0.8s forwards 0.5s;
}

/* Add a subtle permanent glow to the active slide */
.swiper-slide-active .slide-content {
  position: relative;
}

.swiper-slide-active .slide-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0 0 50px rgba(57, 84, 51, 0.2);
  pointer-events: none;
}

/* Custom cursor trail effect - keeping this as requested */

/* team area */
.team-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-top: 2rem;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.team-header {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  padding: 2rem;
  color: white;
  text-align: center;
}

.team-member {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: none;
}

.team-member:hover {
  transform: translateY(-7px);
}

.member-img-container {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.member-img {
  transition: transform 0.5s ease;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-member:hover .member-img {
  transform: scale(1.05);
}

.social-icons {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.75rem;
  transition: all 0.3s ease;
  opacity: 0;
  border-radius: 0 0 10px 10px;
}

.team-member:hover .social-icons {
  bottom: 0;
  opacity: 1;
}

.social-icons a {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  margin: 0 5px;
  text-align: center;
  line-height: 36px;
  color: #333;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-3px);
  color: #fff;
}

.social-icons a.facebook:hover {
  background: #3b5998;
}

.social-icons a.twitter:hover {
  background: #1da1f2;
}

.social-icons a.linkedin:hover {
  background: #0077b5;
}

.social-icons a.instagram:hover {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.member-info {
  padding: 1rem;
}

.member-name {
  font-weight: 700;
  margin-bottom: 0.25rem;
  font-size: 1.25rem;
}

.member-role {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.member-bio {
  font-size: 0.9rem;
  color: #495057;
}

.skill-badge {
  background: #f8f9fa;
  color: #495057;
  border-radius: 20px;
  padding: 0.25rem 0.75rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  display: inline-block;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.skill-badge:hover {
  background: #e9ecef;
  transform: translateY(-2px);
}

.text-accent {
  color: var(--accent-color);
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-header {
  text-align: center;
  color: var(--primary-light);
}

.section-header h2 {
  font-weight: 700;
  color: var(--primary-light);
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.section-header.our-story {
  text-align: left;
}
.section-header h3 {
  font-weight: 700;
  color: var(--primary-light);
  position: relative;
  padding-bottom: 1rem;
}

.section-header h2:after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent-color);
}
.section-header.our-story h2::after {
  left: 14%;
}

.section-header p {
  color: #495057;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Contact Section Styles */
#contact {
  background-color: var(--light-bg);
  position: relative;
}

.contact-form-wrapper {
  background-color: var(--form-bg);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.form-control {
  border: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
  height: calc(3.5rem + 2px);
  font-size: 1rem;
  border-radius: 5px;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 0.25rem rgba(57, 84, 51, 0.25);
}

.form-floating > .form-control {
  padding: 1rem;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
  color: var(--primary-color);
}
label {
  color: #2a3f25;
}

.form-floating > label {
  padding: 1rem;
}

textarea.form-control {
  min-height: 150px;
}

.contact-info-wrapper {
  background-color: var(--primary-color);
  padding: 1.5rem 2.5rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  color: var(--text-color);
}

.contact-info-header {
  margin-bottom: 2rem;
}

.contact-info-header h3 {
  color: var(--text-color);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.contact-info-header p {
  color: var(--text-secondary);
}

.contact-info-item {
  display: flex;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-info-item:last-child {
  margin-bottom: 0;
}

.icon-box {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: var(--accent-color);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-content h5 {
  color: var(--text-color);
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.info-content p {
  color: gray;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  font-size: 1rem;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--accent-color);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

/* Map Section */
.map-container {
  height: 450px;
  width: 100%;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer Styles */
.footer-section {
  background-color: var(--light-bg);
  color: var(--text-color);
  position: relative;
}
.footer-section .social-link {
  background-color: var(--primary-color);
}

.footer-logo img {
  width: 90px;
}

.footer-top {
  padding: 5rem 0 3rem;
}
.footer-section a {
  text-decoration: none;
}

.footer-widget {
  margin-bottom: 2rem;
}

.footer-logo h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.footer-widget p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.footer-widget-title {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 5px;
}

.footer-contact-info {
  margin-bottom: 1.5rem;
}

.footer-contact-info .contact-info-item {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.footer-contact-info .contact-info-item i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 1rem;
}

.footer-contact-info .contact-info-item span {
  color: var(--text-light);
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links li a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.footer-links li a i {
  margin-right: 8px;
  font-size: 0.75rem;
  transition: var(--transition);
}

.footer-links li a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer-links li a:hover i {
  color: var(--accent-color);
}

.footer-newsletter .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--text-color);
  height: 50px;
}

.footer-newsletter .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter .btn {
  height: 50px;
  width: 50px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social-links {
  display: flex;
  gap: 10px;
}

.footer-bottom {
  background-color: var(--footer-bottom-bg);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-bottom-links li {
  margin-left: 1.5rem;
}

.footer-bottom-links li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-bottom-links li a:hover {
  color: var(--accent-color);
}

.back-to-top {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 45px;
  height: 45px;
  background-color: var(--accent-color);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition);
  z-index: 99;
}

.back-to-top:hover {
  background-color: var(--primary-light);
  color: white;
  transform: translateY(-5px);
}

/* CLIENTS SECTION */

.client-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem;
  /* border: 1px solid rgba(57, 84, 51, 0.1); */
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-light);
}

.client-logo {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: var(--transition);
}

.client-card:hover .client-logo {
  filter: grayscale(0%);
}

.clients-section .swiper-pagination {
  position: relative;
  margin-top: 2rem;
}

.clients-section .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--primary-light);
  opacity: 0.3;
}

.clients-section .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--primary-color);
  transform: scale(1.2);
}

/* 827 Section */
.client-counter-section {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.counter-item {
  padding: 1.5rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border: 1px solid rgba(57, 84, 51, 0.1);
}

.counter-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-light);
}

.counter-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.counter-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.counter-text {
  font-size: 1rem;
  color: rgb(131, 127, 127);
  margin-bottom: 0;
}

/* EVENTS SECTION */
.events-section {
  background-color: var(--light-bg);
  position: relative;
  padding: 5rem 0;
}

.events-section:before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(140, 255, 110, 0.1);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.event-card {
  background: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(57, 84, 51, 0.1);
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-light);
}

.event-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.event-card:hover .event-image img {
  transform: scale(1.1);
}

.event-date {
  position: absolute;
  bottom: 0;
  left: 20px;
  background: var(--primary-color);
  color: white;
  padding: 10px 15px;
  border-radius: 10px 10px 0 0;
  text-align: center;
  /* transform: translateY(50%); */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.event-date .day {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
}

.event-content {
  padding: 2rem;
}

.event-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  transition: var(--transition);
}

.event-card:hover .event-title {
  color: var(--primary-color);
}

.event-details {
  margin-bottom: 1rem;
}

.event-detail {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  color: rgb(71, 68, 68);
}

.event-detail i {
  color: var(--primary-light);
  margin-right: 0.5rem;
  font-size: 0.9rem;
}

.event-description {
  color: rgb(129, 129, 129);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.btn-register {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 5px;
  font-weight: 500;
  transition: var(--transition);
  display: inline-block;
  text-decoration: none;
}

.btn-register:hover {
  background-color: var(--primary-dark);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(57, 84, 51, 0.3);
}

.btn-view-all {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 0.6rem 1.5rem;
  border-radius: 5px;
  font-weight: 500;
  transition: var(--transition);
  display: inline-block;
  text-decoration: none;
}

.btn-view-all:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(57, 84, 51, 0.3);
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: rgb(128, 126, 126);
}

.certifications-title {
  text-align: center;
  margin: 80px 0 50px;
  position: relative;
}

.certifications-title h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-dark);
  display: inline-block;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.certification-logo {
  height: 80px;
  object-fit: contain;
  filter: brightness(0) invert(0);
  transition: var(--transition);
  opacity: 0.8;
}

.certification-logo:hover {
  transform: scale(1.05);
  opacity: 1;
}

.video-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  margin-top: 50px;
}

.video-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    transparent 100%
  );
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}

.video-container iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}

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

  .about-text {
    font-size: 1rem;
  }

  .certification-logo {
    height: 60px;
  }

  .stats-overlay {
    bottom: 15px;
    right: 15px;
    padding: 10px 15px;
  }

  .stats-number {
    font-size: 1.8rem;
  }

  .stats-text {
    font-size: 1rem;
  }
}

.about-section .position-relative {
  border-radius: 30px;
}
.circle-shape {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.15), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.about-text {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  z-index: 1;
  position: relative;
}

.skeleton-img {
  width: 100%;
  height: 140px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  border-radius: 4px;
  animation: skeleton-loading 1.5s infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cert-img {
  position: relative;
  z-index: 2;
  border-radius: 5px;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.program-grid {
  width: 100%;
  padding: 0;
}

.program-item {
  position: relative;
  overflow: hidden;
  height: 400px;
}

.program-content {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.program-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 1;
}

.program-text {
  position: relative;
  z-index: 2;
  color: #fff;
}

.soft-skills {
  background-color: #f8f9fa;
  color: #212529;
}

.soft-skills h2 {
  color: var(--primary-light);
  font-weight: 700;
}

.soft-skills span {
  color: #343a40;
}

.master-class {
  background-color: #f8f9fa;
  color: #212529;
}

@media (max-width: 767.98px) {
  .program-item {
    height: 350px;
  }
}

/* conatct us */

.hero-section {
  background: linear-gradient(
    to right,
    var(--primary-dark),
    var(--primary-color)
  );
  padding: 5rem 0;
  position: relative;
  color: white;
  margin-top: 123px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("assets/img/banner-.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.custom-breadcrumb {
  margin-bottom: 2rem;
}

.custom-breadcrumb .breadcrumb {
  background-color: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 0;
}
.about-breadcrumb .breadcrumb {
  background-color: var(--primary-light);
}

.custom-breadcrumb .breadcrumb-item {
  font-weight: 500;
}

.custom-breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
}

.custom-breadcrumb .breadcrumb-item a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.custom-breadcrumb .breadcrumb-item.active {
  color: var(--accent-color);
  font-weight: 600;
}

.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
}

.contactform-wrapper,
.contactInfo-wrapper {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--box-shadow);
  height: 100%;
}

.contactform-wrapper {
  border-top: 4px solid var(--primary-color);
}

.contactInfo-wrapper {
  border-top: 4px solid var(--accent-color);
}

.form-floating > .form-control {
  padding: 1rem 0.75rem;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
  color: var(--primary-color);
}

.contactinfo-list {
  margin-top: 2rem;
}

.contactInfo-wrapper .contactinfo-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.contactinfo-item .icon-box {
  width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contactinfo-item .info-content h5 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.contactinfo-item.info-content p {
  margin-bottom: 0.25rem;
}

.social-media-box h5 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.contact-social-icons {
  display: flex;
  gap: 6px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--accent-color);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

/* Map Section */
.map-section {
  height: 400px;
  position: relative;
}

.map-placeholder {
  background-color: #e9ecef;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("assets/img/contact.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.map-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.map-content {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
  z-index: 1;
  max-width: 400px;
}

.map-content h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
  background-color: #f8f9fa;
  padding: 5rem 0;
}

.faq-item {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--box-shadow);
  height: 100%;
  border-left: 4px solid var(--primary-color);
  transition: var(--transition);
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.faq-item h4 i {
  color: var(--accent-color);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--primary-light)
  );
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("assets/img/banner-22.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

.cta-section h2 {
  color: white;
  font-size: 2.5rem;
}

.cta-buttons {
  margin-top: 2rem;
}

.btn-outline-light:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--primary-dark);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .hero-sectionon {
    padding: 4rem 0;
  }

  .contact-info-wrapper {
    margin-top: 2rem;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 3rem 0;
  }

  .custom-breadcrumb .breadcrumb {
    padding: 0.5rem 1rem;
  }

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

  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-buttons .btn {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
  }

  .footer-bottom-links a {
    margin-left: 1rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 575px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }

  .contact-form-wrapper,
  .contact-info-wrapper {
    padding: 1.5rem;
  }
}

/* about us */
.neervana-hero {
  padding-bottom: 80px;
  background-color: #ffffff;
  margin-top: 123px;
}

.neervana-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.neervana-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 30px;
}

.neervana-button {
  background-color: var(--primary-color);
  color: white;
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.neervana-button:hover {
  background-color: var(--dark-gray);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-card {
  border-radius: 20px;
  overflow: hidden;
  border: none;
  height: 300px;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0) url(assets/img/black-bg.jpg) repeat scroll 0 0 /
    cover;
  position: relative;
  width: 100%;
  z-index: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #000;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.hero-card .hero-card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
  padding: 25px;
}

.hero-card .welcome-text {
  font-size: 1.5rem;
  padding: 3px 10px;
  border: 1px solid #fff;
  border-radius: 20px;
}

.hero-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-card-text {
  font-size: 1rem;
  position: absolute;
  bottom: 0;
  padding: 0px 25px 25px 25px;
  margin: 0;
}

.neervana-stat-card {
  background-color: var(--light-gray);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  height: 100%;
}

.neervana-accent-card {
  background-color: var(--primary-light);
  position: relative;
  color: var(--light-bg);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.neervana-counter {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0;
}

.neervana-counter-label {
  font-size: 1rem;
  color: var(--medium-gray);
}

.neervana-pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-right: 10px;
  margin-bottom: 10px;
}

.neervana-pill-dark {
  background-color: var(--primary-color);
  color: white;
}

.neervana-pill-light {
  background-color: #e3e3e3;
  color: var(--primary-color);
}

.neervana-pill-accent {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

.neervana-section {
  padding: 80px 0;
}

.neervana-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--primary-light);
  text-transform: uppercase;
}

.neervana-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.neervana-with-pill {
  position: relative;
  display: inline-block;
}

.neervana-pill-floating {
  background-color: white;
  color: var(--primary-color);
  border: 1px solid #e3e3e3;
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 1rem;
  /* position: absolute;
      top: -15px;
      left: 50%;
      transform: translateX(-50%); */
  z-index: 5;
}

.neervana-team-member {
  text-align: center;
  margin-bottom: 30px;
}

.neervana-team-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 5px solid white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.neervana-team-name {
  font-weight: 600;
  margin-bottom: 5px;
}

.neervana-team-position {
  color: var(--medium-gray);
  font-size: 0.9rem;
}

.neervana-timeline {
  position: relative;
  padding-left: 50px;
  margin-bottom: 50px;
}

.neervana-timeline:before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: #e3e3e3;
}

.neervana-timeline-item {
  position: relative;
  margin-bottom: 30px;
}

.neervana-timeline-dot {
  position: absolute;
  left: -50px;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--accent-color);
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--primary-color);
}

.neervana-timeline-year {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.neervana-timeline-content {
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 10px;
}

.neervana-gradient-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
}

.neervana-star {
  position: absolute;
  color: var(--accent-color);
}

.neervana-star-1 {
  top: 10%;
  left: 5%;
  font-size: 1.5rem;
}

.neervana-star-2 {
  top: 20%;
  right: 10%;
  font-size: 1rem;
}

.neervana-star-3 {
  bottom: 15%;
  left: 15%;
  font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .neervana-title {
    font-size: 3rem;
  }

  .neervana-counter {
    font-size: 2.5rem;
  }
}

@media (max-width: 767.98px) {
  .neervana-title {
    font-size: 2.5rem;
  }

  .neervana-section {
    padding: 50px 0;
  }

  .neervana-section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .neervana-circle-badge {
    width: 80px;
    height: 80px;
    left: -20px;
    top: -20px;
    font-size: 0.7rem;
  }
}

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

  .neervana-counter {
    font-size: 2rem;
  }

  .neervana-stat-card {
    margin-bottom: 20px;
  }
}

.newsletter-wrapper h3 {
  font-weight: 700;
  line-height: 1.2;
}

.hero-content h1 {
  font-weight: 700;
  line-height: 1.2;
}

.programs-section h3 {
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-light);
}

/* Buttons */
.neervana-btn-primary {
  background-color: var(--primary-color);
  color: var(--text-white);
  border: none;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.neervana-btn-primary:hover {
  background-color: var(--primary-light);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.neervana-btn-outline {
  background-color: transparent;
  color: var(--text-white);
  border: 2px solid var(--text-white);
  padding: 10px 28px;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
}

.neervana-btn-outline:hover {
  background-color: var(--text-white);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.neervana-btn-card {
  background-color: var(--primary-color);
  color: var(--text-white);
  border: none;
  padding: 8px 20px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-block;
  margin-top: 15px;
}

.neervana-btn-card:hover {
  background-color: var(--primary-light);
  color: var(--text-white);
}

.neervana-btn-sm {
  background-color: var(--primary-color);
  color: var(--text-white);
  border: none;
  padding: 6px 15px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-size: 0.85rem;
  transition: var(--transition);
}

.neervana-btn-sm:hover {
  background-color: var(--primary-light);
  color: var(--text-white);
}

.neervana-btn-cta {
  background-color: var(--accent-color);
  color: var(--primary-dark);
  border: none;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.neervana-btn-cta:hover {
  background-color: var(--text-white);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Navbar */

/* Hero Section */
.trainning-hero-section {
  background-color: var(--primary-color);
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  color: var(--text-white);
  padding-right: 30px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-image {
  position: relative;
  z-index: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.hero-shape {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: var(--light-bg);
  transform: skewY(-3deg);
  z-index: 0;
}

.cta-section {
  background-color: var(--primary-color);
}

/* Programs Section */
.programs-section {
  padding: 100px 0;
  background-color: var(--light-bg);
}

.neervana-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.neervana-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.program-card {
  text-align: center;
}

.program-card.featured {
  border: 2px solid var(--accent-color);
}

.featured-tag {
  position: absolute;
  top: 15px;
  right: -30px;
  background-color: var(--accent-color);
  color: var(--primary-dark);
  padding: 5px 30px;
  font-size: 0.8rem;
  font-weight: 600;
  transform: rotate(45deg);
}

.card-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(57, 84, 51, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.card-icon i {
  font-size: 30px;
  color: var(--primary-color);
}

.program-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.program-card p {
  color: var(--medium-gray);
  margin-bottom: 20px;
}

.program-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  text-align: left;
}

.program-features li {
  margin-bottom: 10px;
  color: var(--medium-gray);
}

.program-features li i {
  color: var(--primary-color);
  margin-right: 10px;
}

/* Trainers Section */
.trainers-section {
  padding: 100px 0;
  background-color: var(--light-bg);
}

.trainer-card {
  text-align: center;
}

.trainer-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 5px solid var(--text-white);
  box-shadow: var(--box-shadow);
}

.trainer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trainer-info h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.trainer-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.trainer-bio {
  color: var(--medium-gray);
  margin-bottom: 15px;
}

.trainer-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.trainer-social a {
  width: 35px;
  height: 35px;
  background-color: var(--primary-color);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.trainer-social a:hover {
  background-color: var(--primary-light);
  transform: translateY(-3px);
}

/* Schedule Section */
.schedule-section {
  padding: 100px 0;
  background-color: var(--text-white);
}

.schedule-tabs .nav-pills {
  gap: 10px;
}

.schedule-tabs .nav-link {
  background-color: transparent;
  color: var(--dark-gray);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 10px 20px;
  font-weight: 500;
  transition: var(--transition);
}

.schedule-tabs .nav-link.active,
.schedule-tabs .nav-link:hover {
  background-color: var(--primary-color);
  color: var(--text-white) !important;
  border-color: var(--primary-color);
}

.schedule-table {
  background-color: var(--text-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.schedule-row {
  display: flex;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
}

.schedule-row:last-child {
  border-bottom: none;
}

.schedule-time {
  width: 120px;
  font-weight: 600;
  color: var(--primary-color);
}

.schedule-content {
  flex: 1;
  padding: 0 20px;
}

.schedule-content h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.schedule-content p {
  color: var(--medium-gray);
  margin-bottom: 10px;
}

.schedule-trainer {
  display: flex;
  align-items: center;
}

.schedule-trainer img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}

.schedule-trainer span {
  font-size: 0.9rem;
  font-weight: 500;
}

.schedule-action {
  width: 100px;
  text-align: right;
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background-color: var(--light-bg);
}

.testimonial-item {
  padding: 30px;
}

.testimonial-content {
  background-color: var(--text-white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  position: relative;
}

.testimonial-quote {
  position: absolute;
  top: -15px;
  left: 30px;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-content p {
  color: var(--medium-gray);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.author-info p {
  color: var(--primary-color);
  margin: 0;
  font-style: normal;
  font-weight: 500;
}

.carousel-indicators {
  bottom: -50px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--border-color);
  opacity: 1;
}

.carousel-indicators button.active {
  background-color: var(--primary-color);
}

/* CTA Section */
.cta-section {
  padding: 60px 0;
  background-color: var(--primary-color);
  color: var(--text-white);
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.cta-section p {
  color: var(--text-secondary);
  margin: 0;
}

/* Registration Section */
.register-section {
  padding: 100px 0;
  background-color: var(--light-bg);
}

.register-content {
  padding-right: 30px;
}

.register-features {
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(57, 84, 51, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 20px;
  color: var(--primary-color);
}

.feature-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.feature-text p {
  color: var(--medium-gray);
  margin: 0;
}

.register-form-wrapper {
  background-color: var(--text-white);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--box-shadow);
}

.register-form .form-label {
  font-weight: 500;
  color: var(--dark-gray);
}

.register-form .form-control,
.register-form .form-select {
  padding: 12px 15px;
  border-color: var(--border-color);
  border-radius: var(--border-radius);
}

.register-form .form-control:focus,
.register-form .form-select:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background-color: var(--text-white);
}

.accordion-item {
  border-color: var(--border-color);
  margin-bottom: 15px;
  border-radius: var(--border-radius) !important;
  overflow: hidden;
  border: 1px solid #dbe0da !important;
}

.accordion-button {
  padding: 20px;
  font-weight: 600;
  color: var(--dark-gray);
  background-color: var(--text-white);
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: rgba(57, 84, 51, 0.05);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--border-color);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23395433'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238cff6e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: var(--bs-accordion-btn-icon-transform);
}

.accordion-body {
  padding: 20px;
  color: var(--medium-gray);
}

/* Newsletter Section */
.newsletter-section {
  padding: 50px 0;
  background-color: var(--light-bg);
}

.newsletter-wrapper {
  background-color: var(--primary-color);
  border-radius: var(--border-radius);
  padding: 40px;
  color: var(--text-white);
}

.newsletter-wrapper h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.newsletter-wrapper p {
  color: var(--text-secondary);
  margin: 0;
}

.newsletter-form .input-group {
  margin-top: 10px;
}

.newsletter-form .form-control {
  padding: 12px 15px;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.newsletter-form .btn {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  background-color: var(--accent-color);
  color: var(--primary-dark);
  font-weight: 600;
}

.newsletter-form .btn:hover {
  background-color: var(--text-white);
  color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 991px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .trainning-hero-section {
    padding: 150px 0 80px;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .register-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .schedule-time {
    width: 100px;
  }
}

@media (max-width: 767px) {
  .section-header h2 {
    font-size: 1.8rem;
  }

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

  .stat-item {
    margin-bottom: 20px;
  }

  .schedule-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .schedule-time {
    width: 100%;
    margin-bottom: 10px;
  }

  .schedule-content {
    padding: 0;
    margin-bottom: 15px;
  }

  .schedule-action {
    width: 100%;
    text-align: left;
  }

  .cta-section h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .cta-section .text-lg-end {
    text-align: left !important;
    margin-top: 20px;
  }

  .newsletter-wrapper {
    text-align: center;
  }

  .newsletter-form {
    margin-top: 20px;
  }
}

@media (max-width: 575px) {
  .section-header h2 {
    font-size: 1.5rem;
  }

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

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .register-form-wrapper {
    padding: 20px;
  }
}

/* container */
/* @media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1780px;
  }
} */
