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

body {
  font-family: "Inter", sans-serif;
  color: #ffffff;
  line-height: 1.6;
}

/* Preloader Styles */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

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

.preloader-content {
  text-align: center;
  color: #ffffff;
}

.preloader-logo {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(45deg, #ffffff, #0048a8, #ffffff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 2s ease-in-out infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.preloader-logo img {
  max-width: 60px;
  display: block;
  margin-inline: auto;
}

.preloader-spinner {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid #0048a8;
  border-radius: 50%;
  margin: 0 auto 2rem;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.preloader-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.preloader-progress {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.preloader-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #0048a8, #0066cc);
  border-radius: 2px;
  width: 0%;
  transition: width 0.3s ease;
  position: relative;
}

.preloader-progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.preloader-percentage {
  font-size: 0.9rem;
  color: #ffffff;
  opacity: 0.7;
  margin-top: 0.5rem;
}

/* Hide body content while preloader is active */
body.preloading {
  overflow: hidden;
}

/* Responsive preloader */
@media (max-width: 768px) {
  .preloader-logo {
    font-size: 2.5rem;
  }
  
  .preloader-spinner {
    width: 50px;
    height: 50px;
  }
  
  .preloader-progress {
    width: 150px;
  }
}

@media (max-width: 480px) {
  .preloader-logo {
    font-size: 2rem;
  }
  
  .preloader-spinner {
    width: 40px;
    height: 40px;
  }
  
  .preloader-progress {
    width: 120px;
  }
  
  .preloader-text {
    font-size: 1rem;
  }
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease-in-out;
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo:hover {
  color: #0048a8;
  transform: scale(1.05);
}
.logo img {
  max-width: 50px;
  width: 100%;
  display: block;
}

/* Mobile Menu Toggle Button */
body.mobile-menu-open .header {
  position: static;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-container .mobile-menu-toggle-close {
  position: absolute;
  right: 30px;
  top: 30px;
  background: transparent;
  outline: none;
  border: none;
  color: #ffffff;
  font-size: 24px;
  z-index: 9;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 9999999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-container {
  width: 100%;
  padding: 0rem 2rem 0rem;
  text-align: center;
}

.mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: scroll;
  height: 100vh;
  padding-top: 5rem;
}

.mobile-menu li {
  margin: 0.4rem 0;
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu li {
  opacity: 1;
}

.mobile-menu li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu li:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu li:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu li:nth-child(5) { transition-delay: 0.5s; }
.mobile-menu li:nth-child(6) { transition-delay: 0.6s; }
.mobile-menu li:nth-child(7) { transition-delay: 0.7s; }
.mobile-menu li:nth-child(8) { transition-delay: 0.8s; }

.mobile-menu a {
  display: block;
  padding: 0.5rem 2rem;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mobile-menu a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.mobile-menu a:hover::before {
  left: 100%;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #0048a8;
  transform: translateX(10px);
}

.mobile-menu a.active {
  background: linear-gradient(135deg, #0048a8, #0066cc);
  color: #ffffff;
}

.mobile-menu .cta-button {
  background: linear-gradient(135deg, #0048a8, #0066cc);
  color: #ffffff;
  border: 2px solid #0048a8;
  margin-top: 1rem;
}

.mobile-menu .cta-button:hover {
  background: linear-gradient(135deg, #0066cc, #0048a8);
  transform: translateX(10px) scale(1.05);
}

/* Mobile Dropdown */
.mobile-dropdown {
  position: relative;
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  width: 100%;
  padding: 0.5rem 2rem;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 30px;
  transition: all 0.3s ease;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-dropdown-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.mobile-dropdown-toggle i {
  transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: scroll;
  transition: max-height 0.3s ease;
  border-radius: 30px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  max-height: fit-content;
}

.mobile-dropdown-menu a {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border-radius: 0;
  margin: 0;
}

.mobile-dropdown-menu a:first-child {
  border-radius: 8px 8px 0 0;
}

.mobile-dropdown-menu a:last-child {
  border-radius: 0 0 8px 8px;
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: "Inter", serif;
}

.nav-menu a:hover {
  color: #0048a8;
}

.dropdown-arrow {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.nav-menu a:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown Menu Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem;
  min-width: 500px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  gap: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

.dropdown-column {
  flex: 1;
}

.dropdown-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-menu a {
  color: #ffffff;
  text-decoration: none;
  padding: 0.5rem 0;
  display: block;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu a:hover {
  color: #0048a8;
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

/* Dropdown arrow animation */
.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.cta-button {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 0.5rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  background: #ffffff;
  color: #1a1a1a;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/banners/home-pg-banner-1.webp") center/cover no-repeat;
  opacity: 1;
  z-index: 0;
  transition: opacity 1.5s ease-in-out;
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Fade animation classes */
.hero.fade-out::before {
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.75s ease-in-out, transform 0.75s ease-in-out;
}

.hero.fade-in::before {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.75s ease-in-out, transform 0.75s ease-in-out;
  animation: fadeIn 0.75s ease-in-out;
}

/* Banner slider states */
.hero.banner-1::before {
  background-image: url("../images/banners/home-pg-banner-1.webp");
}

.hero.banner-2::before {
  background-image: url("../images/banners/home-pg-banner-2.webp");
}

.hero.banner-3::before {
  background-image: url("../images/banners/home-pg-banner-3.webp");
}

.hero.banner-4::before {
  background-image: url("../images/banners/home-pg-banner-4.webp");
}

.hero.banner-5::before {
  background-image: url("../images/banners/home-pg-banner-5.webp");
}

.hero.banner-6::before {
  background-image: url("../images/banners/home-pg-banner-6.webp");
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    #1a1a1a 0%,
    rgba(10, 10, 10, 0.7) 60%,
    rgba(10, 10, 10, 0.3) 100%
  );
  z-index: 1;
}
.about-hero:before {
  background: url("../images/banners/about-us-pg-banner.webp") !important;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.our-campus-hero:before {
  background: url("../images/banners/our-campus-banner.webp") !important;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.admission-hero:before {
  background: url("../images/banners/admission-form-bg.webp") !important;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.contact-hero:before {
  background: url("../images/banners/contact-us-pg-banner.webp") !important;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.hero-container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 700px;
  text-align: left;
  padding-top: 60px;
}

.tagline {
  color: #0048a8;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  color: #cccccc;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: #0048a8;
  border: 2px solid #0048a8;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  padding: 0.7rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: "Inter", serif;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-size: 0.9rem;
  padding: 0.7rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: "Inter", serif;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #1a1a1a;
}

/* Hero Navigation Arrows */
.hero-nav-arrows {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  z-index: 10;
}

.hero-nav-btn {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.hero-nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.hero-nav-btn i {
  color: #ffffff;
  font-size: 18px;
  transition: all 0.3s ease;
}

/* Hide arrows on mobile */
@media (max-width: 768px) {
  .hero-nav-arrows {
    display: none;
  }
}

@media (max-width: 480px) {
  .logo img {
    max-width: 30px;
  }
}

/* Light effects for background */
.light-effect {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  z-index: 1;
}

.light-effect.red {
  top: 20%;
  right: 15%;
  background: radial-gradient(
    circle,
    rgba(255, 0, 128, 0.2) 0%,
    transparent 70%
  );
}

.light-effect.blue {
  bottom: 20%;
  right: 25%;
  background: radial-gradient(
    circle,
    rgba(0, 255, 255, 0.15) 0%,
    transparent 70%
  );
}

/* Counter Section */
.counter-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.counter-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 2rem;
}

.counter-card {
  text-align: center;
  color: #333;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  flex: 1;
  position: relative;
}

.counter-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
  border-color: #0048a8;
}

.counter-title {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #0048a8;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.counter-underline {
  width: 60px;
  height: 2px;
  background: #0048a8;
  margin: 0 auto 1.5rem auto;
  border-radius: 2px;
}

.counter-number {
  font-family: "Inter", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
}

/* Courses Section */
.courses-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0048a8 50%, #1a1a1a 100%);
  position: relative;
  text-align: center;
}

.courses-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.courses-title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 3rem;
  position: relative;
}

.courses-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #ffffff 0%, #0048a8 100%);
  border-radius: 2px;
}
.courses-subtitle {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-weight: 400;
}

.courses-carousel-container {
  position: relative;
  margin: 0 auto;
  max-width: 1400px;
  padding: 0 2rem;
  overflow: hidden;
  width: 100%;
}

.courses-carousel {
  margin: 0 auto;
  max-width: 1400px;
  overflow: visible;
  width: 100%;
}

/* Slick Slider Custom Styles */
.courses-carousel .slick-slide {
  box-sizing: border-box;
}

.courses-carousel .slick-track {
  display: flex;
  align-items: stretch;
  gap: 15px;
  padding-block: 10px;
}

.courses-carousel .slick-slide {
  height: auto;
  position: relative;
  padding-bottom: 40px;
}

.courses-carousel .slick-slide > div {
  height: auto;
  display: flex;
}

.courses-carousel .slick-slide .course-card {
  height: auto;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.courses-carousel .slick-slide .course-card .course-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

.course-card {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  height: auto;
  width: 100%;
}

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

.course-image {
  width: 100%;
  height: 200px;
  aspect-ratio: 6/4;
  object-fit: cover;
  position: relative;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.course-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(121, 40, 202, 0.3) 0%,
    rgba(121, 40, 202, 0.1) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.course-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-title {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.course-underline {
  width: 50px;
  height: 2px;
  display: block;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  margin-bottom: 1rem;
  border-radius: 2px;
  margin-inline: auto;
}

.course-description {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.course-button {
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  color: #ffffff;
  padding: 0.7rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  text-align: center;
  display: block;
  align-self: center;
  font-family: 'Inter', serif;
}
.course-button i {
  font-size: 0.9rem;
}
.course-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
}
.courses-carousel .slick-slide .course-button {
  position: absolute;
  bottom: 20px;
}

.carousel-nav {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 0;
  padding-top: 70px;
  z-index: 10;
  max-width: 80px;
  margin-left: auto;
  margin-right: auto;
}

.carousel-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.carousel-btn .slick-prev:before {
  display: none !important;
}
.carousel-btn .slick-next:before {
  display: none !important;
}
/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f1f1f1 50%, #ffffff 100%);
  position: relative;
}

.benefits-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}
.benefits-section .carousel-nav {
  display: none;
}
.benefits-title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 3rem;
  position: relative;
}

.benefits-subtitle {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 4rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 2px;
}

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

.benefit-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(121, 40, 202, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
  border-color: #0048a8;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  color: #ffffff;
}

.benefit-title {
  font-family: "Inter", serif;
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.benefit-description {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #1a1a1a 50%, #1a1a1a 100%);
  background-image: url("../images/banners/testimonials-bg.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, rgb(26 26 26 / 40%) 50%, #1a1a1a 100%);
  z-index: 1;
}

.testimonials-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.testimonials-title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 3rem;
  position: relative;
}

.testimonials-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #ffffff 0%, #0048a8 100%);
  border-radius: 2px;
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 1300px;
}

.testimonials-track {
  display: block;
}

.testimonials-track .slick-track {
  display: flex;
  align-items: stretch;
  gap: 15px;
  padding-block: 10px;
}

.testimonials-track .slick-slide {
  height: auto;
}

.testimonial-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 450px;
  min-height: 450px;
  margin: 0;
}

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

.quote-icon {
  font-size: 2rem;
  color: #0048a8;
  margin-bottom: 1.5rem;
  display: block;
}

.testimonial-text {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.user-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem auto;
  background-size: cover;
  background-position: center;
  border: 3px solid #0048a8;
  box-shadow: 0 5px 15px rgba(121, 40, 202, 0.3);
}

.user-name {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #0048a8;
}

.user-title {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: #666;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #0048a8;
  transform: scale(1.2);
}

.dot:hover {
  background: #0048a8;
}

/* Founder's Vision Section */
.founder-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
}

.founder-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.founder-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.founder-image-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.founder-image {
  width: 100%;
  border-radius: 30px;
  object-position: center;
  box-shadow: 0 20px 40px rgba(121, 40, 202, 0.2);
  position: relative;
  display: block;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.founder-text-content {
  padding-left: 2rem;
}

.founder-title {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.founder-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #0048a8;
  margin-bottom: 1.3rem;
  font-weight: 700;
}

.founder-description {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 1.1rem;
}

.founder-vision-quote {
  margin: 1rem 0;
  padding: 1rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(121, 40, 202, 0.05) 0%,
    rgba(0, 0, 0, 0.02) 100%
  );
  border-left: 4px solid #0048a8;
  border-radius: 10px;
}

.founder-vision-quote h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #0048a8;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.founder-vision-quote blockquote {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-style: italic;
  color: #1a1a1a;
  line-height: 1.8;
  margin: 0;
  padding: 0;
  border: none;
  position: relative;
}

.founder-vision-quote blockquote::before {
  content: '"';
  font-size: 3rem;
  color: #0048a8;
  position: absolute;
  top: -10px;
  left: -10px;
  font-family: "Playfair Display", serif;
  opacity: 0.3;
}

.founder-button {
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  color: #ffffff;
  padding: 0.7rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-family: "Inter", serif;
  border: 2px solid #0048a8;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 15px;
}

.founder-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 15px;
}

.founder-buttons .founder-button {
  text-align: center;
  margin-top: 0;
  min-width: 185px;
}

.founder-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
}

/* Learn Online and Offline Section */
.learning-modes-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f1f1f1 50%, #ffffff 100%);
  position: relative;
}

.learning-modes-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.learning-modes-title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 3rem;
  position: relative;
}

.learning-modes-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 2px;
}

.learning-modes-subtitle {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.learning-modes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.learning-mode-card {
  background: #ffffff;
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.learning-mode-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
}

.learning-mode-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
}

.mode-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #ffffff;
}

.mode-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.mode-description {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.mode-features {
  list-style: none;
  padding-bottom: 4rem;
}

.course-details-learning-mode .mode-features {
  padding-bottom: 0;
  min-height: 276px;
}

.mode-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.75rem;
}

.mode-features li i {
  color: #0048a8;
  font-size: 0.9rem;
}

.mode-button {
  position: absolute;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  color: #ffffff;
  padding: 0.7rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-family: "Inter", serif;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  bottom: 50px;
}

.mode-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
}

/* Mode Details Styles */
.mode-details {
  background: linear-gradient(
    135deg,
    rgba(121, 40, 202, 0.05) 0%,
    rgba(0, 0, 0, 0.02) 100%
  );
  border: 1px solid rgba(121, 40, 202, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  margin: 2rem 0 5rem;
  overflow: hidden;
  position: relative;
  min-height: 250px;
}

/* Learning List Styles */
.learning-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.learning-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.learning-items li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1.5rem;
  padding: 1rem 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(121, 40, 202, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid #0048a8;
}

.learning-items li:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(121, 40, 202, 0.15);
  border-left-color: #1a1a1a;
}

.learning-items li i {
  color: #0048a8;
  font-size: 1.2rem;
  min-width: 24px;
  text-align: center;
}

.learning-items li:hover i {
  color: #1a1a1a;
  transform: scale(1.1);
  transition: all 0.3s ease;
}

/* Responsive styles for learning list */
@media (max-width: 768px) {
  .learning-list {
    padding: 1.5rem 0;
  }

  .learning-items li {
    font-size: 1rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
  }

  .learning-items li i {
    font-size: 1.1rem;
    min-width: 20px;
  }
  .course-details-learning-mode .mode-features {
    min-height: unset;
  }
  .mode-details {
    min-height: unset;
  }
}

@media (max-width: 480px) {
  .learning-list {
    padding: 1rem 0;
  }

  .learning-items li {
    font-size: 0.95rem;
    padding: 0.75rem;
    margin-bottom: 0.75rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .learning-items li i {
    font-size: 1rem;
    min-width: auto;
  }

  .benefits-section .carousel-nav {
    display: block;
  }
  .benefit-card {
    box-shadow: none;
    display: flex !important;
    flex-direction: column;
    align-items: center;
  }
  .benefits-section .carousel-nav .carousel-btn {
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
  }
  .benefits-section .carousel-nav .slick-prev:before, .benefits-section .carousel-nav .slick-next:before {
    color: #1a1a1a;
  }
  .benefit-title {
    text-align: center;
  }
}

.mode-details::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 15px 15px 0 0;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.5;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(121, 40, 202, 0.1);
}

.detail-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.detail-item strong {
  color: #0048a8;
  font-weight: 600;
  min-width: 120px;
  flex-shrink: 0;
}

/* Responsive styles for mode-details */
@media (max-width: 768px) {
  .mode-details {
    padding: 1rem;
    margin: 1.5rem 0;
  }

  .detail-item {
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
  }

  .detail-item strong {
    min-width: auto;
    margin-bottom: 0.25rem;
  }
}

@media (max-width: 480px) {
  .mode-details {
    padding: 0.75rem;
    margin: 1rem 0;
    border-radius: 10px;
  }

  .detail-item {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .detail-item strong {
    font-size: 0.85rem;
  }
}

/* Flamenco School Hero Section */
.flamenco-hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, rgb(26 26 26 / 72%) 50%, #1a1a1a 100%);
  background-image: url("../images/banners/flamenco-school-bg-banner.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.flamenco-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, rgb(26 26 26 / 72%) 50%, #1a1a1a 100%);
  z-index: 1;
}

.flamenco-hero-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

.flamenco-hero-content {
  max-width: 900px;
  text-align: left;
}

.flamenco-badge {
  background: #0048a8;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: capitalize;
  padding: 0.2rem 1rem;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 2rem;
  font-family: "Inter", serif;
}

.flamenco-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: #ffffff;
}

.flamenco-description {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  color: #f0f0f0;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.flamenco-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.flamenco-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
}

.flamenco-feature i {
  font-size: 1.2rem;
  color: #ffffff;
}

.flamenco-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.flamenco-btn-primary {
  background: #0048a8;
  border: 2px solid #0048a8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.9rem;
  padding: 0.7rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: "Inter", serif;
}

.flamenco-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
}

.flamenco-btn-secondary {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-size: 0.9rem;
  padding: 0.7rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: "Inter", serif;
}

.flamenco-btn-secondary:hover {
  background: #0048a8;
  border: 2px solid #0048a8;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Instagram Connect Section */
.instagram-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  border-top: 1px solid #1a1a1a12;
}

.instagram-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.instagram-title {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 3rem;
  position: relative;
}

.instagram-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 2px;
}

.instagram-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.instagram-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.instagram-post {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0f0f0;
}

.instagram-post:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(121, 40, 202, 0.2);
}

.post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.instagram-post iframe.instagram-media {
    max-width: 100% !important;
}

.post-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgb(0 72 169 / 80%) 0%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.instagram-post:hover .post-overlay {
  opacity: 1;
}

.post-overlay i {
  font-size: 2rem;
  color: #ffffff;
}

.scanner-section {
  display: flex;
  justify-content: center;
}

.scanner-card {
  background: #ffffff;
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
  text-align: center;
  max-width: 400px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  border: 2px solid #f8f9fa;
}

.scanner-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
  font-size: 2rem;
  color: #ffffff;
}

.scanner-title {
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.scanner-description {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.qr-code {
  margin-bottom: 2rem;
}

.qr-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #0048a8;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  gap: 10px;
}
.qr-placeholder img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1/1;
  border: 4px dashed #0048a8;
  border-radius: 15px;
  padding: 10px;
}
.qr-placeholder i {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.scanner-features {
  margin-bottom: 2rem;
}

.scanner-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #333;
}
.scanner-card a {
  text-decoration: none;
}
.scanner-feature i {
  color: #0048a8;
  font-size: 1rem;
}

.scanner-button {
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  color: #ffffff;
  padding: 0.7rem 2rem;
  border-radius: 30px;
  font-family: "Inter", serif;
  font-size: 0.9rem;
  border: 2px solid #0048a8;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto;
}

.scanner-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
}

/* Certification Section */
.certification-section {
  padding: 80px 0;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.certification-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.certification-title {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: #ffffff;
  position: relative;
}

.certification-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #0048a8 0%, #ffffff 100%);
  border-radius: 2px;
}

.certification-subtitle {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #b8b8b8;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.certification-grid {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.certification-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.certification-item:hover {
  transform: scale(1.05);
}

.certification-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 6/4;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.certification-name {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  margin-top: 0.75rem;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.certification-item:hover .certification-name {
  opacity: 1;
}

/* DAW's Section Styles */
.daws-section {
  padding: 80px 0;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.daws-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.daws-title {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: #ffffff;
  position: relative;
}

.daws-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #0048a8 0%, #ffffff 100%);
  border-radius: 2px;
}

.daws-subtitle {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #b8b8b8;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.daws-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.daw-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.daw-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.daw-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgb(0 72 168 / 50%);
}

.daw-item:hover::before {
  left: 100%;
}

.daw-image {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.daw-item:hover .daw-image {
  transform: scale(1.1);
}

.daw-name {
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  transition: color 0.3s ease;
}

.daw-item:hover .daw-name {
  color: #0048a8;
}

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

  .daws-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .daws-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .daw-item {
    padding: 1.5rem;
  }

  .daw-image {
    width: 100px;
    height: 100px;
  }

  .daw-name {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .daws-section {
    padding: 60px 0;
  }

  .daws-container {
    padding: 0 1rem;
  }

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

  .daws-subtitle {
    font-size: 0.9rem;
  }

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

  .daw-item {
    padding: 1rem;
  }

  .daw-image {
    width: 80px;
    height: 80px;
  }

  .daw-name {
    font-size: 1rem;
  }
  .certification-item {
    flex: unset;
    max-width: calc(50% - 10px);
  }
}

/* About STMA Section */
.about-stma-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  position: relative;
}

.about-stma-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-stma-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
  min-height: 600px;
}

.about-stma-title {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 3rem;
  position: relative;
}

.about-stma-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 2px;
}

.about-stma-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  color: #0048a8;
  font-weight: 600;
  margin-bottom: 2rem;
}

.about-stma-description {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-stma-stats {
  display: flex;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #0048a8;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.about-stma-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #333;
  font-weight: 500;
}

.feature-item i {
  color: #0048a8;
  font-size: 1.1rem;
}

.about-stma-button {
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  color: #ffffff;
  border: 2px solid #0048a8;
  padding: 0.7rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-family: "Inter", serif;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.about-stma-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
}

.about-stma-image {
  display: flex;
  justify-content: center;
  height: 100%;
}

.image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(121, 40, 202, 0.8) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.image-container:hover .image-overlay {
  opacity: 1;
}

.image-container:hover .about-image {
  transform: scale(1.05);
}

.overlay-content {
  text-align: center;
  color: #ffffff;
}

.overlay-content i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.overlay-content span {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Blogs Section */
.blogs-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0% 0%, #1a1a1a 50% 50%, #1a1a1a 100% 100%);
  background-image: url("../images/banners/blog-home-bg.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.blogs-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #1a1a1a 0% 0%, rgb(26 26 26 / 60%) 50% 50%, #1a1a1a 100% 100%);
  z-index: 1;
}

.blogs-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}
.blogs-section .carousel-nav {
  display: none;
}

.blogs-header {
  text-align: center;
  margin-bottom: 2rem;
}

.blogs-title {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 3rem;
  position: relative;
}

.blogs-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #ffffff 0%, #0048a8 100%);
  border-radius: 2px;
}

.blogs-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto;
}

.blogs-grid {
  margin-bottom: 2rem;
}

.blog-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
}

.blog-image {
  position: relative;
  width: 100;
  aspect-ratio: 6/4;
  object-fit: cover;
  overflow: hidden;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #0048a8;
  color: #ffffff;
  padding: 0.3em 1rem;
  border-radius: 30px;
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
}

.blog-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: #666;
}

.blog-date {
  color: #0048a8;
  font-weight: 600;
}

.blog-author {
  color: #999;
}

.blog-title {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.blog-excerpt {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.blog-read-more {
  color: #0048a8;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.blog-read-more:hover {
  color: #1a1a1a;
  gap: 0.75rem;
}

.blog-read-more i {
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.blogs-footer {
  text-align: center;
  margin-top: 20px;
}
.blogs-grid .slick-track {
  padding-block: 20px;
  gap: 20px;
  display: flex;
}

.view-all-blogs {
  background: #0048a8;
  color: #ffffff;
  border: 2px solid #0048a8;
  padding: 0.7rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-family: "Inter", serif;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.view-all-blogs:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
  gap: 1rem;
}

/* Contact Now Section */
.contact-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
}

.contact-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  background: #1a1a1a;
  padding: 3rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.contact-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" x="50" text-anchor="middle" fill="rgba(121,40,202,0.1)" font-size="20">🎸</text></svg>')
    repeat;
  opacity: 0.3;
  z-index: 0;
}

.contact-title {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 3rem;
  position: relative;
}

.contact-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 2px;
}

.contact-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.contact-description {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item i {
  color: #ffffff;
  font-size: 1.2rem;
  margin-top: 0.25rem;
  min-width: 20px;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-text a {
  text-decoration: none;
}

.contact-text span {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.contact-form {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid #f8f9fa;
}

.contact-form-container {
  position: relative;
  z-index: 1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  background: #ffffff;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #0048a8;
  box-shadow: 0 0 0 3px rgba(121, 40, 202, 0.1);
}

.phone-input-container {
  display: flex;
  align-items: center;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  background: #ffffff;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.phone-input-container:focus-within {
  border-color: #0048a8;
  box-shadow: 0 0 0 3px rgba(121, 40, 202, 0.1);
}

.country-code {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem;
  background: transparent;
  border-right: 2px solid #e9ecef;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  min-width: 60px;
  justify-content: center;
  height: 100%;
}

.flag {
  font-size: 1.5rem;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.code {
  color: #333;
}

.phone-input {
  border: none;
  border-radius: 0;
  flex: 1;
  outline: none;
  height: 100%;
  padding: 1rem;
}

.phone-input:focus {
  box-shadow: none;
  outline: none;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.recaptcha-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.recaptcha-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.recaptcha-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #0048a8;
}

.recaptcha-checkbox label {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.recaptcha-checkbox i {
  color: #0048a8;
}

.recaptcha-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
}

.recaptcha-link {
  color: #0048a8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.recaptcha-link:hover {
  color: #1a1a1a;
}

.separator {
  color: #999;
}

.submit-button {
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  color: #ffffff;
  border: 2px solid #0048a8;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-family: "Inter", serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
}
label.error {
  color: #f10000;
  font-size: 12px;
  font-weight: 400;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  position: relative;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.faq-title {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 3rem;
  position: relative;
}

.faq-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 2px;
}

.faq-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #666;
  margin: 0 auto;
}

.faq-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
  transform: translateY(-2px);
}

.faq-question {
  padding: 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  background: #ffffff;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  flex: 1;
  padding-right: 1rem;
}

.faq-question i {
  color: #0048a8;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  min-width: 20px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.faq-item.active .faq-question {
  background: #f8f9fa;
}

.faq-item.active .faq-answer {
  max-height: unset;
}

.faq-answer p {
  padding: 0 2rem 2rem 2rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.faq-answer ul {
  padding: 0 2rem 2rem 4rem;
  margin: 0;
}

.faq-answer ul li {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.faq-answer ul li:last-child {
  margin-bottom: 0;
}

/* FAQ Categories */
.faq-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.faq-category-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #0048a8;
  color: #0048a8;
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.9rem;
}

.faq-category-btn:hover {
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-color: #0048a8;
  transform: translateY(-2px);
  color: #ffffff;
}
.faq-category-btn.active {
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-color: transparent;
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
  color: #ffffff;
}

/* Contact FAQ Section */
.contact-faq-section {
  padding: 4rem 0;
  background: linear-gradient(
    135deg,
    rgba(121, 40, 202, 0.1),
    rgba(255, 0, 128, 0.1)
  );
  position: relative;
}

.contact-faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.contact-faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-faq-content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-faq-icon {
  font-size: 3rem;
  color: #0048a8;
  margin-bottom: 1.5rem;
}

.contact-faq-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #0048a8, #ff0080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-faq-description {
  font-size: 1.1rem;
  color: #b8b8b8;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-faq-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contact-faq-note {
  font-size: 0.9rem;
  color: #888;
  font-style: italic;
}

.faq-footer {
  text-align: center;
  margin-top: 3rem;
}

.view-all-faq {
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border: 2px solid #0048a8;
  color: #ffffff;
  padding: 0.7rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-family: "Inter", serif;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.view-all-faq:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
  gap: 1rem;
}

/* Footer Section */
.footer-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0048a8 50%, #1a1a1a 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" x="50" text-anchor="middle" fill="rgba(255,255,255,0.03)" font-size="20">🎵</text></svg>')
    repeat;
  opacity: 0.5;
  z-index: 1;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.footer-content {
  padding: 80px 0 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

/* Courses Grid Layout */
.courses-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.courses-left,
.courses-right {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Support Section */
.support-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.support-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
}

.support-item a {
    color: #ffffff;
    text-decoration: none;
}

.support-item i {
  color: #ffffff;
  font-size: 0.9rem;
  min-width: 16px;
}

.support-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.support-links a {
  color: #ffffff;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.support-links a:hover {
  color: #ffffff;
}

/* Social Media Section */
.social-description {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
  background: #0048a8;
  transform: translateY(-3px);
}

.footer-heading {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2rem;
  position: relative;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(135deg, #0048a8 0%, #ffffff 100%);
  border-radius: 2px;
}

.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-menu li a {
  color: #ffffff;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-menu li a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item i {
  color: #ffffff;
  font-size: 1.1rem;
  margin-top: 0.25rem;
  min-width: 20px;
}

.contact-info-item div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-info-item span {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: #cccccc;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  text-align: center;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
}
.footer-logo img {
  max-width: 80px;
  width: 100%;
  display: block;
}
.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
}

.logo-name {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #cccccc;
  font-style: normal;
  margin-top: 0.25rem;
}

.footer-copyright {
  margin-top: 1rem;
}

.footer-copyright p {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: #ffffff;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .courses-carousel-container {
    max-width: 1300px;
  }
  .courses-carousel {
    max-width: 1300px;
  }
  .course-card {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .courses-carousel-container {
    max-width: 1200px;
  }
  .courses-carousel {
    max-width: 1200px;
  }
  .course-card {
    width: 100%;
  }
}

@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Hide desktop navigation */
  .nav-menu {
    display: none;
  }

  .dropdown-menu {
    min-width: 300px;
    flex-direction: column;
    gap: 1rem;
  }

  .dropdown-column {
    flex: none;
  }

  .hero-container {
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-title {
    font-size: 2.3rem;
  }

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

  .counter-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .courses-carousel-container {
    max-width: 1100px;
    padding: 0 1rem;
  }
  .courses-track {
    gap: 0.75rem;
  }

  .course-card {
    width: 100%;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .benefit-card {
    padding: 2rem;
  }

  .testimonial-card {
    width: 100%;
    padding: 2rem;
    height: 450px;
    min-height: 450px;
  }

  .testimonials-track .slick-slide {
    padding: 20px 7.5px;
  }

  .founder-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .founder-text-content {
    padding-left: 0;
  }

  .founder-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .founder-buttons .founder-button {
    width: 100%;
    min-width: unset;
  }

  .learning-modes-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .learning-mode-card {
    padding: 2rem;
  }

  .flamenco-hero-content {
    text-align: center;
  }

  .flamenco-title {
    font-size: 2.3rem;
  }

  .flamenco-features {
    justify-content: center;
    gap: 1.5rem;
  }

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

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

  .certification-subtitle {
    font-size: 1rem;
  }

  .instagram-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .scanner-card {
    padding: 2rem;
  }

  .about-stma-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .about-stma-stats {
    justify-content: center;
  }

  .about-stma-features {
    justify-content: center;
  }

  .about-stma-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .blogs-grid {
    margin-bottom: 0;
  }

  .blog-card {
    max-width: 500px;
    margin: 0 auto;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .recaptcha-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .faq-question {
    padding: 1.5rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }

  .faq-categories {
    gap: 0.5rem;
  }

  .faq-category-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .contact-faq-title {
    font-size: 1.5rem;
  }

  .contact-faq-description {
    font-size: 1rem;
  }

  .contact-faq-content {
    padding: 2rem 1rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-description {
    max-width: 100%;
  }

  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .testimonial-card {
    width: 100%;
    padding: 2rem;
    height: 450px;
    min-height: 450px;
  }

  .testimonials-track .slick-slide {
    padding: 20px 7.5px;
  }
}

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

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }
  .blogs-section .carousel-nav {
    display: block;
  }
  .instagram-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Fixed Contact Buttons */
.fixed-contact-buttons {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fixed-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.call-btn {
  background: linear-gradient(135deg, #1a1a1a 0%, #0048a8 50%, #1a1a1a 100%);
}

.btn-tooltip {
  position: absolute;
  left: 70px;
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.btn-tooltip::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid rgba(0, 0, 0, 0.8);
}

.fixed-btn:hover .btn-tooltip {
  opacity: 1;
  visibility: visible;
}

/* Mobile Responsive for Fixed Buttons */
@media (max-width: 768px) {
  .fixed-contact-buttons {
    left: 10px;
    gap: 0.5rem;
  }

  .fixed-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .btn-tooltip {
    left: 60px;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .fixed-contact-buttons {
    left: 5px;
  }

  .fixed-btn {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .btn-tooltip {
    left: 55px;
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }
}

/* Scroll to Top Button */
.scroll-to-top-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0048a8 0%, #0066cc 100%);
  border: none;
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 72, 168, 0.3);
}

/* Temporary: Make button visible for testing */
/* .scroll-to-top-btn {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
} */

.scroll-to-top-btn:hover {
  background: linear-gradient(135deg, #0066cc 0%, #0048a8 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 72, 168, 0.4);
}

.scroll-to-top-btn.show {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.scroll-to-top-btn .btn-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.scroll-to-top-btn .btn-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(0, 0, 0, 0.8);
}

.scroll-to-top-btn:hover .btn-tooltip {
  opacity: 1;
  visibility: visible;
}

/* Mobile Responsive for Scroll to Top Button */
@media (max-width: 768px) {
  .scroll-to-top-btn {
    right: 15px;
    bottom: 15px;
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }

  .scroll-to-top-btn .btn-tooltip {
    right: 60px;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .scroll-to-top-btn {
    right: 10px;
    bottom: 10px;
    width: 45px;
    height: 45px;
    font-size: 0.9rem;
  }

  .scroll-to-top-btn .btn-tooltip {
    right: 55px;
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }
}

/* Contact Hero Section */
.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80")
    400px bottom/cover no-repeat;
  opacity: 1;
  z-index: 0;
}

/* Contact Details Section */
.contact-details-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
}

.contact-details-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.contact-details-title {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: #1a1a1a;
  position: relative;
}

.contact-details-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 2px;
}

.contact-details-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: #666666;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.contact-detail-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #0048a8;
}

.contact-detail-card:hover::before {
  opacity: 1;
}

.contact-detail-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #ffffff;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.contact-detail-card:hover .contact-detail-icon {
  transform: scale(1.1);
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
}

.contact-detail-title {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
  position: relative;
  z-index: 1;
}

.contact-detail-content {
  position: relative;
  z-index: 1;
}

.contact-detail-item {
  margin-bottom: 1rem;
  text-align: left;
}

.contact-detail-item:last-child {
  margin-bottom: 0;
}

.contact-label {
  display: block;
  font-size: 0.875rem;
  color: #0048a8;
  font-weight: 600;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.contact-value {
  display: block;
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-value:hover {
  color: #0048a8;
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  position: relative;
}

.contact-form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(121, 40, 202, 0.1) 0%,
    rgba(0, 0, 0, 0.05) 50%,
    rgba(121, 40, 202, 0.1) 100%
  );
  z-index: 0;
}

.contact-form-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.contact-form-container .form-group {
  margin-bottom: 1.5rem;
}
.contact-form-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-form-title {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 600;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.contact-form-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #0048a8 0%, #b7b7b7 100%);
  border-radius: 2px;
}

.contact-form-subtitle {
  font-size: 1.125rem;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

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

.form_label {
  display: block;
  font-size: 0.875rem;
  color: #0048a8;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.form_input,
.form_textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.form_input:focus,
.form_textarea:focus {
  outline: none;
  border-color: #0048a8;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(121, 40, 202, 0.1);
}

.form_input::placeholder,
.form_textarea::placeholder {
  color: #888888;
}

.form_textarea {
  resize: vertical;
  min-height: 120px;
}

.form_error {
  color: #ff6b6b;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  min-height: 1.25rem;
}

/* Map Section */

.map-section {
  padding: 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.map-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 500px;
}

.map-wrapper iframe {
  display: block;
  height: 100%;
  width: 100%;
}

.map-info {
  display: flex;
  justify-content: center;
  margin: 2rem auto;
  max-width: 1300px;
  padding: 0 2rem;
}

.map-info-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 500px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-color: #0048a8;
}

.map-info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ffffff;
  flex-shrink: 0;
}

.map-info-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.map-info-content p {
  color: #666666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.map-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0048a8;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.map-directions:hover {
  transform: translateX(5px);
}

.map-directions i {
  font-size: 1rem;
}

/* Active Navigation Link */
.nav-menu a.active {
  color: #0048a8;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
  .contact-details-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-detail-card {
    padding: 2rem;
  }

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

  .contact-form-title,
  .contact-details-title,
  .map-title {
    font-size: 2rem;
  }

  .map-info-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .map-info-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .contact-details-container,
  .contact-form-container,
  .map-container {
    padding: 0 1rem;
  }

  .contact-detail-card {
    padding: 1.5rem;
  }

  .contact-form-wrapper {
    padding: 1.2rem;
  }

  .contact-form-title,
  .contact-details-title,
  .map-title {
    font-size: 1.75rem;
  }

  .contact-details-subtitle,
  .contact-form-subtitle,
  .map-subtitle {
    font-size: 1rem;
  }
}

/* About Page Styles */
.story-section {
  background: linear-gradient(135deg, #ffffff 0%, #f1f1f1 50%, #ffffff 100%);
  padding: 80px 0;
  position: relative;
}

.story-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/banners/our-story-bg.webp") center/cover no-repeat;
  opacity: 0.1;
  z-index: 0;
}

.story-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
  min-height: 500px;
}

.story-text {
  color: #1a1a1a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

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

.story-title {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 3rem;
  position: relative;
}

.story-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 2px;
}

.story-description {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1.2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 12px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
  border-color: #0048a8;
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: #0048a8;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: #666666;
  font-weight: 500;
  text-transform: uppercase;
}

.story-image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.story-img-placeholder {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  background-image: url("../images/banners/our-story-img.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
}

.story-img-placeholder::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  animation: shimmer 2s infinite;
  z-index: 2;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.story-img-placeholder span {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  margin-top: 1rem;
  font-weight: 500;
  position: relative;
  z-index: 3;
}

.story-img-placeholder i {
  position: relative;
  z-index: 3;
}

/* Mission Section */
.mission-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0048a8 50%, #1a1a1a 100%);
  padding: 80px 0;
  position: relative;
}

.mission-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.mission-title {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 3rem;
}

.mission-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #ffffff 0%, #0048a8 100%);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.mission-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  color: #cccccc;
  max-width: 1000px;
  margin: 0 auto;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.mission-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.mission-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
}

.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
}

.mission-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: #ffffff;
  transition: all 0.3s ease;
}

.mission-card:hover .mission-icon {
  transform: scale(1.1);
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
}

.mission-card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.mission-card-description {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #666666;
  line-height: 1.6;
}

.mission-card-list {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #666666;
  line-height: 1.6;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mission-card-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #666666;
}

.mission-card-list li:last-child {
  margin-bottom: 0;
}

.mission-card-list li:hover {
  color: #1a1a1a;
  transform: translateX(5px);
  transition: all 0.3s ease;
}

/* Team Section */
.team-section {
  background: linear-gradient(135deg, #ffffff 0%, #f1f1f1 50%, #ffffff 100%);
  padding: 80px 0;
  position: relative;
}

.team-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.team-title {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 3rem;
}

.team-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  margin: 1rem auto 2rem;
  border-radius: 2px;
}

.team-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  color: #666666;
  text-align: center;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.team-member {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(121, 40, 202, 0.2);
}

.member-image {
  height: 250px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.member-img-placeholder {
  width: 120px;
  height: 120px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #ffffff;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.member-img-placeholder img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 100%;
}

.member-info {
  padding: 2rem;
}

.member-name {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.member-role {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  color: #0048a8;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.member-description {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0048a8 50%, #1a1a1a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/banners/stma-special-make.webp");
  opacity: 1;
  z-index: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.why-choose-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgb(26 26 26 / 30%) 0%, rgb(0 72 168 / 30%) 50%, rgb(26 26 26 / 30%) 100%);
  z-index: 1;
}

.why-choose-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.why-choose-title {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin-bottom: 3rem;
}

.why-choose-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #ffffff 0%, #0048a8 100%);
  margin: 1rem auto 2rem;
  border-radius: 2px;
}

.why-choose-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  color: #cccccc;
  text-align: center;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.why-choose-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.why-choose-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
}

.why-choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
}

.why-choose-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  color: #ffffff;
  transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-icon {
  transform: scale(1.1);
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
}

.why-choose-card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.why-choose-card-description {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.6;
}

/* Guitar Hero Section */
.guitar-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.guitar-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/banners/guitar-bg-banner.webp") center/cover no-repeat;
  opacity: 1;
  z-index: 0;
  transition: opacity 1.5s ease-in-out;
  animation: fadeIn 1.5s ease-in-out;
}

.guitar-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    #1a1a1a 0%,
    rgba(10, 10, 10, 0.7) 60%,
    rgba(10, 10, 10, 0.3) 100%
  );
  z-index: 1;
}

/* Ukulele Hero Styles */
.ukulele-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/banners/ukulele-bg-banner.webp") center/cover no-repeat;
  opacity: 1;
  z-index: 0;
  transition: opacity 1.5s ease-in-out;
  animation: fadeIn 1.5s ease-in-out;
}

/* Flamenco Guitar Hero Styles */
.flamenco-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/banners/flamenco-guitar-bg-banner.webp") center/cover
    no-repeat;
  opacity: 1;
  z-index: 0;
  transition: opacity 1.5s ease-in-out;
  animation: fadeIn 1.5s ease-in-out;
}

/* bollywood-film-hero Hero Styles */
.bollywood-film-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/banners/bollywood-film-singing-bg-banner.webp") center/cover
    no-repeat;
  opacity: 1;
  z-index: 0;
  transition: opacity 1.5s ease-in-out;
  animation: fadeIn 1.5s ease-in-out;
}

/* music-production-hero Hero Styles */
.music-production-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/banners/music-production-bg-banner.webp") center/cover
    no-repeat;
  opacity: 1;
  z-index: 0;
  transition: opacity 1.5s ease-in-out;
  animation: fadeIn 1.5s ease-in-out;
}

/* Hindustani Classical Vocals Hero Styles */
.hindustani-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/banners/hindustani-classical-vocals-pg-bg.webp")
    center/cover no-repeat;
  opacity: 1;
  z-index: 0;
  transition: opacity 1.5s ease-in-out;
  animation: fadeIn 1.5s ease-in-out;
}

/* piano Hero Styles */
.piano-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/banners/piano-bg-banner.webp")
    center/cover no-repeat;
  opacity: 1;
  z-index: 0;
  transition: opacity 1.5s ease-in-out;
  animation: fadeIn 1.5s ease-in-out;
}

/* western-vocals-hero Hero Styles */
.western-vocals-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/banners/western-vocals-bg-banner.webp")
    center/cover no-repeat;
  opacity: 1;
  z-index: 0;
  transition: opacity 1.5s ease-in-out;
  animation: fadeIn 1.5s ease-in-out;
}

/* Flamenco Techniques Section Styles */
.flamenco-techniques-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  position: relative;
}

.flamenco-techniques-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/banners/flamenco-guitar-bg-banner.webp") center/cover
    no-repeat;
  opacity: 0.1;
  z-index: 0;
}

.flamenco-techniques-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.flamenco-techniques-header {
  text-align: center;
  margin-bottom: 60px;
}

.flamenco-techniques-title {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.flamenco-techniques-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #0048a8 0%, #ffffff 100%);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.flamenco-techniques-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  color: #cccccc;
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.6;
}

.flamenco-techniques-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 60px;
}

.flamenco-technique-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.flamenco-technique-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
  border-color: #0048a8;
}

.technique-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.flamenco-technique-card:hover .technique-icon-wrapper {
  transform: scale(1.1);
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
}

.technique-icon-wrapper i {
  font-size: 2rem;
  color: #ffffff;
}

.technique-name {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.technique-difficulty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.difficulty-label {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: #333333;
  font-weight: 600;
}

.difficulty-stars {
  display: flex;
  gap: 2px;
}

.difficulty-stars i {
  font-size: 0.9rem;
  color: #0048a8;
}

.difficulty-stars i.far {
  color: #cccccc;
}

.flamenco-palos-section {
  text-align: center;
  margin-bottom: 60px;
  padding: 3rem;
  background: linear-gradient(135deg, rgb(0 72 168 / 10%) 0%, rgba(0, 0, 0, 0.1) 100%);
  border-radius: 20px;
  border: 2px solid rgb(0 72 168 / 30%);
}

.palos-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.palos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.palo-item {
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  padding: 1rem 2rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.palo-item:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
}

.palo-name {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
}

.flamenco-cta {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 20px;
  margin-top: 2rem;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.cta-description {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #f0f0f0;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Responsive Design for Flamenco Techniques */
@media (max-width: 1024px) {
  .flamenco-techniques-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }

  .flamenco-techniques-title {
    font-size: 2rem;
  }

  .palos-grid {
    gap: 0.8rem;
  }
}

@media (max-width: 768px) {
  .flamenco-techniques-section {
    padding: 60px 0;
  }

  .flamenco-techniques-title {
    font-size: 1.8rem;
  }

  .flamenco-techniques-subtitle {
    font-size: 1rem;
  }

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

  .flamenco-technique-card {
    padding: 1.5rem;
  }

  .technique-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .technique-icon-wrapper i {
    font-size: 1.5rem;
  }

  .technique-name {
    font-size: 1.3rem;
  }

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

  .palo-item {
    padding: 0.8rem 1.5rem;
  }

  .palo-name {
    font-size: 1rem;
  }

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

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

  .cta-button {
    font-size: 1rem;
    padding: 0.8rem 2rem;
  }
}

@media (max-width: 480px) {
  .flamenco-techniques-container {
    padding: 0 1rem;
  }

  .flamenco-techniques-title {
    font-size: 1.5rem;
  }

  .flamenco-techniques-subtitle {
    font-size: 0.9rem;
  }

  .flamenco-technique-card {
    padding: 1rem;
  }

  .technique-name {
    font-size: 1.2rem;
  }

  .technique-description {
    font-size: 0.9rem;
  }

  .palos-grid {
    flex-direction: column;
    align-items: center;
  }

  .palo-item {
    width: 100%;
    text-align: center;
  }

  .cta-title {
    font-size: 1.3rem;
  }

  .cta-description {
    font-size: 0.9rem;
  }

  .cta-button {
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
  }
}

.ukulele-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    #1a1a1a 0%,
    rgba(10, 10, 10, 0.7) 60%,
    rgba(10, 10, 10, 0.3) 100%
  );
  z-index: 1;
}

.ukulele-hero-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

.ukulele-hero-content {
  max-width: 700px;
  text-align: left;
  padding: 80px 0;
}

.ukulele-badge {
  background: #0048a8;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: capitalize;
  padding: 0.3rem 1.5rem;
  border-radius: 25px;
  display: inline-block;
  margin-bottom: 2rem;
  font-family: "Playfair Display", serif;
}

.ukulele-hero-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.ukulele-hero-description {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  color: #f0f0f0;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.ukulele-hero-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.ukulele-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
}

.ukulele-feature i {
  font-size: 1.2rem;
  color: #0048a8;
}

.ukulele-hero-buttons {
  display: flex;
  gap: 1.5rem;
}

.ukulele-btn-primary {
  background: #0048a8;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #0048a8;
}

.ukulele-btn-primary:hover {
  background: transparent;
  color: #0048a8;
}

.ukulele-btn-secondary {
  background: transparent;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #ffffff;
}

.ukulele-btn-secondary:hover {
  background: #ffffff;
  color: #1a1a1a;
}

/* Ukulele Types Section Styles */
.ukulele-types-section {
  padding: 80px 0;
  background: #1a1a1a;
}

.ukulele-types-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ukulele-types-title {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: #ffffff;
}

.ukulele-types-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #0048a8 0%, #ffffff 100%);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.ukulele-types-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  text-align: center;
  color: #cccccc;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ukulele-types-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.ukulele-type-card {
  flex: 0 0 calc(33.333% - 1.5rem);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .ukulele-type-card {
    flex: 0 0 calc(50% - 1rem);
    min-width: 300px;
  }
}

@media (max-width: 768px) {
  .ukulele-types-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .ukulele-type-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .ukulele-type-card {
    max-width: 100%;
  }
}

.ukulele-type-card {
  background: #1a1a1a;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #333;
}

.ukulele-type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-color: rgb(0 72 168 / 50%);
}

.ukulele-type-image {
  height: 200px;
  overflow: hidden;
}

.ukulele-type-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ukulele-type-card:hover .ukulele-type-img {
  transform: scale(1.1);
}

.ukulele-type-content {
  padding: 2rem;
}

.ukulele-type-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.ukulele-type-description {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #cccccc;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.ukulele-type-features {
  list-style: none;
}

.ukulele-type-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: #ffffff;
}

.ukulele-type-features li i {
  color: #0048a8;
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.guitar-hero-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

.guitar-hero-content {
  max-width: 700px;
  text-align: left;
  padding-top: 60px;
}

.guitar-badge {
  background: #0048a8;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: capitalize;
  padding: 0.2rem 1rem;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 2rem;
  font-family: "Inter", serif;
}

.guitar-hero-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.guitar-hero-description {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  color: #f0f0f0;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.guitar-hero-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.guitar-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
}

.guitar-feature i {
  font-size: 1.2rem;
  color: #0048a8;
}

.guitar-hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.guitar-btn-primary {
  background: #0048a8;
  color: #ffffff;
  border: 2px solid #0048a8;
  display: flex;
  align-items: center;
  justify-self: center;
  font-size: 0.9rem;
  padding: 0.7rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Inter", serif;
}

.guitar-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
}

.guitar-btn-secondary {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-size: 0.9rem;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: "Inter", serif;
}

.guitar-btn-secondary:hover {
  background: #ffffff;
  border: 2px solid #ffffff;
  color: #1a1a1a;
  transform: translateY(-3px);
}

/* Course Overview Section */
.course-overview-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f1f1f1 50%, #ffffff 100%);
  position: relative;
}

.course-overview-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.course-overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.course-overview-text {
  color: #1a1a1a;
}

.course-overview-title {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 3rem;
  position: relative;
}

.course-overview-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 2px;
}

.course-overview-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  color: #0048a8;
  font-weight: 600;
  margin-bottom: 2rem;
}

.course-overview-description {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.course-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
}

.highlight-item i {
  color: #0048a8;
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.highlight-content h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.highlight-content p {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: #666;
}

.course-overview-image {
  display: flex;
  justify-content: center;
}

.guitar-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
  width: 100%;
  max-width: 600px;
}
.guitar-image-container img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 6/5;
}
.guitar-overview-image {
  width: 100%;
  height: auto;
  aspect-ratio: 10/9;
  object-fit: cover;
  display: block;
  transition: all 0.3s ease;
}

.guitar-image-container:hover .guitar-overview-image {
  transform: scale(1.05);
}

.overlay-content {
  text-align: center;
  color: #ffffff;
}

.overlay-content i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.overlay-content span {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Our Courses Section */
.curriculum-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f1f1f1 50%, #ffffff 100%);
  position: relative;
}

.curriculum-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.curriculum-title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 3rem;
  position: relative;
}

.curriculum-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 2px;
}

.curriculum-subtitle {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.curriculum-level {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(121, 40, 202, 0.1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.curriculum-level::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 20px 20px 0 0;
}

.curriculum-level:hover {
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
  transform: translateY(-10px);
  background: #ffffff;
}

.level-header {
  text-align: center;
  margin-bottom: 2rem;
}

.level-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: #ffffff;
  transition: all 0.3s ease;
}

.curriculum-level:hover .level-icon {
  transform: scale(1.1);
}

.level-title {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.level-duration {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: #0048a8;
  font-weight: 600;
  text-transform: uppercase;
}

.level-topics {
  list-style: none;
  padding: 0;
  margin: 0;
}

.level-topics li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #333;
  padding: 0.5rem 0;
}
.level-topics li span {
  text-align: right;
  width: 45%;
}
.level-topics li i {
  color: #0048a8;
  font-size: 1rem;
}

.level-topics li i.fa-check {
  color: #0048a8;
}

.level-topics li i.fa-times {
  color: #dc3545;
}

.level-topics li strong {
  font-weight: 600;
  color: #1a1a1a;
  margin-right: 0.5rem;
  width: 55%;
}

.course-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.course-btn {
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  color: #ffffff;
  padding: 0.7rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
  border: 2px solid #0048a8;
}

.course-btn:nth-child(2) {
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
}

.course-btn:hover {
  transform: translateY(-2px);
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
  .story-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: auto;
  }

  .story-text {
    height: auto;
    padding: 2rem 0;
  }

  .story-image {
    height: auto;
  }

  .story-img-placeholder {
    width: 100%;
    height: 350px;
    max-width: none;
    max-height: none;
  }

  .mission-grid,
  .team-grid,
  .why-choose-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .story-title,
  .mission-title,
  .team-title,
  .why-choose-title {
    font-size: 2rem;
  }

  .story-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-item {
    padding: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .story-img-placeholder {
    width: 300px;
    height: 200px;
    font-size: 2rem;
  }

  .mission-card,
  .team-member,
  .why-choose-card {
    padding: 2rem 1.5rem;
  }

  .member-image {
    height: 200px;
  }

  .member-img-placeholder {
    width: 100px;
    height: 100px;
    font-size: 2.3rem;
  }
}

@media (max-width: 480px) {
  .story-section,
  .mission-section,
  .team-section,
  .why-choose-section {
    padding: 60px 0;
  }

  .story-container,
  .mission-container,
  .team-container,
  .why-choose-container {
    padding: 0 1rem;
  }

  .story-title,
  .mission-title,
  .team-title,
  .why-choose-title {
    font-size: 1.75rem;
  }

  .story-description,
  .mission-subtitle,
  .team-subtitle,
  .why-choose-subtitle {
    font-size: 1rem;
  }

  .story-img-placeholder {
    width: 250px;
    height: 150px;
    font-size: 1.5rem;
  }

  .story-img-placeholder span {
    font-size: 0.875rem;
  }

  .mission-grid,
  .team-grid,
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}

/* Guitar Techniques Section */
.guitar-techniques-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f1f1f1 50%, #ffffff 100%);
  position: relative;
}

.guitar-techniques-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.guitar-techniques-title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 3rem;
  position: relative;
}

.guitar-techniques-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 2px;
}

.guitar-techniques-subtitle {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.guitar-techniques-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.guitar-technique-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(121, 40, 202, 0.1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.guitar-technique-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 20px 20px 0 0;
}

.guitar-technique-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
  background: #ffffff;
}

.technique-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: #ffffff;
  transition: all 0.3s ease;
}

.guitar-technique-card:hover .technique-icon {
  transform: scale(1.1);
}

.technique-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.technique-description {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.technique-features {
  list-style: none;
}

.technique-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.75rem;
}

.technique-features li i {
  color: #0048a8;
  font-size: 0.9rem;
}

/* Guitar Types Section */
.guitar-types-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0048a8 50%, #1a1a1a 100%);
  position: relative;
}

.guitar-types-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.guitar-types-title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 3rem;
  position: relative;
}

.guitar-types-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #ffffff 0%, #0048a8 100%);
  border-radius: 2px;
}

.guitar-types-subtitle {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.guitar-types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.guitar-type-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.guitar-type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: #ffffff;
}

.guitar-type-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.guitar-type-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.guitar-type-card:hover .guitar-type-img {
  transform: scale(1.05);
}

.guitar-type-content {
  padding: 2rem;
}

.guitar-type-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.guitar-type-description {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.guitar-type-features {
  list-style: none;
}

.guitar-type-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.75rem;
}

.guitar-type-features li i {
  color: #0048a8;
  font-size: 1rem;
}

/* Guitar Learning Journey Section */
.guitar-journey-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f1f1f1 50%, #ffffff 100%);
  position: relative;
}

.guitar-journey-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.guitar-journey-title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 3rem;
  position: relative;
}

.guitar-journey-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 2px;
}

.guitar-journey-subtitle {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.guitar-journey-timeline {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 4rem;
}

.journey-milestone {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(121, 40, 202, 0.1);
  position: relative;
  overflow: hidden;
}

.journey-milestone::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 20px 20px 0 0;
}

.journey-milestone:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(121, 40, 202, 0.2);
}

.milestone-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffffff;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.journey-milestone:hover .milestone-icon {
  transform: scale(1.1);
}

.milestone-content {
  flex: 1;
}

.milestone-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.milestone-description {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.milestone-achievements {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.achievement {
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
}

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

.stat-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(121, 40, 202, 0.1);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(121, 40, 202, 0.2);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: #ffffff;
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: #0048a8;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

/* Guitar Pricing Section */
.guitar-pricing-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0048a8 50%, #1a1a1a 100%);
  background-image: url("https://images.unsplash.com/photo-1516450360452-9312f5e86fc7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.guitar-pricing-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.9) 0%,
    rgba(121, 40, 202, 0.8) 50%,
    rgba(26, 26, 26, 0.9) 100%
  );
  z-index: 1;
}

.guitar-pricing-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.guitar-pricing-title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 3rem;
  position: relative;
}

.guitar-pricing-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #ffffff 0%, #0048a8 100%);
  border-radius: 2px;
}

.guitar-pricing-subtitle {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.guitar-pricing-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.guitar-pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: #ffffff;
  border-color: rgba(121, 40, 202, 0.3);
}

.guitar-pricing-badge {
  position: absolute;
  top: 0.6rem;
  right: 1rem;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  color: #ffffff;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.guitar-pricing-header {
  margin-bottom: 2rem;
}

.guitar-plan-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.guitar-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.guitar-currency {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0048a8;
}

.guitar-amount {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
}

.guitar-period {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #666;
}

.guitar-plan-description {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.guitar-plan-features {
  list-style: none;
  margin-bottom: 2rem;
  max-height: 300px;
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.guitar-plan-features::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.guitar-plan-features li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.75rem;
  padding: 0.5rem 0;
}

.guitar-plan-features .feature-text {
  flex: 1;
  text-align: left;
}

.guitar-plan-features .feature-icon {
  font-size: 0.9rem;
  margin-left: 1rem;
  flex-shrink: 0;
}

.guitar-plan-features .feature-icon.included {
  color: #0048a8;
}

.guitar-plan-features .feature-icon.not-included {
  color: #dc3545;
}

.guitar-pricing-button {
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  width: 100%;
}

.guitar-pricing-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(121, 40, 202, 0.3);
}

.guitar-pricing-button.premium-button {
  background: linear-gradient(135deg, #1a1a1a 0%, #0048a8 100%);
}

/* Guitar Enrollment Section */
.guitar-enrollment-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0048a8 50%, #1a1a1a 100%);
  position: relative;
}

.guitar-enrollment-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.guitar-enrollment-content {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.guitar-enrollment-title {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 3rem;
  position: relative;
}

.guitar-enrollment-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #ffffff 0%, #0048a8 100%);
  border-radius: 2px;
}

.guitar-enrollment-description {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.guitar-enrollment-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.guitar-enrollment-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #ffffff;
}

.guitar-enrollment-feature i {
  color: #ffffff;
  font-size: 1.2rem;
}

.guitar-enrollment-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.guitar-enrollment-btn-primary {
  background: #ffffff;
  border: 2px solid #ffffff;
  color: #1a1a1a;
  font-size: 0.9rem;
  padding: 0.7rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Inter", serif;
}

.guitar-enrollment-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
}

.guitar-enrollment-btn-secondary {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-size: 0.9rem;
  padding: 0.7rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: "Inter", serif;
}

.guitar-enrollment-btn-secondary:hover {
  background: #0048a8;
  color: #ffffff;
  transform: translateY(-3px);
  border: 2px solid #0048a8;
}

/* Responsive Design for Guitar Page */
@media (max-width: 1024px) {
  .guitar-learning-modes-grid,
  .guitar-types-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .guitar-pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .guitar-hero-title {
    font-size: 2.3rem;
  }

  .guitar-hero-description {
    font-size: 1rem;
  }

  .guitar-hero-features {
    justify-content: center;
    gap: 1.5rem;
  }

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

  .course-overview-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .course-highlights {
    grid-template-columns: 1fr;
  }

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

  .guitar-learning-modes-title,
  .guitar-types-title,
  .guitar-testimonials-title,
  .guitar-pricing-title,
  .guitar-enrollment-title {
    font-size: 2rem;
  }

  .guitar-learning-mode-card,
  .guitar-testimonial-card,
  .guitar-pricing-card {
    padding: 2rem;
  }

  .guitar-enrollment-features {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .guitar-enrollment-buttons {
    flex-direction: column;
    align-items: center;
  }

  .guitar-enrollment-btn-primary,
  .guitar-enrollment-btn-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .guitar-hero-title {
    font-size: 2rem;
    text-align: center;
  }
  .guitar-hero-description {
    text-align: center;
  }
  .guitar-hero-content {
    padding: 60px 0;
  }

  .guitar-learning-modes-section,
  .guitar-types-section,
  .guitar-testimonials-section,
  .guitar-pricing-section,
  .guitar-enrollment-section {
    padding: 60px 0;
  }

  .guitar-learning-modes-container,
  .guitar-types-container,
  .guitar-testimonials-container,
  .guitar-pricing-container,
  .guitar-enrollment-container {
    padding: 0 1rem;
  }

  .guitar-learning-modes-title,
  .guitar-types-title,
  .guitar-testimonials-title,
  .guitar-pricing-title,
  .guitar-enrollment-title {
    font-size: 1.75rem;
  }

  .guitar-learning-modes-subtitle,
  .guitar-types-subtitle,
  .guitar-testimonials-subtitle,
  .guitar-pricing-subtitle,
  .guitar-enrollment-description {
    font-size: 1rem;
  }

  .guitar-learning-mode-card,
  .guitar-testimonial-card,
  .guitar-pricing-card {
    padding: 1.5rem;
  }

  .guitar-type-image {
    height: 200px;
  }

  .guitar-amount {
    font-size: 2.3rem;
  }
}

/* Campus Page Styles */
.campus-overview-section {
  padding: 80px 0;
  background: #ffffff;
}

.campus-overview-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.campus-overview-title {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: #1a1a1a;
  position: relative;
}

.campus-overview-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 2px;
}

.campus-overview-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: #666666;
  margin-bottom: 3rem;
  font-family: "Inter", sans-serif;
}

.campus-overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.campus-overview-description {
  font-size: 1.125rem;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-family: "Inter", sans-serif;
}

.campus-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.campus-stat-item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.campus-stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #0048a8;
}

.campus-stat-item:hover::before {
  opacity: 1;
}

.campus-stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.4rem;
  color: #ffffff;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.campus-stat-item:hover .campus-stat-icon {
  transform: scale(1.1);
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
}

.campus-stat-title {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
  position: relative;
  z-index: 1;
}

.campus-stat-content {
  position: relative;
  z-index: 1;
}

.campus-stat-number {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: #0048a8;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.campus-stat-label {
  font-size: 0.875rem;
  color: #333333;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  position: relative;
  z-index: 1;
}

.campus-overview-image {
  position: relative;
}

.campus-image-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.campus-overview-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.campus-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(121, 40, 202, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.campus-image-container:hover .campus-image-overlay {
  opacity: 1;
}

.campus-image-container:hover .campus-overview-img {
  transform: scale(1.05);
}

/* Facilities Section */
.facilities-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0048a8 50%, #1a1a1a 100%);
  background-image: url("https://images.unsplash.com/photo-1516450360452-9312f5e86fc7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.facilities-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgb(26 26 26 / 40%) 0%, rgb(0 72 168) 50%, rgb(26 26 26 / 40%) 100%);
  z-index: 1;
}

.facilities-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.facilities-title {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: #ffffff;
  position: relative;
}

.facilities-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #ffffff 0%, #0048a8 100%);
  border-radius: 2px;
}

.facilities-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: #cccccc;
  margin-bottom: 3rem;
  font-family: "Inter", sans-serif;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.facility-card {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.facility-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.facility-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: #ffffff;
  border-color: rgba(121, 40, 202, 0.3);
}

.facility-card:hover::before {
  transform: scaleX(1);
}

.facility-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: #ffffff;
  margin-inline: auto;
}

.facility-title {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.facility-description {
  color: #333333;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-family: "Inter", sans-serif;
}

.facility-features {
  list-style: none;
}

.facility-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #333333;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-family: "Inter", sans-serif;
}

.facility-features li i {
  color: #0048a8;
  font-size: 0.75rem;
}

/* Equipment Section */
.equipment-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #1a1a1a 100%);
  border-top: 1px solid #535353;
}

.equipment-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.equipment-title {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: #ffffff;
  position: relative;
}

.equipment-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #0048a8 0%, #ffffff 100%);
  border-radius: 2px;
}

.equipment-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: #cccccc;
  margin-bottom: 3rem;
  font-family: "Inter", sans-serif;
}

.equipment-categories {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.equipment-category {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
}

.category-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2rem;
  text-align: center;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.equipment-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.equipment-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: #0048a8;
}

.equipment-icon {
  width: 50px;
  height: 50px;
  background: #0048a8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
  color: #ffffff;
}

.equipment-name {
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.equipment-description {
  color: #cccccc;
  font-size: 0.875rem;
  line-height: 1.5;
  font-family: "Inter", sans-serif;
}

/* Location Section */
.location-section {
  padding: 80px 0;
  background: #1a1a1a;
}

.location-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.location-title {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: #ffffff;
  position: relative;
}

.location-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #0048a8 0%, #ffffff 100%);
  border-radius: 2px;
}

.location-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: #cccccc;
  margin-bottom: 3rem;
  font-family: "Inter", sans-serif;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

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

.location-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.location-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgb(255 255 255 / 10%) 0%,
    rgb(255 255 255 / 10%) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.location-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.1);
}

.location-item:hover::before {
  opacity: 1;
}

.location-item i {
  font-size: 1.5rem;
  color: #ffffff;
  margin-top: 0.25rem;
  position: relative;
  z-index: 1;
}

.location-text h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.location-text p {
  color: #cccccc;
  line-height: 1.6;
  font-family: "Inter", sans-serif;
  position: relative;
  z-index: 1;
}
.location-text div p {
    margin-bottom: 10px;
}
.location-text div p:last-child {
    margin-bottom: 0;
}
.location-text p a {
  color: #cccccc;
  text-decoration: none;
}
.location-features {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.location-features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(121, 40, 202, 0.05) 0%,
    rgba(156, 39, 176, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.location-features:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #0048a8;
}

.location-features:hover::before {
  opacity: 1;
}

.location-features h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.location-benefits {
  list-style: none;
}

.location-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #333333;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  font-family: "Inter", sans-serif;
  position: relative;
  z-index: 1;
}

.location-benefits li i {
  color: #0048a8;
  font-size: 0.75rem;
  position: relative;
  z-index: 1;
}

.map-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.map-actions {
  display: flex;
  gap: 1rem;
}

.map-button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: #0048a8;
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.map-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
}

/* Why Choose Our Campus Section */
.why-choose-campus-section {
  padding: 80px 0;
  background: #ffffff;
}

.why-choose-campus-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.why-choose-campus-title {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: #1a1a1a;
  position: relative;
}

.why-choose-campus-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 2px;
}

.why-choose-campus-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: #666666;
  margin-bottom: 3rem;
  font-family: "Inter", sans-serif;
}

.why-choose-campus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.why-choose-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: #ffffff;
}

.why-choose-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.why-choose-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.why-choose-item:hover .why-choose-image {
  transform: scale(1.1);
}

.why-choose-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26, 26, 26, 0.9));
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.why-choose-item:hover .why-choose-overlay {
  transform: translateY(0);
}

.why-choose-overlay h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.why-choose-overlay p {
  color: #cccccc;
  font-size: 0.875rem;
  font-family: "Inter", sans-serif;
}

/* Responsive Design for Campus Page */
@media (max-width: 1024px) {
  .campus-overview-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .location-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .facilities-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-choose-campus-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .campus-overview-title,
  .facilities-title,
  .equipment-title,
  .location-title,
  .why-choose-campus-title {
    font-size: 2rem;
  }

  .campus-overview-subtitle,
  .facilities-subtitle,
  .equipment-subtitle,
  .location-subtitle,
  .why-choose-campus-subtitle {
    font-size: 1rem;
  }

  .campus-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .campus-stat-item {
    padding: 1rem;
  }

  .campus-stat-number {
    font-size: 2rem;
  }

  .facility-card,
  .equipment-category {
    padding: 1.5rem;
  }

  .location-item {
    padding: 1rem;
  }

  .map-actions {
    flex-direction: column;
  }

  .map-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .campus-overview-section,
  .facilities-section,
  .equipment-section,
  .location-section,
  .why-choose-campus-section {
    padding: 60px 0;
  }

  .campus-overview-container,
  .facilities-container,
  .equipment-container,
  .location-container,
  .why-choose-campus-container {
    padding: 0 1rem;
  }

  .campus-overview-title,
  .facilities-title,
  .equipment-title,
  .location-title,
  .why-choose-campus-title {
    font-size: 1.75rem;
  }

  .campus-overview-subtitle,
  .facilities-subtitle,
  .equipment-subtitle,
  .location-subtitle,
  .why-choose-campus-subtitle {
    font-size: 0.875rem;
  }

  .campus-overview-description {
    font-size: 1rem;
  }

  .facility-card,
  .equipment-category {
    padding: 1rem;
  }

  .facility-icon,
  .equipment-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .facility-title,
  .category-title {
    font-size: 1.125rem;
  }

  .equipment-name {
    font-size: 1rem;
  }

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

  .location-item {
    flex-direction: column;
    text-align: center;
  }

  .location-item i {
    margin-top: 0;
    margin-inline: auto;
  }

  .why-choose-image {
    height: 200px;
  }
}

/* Admission Form Page Styles */

/* Scroll to Top Button */
.scroll-top-btn {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.scroll-top-btn:hover {
  background: linear-gradient(135deg, #e55a2b, #e8851a);
}

/* Admission Process Section */
.admission-process-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
}

.admission-process-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.admission-process-title {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 5rem;
  color: #1a1a1a;
  position: relative;
}

.admission-process-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 2px;
}

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

.admission-step-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.admission-step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #0048a8;
}

.admission-step-card:hover::before {
  opacity: 1;
}

.step-number {
  position: absolute;
  top: -15px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 1rem;
  z-index: 1;
}

.step-title {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-title span {
  font-family: 'FontAwesome';
}

.step-underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

.step-icon {
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.step-icon i {
  font-size: 2.3rem;
  color: #0048a8;
}

.step-description {
  color: #666666;
  text-align: center;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Additional Steps Section */
.additional-steps-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.additional-steps-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.additional-step-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.additional-step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(121, 40, 202, 0.05) 0%,
    rgba(156, 39, 176, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.additional-step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #0048a8;
}

.additional-step-card:hover::before {
  opacity: 1;
}

.important-note {
  background: #1a1a1a;
  color: #ffffff;
  padding: 2rem;
  border-radius: 15px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2.5rem;
}

.note-label {
  color: #e74c3c;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.note-content {
  line-height: 1.6;
}

/* UPI Options Section */
.upi-options-section {
  padding: 0 0 80px;
  background: #ffffff;
  position: relative;
}

.upi-options-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.upi-options-title {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: #1a1a1a;
  position: relative;
}

.upi-options-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 2px;
}

.upi-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.upi-option-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.upi-option-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #0048a8;
}

.upi-option-card:hover::before {
  opacity: 1;
}

.upi-option-title {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.upi-option-underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

.upi-option-logo {
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.upi-option-logo i {
  font-size: 3rem;
  color: #0048a8;
}

.upi-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.upi-recipient {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  word-break: break-all;
}

.recipient-name {
  font-weight: 600;
  color: #1a1a1a;
}

.upi-id {
  color: #666666;
  font-family: monospace;
  font-size: 0.9rem;
}

.upi-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}

.qr-upi-id {
  font-size: 0.8rem;
  color: #666666;
  text-align: center;
}

.upi-note {
  text-align: center;
  color: #ffffff;
  font-style: italic;
  background: #666666;
  border-radius: 15px;
  padding: 0.4rem;
}

.note-asterisk {
  color: #e74c3c;
  font-weight: 700;
}

/* Application Form Section */
.application-form-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  position: relative;
}

.application-form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(121, 40, 202, 0.1) 0%,
    rgba(0, 0, 0, 0.05) 50%,
    rgba(121, 40, 202, 0.1) 100%
  );
  z-index: 0;
}

.application-form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.application-form {
  background: #ffffff;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.application-form .form-group {
  margin-bottom: 1.5rem;
}

.form-section-title {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 2rem;
  position: relative;
}

.form-section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
}

.form_label {
  display: block;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.form_label span {
  color: #df0000;
}

.form_input,
.form_textarea,
select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e1e5e9;
  border-radius: 10px;
  font-size: 1rem;
  color: #1a1a1a;
  background: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form_input:focus,
.form_textarea:focus,
select:focus {
  outline: none;
  border-color: #0048a8;
  box-shadow: 0 0 0 3px rgba(121, 40, 202, 0.1);
}

.form_input::placeholder {
  color: #999;
}

.form_textarea {
  resize: vertical;
  min-height: 120px;
}

.file-input {
  padding: 0.75rem;
  cursor: pointer;
}

.file-input::-webkit-file-upload-button {
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  color: #ffffff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  margin-right: 1rem;
}

.radio-group {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.radio-label input[type="radio"] {
  width: auto;
  margin: 0;
}

.radio-text {
  color: #1a1a1a;
  font-weight: 500;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
  margin-top: 0.25rem;
}

.checkbox-text {
  color: #1a1a1a;
  font-weight: 500;
  line-height: 1.4;
}

/* Terms Section */
.terms-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.terms-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.terms-content {
  text-align: center;
}

.terms-description {
  color: #666666;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.terms-button {
  display: inline-block;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border: 2px solid #0048a8;
  color: #ffffff;
  padding: 0.7rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  font-family: "Inter", serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.terms-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
}

/* Responsive Design for Admission Form */
@media (max-width: 768px) {
  .admission-process-title,
  .upi-options-title {
    font-size: 2rem;
  }

  .admission-steps-grid,
  .additional-steps-grid,
  .upi-options-grid {
    grid-template-columns: 1fr;
  }

  .admission-step-card,
  .additional-step-card,
  .upi-option-card {
    padding: 1.5rem;
  }

  .upi-details {
    flex-direction: column;
    text-align: center;
  }

  .application-form {
    padding: 2rem;
  }

  .form-section-title {
    font-size: 1.5rem;
  }

  .radio-group {
    flex-direction: column;
    gap: 1rem;
  }

  .important-note {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .admission-process-section,
  .additional-steps-section,
  .upi-options-section,
  .application-form-section,
  .terms-section {
    padding: 40px 0;
  }

  .admission-process-container,
  .additional-steps-container,
  .upi-options-container,
  .application-form-container,
  .terms-container {
    padding: 0 1rem;
  }

  .admission-process-title,
  .upi-options-title {
    font-size: 1.75rem;
  }

  .step-title,
  .upi-option-title {
    font-size: 1.25rem;
  }

  .application-form {
    padding: 1.5rem;
  }

  .form-section-title {
    font-size: 1.3rem;
  }

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

  .terms-button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

/* Rules & Regulations Page Styles */
.rules-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
  position: relative;
}

.rules-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.rules-content {
  background: #ffffff;
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(121, 40, 202, 0.1);
  position: relative;
  overflow: hidden;
}

.rules-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 25px 25px 0 0;
}

.rules-category {
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 20px;
  border: 1px solid rgba(121, 40, 202, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.rules-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.rules-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-color: rgba(121, 40, 202, 0.2);
}

.rules-category:hover::before {
  opacity: 1;
}

.rules-category:last-child {
  margin-bottom: 0;
}

.rules-title {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.rules-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 2px;
}

.rule-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 15px;
  border: 1px solid rgba(121, 40, 202, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.rule-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-color: rgba(121, 40, 202, 0.2);
}

.rule-item:last-child {
  margin-bottom: 0;
}

.rule-subtitle {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #0048a8;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rule-subtitle::before {
  content: "📋";
  font-size: 1.5rem;
}

.rule-description {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
}

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

.rule-list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 2rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  border-bottom: 1px solid rgba(121, 40, 202, 0.1);
  transition: all 0.3s ease;
}

.rule-list li:last-child {
  border-bottom: none;
}

.rule-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}

.rule-list li:hover {
  color: #1a1a1a;
  padding-left: 2.5rem;
}

.rule-list li:hover::before {
  transform: scale(1.1);
}

.rule-list li strong {
  color: #0048a8;
  font-weight: 600;
}

/* Table of Contents */
.rules-toc {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 3rem;
  border: 1px solid rgba(121, 40, 202, 0.1);
  position: sticky;
  top: 100px;
  z-index: 10;
}

.toc-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.toc-title::before {
  content: "📖";
  font-size: 1.5rem;
}

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

.toc-list li {
  margin-bottom: 0.75rem;
}

.toc-list a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: #666;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.toc-list a::before {
  content: "→";
  color: #0048a8;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.toc-list a:hover {
  background: #ffffff;
  color: #0048a8;
  border-color: rgba(121, 40, 202, 0.2);
  transform: translateX(5px);
}

.toc-list a:hover::before {
  transform: translateX(3px);
}

/* Important Notice */
.important-notice {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border: 2px solid #ffc107;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.important-notice::before {
  content: "⚠️";
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  opacity: 0.3;
}

.notice-title {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #856404;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.notice-title::before {
  content: "⚠️";
  font-size: 1.5rem;
}

.notice-content {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #856404;
  line-height: 1.7;
  margin: 0;
}

/* Contact Info Section */
.contact-info-section {
  background: #1a1a1a;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-info-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" x="50" text-anchor="middle" fill="rgba(255,255,255,0.03)" font-size="20">📞</text></svg>')
    repeat;
  opacity: 0.5;
  z-index: 0;
}

.contact-info-content {
  position: relative;
  z-index: 1;
}

.contact-info-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.contact-info-description {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-info-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-family: "Inter", serif;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info-btn:hover {
  background: #ffffff;
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-info-btn i {
  font-size: 1.1rem;
}

/* Responsive Design for Rules Page */
@media (max-width: 1024px) {
  .rules-container {
    max-width: 900px;
  }

  .rules-content {
    padding: 2.5rem;
  }

  .rules-category {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .rules-section {
    padding: 60px 0;
  }

  .rules-container {
    padding: 0 1rem;
  }

  .rules-content {
    padding: 2rem;
    border-radius: 20px;
  }

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

  .rules-category {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .rule-item {
    padding: 1rem;
  }

  .rule-subtitle {
    font-size: 1.1rem;
  }

  .contact-info-section {
    padding: 2rem;
  }

  .contact-info-title {
    font-size: 1.75rem;
  }

  .contact-info-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-info-btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .rules-section {
    padding: 40px 0;
  }

  .rules-content {
    padding: 1.5rem;
  }

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

  .rules-category {
    padding: 1rem;
  }

  .rule-item {
    padding: 1rem;
  }

  .rule-subtitle {
    font-size: 1rem;
  }

  .rule-list li {
    font-size: 0.9rem;
    padding: 0.5rem 0 0.5rem 1.5rem;
  }

  .rule-list li::before {
    width: 16px;
    height: 16px;
    font-size: 0.7rem;
    top: 0.5rem;
  }

  .contact-info-title {
    font-size: 1.5rem;
  }

  .contact-info-description {
    font-size: 1rem;
  }
}

/* Facilities Listing Styles */
.facilities-listing {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.facilities-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.facility-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.facility-item:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
}

.facility-item i {
  font-size: 1.5rem;
  color: #ffffff;
  min-width: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.facility-item:hover i {
  transform: scale(1.1);
}

.facility-item span {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.4;
  flex: 1;
}

/* Responsive Design for Facilities Listing */
@media (max-width: 1024px) {
  .facilities-listing {
    gap: 2rem;
    margin-top: 2.5rem;
  }

  .facility-item {
    padding: 1rem;
  }

  .facility-item i {
    font-size: 1.25rem;
    min-width: 1.75rem;
  }

  .facility-item span {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .facilities-listing {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .facilities-column {
    gap: 1rem;
  }

  .facility-item {
    padding: 1rem;
  }

  .facility-item i {
    font-size: 1.125rem;
    min-width: 1.5rem;
  }

  .facility-item span {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .facilities-listing {
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .facilities-column {
    gap: 0.75rem;
  }

  .facility-item {
    padding: 0.875rem;
    border-radius: 8px;
  }

  .facility-item i {
    font-size: 1rem;
    min-width: 1.25rem;
  }

  .facility-item span {
    font-size: 0.85rem;
    line-height: 1.3;
  }
}

/* Leadership Section Enhanced Styles */
.leader-profile {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
  border-radius: 30px;
  padding: 3rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}

.leader-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.leader-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.leader-img-placeholder {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid #0048a8;
  box-shadow: 0 15px 35px rgba(121, 40, 202, 0.3);
  position: relative;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
}

.leader-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.leader-img-placeholder:hover img {
  transform: scale(1.05);
}

.leader-info {
  padding: 1rem 0;
}

.leader-name {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.leader-role {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #0048a8;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  position: relative;
  padding-left: 1rem;
}

.leader-role::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 2px;
}

.leader-description {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.8;
  text-align: justify;
}

.leader-achievements {
  margin-bottom: 4rem;
}

.achievements-title {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.achievements-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.achievement-item {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(121, 40, 202, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.achievement-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
  border-color: #0048a8;
}

.achievement-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 10px rgba(0, 72, 168, 0.15);
  margin-bottom: 0.5rem;
}

.achievement-icon i {
  font-size: 2rem;
  color: #ffffff;
}

.achievement-content {
  width: 100%;
}

.achievement-title {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.3;
  text-align: center;
}

.achievement-description {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #666666;
  line-height: 1.6;
  text-align: center;
}

.leader-vision {
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  border-radius: 25px;
  padding: 3rem;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.leader-vision::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.vision-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.vision-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: rgba(255, 255, 255, 0.8);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.vision-description {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  opacity: 0.95;
}

/* Responsive Design for Leadership Section */
@media (max-width: 1024px) {
  .leader-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .leader-img-placeholder {
    width: 220px;
    height: 220px;
  }

  .achievements-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .leader-profile {
    padding: 2rem;
    border-radius: 20px;
  }

  .leader-name {
    font-size: 2rem;
  }

  .leader-role {
    font-size: 1rem;
  }

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

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

  .achievement-item {
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }

  .achievement-icon {
    width: 70px;
    height: 70px;
  }

  .achievement-icon i {
    font-size: 1.8rem;
  }

  .vision-title {
    font-size: 1.6rem;
  }

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

@media (max-width: 480px) {
  .leader-profile {
    padding: 1.5rem;
    margin-top: 1rem;
  }

  .leader-img-placeholder {
    width: 180px;
    height: 180px;
    border-width: 6px;
  }

  .leader-name {
    font-size: 1.8rem;
  }

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

  .achievement-item {
    padding: 1.5rem;
  }

  .achievement-icon {
    width: 50px;
    height: 50px;
  }

  .achievement-icon i {
    font-size: 1.2rem;
  }

  .achievement-title {
    font-size: 1.1rem;
  }

  .leader-vision {
    padding: 2rem;
    border-radius: 20px;
  }

  .vision-title {
    font-size: 1.4rem;
  }

  .counter-card {
    width: 100%;
  }
}

/* Ask Question Section Styles */
.ask-question-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  z-index: 99;
}

.ask-question-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #ffffff 0%, #f1f1f1 50%, #ffffff 100%);
  pointer-events: none;
  z-index: 9;
}

.ask-question-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 99;
}

.ask-question-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.ask-question-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
  position: relative;
}

.ask-question-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.ask-question-btn {
  padding: 0.7rem 2rem;
  background: linear-gradient(135deg, #0048a8 0%, #1a1a1a 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.9rem;
  border: 2px solid #0048a8;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 72, 168, 0.3);
}

.ask-question-btn:hover {
  transform: translateY(-2px);
}

/* Ask Question Modal Styles */
.ask-question-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.ask-question-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ask-question-modal-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    z-index: 10;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 72, 168, 0.1);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

.ask-question-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    margin-bottom: 15px;
}

.ask-question-close-btn {
    background: none;
    border: none;
    color: #cccccc;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.ask-question-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.ask-question-form {
    display: flex;
    flex-direction: column;
}

.ask-question-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.ask-question_label {
    font-weight: 500;
    color: #ffffff;
    font-size: 0.95rem;
}

.ask-question_input {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.ask-question_input:focus {
    outline: none;
    border-color: #0048a8;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 72, 168, 0.1);
}

.ask-question_input::placeholder {
    color: #888888;
}

.ask-question_error {
    color: #ff6b6b;
    font-size: 0.85rem;
    min-height: 1.2rem;
    display: flex;
    align-items: center;
}

.ask-question-submit-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #0048a8 0%, #0066cc 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.ask-question-submit-btn:hover {
    background: linear-gradient(135deg, #0066cc 0%, #0048a8 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 72, 168, 0.3);
}

.ask-question-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Styles for Ask Question Section */
@media (max-width: 768px) {
    .ask-question-section {
        padding: 3rem 0;
    }
    
    .ask-question-title {
        font-size: 2rem;
    }
    
    .ask-question-subtitle {
        font-size: 1rem;
    }
    
    .ask-question-modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .ask-question-modal-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .ask-question-section {
        padding: 2rem 0;
    }
    
    .ask-question-container {
        padding: 0 1rem;
    }
    
    .ask-question-title {
        font-size: 1.8rem;
    }
    
    .ask-question-subtitle {
        font-size: 0.95rem;
    }
    
    .ask-question-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .ask-question-modal-content {
        padding: 1rem;
        width: 95%;
    }
    
    .ask-question-modal-title {
        font-size: 1.3rem;
    }
    
    .ask-question_input {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    .ask-question-submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

.iti {
  width: 100%;
}
.iti__country-name,
.iti--separate-dial-code .iti__selected-dial-code {
  color: #000000;
  font-weight: 300;
  font-size: 14px;
}
.iti--separate-dial-code .iti__selected-flag,
.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  background-color: transparent;
  border-right: 1px solid #e1e1e1;
}


@media (max-width: 480px) {
  .nav-container,
  .hero-container,
  .counter-container,
  .courses-container,
  .courses-carousel-container,
  .benefits-container,
  .testimonials-container,
  .founder-container,
  .learning-modes-container,
  .flamenco-hero-container,
  .instagram-container,
  .certification-container,
  .daws-container,
  .about-stma-container,
  .blogs-container,
  .contact-container,
  .contact-details-container,
  .contact-form-container,
  .faq-container,
  .contact-faq-container,
  .footer-container,
  .story-container,
  .mission-container,
  .team-container,
  .why-choose-container,
  .guitar-hero-container,
  .ukulele-hero-container,
  .flamenco-techniques-container,
  .course-overview-container,
  .curriculum-container,
  .guitar-techniques-container,
  .guitar-types-container,
  .guitar-journey-container,
  .guitar-pricing-container,
  .guitar-enrollment-container,
  .campus-overview-container,
  .facilities-container,
  .equipment-container,
  .location-container,
  .why-choose-campus-container,
  .admission-process-container,
  .additional-steps-container,
  .upi-options-container,
  .application-form-container,
  .rules-container,
  .contact-info-content {
    padding: 0 1rem;
  }
  .contact-form-container {
    padding-block: 1rem;
  }
  
  /* All main sections padding */
  .counter-section,
  .courses-section,
  .benefits-section,
  .testimonials-section,
  .founder-section,
  .learning-modes-section,
  .flamenco-hero-section,
  .instagram-section,
  .certification-section,
  .daws-section,
  .about-stma-section,
  .blogs-section,
  .contact-section,
  .contact-details-section,
  .contact-form-section,
  .faq-section,
  .contact-faq-section,
  .story-section,
  .mission-section,
  .team-section,
  .why-choose-section,
  .guitar-hero,
  .ukulele-hero,
  .flamenco-techniques-section,
  .course-overview-section,
  .curriculum-section,
  .guitar-techniques-section,
  .guitar-types-section,
  .guitar-journey-section,
  .guitar-pricing-section,
  .guitar-enrollment-section,
  .campus-overview-section,
  .facilities-section,
  .equipment-section,
  .location-section,
  .why-choose-campus-section,
  .admission-process-section,
  .additional-steps-section,
  .upi-options-section,
  .application-form-section,
  .rules-section,
  .ukulele-types-section {
    padding: 40px 0;
  }
  .footer-content {
    padding-top: 40px;
  }
  
  /* All section titles */
  .courses-title,
  .benefits-title,
  .testimonials-title,
  .founder-title,
  .learning-modes-title,
  .instagram-title,
  .certification-title,
  .daws-title,
  .about-stma-title,
  .blogs-title,
  .contact-title,
  .contact-details-title,
  .contact-form-title,
  .faq-title,
  .story-title,
  .mission-title,
  .team-title,
  .why-choose-title,
  .flamenco-techniques-title,
  .course-overview-title,
  .curriculum-title,
  .guitar-techniques-title,
  .guitar-types-title,
  .guitar-journey-title,
  .guitar-pricing-title,
  .guitar-enrollment-title,
  .campus-overview-title,
  .facilities-title,
  .equipment-title,
  .location-title,
  .why-choose-campus-title,
  .admission-process-title,
  .upi-options-title,
  .rules-title,
  .ukulele-types-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  
  /* All section subtitles */
  .courses-subtitle,
  .benefits-subtitle,
  .testimonials-subtitle,
  .founder-subtitle,
  .learning-modes-subtitle,
  .instagram-subtitle,
  .certification-subtitle,
  .daws-subtitle,
  .about-stma-subtitle,
  .blogs-subtitle,
  .contact-subtitle,
  .contact-details-subtitle,
  .contact-form-subtitle,
  .faq-subtitle,
  .story-subtitle,
  .mission-subtitle,
  .team-subtitle,
  .why-choose-subtitle,
  .flamenco-techniques-subtitle,
  .course-overview-subtitle,
  .curriculum-subtitle,
  .guitar-techniques-subtitle,
  .guitar-types-subtitle,
  .guitar-journey-subtitle,
  .guitar-pricing-subtitle,
  .guitar-enrollment-subtitle,
  .campus-overview-subtitle,
  .facilities-subtitle,
  .equipment-subtitle,
  .location-subtitle,
  .why-choose-campus-subtitle,
  .admission-process-subtitle,
  .upi-options-subtitle,
  .ukulele-types-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  /* All icons that are 80px to become 60px */
  .mode-icon,
  .benefit-icon,
  .mission-icon,
  .why-choose-icon,
  .technique-icon-wrapper,
  .technique-icon,
  .scanner-icon,
  .contact-detail-icon,
  .map-info-icon,
  .facility-icon,
  .equipment-icon,
  .achievement-icon,
  .stat-icon,
  .campus-stat-icon,
  .step-icon,
  .leader-achievement-icon,
  .level-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    font-size: 1.4rem;
  }
  .testimonial-card {
    min-height: unset;
  }
  .courses-carousel .slick-track {
    gap: 0;
  }
  .instagram-header,
  .blogs-header,
  .contact-header,
  .story-header,
  .mission-header,
  .leader-main,
  .faq-header,
  .contact-form-header,
  .flamenco-techniques-header {
    margin-bottom: 2rem;
  }
  .mode-title {
    font-size: 1.3rem;
  }
  .stat-item {
    min-width: 100%;
    flex: 1;
  }
  .contact-form,
  .story-text,
  .map-container {
    padding: 0;
  }
  .support-item,
  .social-icons {
    justify-content: center;
  }
  .footer-logo img {
    max-width: 60px;
  }
  .story-img-placeholder {
    width: 100%;
    height: auto;
  }
  .campus-stat-title {
    margin-bottom: 1rem;
  }
  .location-text {
    width: 100%;
  }
  .map-wrapper {
    height: 300px;
  }
  .contact-form-section .contact-form {
    padding: 15px;
  }
  .contact-detail-item {
    text-align: center;
  }
  .step-icon {
    margin-bottom: 0;
    margin-inline: auto;
  }
  .contact-info-btn {
    max-width: 100%;
  }
  .guitar-badge {
    max-width: 150px;
    margin-inline: auto;
    display: block;
    text-align: center;
  }
  .course-overview-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .highlight-content h4 {
    text-align: left;
  }
  .guitar-techniques-grid {
    grid-template-columns: 1fr;
  }
  .mode-button {
    position: static;
  }
}