/* Global Styles */
:root {
  --primary-color: #ff69b4;
  --secondary-color: #f8e1e1;
  --accent-color: #d4af37;
  --text-color: #333;
  --light-color: #fff;
  --cream-color: #fff5f5;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  background: var(--light-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo h1 {
  font-size: 1.8rem;
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-color);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  background: url("https://images.unsplash.com/photo-1596462502278-27bfdc403348?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80")
    center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light-color);
  padding-top: 80px;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInDown 1s ease-out;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #4caf50;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #45a049;
}

.cta-button.apply-now {
  background-color: #ff6b6b;
}

.cta-button.apply-now:hover {
  background-color: #ff5252;
}

.apply-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #ff6b6b;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: background-color 0.3s;
}

.apply-button:hover {
  background-color: #ff5252;
}

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

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

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

@media (max-width: 768px) {
  .hero {
    height: 80vh;
    padding-top: 60px;
  }

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

  .hero-content p {
    font-size: 1.1rem;
  }

  .cta-button {
    padding: 0.9rem 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 70vh;
  }

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

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

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

/* Landscape Mode */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    height: 100vh;
  }

  .hero-content {
    padding: 0 40px;
  }
}

/* About Section */
.about {
  padding: 100px 0;
  background: var(--cream-color);
}

.about h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.about-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-item.reverse {
  direction: rtl;
}

.about-item.reverse .about-text {
  direction: ltr;
}

.about-text {
  padding: 2rem;
  background: var(--light-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-text h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.about-text p {
  margin-bottom: 0;
  line-height: 1.8;
  color: var(--text-color);
}

.about-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/3;
  cursor: pointer;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.4),
    transparent
  );
  padding: 2rem 1.5rem 1.5rem;
  color: var(--light-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.image-overlay i {
  font-size: 2rem;
  color: var(--primary-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.image-overlay span {
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hover Effects */
.about-image:hover .image-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.3)
  );
}

.about-image:hover .image-overlay i {
  transform: scale(1.1);
  color: var(--accent-color);
}

/* Story Section Specific */
.about-item:nth-child(1) .image-overlay i {
  color: #ff69b4;
}

/* Mission Section Specific */
.about-item:nth-child(2) .image-overlay i {
  color: #d4af37;
}

/* Vision Section Specific */
.about-item:nth-child(3) .image-overlay i {
  color: #ff69b4;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .image-overlay {
    padding: 1.5rem 1rem 1rem;
  }

  .image-overlay i {
    font-size: 1.5rem;
  }

  .image-overlay span {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .image-overlay {
    padding: 1rem 0.8rem 0.8rem;
  }

  .image-overlay i {
    font-size: 1.2rem;
  }

  .image-overlay span {
    font-size: 0.9rem;
  }
}

/* Story Image Placeholder */
.about-item:nth-child(1) .about-image::after {
  background: linear-gradient(45deg, #ff69b4, #ffb6c1);
  opacity: 0.15;
}

/* Mission Image Placeholder */
.about-item:nth-child(2) .about-image::after {
  background: linear-gradient(45deg, #d4af37, #ffd700);
  opacity: 0.15;
}

/* Vision Image Placeholder */
.about-item:nth-child(3) .about-image::after {
  background: linear-gradient(45deg, #ff69b4, #d4af37);
  opacity: 0.15;
}

/* Decorative Elements */
.about-image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(
      circle at 30% 30%,
      var(--primary-color) 0%,
      transparent 50%
    ),
    radial-gradient(circle at 70% 70%, var(--accent-color) 0%, transparent 50%);
  opacity: 0.1;
  border-radius: 50%;
}

/* Icon Placeholders */
.about-item:nth-child(1) .about-image::before {
  content: "📚";
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
}

.about-item:nth-child(2) .about-image::before {
  content: "🎯";
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
}

.about-item:nth-child(3) .about-image::before {
  content: "👁️";
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
}

/* Mobile Responsive Styles for About Section */
@media (max-width: 768px) {
  .about {
    padding: 60px 0;
  }

  .about-content {
    gap: 2rem;
  }

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

  .about-item.reverse {
    direction: ltr;
  }

  .about-text {
    padding: 1.5rem;
    order: 2;
  }

  .about-image {
    order: 1;
    aspect-ratio: 16/9;
  }

  .about-text h3 {
    font-size: 1.5rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }
}

/* Tablet Specific Styles for About Section */
@media (min-width: 769px) and (max-width: 1024px) {
  .about-item {
    gap: 2rem;
  }

  .about-text {
    padding: 1.5rem;
  }

  .about-text h3 {
    font-size: 1.6rem;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .about-content {
    gap: 1.5rem;
  }

  .about-text {
    padding: 1rem;
  }

  .about-text h3 {
    font-size: 1.3rem;
  }

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

/* Courses Section */
.courses {
  padding: 100px 0;
}

.courses h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

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

.course-card {
  background: var(--light-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  position: relative;
}

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

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

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

.course-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  color: var(--primary-color);
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.course-card:hover h3 {
  color: var(--accent-color);
}

.course-card p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-color);
  line-height: 1.6;
}

.apply-button {
  display: inline-block;
  margin: 0 1.5rem 1.5rem;
  padding: 0.8rem 1.5rem;
  background: var(--primary-color);
  color: var(--light-color);
  text-decoration: none;
  border-radius: 25px;
  transition: var(--transition);
  font-weight: 500;
}

.apply-button:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Course Card Overlay */
.course-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 60%,
    rgba(0, 0, 0, 0.1) 100%
  );
  pointer-events: none;
}

/* Mobile Responsive Styles for Course Cards */
@media (max-width: 768px) {
  .course-card img {
    height: 200px;
  }

  .course-card h3 {
    font-size: 1.2rem;
    padding: 1.2rem 1.2rem 0.5rem;
  }

  .course-card p {
    padding: 0 1.2rem 1.2rem;
    font-size: 0.95rem;
  }

  .apply-button {
    margin: 0 1.2rem 1.2rem;
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .course-card img {
    height: 180px;
  }

  .course-card h3 {
    font-size: 1.1rem;
    padding: 1rem 1rem 0.5rem;
  }

  .course-card p {
    padding: 0 1rem 1rem;
    font-size: 0.9rem;
  }

  .apply-button {
    margin: 0 1rem 1rem;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
}

/* Gallery Section */
.gallery {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.gallery h2 {
  text-align: center;
  margin-bottom: 50px;
  color: #333;
  font-size: 2.5rem;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 25px;
  border: none;
  background: #fff;
  color: #666;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.filter-btn:hover,
.filter-btn.active {
  background: #ff6b6b;
  color: white;
  transform: translateY(-2px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 30px 20px 20px;
  color: white;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
  font-weight: 600;
}

.gallery-overlay p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Gallery Responsive Styles */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
  }

  .gallery h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  .gallery {
    padding: 60px 0;
  }

  .gallery-filters {
    gap: 10px;
  }

  .filter-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .gallery h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }

  .gallery-overlay {
    padding: 20px 15px 15px;
  }

  .gallery-overlay h3 {
    font-size: 1.2rem;
  }

  .gallery-overlay p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .gallery {
    padding: 40px 0;
  }

  .gallery h2 {
    font-size: 1.8rem;
  }

  .gallery-filters {
    margin-bottom: 25px;
  }

  .filter-btn {
    padding: 6px 15px;
    font-size: 0.85rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .gallery-item {
    aspect-ratio: 4/3;
  }

  .gallery-overlay {
    padding: 15px 12px 12px;
  }

  .gallery-overlay h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
  }

  .gallery-overlay p {
    font-size: 0.8rem;
  }
}

/* Gallery Animation Classes */
.gallery-item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
}

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

/* Gallery Item Animation Delay */
.gallery-item:nth-child(1) {
  animation-delay: 0.1s;
}
.gallery-item:nth-child(2) {
  animation-delay: 0.2s;
}
.gallery-item:nth-child(3) {
  animation-delay: 0.3s;
}
.gallery-item:nth-child(4) {
  animation-delay: 0.4s;
}
.gallery-item:nth-child(5) {
  animation-delay: 0.5s;
}
.gallery-item:nth-child(6) {
  animation-delay: 0.6s;
}
.gallery-item:nth-child(7) {
  animation-delay: 0.7s;
}
.gallery-item:nth-child(8) {
  animation-delay: 0.8s;
}

/* Admissions Section */
.admissions {
  padding: 100px 0;
}

.admissions h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

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

.requirements ul,
.application-process ol {
  list-style-position: inside;
  margin-left: 1rem;
}

.requirements li,
.application-process li {
  margin-bottom: 1rem;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: var(--cream-color);
}

.contact h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: #25d366;
  color: var(--light-color);
  text-decoration: none;
  border-radius: 30px;
  transition: var(--transition);
}

.whatsapp-button:hover {
  transform: translateY(-3px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

.submit-button {
  padding: 1rem;
  background: var(--primary-color);
  color: var(--light-color);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
}

.submit-button:hover {
  background: var(--accent-color);
}

/* Footer Section */
.footer {
  background-color: #333;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-info h3 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.footer-info p {
  color: #ccc;
  margin-bottom: 15px;
  line-height: 1.6;
}

.contact-info {
  margin-top: 20px;
  margin-bottom: 25px;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-info i {
  color: #ff6b6b;
  font-size: 1.2rem;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #ff6b6b;
  transform: translateY(-3px);
}

/* Quick Links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.quick-links h4 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

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

.quick-links li {
  margin-bottom: 12px;
}

.quick-links a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 15px;
}

.quick-links a::before {
  content: "→";
  position: absolute;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease;
}

.quick-links a:hover {
  color: #ff6b6b;
  padding-left: 20px;
}

.quick-links a:hover::before {
  opacity: 1;
}

.footer-map {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

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

.footer-bottom p {
  color: #ccc;
  font-size: 0.9rem;
}

/* Footer Responsive Styles */
@media (max-width: 992px) {
  .footer {
    padding: 40px 0 20px;
  }

  .footer-content {
    gap: 30px;
  }

  .footer-info h3 {
    font-size: 1.6rem;
  }

  .quick-links h4 {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-map {
    height: 250px;
    order: -1;
  }

  .footer-info {
    text-align: center;
  }

  .contact-info p {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .quick-links {
    text-align: center;
  }

  .quick-links a {
    padding-left: 0;
  }

  .quick-links a::before {
    display: none;
  }

  .quick-links a:hover {
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 0 15px;
  }

  .footer-info h3 {
    font-size: 1.4rem;
  }

  .footer-map {
    height: 200px;
  }

  .contact-info p {
    font-size: 0.9rem;
  }

  .social-links a {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .quick-links h4 {
    font-size: 1.2rem;
  }

  .quick-links li {
    margin-bottom: 10px;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }

  .logo h1 {
    font-size: 1.5rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--light-color);
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 1rem 0;
  }

  .hero {
    height: 80vh;
    padding-top: 60px;
  }

  .hero-content {
    padding: 0 1rem;
  }

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

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

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

  .about {
    padding: 60px 0;
  }

  .about h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .about-text h3 {
    font-size: 1.3rem;
  }

  .courses {
    padding: 60px 0;
  }

  .courses h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .course-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .course-card {
    margin: 0 auto;
    max-width: 400px;
  }

  .course-card h3 {
    font-size: 1.2rem;
    padding: 1rem 1rem 0.5rem;
  }

  .course-card p {
    font-size: 0.9rem;
    padding: 0 1rem 1rem;
  }

  .apply-button {
    margin: 0 1rem 1rem;
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }

  .gallery {
    padding: 60px 0;
  }

  .gallery h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 0 0.5rem;
  }

  .admissions {
    padding: 60px 0;
  }

  .admissions h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .admissions-content {
    padding: 0 1rem;
  }

  .requirements h3,
  .application-process h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .requirements ul,
  .application-process ol {
    font-size: 0.9rem;
  }

  .contact {
    padding: 60px 0;
  }

  .contact h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .contact-content {
    padding: 0 1rem;
  }

  .contact-info {
    gap: 1.5rem;
  }

  .info-item {
    font-size: 0.9rem;
  }

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

  .contact-form input,
  .contact-form textarea {
    padding: 0.8rem;
    font-size: 0.9rem;
  }

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

  .footer {
    padding: 40px 0 20px;
  }

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

  .footer-section h3 {
    font-size: 1.3rem;
  }

  .footer-section ul li {
    font-size: 0.9rem;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    font-size: 0.8rem;
  }
}

/* Additional Mobile Breakpoints */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .course-card {
    max-width: 100%;
  }

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

/* Landscape Mode Adjustments */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    height: 100vh;
  }

  .nav-links {
    max-height: 80vh;
    overflow-y: auto;
  }
}

/* Tablet Specific Styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 2rem;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

/* Print Styles */
@media print {
  .header,
  .nav-toggle,
  .cta-button,
  .apply-button,
  .whatsapp-button,
  .contact-form,
  .footer {
    display: none;
  }

  body {
    color: #000;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  a {
    text-decoration: none;
    color: #000;
  }
}

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

.fade-in {
  animation: fadeIn 1s ease forwards;
}

/* Events Section */
.events {
  padding: 80px 0;
  background-color: #f9f9f9;
  overflow: hidden;
}

.events h2 {
  text-align: center;
  margin-bottom: 50px;
  color: #333;
  font-size: 2.5rem;
}

.events-slider {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  margin: 0 -15px;
}

.events-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 30px;
  padding: 0 15px;
}

.event-card {
  flex: 0 0 calc(33.333% - 20px);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  position: relative;
  min-width: 300px;
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #ff6b6b;
}

.event-date {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ff6b6b;
  color: white;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  min-width: 60px;
  z-index: 1;
}

.event-date .day {
  display: block;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
}

.event-date .month {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
}

.event-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.event-content h3 {
  margin: 0 0 15px;
  color: #333;
  font-size: 1.4rem;
  line-height: 1.3;
}

.event-time,
.event-location {
  color: #666;
  margin: 5px 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.event-time i,
.event-location i {
  margin-right: 8px;
  color: #ff6b6b;
  font-size: 1rem;
}

.event-description {
  margin: 15px 0;
  color: #555;
  line-height: 1.6;
  flex-grow: 1;
}

.event-button {
  display: inline-block;
  padding: 12px 25px;
  background: #ff6b6b;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-align: center;
  font-weight: 500;
  margin-top: auto;
}

.event-button:hover {
  background: #ff5252;
  transform: translateY(-2px);
}

.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  z-index: 2;
}

.prev-btn,
.next-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  pointer-events: auto;
}

.prev-btn:hover,
.next-btn:hover {
  background: #ff6b6b;
  color: white;
}

/* Enhanced Responsive Styles for Events */
@media (max-width: 1200px) {
  .event-card {
    flex: 0 0 calc(50% - 15px);
  }

  .events h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  .events {
    padding: 60px 0;
  }

  .event-content {
    padding: 25px;
  }

  .event-content h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .events h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .event-card {
    flex: 0 0 calc(100% - 20px);
    min-width: 280px;
  }

  .events-track {
    gap: 20px;
  }

  .event-image {
    height: 180px;
  }

  .event-content {
    padding: 20px;
  }

  .event-content h3 {
    font-size: 1.2rem;
  }

  .slider-controls {
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .events {
    padding: 40px 0;
  }

  .events h2 {
    font-size: 1.8rem;
  }

  .event-date {
    top: 10px;
    right: 10px;
    padding: 8px;
    min-width: 50px;
  }

  .event-date .day {
    font-size: 20px;
  }

  .event-date .month {
    font-size: 12px;
  }

  .event-image {
    height: 160px;
  }

  .event-content {
    padding: 15px;
  }

  .event-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .event-time,
  .event-location {
    font-size: 0.85rem;
  }

  .event-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .prev-btn,
  .next-btn {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 360px) {
  .event-card {
    min-width: 260px;
  }

  .event-image {
    height: 140px;
  }

  .event-content {
    padding: 12px;
  }

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

  .event-time,
  .event-location {
    font-size: 0.8rem;
  }
}

/* Employers Section Styles */
.employers {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.employers::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ff6b6b, #ffd93d);
}

.employers h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #2d3436;
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 15px;
}

.employers h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #ff6b6b, #ffd93d);
  border-radius: 3px;
}

.employers .section-subtitle {
  text-align: center;
  color: #636e72;
  margin-bottom: 50px;
  font-size: 1.2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.employers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
  padding: 0 20px;
}

.employer-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.employer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff6b6b, #ffd93d);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.employer-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.employer-card:hover::before {
  transform: scaleX(1);
}

.employer-logo {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #ff6b6b, #ffd93d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: transform 0.4s ease;
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.employer-card:hover .employer-logo {
  transform: rotateY(360deg);
}

.employer-logo i {
  font-size: 2.2rem;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.employer-card h3 {
  color: #2d3436;
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.employer-card:hover h3 {
  color: #ff6b6b;
}

.employer-card p {
  color: #636e72;
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.6;
}

.employer-location {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #636e72;
  font-size: 0.95rem;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.employer-card:hover .employer-location {
  background: #ff6b6b;
  color: #fff;
}

.employer-location i {
  margin-right: 8px;
  color: inherit;
}

.employers-cta {
  text-align: center;
  margin-top: 60px;
  padding: 0 20px;
}

.employers-cta p {
  color: #2d3436;
  margin-bottom: 25px;
  font-size: 1.3rem;
  font-weight: 500;
}

.employers-cta .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #ff6b6b, #ffd93d);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.employers-cta .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
  background: linear-gradient(135deg, #ff5252, #ffd700);
}

/* Responsive Styles for Employers Section */
@media (max-width: 768px) {
  .employers {
    padding: 60px 0;
  }

  .employers h2 {
    font-size: 2rem;
  }

  .employers-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .employer-card {
    padding: 25px;
  }

  .employer-logo {
    width: 70px;
    height: 70px;
  }

  .employer-logo i {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .employers-grid {
    grid-template-columns: 1fr;
  }

  .employer-card {
    max-width: 320px;
    margin: 0 auto;
  }

  .employers h2 {
    font-size: 1.8rem;
  }

  .employers .section-subtitle {
    font-size: 1.1rem;
  }
}

/* WhatsApp Floating Button with Message */
.whatsapp-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-float {
  display: flex;
  align-items: center;
  text-decoration: none;
  background-color: #25d366;
  padding: 10px 15px;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
  margin-right: 10px;
}

.whatsapp-message {
  color: white;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}
