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

:root {
  --primary-color: #2d6a4f;
  --primary-light: #40916c;
  --primary-dark: #1b4332;
  --accent-color: #95d5b2;
  --accent-light: #d8f3dc;
  --text-dark: #1f2937;
  --text-gray: #6b7280;
  --bg-light: #f8fffe;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styles */
header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
  color: var(--white);
  padding: 1.5rem 0 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

header h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

nav ul li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  transition: var(--transition);
  position: relative;
  display: inline-block;
  font-size: 0.95rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

nav ul li a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
  position: relative;
  text-align: center;
  color: white;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0 0 50px 50px;
  box-shadow: var(--shadow-xl);
  max-height: 600px;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.95) saturate(1.1);
  transition: var(--transition);
}

.hero:hover img {
  filter: brightness(1) saturate(1.2);
  transform: scale(1.03);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.92) 0%, rgba(27, 67, 50, 0.92) 100%);
  padding: 2.5rem 3rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-xl);
  animation: fadeInUp 0.8s ease-out 0.3s both;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.hero-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 1px;
  margin: 0;
  color: #ffffff;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

/* Main Content */
main {
  padding: 3rem 0 120px;
  animation: fadeIn 0.8s ease-out;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

section {
  padding: 3rem 2.5rem;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  max-width: 1200px;
  margin: 0 auto 3rem;
  transition: var(--transition);
  border: 1px solid rgba(45, 106, 79, 0.08);
  animation: slideUp 0.6s ease-out both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

section h2 {
  color: var(--primary-color);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 1rem;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
  animation: expandLine 1s ease-out 0.3s both;
}

@keyframes expandLine {
  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 80px;
    opacity: 1;
  }
}

section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 1rem;
}

section a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
}

section a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

section a:hover::after {
  width: 100%;
}

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

/* Footer */
footer {
  background: linear-gradient(135deg, var(--text-dark) 0%, #374151 100%);
  color: var(--white);
  text-align: center;
  padding: 1.5rem 0;
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}

footer p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
}

iframe {
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  margin-top: 1rem;
}

iframe:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.01);
}

/* Testimonials */
.swiper {
  padding: 2rem 0 3rem;
}

.swiper-slide {
  height: auto;
  display: flex;
}

blockquote {
  font-style: italic;
  margin: 0;
  padding: 2rem;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--white) 100%);
  border-left: 6px solid var(--primary-color);
  border-radius: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  width: 100%;
}

blockquote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 10px;
  font-size: 100px;
  color: var(--accent-color);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

blockquote:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

blockquote p {
  padding: 0;
  flex: 1;
  font-size: 1.05rem;
  color: var(--text-dark);
  position: relative;
  z-index: 1;
}

blockquote footer {
  text-align: right;
  font-weight: 600;
  position: static;
  padding-top: 1rem;
  color: var(--accent-color);
  font-style: normal;
  font-size: 1rem;
  padding-right: 1rem;
}

.swiper-pagination-bullet {
  background: var(--primary-color);
  opacity: 0.4;
  transition: var(--transition);
}

.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.3);
}

/* Lists */
ul {
  list-style-type: none;
  padding: 0;
}

ul li {
  margin: 1rem 0;
}

ul li a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  padding: 0.3rem 0;
  display: inline-block;
}

ul li a:hover {
  color: var(--primary-light);
  transform: translateX(5px);
}

/* Hours Grid */
.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--white) 100%);
  padding: 2rem;
  border-radius: 16px;
  margin-top: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.hours-grid>div:nth-child(odd) {
  font-weight: 600;
  color: var(--primary-color);
}

.hours-grid>div:nth-child(even) {
  color: var(--text-gray);
}

.swiper-wrapper {
  align-items: stretch;
}

/* About Section */
.about-content p {
  margin-bottom: 1.2rem;
}

.about-content strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--accent-light) 100%);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(5deg);
}

.service-card h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.service-card p {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Contact Section Enhancements */
.contact-info {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--white) 100%);
  padding: 2rem;
  border-radius: 16px;
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
}

.contact-item {
  font-size: 1.15rem;
  margin: 1.2rem 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.contact-label {
  font-weight: 600;
  color: var(--primary-color);
  min-width: 120px;
}

.contact-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.contact-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.contact-link:hover::after {
  width: 100%;
}

.contact-link:hover {
  color: var(--primary-light);
}

/* Education Section */
.education-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.edu-link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.8rem;
  background: linear-gradient(135deg, var(--white) 0%, var(--accent-light) 100%);
  border-radius: 16px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
}

.edu-link:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
}

.edu-icon {
  font-size: 3rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.edu-link:hover .edu-icon {
  transform: scale(1.2) rotate(-5deg);
}

.edu-content h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.edu-content p {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

/* Call to Action Section */
.cta-section {
  text-align: center;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 20px;
  margin: 2rem 0;
  box-shadow: var(--shadow-lg);
}

.cta-text {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 3rem;
  background: var(--white);
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  border: 3px solid transparent;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-xl);
  border-color: var(--white);
  background: var(--primary-dark);
  color: var(--white);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  header h1 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }

  nav ul {
    gap: 0.3rem;
  }

  nav ul li a {
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
  }

  .hero {
    border-radius: 0 0 30px 30px;
    max-height: 400px;
  }

  .hero-text {
    padding: 1.5rem 2rem;
  }

  .hero-text h2 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  section {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }

  section h2 {
    font-size: 1.8rem;
  }

  section p {
    font-size: 1rem;
  }

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

  .service-card {
    padding: 1.5rem;
  }

  .service-icon {
    font-size: 3rem;
  }

  .contact-info {
    padding: 1.5rem;
  }

  .contact-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-section {
    padding: 2rem 1.5rem;
  }

  .cta-text {
    font-size: 1.2rem;
  }

  .cta-button {
    padding: 0.9rem 2.5rem;
    font-size: 1.1rem;
  }

  .edu-link {
    padding: 1.5rem;
    gap: 1rem;
  }

  .edu-icon {
    font-size: 2.5rem;
  }

  .edu-content h3 {
    font-size: 1.1rem;
  }

  .edu-content p {
    font-size: 0.9rem;
  }

  iframe {
    width: 100%;
    height: 300px;
  }
}

@media screen and (max-width: 640px) {
  header {
    padding: 1rem 0;
  }

  main {
    padding: 2rem 0 100px;
  }

  .hero {
    border-radius: 0;
    max-height: 350px;
  }

  .hero-text {
    width: 90%;
    padding: 1.2rem 1.5rem;
  }

  .hero-text h2 {
    font-size: 1.5rem;
  }

  .hero-text p {
    font-size: 0.9rem;
  }

  .container {
    width: 100%;
  }

  section {
    margin: 0 0 1.5rem;
    padding: 1.5rem;
    border-radius: 0;
  }

  section h2 {
    font-size: 1.6rem;
  }

  .hours-grid {
    gap: 1rem;
    padding: 1.5rem;
  }

  blockquote {
    padding: 1.5rem;
  }

  .services-grid {
    gap: 1rem;
  }

  .service-card {
    padding: 1.2rem;
  }

  .contact-info {
    padding: 1.2rem;
  }

  .contact-label {
    min-width: auto;
  }

  .cta-section {
    padding: 1.5rem 1rem;
  }

  .cta-text {
    font-size: 1.1rem;
  }

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

  .edu-link {
    padding: 1.2rem;
    gap: 1rem;
  }

  .edu-icon {
    font-size: 2rem;
  }

  .edu-content h3 {
    font-size: 1rem;
  }

  .edu-content p {
    font-size: 0.85rem;
  }
}