@charset "UTF-8";
:root {
  --primary-color: #007bff;
  --secondary-color: #ff6600;
  --accent-color: #ffcc00;
  --primary-font: Titillium Web, sans-serif;
  --secondary-font: Poppins, sans-serif;
  --base-font-size: 16px;
  --heading-font-size: 2rem;
}

/* assets/css/_variables.scss */
.btn-outline {
  background-color: transparent;
  border: 2px solid currentColor;
}
.btn-outline-primary {
  color: #007bff;
}
.btn-outline-primary:hover {
  background-color: #007bff;
  color: #fff;
}
.btn-outline-secondary {
  color: #ff6600;
}
.btn-outline-secondary:hover {
  background-color: #ff6600;
  color: #fff;
}
.btn-outline-accent {
  color: #ff6600;
}
.btn-outline-accent:hover {
  background-color: #ff6600;
  color: #fff;
}
.btn-rounded {
  border-radius: 50px;
}
.btn-lg {
  padding: 15px 30px;
  font-size: calc(var(--base-font-size) * 1.1);
}
.btn-sm {
  padding: 8px 16px;
  font-size: calc(var(--base-font-size) * 0.9);
}
.btn-block {
  display: block;
  width: 100%;
}

.header {
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 0.5rem 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .logo {
  display: flex;
  align-items: center;
}

.header .logo img {
  max-height: 50px;
}

.header .logo .logo-text {
  margin-left: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #007bff; /* replace $primary-color with actual hex */
}

.header .main-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Media query for large screens (lg) */
@media (max-width: 1199px) { /* replace $breakpoint-lg/$breakpoint-xl with px */
  .header .main-menu {
    display: none;
  }
  .header .menu-toggle {
    display: flex;
  }
}
.header .main-menu li {
  margin-left: 2rem;
}

.header .main-menu li a {
  display: block;
  padding: 1rem 0;
  color: #333;
  font-weight: 600;
  position: relative;
}

.header .main-menu li a::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #E9262C; /* $primary-color */
  transition: width 0.3s ease;
}

.header .main-menu li a:hover::after {
  width: 100%;
}

.header .menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.header .menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  border-radius: 3px;
  background-color: #333;
  transition: all 0.3s ease;
}

.header .menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header .menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header .menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.header .mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.header .mobile-menu.active {
  max-height: 500px;
}

.header .mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 1rem 0;
}

.header .mobile-menu ul li a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #333;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.header .mobile-menu ul li a:hover {
  background-color: #f8f9fa;
}

.login-btn {
  background: #d62525;
  color: #fff;
  padding: 6px 18px;
  border-radius: 4px;
  font-size: 12px;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.3s;
}

.login-btn:hover {
  background: #b91c1c;
}

.header-right {
  gap: 40px;
  display: flex;
}

.footer {
  background-color: #1E1E1E;
  color: #FFFFFF;
  padding: 4rem 0 1.5rem;
  /* --- Footer Bottom --- */
  /* --- Scroll to top --- */
}
.footer .footer-links {
  display: block;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}
.footer .footer-links li {
  margin: 15px 0;
}
.footer .footer-links li a {
  color: #fff;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer .footer-links li a:hover {
  color: #E9262C;
}
.footer .footer-widget h5 {
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer .footer-top {
  margin-bottom: 2rem;
}
.footer .footer-top .footer-widget {
  margin-bottom: 2rem;
  /* --- Quick Links --- */
  /* --- Contact Info --- */
  /* --- Newsletter Form --- */
  /* --- Social Icons --- */
}
.footer .footer-top .footer-widget img {
  max-width: 180px;
  margin-bottom: 1.5rem;
}
.footer .footer-top .footer-widget p {
  margin-bottom: 1.5rem;
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}
.footer .footer-top .footer-widget .footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer .footer-top .footer-widget .footer-links li {
  margin-bottom: 0.6rem;
}
.footer .footer-top .footer-widget .footer-links li a {
  color: #fff;
  font-size: 14px !important;
  padding: 10px 0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer .footer-top .footer-widget .footer-links li a:hover {
  color: #E9262C;
}
.footer .footer-top .footer-widget .newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer .footer-top .footer-widget .newsletter-form input {
  width: 100%;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: transparent;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
}
.footer .footer-top .footer-widget .newsletter-form input::-moz-placeholder {
  color: #aaa;
}
.footer .footer-top .footer-widget .newsletter-form input::placeholder {
  color: #aaa;
}
.footer .footer-top .footer-widget .newsletter-form input:focus {
  outline: none;
  border-color: #E9262C;
}
.footer .footer-top .footer-widget .newsletter-form .btn {
  background-color: #E9262C;
  border: none;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.6rem 0;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin-bottom: 10px !important;
  margin-left: 10px !important;
}
.footer .footer-top .footer-widget .newsletter-form .btn:hover {
  background-color: rgb(199.7489539749, 20.2510460251, 25.7740585774);
}
.footer .footer-top .footer-widget .social-links {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.footer .footer-top .footer-widget .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.footer .footer-top .footer-widget .social-links a:hover {
  background-color: #E9262C;
  transform: translateY(-3px);
}
.footer .footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.footer .footer-bottom .footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}
.footer .footer-bottom .footer-links li {
  margin: 0 0.75rem;
}
.footer .footer-bottom .footer-links li a {
  color: #fff;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer .footer-bottom .footer-links li a:hover {
  color: #E9262C;
}
.footer .footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: #999;
}
.footer .scroll-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.3s ease;
}
.footer .scroll-top:hover {
  background: #E9262C;
  color: #fff;
}

.contact-info {
  padding-left: 0;
}
.contact-info li {
  margin-bottom: 0.6rem;
  list-style: none;
  margin: 15px 0;
}
.contact-info li a {
  color: #fff;
  font-size: 14px !important;
  padding: 10px 0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-info li a:hover {
  color: #E9262C;
}
.contact-info li a img {
  margin-right: 10px;
}

.hero-slider {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #f8f9fa;
  overflow: hidden;
}
.hero-slider .hero-slide {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 80px 0;
  height: 700px;
}
.hero-slider .hero-slide .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-slider .hero-slide .hero-content {
  max-width: 600px;
  color: #fff;
  margin: 0 auto;
  padding: 50px 0;
}
.hero-slider .hero-slide .hero-content h1 {
  font-size: calc(var(--heading-font-size) * 1.8);
  margin-bottom: 1.5rem;
  animation: fadeInDown 1s ease 0.3s both;
  font-weight: 400;
  font-size: 92px;
  line-height: 100%;
  letter-spacing: 5%;
}
.hero-slider .hero-slide .hero-content p {
  font-size: calc(var(--base-font-size) * 1.2);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.6s both;
}
.hero-slider .hero-slide .hero-content .btn {
  margin-right: 1rem;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease 0.9s both;
  background: linear-gradient(89.37deg, #000000 -80.4%, #E9262C 68.33%);
  border-color: transparent;
}
.hero-slider .hero-slide .hero-content .btn:last-child {
  margin-right: 0;
}
.hero-slider .hero-slide .hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-slider .hero-slide .hero-features {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
}
.hero-slider .hero-slide .hero-features .feature {
  flex: 0 0 30%;
  text-align: center;
  color: #fff;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: transform 0.3s ease;
  animation: fadeInUp 1s ease 1.2s both;
}
.hero-slider .hero-slide .hero-features .feature:hover {
  transform: translateY(-10px);
}
.hero-slider .hero-slide .hero-features .feature i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ff6600;
}
.hero-slider .hero-slide .hero-features .feature h3 {
  font-size: calc(var(--heading-font-size) * 0.8);
  margin-bottom: 0.5rem;
}
.hero-slider .hero-slide .hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
}
.hero-slider .hero-slide .hero-scroll a {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: opacity 0.3s ease;
}
.hero-slider .hero-slide .hero-scroll a:hover {
  opacity: 0.7;
}
.hero-slider .hero-slide .hero-scroll .mouse {
  width: 30px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 15px;
  margin: 0 auto 10px;
  position: relative;
}
.hero-slider .hero-slide .hero-scroll .mouse::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background-color: #fff;
  border-radius: 2px;
  animation: mouse-scroll 2s ease infinite;
}
@media (max-width: 991px) {
  .hero-slider .hero-slide {
    flex-direction: column;
  }
  .hero-slider .hero-slide .hero-image {
    position: relative;
    width: 100%;
    height: 50vh;
    margin-top: 2rem;
  }
  .hero-slider .hero-slide .hero-features {
    flex-direction: column;
  }
  .hero-slider .hero-slide .hero-features .feature {
    margin-bottom: 1rem;
    width: 100%;
  }
}

/* Slick Slider Custom Styles */
.slick-dots {
  position: absolute;
  bottom: 30px;
  left: 50px;
  z-index: 3;
  text-align: left;
  width: auto;
}
.slick-dots li {
  margin: 0 5px;
  display: inline-block;
}
.slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
}
.slick-dots li button:before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 1;
  transition: background-color 0.3s ease;
}
@media (max-width: 991px) {
  .slick-dots {
    bottom: 60px;
    left: 0;
    right: 0;
    text-align: center;
  }
}
/* Keyframes */
@keyframes mouse-scroll {
  0% {
    top: 10px;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: 30px;
    opacity: 0;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.features {
  background-color: #1E1E1E;
}
.features .feature-box {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.features .feature-box:hover {
  transform: translateY(-10px);
}
.features .feature-box .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background-color: rgba(0, 123, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.features .feature-box .icon i {
  font-size: 2.5rem;
  color: #007bff;
}
.features .feature-box h3 {
  font-size: calc(var(--heading-font-size) * 0.9);
  margin-bottom: 1rem;
}
.features .feature-box p {
  margin-bottom: 1.5rem;
  color: #666;
}
.features .feature-box .btn {
  padding: 8px 20px;
  font-size: 0.9rem;
}
.features .reasons {
  margin-top: 4rem;
}
.features .reasons .reason {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 8px;
}
.features .reasons .reason .number {
  flex: 0 0 50px;
  height: 50px;
  background-color: #007bff;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 1.5rem;
}
.features .reasons .reason .content {
  flex: 1;
}
.features .reasons .reason .content h3 {
  font-size: calc(var(--heading-font-size) * 0.9);
  margin-bottom: 0.5rem;
}
.features .reasons .reason .content p {
  color: #666;
}

.stats {
  background: linear-gradient(135deg, #007bff, #ff6600);
  color: #fff;
  text-align: center;
}
.stats .stat-box {
  padding: 2rem;
}
.stats .stat-box .number {
  font-size: calc(var(--heading-font-size) * 2);
  font-weight: 700;
  margin-bottom: 0.5rem;
  animation: countUp 2s ease 0s both;
}
.stats .stat-box .label {
  font-size: calc(var(--base-font-size) * 1.1);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contact {
  background-color: #f8f9fa;
}
.contact .contact-info {
  margin-bottom: 3rem;
}
.contact .contact-info .info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact .contact-info .info-item .icon {
  flex: 0 0 40px;
  height: 40px;
  background-color: #007bff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 1rem;
}
.contact .contact-info .info-item .content {
  flex: 1;
}
.contact .contact-info .info-item .content h3 {
  font-size: calc(var(--heading-font-size) * 0.8);
  margin-bottom: 0.5rem;
}
.contact .contact-info .info-item .content p {
  color: #666;
  margin: 0;
}
.contact .contact-form {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.contact .contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact .contact-form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.contact .contact-form .form-group input, .contact .contact-form .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--primary-font);
  font-size: var(--base-font-size);
}
.contact .contact-form .form-group input:focus, .contact .contact-form .form-group textarea:focus {
  outline: none;
  border-color: #007bff;
}
.contact .contact-form .form-group textarea {
  min-height: 150px;
  resize: vertical;
}
.contact .contact-form .btn {
  width: 100%;
}
.contact .social-links {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.contact .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #007bff;
  color: #fff;
  margin: 0 0.5rem;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
.contact .social-links a:hover {
  background-color: #ff6600;
}

/* Scroll animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-animate.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Fade in animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-in {
  animation: fadeIn 1s ease 0s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up {
  animation: fadeInUp 1s ease 0s both;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-down {
  animation: fadeInDown 1s ease 0s both;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-in-left {
  animation: fadeInLeft 1s ease 0s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-in-right {
  animation: fadeInRight 1s ease 0s both;
}

/* Slide animations */
@keyframes slideInUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.slide-in-up {
  animation: slideInUp 0.5s ease 0s both;
}

@keyframes slideInDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.slide-in-down {
  animation: slideInDown 0.5s ease 0s both;
}

/* Bounce animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}
.bounce {
  animation: bounce 1s ease 0s both;
}

/* Pulse animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.pulse {
  animation: pulse 2s ease 0s infinite;
}

/* Rotate animation */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.rotate {
  animation: rotate 2s linear 0s infinite;
}

/* Text animations */
.text-animate {
  display: inline-block;
  opacity: 0;
}
.text-animate.animated {
  opacity: 1;
}

/* Typewriter effect */
.typewriter {
  overflow: hidden;
  border-right: 0.15em solid var(--accent-color);
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: 0.15em;
  animation: typing 3.5s steps(40, end) 1s both;
}
.typewriter::after {
  content: "";
  animation: blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: var(--accent-color);
  }
}
/* Staggered animation for list items */
.stagger-animation > * {
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger-animation > *.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Add transition delay for each child */
.stagger-animation > *:nth-child(1) {
  transition-delay: 0.1s;
}

.stagger-animation > *:nth-child(2) {
  transition-delay: 0.2s;
}

.stagger-animation > *:nth-child(3) {
  transition-delay: 0.3s;
}

.stagger-animation > *:nth-child(4) {
  transition-delay: 0.4s;
}

.stagger-animation > *:nth-child(5) {
  transition-delay: 0.5s;
}

.stagger-animation > *:nth-child(6) {
  transition-delay: 0.6s;
}

.stagger-animation > *:nth-child(7) {
  transition-delay: 0.7s;
}

.stagger-animation > *:nth-child(8) {
  transition-delay: 0.8s;
}

.stagger-animation > *:nth-child(9) {
  transition-delay: 0.9s;
}

.stagger-animation > *:nth-child(10) {
  transition-delay: 1s;
}

body {
  font-family: var(--primary-font);
  font-size: var(--base-font-size);
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--secondary-font);
  font-size: var(--heading-font-size);
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: var(--secondary-color);
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  font-family: var(--secondary-font);
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary {
  background-color: #007bff;
  color: #fff;
}
.btn-primary:hover {
  background-color: rgb(0, 98.4, 204);
}
.btn-secondary {
  background-color: #ff6600;
  color: #fff;
}
.btn-secondary:hover {
  background-color: rgb(204, 81.6, 0);
}
.btn-accent {
  background-color: #ffcc00;
  color: #fff;
}
.btn-accent:hover {
  background-color: rgb(204, 163.2, 0);
}

.about-section {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
}
.about-section .text-content h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4;
  color: #000000 !important;
  text-transform: capitalize !important;
}
.about-section .text-content h3 {
  font-weight: 600;
  margin: 10px 0 15px;
}
.about-section .text-content p {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 20px;
  color: #000000;
}
.about-section .scroll-text {
  display: inline-block;
  position: relative;
  overflow: hidden;
  height: 1.2em;
  vertical-align: bottom;
  font-weight: 600;
}
.about-section .scroll-text span {
  display: block;
  animation: scrollWords 4s linear infinite;
}

.gradient-text {
  background: linear-gradient(180deg, #FFFFFF 0%, #E9262C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes scrollWords {
  0%, 40% {
    transform: translateY(0);
  }
  50%, 90% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.counter-section {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}
.counter-section .counter-box {
  text-align: center;
}
.counter-section .counter-box .counter {
  font-size: 60px;
  font-weight: 700;
  display: inline-block;
  background: linear-gradient(180deg, #E9262C 0%, #831519 312.21%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.counter-section .counter-box .plus {
  background: linear-gradient(180deg, #E9262C 0%, #831519 312.21%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}
.counter-section .counter-box p {
  font-size: 14.19px;
  color: #000000;
  margin-top: 5px;
  font-weight: 600;
}

.why-edu-martial {
  background-image: url("https://pixelandpepper.com/edumartials/wp-content/uploads/2025/10/banner.png");
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.why-edu-martial .section-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.why-edu-martial .section-subtitle {
  color: #ccc;
  margin-bottom: 50px;
}
.why-edu-martial .why-slider {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
.why-edu-martial .why-slider .why-card {
  background: #fff;
  color: #000;
  width: 320px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease;
}
.why-edu-martial .why-slider .why-card:hover {
  transform: translateY(-10px);
}
.why-edu-martial .why-slider .why-card .why-img {
  position: relative;
}
.why-edu-martial .why-slider .why-card .why-img .why-number {
  position: absolute;
  position: absolute;
  left: 40px;
  bottom: -23px;
  font-size: 60px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 900;
}
.why-edu-martial .why-slider .why-card .why-img img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.why-edu-martial .why-slider .why-card .why-content {
  padding: 20px;
}
.why-edu-martial .why-slider .why-card .why-content h3 {
  padding: 20px 0;
  color: #000;
  font-size: 20px;
  font-family: "Bebas Neue", sans-serif;
}
.why-edu-martial .why-slider .why-card .why-content p {
  color: rgba(0, 0, 0, 0.8);
}
.why-edu-martial .why-slider .why-card .why-content .why-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: transparent;
  background: linear-gradient(180deg, #E9262C 0%, #831519 312.21%);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 10px;
}
.why-edu-martial .why-slider .why-card .why-content .learn-more {
  color: #E9262C;
  font-weight: 500;
  text-decoration: none;
  margin-top: 10px;
  display: inline-block;
}

.for-schools {
  background: #fff;
  color: #000;
  padding: 100px 20px;
}
.for-schools .schools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  align-items: center;
  gap: 50px;
}
.for-schools .schools-grid .schools-text h2 {
  font-size: 60px;
  margin-bottom: 15px;
  font-family: "Bebas Neue", sans-serif;
}
.for-schools .schools-grid .schools-text p {
  color: #000;
  line-height: 1.6;
  margin-bottom: 20px;
}
.for-schools .schools-grid .schools-text .explore-btn {
  display: inline-block;
  background: linear-gradient(180deg, #E9262C 0%, #831519 312.21%);
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}
.for-schools .schools-grid .schools-text .sports-icons {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.9rem;
  color: #E9262C;
  background: linear-gradient(90deg, rgba(255, 181, 181, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%);
  height: 65px;
  align-content: center;
  padding-top: 25px;
  padding-left: 25px;
}
.for-schools .schools-grid .schools-text .sports-icons p {
  font-size: 10px;
  padding: 5px 0;
}
.for-schools .schools-grid .schools-text .sports-icons span {
  padding: 0 20px;
}
.for-schools .schools-grid .schools-img {
  position: relative;
}
.for-schools .schools-grid .schools-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.for-schools .schools-grid .schools-img .slick-dots {
  position: absolute;
  bottom: 11px;
  left: 50%;
  transform: translateX(-50%);
  display: flex !important;
  justify-content: center;
  gap: 6px;
}
.for-schools .schools-grid .schools-img .slick-dots li {
  margin: 0;
  padding: 15px;
}
.for-schools .schools-grid .schools-img .slick-dots li button {
  width: 8px;
  height: 6px;
  border-radius: 4px;
  background: #ccc;
  border: none;
  padding: 0;
  transition: all 0.4s ease;
}
.for-schools .schools-grid .schools-img .slick-dots li button:before {
  content: "";
}
.for-schools .schools-grid .schools-img .slick-dots li.slick-active button {
  width: 48px;
  background: #ccc;
}

.for-academy {
  background: #F3F3FA;
  color: #000;
  padding: 100px 20px;
}
.for-academy .schools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  align-items: center;
  gap: 50px;
}
.for-academy .schools-grid .schools-text h2 {
  font-size: 60px;
  margin-bottom: 15px;
  font-family: "Bebas Neue", sans-serif;
}
.for-academy .schools-grid .schools-text p {
  color: #000;
  line-height: 1.6;
  margin-bottom: 20px;
}
.for-academy .schools-grid .schools-text .explore-btn {
  display: inline-block;
  background: linear-gradient(180deg, #E9262C 0%, #831519 312.21%);
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}
.for-academy .schools-grid .schools-text .sports-icons {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.9rem;
  color: #E9262C;
  background: linear-gradient(90deg, rgba(255, 181, 181, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%);
  height: 65px;
  align-content: center;
  padding-top: 25px;
  padding-left: 25px;
}
.for-academy .schools-grid .schools-text .sports-icons p {
  font-size: 10px;
  padding: 5px 0;
}
.for-academy .schools-grid .schools-text .sports-icons span {
  padding: 0 20px;
}
.for-academy .schools-grid .schools-img {
  position: relative;
}
.for-academy .schools-grid .schools-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.for-academy .schools-grid .schools-img .slick-dots {
  bottom: -30px;
  position: absolute;
}
.for-academy .schools-grid .schools-img .slick-dots li button:before {
  font-size: 10px;
  color: #999;
  opacity: 0.5;
}
.for-academy .schools-grid .schools-img .slick-dots li.slick-active button:before {
  color: #ff6600;
  opacity: 1;
}

.corporates {
  background: #fff;
  color: #000;
  padding: 100px 20px;
}
.corporates .schools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  align-items: center;
  gap: 50px;
}
.corporates .schools-grid .schools-text h2 {
  font-size: 60px;
  margin-bottom: 15px;
  font-family: "Bebas Neue", sans-serif;
}
.corporates .schools-grid .schools-text p {
  color: #000;
  line-height: 1.6;
  margin-bottom: 20px;
}
.corporates .schools-grid .schools-text .explore-btn {
  display: inline-block;
  background: linear-gradient(180deg, #E9262C 0%, #831519 312.21%);
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 30px;
}
.corporates .schools-grid .schools-text .sports-icons {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.9rem;
  color: #E9262C;
  background: linear-gradient(90deg, rgba(255, 181, 181, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%);
  height: 65px;
  align-content: center;
  padding-top: 25px;
  padding-left: 25px;
}
.corporates .schools-grid .schools-text .sports-icons p {
  font-size: 10px;
  padding: 5px 0;
}
.corporates .schools-grid .schools-text .sports-icons span {
  padding: 0 20px;
}
.corporates .schools-grid .schools-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.login-btn {
  background: linear-gradient(270deg, #E9262C 0%, #000000 302.13%);
  color: #fff;
  font-weight: 600;
}

a:hover {
  text-decoration: none !important;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: auto !important;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

/* ✅ Mobile adjustments */
@media (max-width: 768px) {
  .corporates .schools-grid .schools-text .sports-icons {
    gap: 10px;
    font-size: 0.85rem;
    padding: 12px 15px;
    flex-direction: row;
    height: auto;
  }
  .for-academy .schools-grid .schools-text .sports-icons {
    gap: 10px;
    font-size: 0.85rem;
    padding: 12px 15px;
    flex-direction: row;
    height: auto;
  }
  .for-schools .schools-grid .schools-text .sports-icons {
    gap: 10px;
    font-size: 0.85rem;
    padding: 12px 15px;
    flex-direction: row;
    height: auto;
  }
}
@media (max-width: 480px) {
  .corporates .schools-grid .schools-text .sports-icons {
    flex-direction: row; /* ✅ stack icons vertically on very small screens */
    align-items: flex-start;
    gap: 8px;
    padding: 10px 12px;
  }
  .for-academy .schools-grid .schools-text .sports-icons {
    flex-direction: row; /* ✅ stack icons vertically on very small screens */
    align-items: flex-start;
    gap: 8px;
    padding: 10px 12px;
  }
  .for-schools .schools-grid .schools-text .sports-icons {
    flex-direction: row; /* ✅ stack icons vertically on very small screens */
    align-items: flex-start;
    gap: 8px;
    padding: 10px 12px;
  }
  .about-section .text-content h2 {
    font-size: 35px;
  }
  .about-section .text-content p {
    font-size: 15px;
  }
  .counter-section .counter-box .counter {
    font-size: 40px;
  }
  .section-title {
    padding: 40px 0 0 0;
  }
  .for-schools .schools-grid .schools-img img {
    width: 90%;
  }
}/*# sourceMappingURL=main.css.map */