/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(3, 3, 51, 0.8);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.navbar-logo-img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.navbar-logo-text {
  font-size: 1.5rem;
  font-weight: bold;
}
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
}

.navbar-menu {
  display: flex;
  list-style: none;
}

.navbar-item {
  margin-left: 1.5rem;
}

.navbar-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar-link:hover {
  color: #cfbe2d;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 30px;
  background-color: #030333;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  background-color: #2f679f;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

#heroCarousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.carousel-item img {
  object-fit: cover;
  height: 100vh;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3, 3, 51, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Updated Footer styles */
.footer-logo {
  max-width: 150px;
  margin-bottom: 1rem;
}


.hero-content {
  max-width: 800px;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.5s;
  animation-fill-mode: both;
}

/* Welcome Message */
.welcome {
  padding: 4rem 0;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  margin: 2rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.welcome-title {
  font-size: 2.5rem;
  color: #030333;
  margin-bottom: 1rem;
}

.welcome-text {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Photo Gallery */
.gallery {
  padding: 4rem 0;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

/* News & Announcements */
.news {
  padding: 4rem 0;
  background-color: rgba(3, 3, 51, 0.05);
}

.news-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.news-item {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.news-title {
  font-size: 1.2rem;
  color: #030333;
  margin-bottom: 1rem;
}

.news-date {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 0.5rem;
}

.news-excerpt {
  font-size: 1rem;
}

/* Events Section */
.events {
  padding: 4rem 0;
}

.events-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.event-card {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.event-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.event-details {
  padding: 1.5rem;
}

.event-title {
  font-size: 1.2rem;
  color: #030333;
  margin-bottom: 0.5rem;
}

.event-date, .event-location {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 0.5rem;
}

.event-description {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Featured Courses */
.courses {
  padding: 4rem 0;
  background-color: rgba(3, 3, 51, 0.05);
}

.courses-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.course-card {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.course-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.course-details {
  padding: 1.5rem;
}

.course-title {
  font-size: 1.2rem;
  color: #030333;
  margin-bottom: 0.5rem;
}

.course-instructor {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 0.5rem;
}

.course-description {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
  padding: 4rem 0;
}

.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 2rem;
  max-width: 500px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: bold;
  color: #030333;
}

/* Quick Links */
.quick-links {
  padding: 4rem 0;
  background-color: rgba(3, 3, 51, 0.05);
}

.quick-links-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.quick-links-column {
  display: flex;
  flex-direction: column;
}

.quick-links-title {
  font-size: 1.2rem;
  color: #030333;
  margin-bottom: 1rem;
}

.quick-link {
  color: #333;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.quick-link:hover {
  color: #2f679f;
}

/* Mission & Vision */
.mission-vision {
  padding: 4rem 0;
  text-align: center;
}

.mission, .vision {
  margin-bottom: 3rem;
}

.mission-title, .vision-title {
  font-size: 2rem;
  color: #030333;
  margin-bottom: 1rem;
}

.mission-text, .vision-text {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Footer */
.footer {
  background-color: #030333;
  color: #fff;
  padding: 3rem 0;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-link {
  color: #fff;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #cfbe2d;
}

.footer-bottom {
  margin-top: 2rem;
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Contact Form */
.contact-form {
  padding: 4rem 0;
  background-color: rgba(3, 3, 51, 0.05);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: #030333;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: border-color 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: #2f679f;
}

/* Upcoming Events */
.upcoming-events {
  padding: 4rem 0;
}

.event-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.event-item {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.event-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.event-date {
  font-weight: bold;
  color: #2f679f;
  margin-bottom: 0.5rem;
}

.event-name {
  font-size: 1.2rem;
  color: #030333;
  margin-bottom: 0.5rem;
}

.event-description {
  font-size: 0.9rem;
  color: #666;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Apply animations to sections */
.section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Glass effect */
.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Card animations */
.card {
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Interactive elements */
.interactive-element {
  cursor: pointer;
  transition: all 0.3s ease;
}

.interactive-element:hover {
  transform: scale(1.05);
}

/* Responsive design */
@media screen and (max-width: 768px) {
  .container {
    width: 95%;
  }

  .navbar-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(3, 3, 51, 0.9);
    padding: 1rem 0;
  }

  .navbar-menu.active {
    display: flex;
  }

  .navbar-item {
    margin: 0.5rem 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .gallery-container,
  .news-container,
  .events-container,
  .courses-container,
  .quick-links-container,
  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* Additional interactive elements */
.hover-zoom {
  transition: transform 0.3s ease;
}

.hover-zoom:hover {
  transform: scale(1.1);
}

.hover-brightness {
  transition: filter 0.3s ease;
}

.hover-brightness:hover {
  filter: brightness(1.2);
}

/* Accent colors */
.accent-primary {
  color: #cfbe2d;
}

.accent-secondary {
  color: #11141c;
}

.accent-tertiary {
  color: #2f679f;
}

/* Background patterns */
.bg-pattern {
  background-image: url('data:image/svg+xml,%3Csvg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%239C92AC" fill-opacity="0.4" fill-rule="evenodd"%3E%3Ccircle cx="3" cy="3" r="3"/%3E%3Ccircle cx="13" cy="13" r="3"/%3E%3C/g%3E%3C/svg%3E');
  background-attachment: fixed;
}

/* Smooth scrolling for internal links */
a[href^="#"] {
  scroll-behavior: smooth;
}

/* Custom bullet points */
ul.custom-bullets {
  list-style: none;
}

ul.custom-bullets li::before {
  content: "\2022";
  color: #2f679f;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(45deg, #030333, #2f679f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; /* Added this line */
}


/* Fancy separators */
.fancy-separator {
  height: 2px;
  background: linear-gradient(to right, transparent, #030333, transparent);
  margin: 2rem 0;
}

/* Animated background */
@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.animated-bg {
  background: linear-gradient(-45deg, #030333, #11141c, #2f679f, #cfbe2d);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
}

/* Accessibility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Print styles */
@media print {
  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }

  .no-print {
    display: none;
  }

  a {
    text-decoration: none;
    color: #000;
  }

  .container {
    width: 100%;
    max-width: none;
  }
}

/* Additional responsive adjustments */
@media screen and (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .btn {
    padding: 0.6rem 1.2rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section {
    padding: 2rem 0;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  body {
    background: #fff;
    color: #000;
  }

  a {
    color: #00f;
  }

  .btn {
    background-color: #000;
    color: #fff;
  }

  .glass-effect {
    background: #fff;
    border: 1px solid #000;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

  /* Add custom styles for the carousel */
  /* .carousel {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .carousel-slide {
    min-width: 100%;
    transition: opacity 1s ease-in-out;
  }

  .carousel img {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }

  .carousel-prev,
  .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(3, 3, 51, 0.7);
    border: none;
    padding: 1rem;
    color: #fff;
    cursor: pointer;
  }

  .carousel-prev {
    left: 10px;
  }

  .carousel-next {
    right: 10px;
  } */