:root {
  --primary: #e5322d;
  --primary-light: #e5332d36;
  --accent: #fff00f;
  --highlight: #bd0745;
  --highlight-light: #bd074463;
  --dark: #222;
  --light: #f8f9fa;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  position: relative;
}
.form-control:focus {
  box-shadow: none;

  border-color: var(--highlight);
}

/* Background Shapes */
.bg-shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(229, 50, 45, 0.1) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: -1;
}

.bg-shape-2 {
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(189, 7, 69, 0.05) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: -1;
}

.bg-shape-3 {
  position: absolute;
  top: 50%;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 240, 15, 0.1) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: -1;
}

/* Color Classes */
.bg-primary-custom {
  background-color: var(--primary);
}
.bg-primary-custom-gradient {
  background: linear-gradient(135deg, var(--highlight), var(--primary));
}

.text-accent {
  color: var(--accent);
}
.text-highlight {
  color: var(--highlight);
}

.bg-highlight {
  background-color: var(--highlight);
}

.bg-dark-custom {
  background-color: var(--dark);
}

.bg-light-custom {
  background-color: var(--light);
}

.btn-accent {
  background-color: var(--accent);
  color: #333;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-accent:hover {
  background-color: #e6e000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 240, 15, 0.3);
}

.btn-primary-custom {
  background-color: var(--primary);
  color: white;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: #c42925;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(229, 50, 45, 0.3);
}

/* Header Styles */
.navbar {
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: white !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-brand img {
  transition: all 0.3s ease;
}
/* .navbar .navbar-brand h3 {
  display: none;
}
.navbar.scrolled .navbar-brand h3 {
  display: block;
} */

.navbar.scrolled .navbar-brand img {
  height: 40px;
}

.navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar-nav .nav-link:hover:after,
.navbar-nav .nav-link.active:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  transition: all 0.3s ease;
}

/* Banner Styles */
.hero-banner {
  position: relative;
  height: 90vh;
  min-height: 600px;
  background: url("https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80")
    no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(189, 7, 69, 0.6) 0%,
    rgba(229, 50, 45, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }

  40% {
    transform: translateY(-20px) translateX(-50%);
  }

  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* Section Styles */
.section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  position: relative;
  margin-bottom: 50px;
  text-align: center;
  font-weight: 700;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary);
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  color: #666;
}

/* Intro Section */
.intro-img {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.5s ease;
}

.intro-img:hover {
  transform: perspective(1000px) rotateY(0deg);
}

/* Accordion Styles */
.accordion-button:not(.collapsed) {
  background-color: rgba(229, 50, 45, 0.1);
  color: var(--primary);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(229, 50, 45, 0.25);
}

.accordion-button {
  font-weight: 600;
  padding: 15px 20px;
}

/* Course Card Styles */
.course-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.course-img {
  height: 200px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.course-card:hover .course-img {
  transform: scale(1.05);
}

.course-category {
  display: inline-block;
  background-color: var(--accent);
  color: #333;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Achievements Section */
.achievement-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.achievement-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--accent);
}

.achievement-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.achievement-card p {
  color: var(--dark);
}

.achievement-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--highlight), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--light);
  font-size: 1.8rem;
}

.achievement-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1;
}

/* Staff Card Styles */
.staff-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 30px 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  background: white;
}

.staff-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.staff-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 5px solid rgba(229, 50, 45, 0.1);
  transition: all 0.3s ease;
}

.staff-card:hover .staff-img {
  border-color: rgba(229, 50, 45, 0.3);
}

.staff-social {
  margin-top: 15px;
}

.staff-social a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background: rgba(229, 50, 45, 0.1);
  color: var(--primary);
  border-radius: 50%;
  margin: 0 3px;
  transition: all 0.3s ease;
}

.staff-social a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

/* Testimonial Styles */
.testimonial-item {
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  margin: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonial-item::before {
  content: "\201C";
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 4rem;
  color: rgba(229, 50, 45, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-quote {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 5px;
}

.testimonial-role {
  color: #666;
  font-size: 0.9rem;
}

.testimonial-rating {
  color: var(--accent);
  margin-bottom: 10px;
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, var(--highlight), var(--primary));
  color: white;
  padding: 80px 0 30px;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M1200 0L0 0 892.25 114.72 1200 0z" fill="white"></path></svg>')
    no-repeat;
  background-size: 100% 100%;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-links h5 {
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact i {
  width: 20px;
  text-align: center;
  margin-right: 10px;
  color: var(--accent);
}

.footer-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--accent);
  color: #333;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
}

/* Owl Carousel Nav Styles */
.owl-nav {
  text-align: center;
  margin-top: 30px;
}

.owl-nav button {
  background-color: var(--primary) !important;
  color: white !important;
  width: 50px;
  height: 50px;
  border-radius: 50% !important;
  margin: 0 10px;
  font-size: 20px !important;
  line-height: 50px !important;
  transition: all 0.3s ease !important;
}

.owl-nav button:hover {
  background-color: #c42925 !important;
  transform: scale(1.1);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-size: 1.2rem;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--highlight);
  transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }

  .section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .achievement-number {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-banner {
    height: 80vh;
    min-height: 500px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .section {
    padding: 50px 0;
  }
}

/* privacy-policy */

.hero-header {
  background: linear-gradient(var(--primary), var(--highlight)),
    url("https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  margin-top: 80px;
  padding: 100px 0 60px;
  color: white;
  text-align: center;
}

.privacy-header h1 {
  font-weight: 700;
  margin-bottom: 20px;
}

.breadcrumb {
  background-color: transparent;
  justify-content: center;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--accent);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

.privacy-content {
  padding: 80px 0;
}

.privacy-section {
  margin-bottom: 50px;
}

.privacy-section h2 {
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(26, 77, 143, 0.1);
  font-weight: 600;
}

.privacy-section h3 {
  color: var(--primary);
  margin: 30px 0 15px;
  font-weight: 500;
}

.privacy-section ul {
  padding-left: 20px;
}

.privacy-section ul li {
  margin-bottom: 8px;
}

.highlight-box {
  background-color: rgba(249, 165, 26, 0.1);
  border-left: 4px solid var(--accent);
  padding: 20px;
  margin: 30px 0;
  border-radius: 0 4px 4px 0;
}

.contact-info {
  background-color: var(--light);
  padding: 30px;
  border-radius: 8px;
  margin-top: 40px;
}

.contact-info h4 {
  color: var(--primary);
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-info i {
  color: var(--accent);
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .privacy-header {
    padding: 80px 0 40px;
  }

  .privacy-content {
    padding: 50px 0;
  }
}

/* contact us page */

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
  position: relative;
}

.contact-form-bg {
  position: absolute;
  width: 600px;
  height: 600px;
  background: linear-gradient(
    45deg,
    var(--primary-light),
    var(--highlight-light)
  );
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  bottom: -300px;
  left: -300px;
  z-index: -1;
}

.contact-form {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

textarea.form-control {
  min-height: 150px;
}

.form-label {
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.btn-submit {
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: var(--highlight);
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 5px 15px rgba(128, 0, 128, 0.3);
}

/* Contact Info Section */
.contact-info-section {
  padding: 80px 0;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.contact-info-card {
  background-color: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
  text-align: center;
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--primary), var(--highlight));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 24px;
}

.contact-info-card h3 {
  font-weight: 500;

  margin-bottom: 20px;
  color: #222;
}

.contact-info-card p {
  color: #555;
  margin-bottom: 15px;
}
.contact-info-card p strong {
  color: #222;
}
.contact-info-card a {
  color: var(--highlight);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-info-card a:hover {
  color: var(--primary);
}

/* Map Section */
.map-section {
  padding: 0;
  height: 500px;
}

.map-container {
  width: 100%;
  height: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
/* Responsive Styles */
@media (max-width: 1199.98px) {
  .contact-hero h1 {
    font-size: 36px;
  }
}

@media (max-width: 991.98px) {
  .contact-hero {
    padding: 100px 0 60px;
  }

  .contact-form-section,
  .contact-info-section {
    padding: 60px 0;
  }

  .contact-info-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 767.98px) {
  .contact-hero h1 {
    font-size: 32px;
  }

  .contact-hero p {
    font-size: 16px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .map-section {
    height: 400px;
  }
}

@media (max-width: 575.98px) {
  .contact-hero {
    padding: 80px 0 40px;
  }

  .contact-hero h1 {
    font-size: 28px;
  }

  .contact-form {
    padding: 25px 15px;
  }

  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }

  .map-section {
    height: 350px;
  }
}
