/* Base Styles */
:root {
  --primary-color: #013399; /* Deep blue from logo */
  --secondary-color: #01a2d3; /* Bright blue/cyan from logo */
  --accent-color: #010066; /* Navy blue from logo */
  --light-color: #ffffff;
  --dark-color: #333333;
  --gray-color: #f5f7fa;
  --text-color: #444444;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(1, 51, 153, 0.15);
  --transition: all 0.3s ease;
  --gradient-blue: linear-gradient(135deg, #013399, #01a2d3);
}

* {
  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);
  background-color: var(--light-color);
}

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

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

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

ul {
  list-style: none;
}

.btn {
  display: inline-block;
  background: var(--gradient-blue);
  color: var(--light-color);
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(1, 51, 153, 0.3);
}

.btn:hover {
  background: var(--accent-color);
  color: var(--light-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(1, 51, 153, 0.4);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-blue);
  border-radius: 2px;
}

/* Header Styles */
header {
  background-color: var(--light-color);
  box-shadow: 0 2px 10px rgba(1, 51, 153, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 60px;
  height: 60px;
  margin-right: 15px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.1);
}

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

nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
}

.nav-links li {
  margin-left: 25px;
}

.nav-links a {
  color: var(--dark-color);
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 3px 0;
  transition: var(--transition);
}

/* Hero Section with Slider */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 800px;
  overflow: hidden;
  color: var(--light-color);
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

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

.hero .container {
  position: relative;
  z-index: 4;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 500;
  color: var(--secondary-color);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-controls {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.hero-control {
  background-color: rgba(255, 255, 255, 0.3);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0 10px;
  transition: var(--transition);
}

.hero-control:hover {
  background-color: var(--secondary-color);
}

.hero-dots {
  display: flex;
  margin: 0 15px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background-color: var(--secondary-color);
  transform: scale(1.2);
}

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

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  position: relative;
}

.about-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(1, 162, 211, 0.1), rgba(1, 51, 153, 0.1));
  pointer-events: none;
}

.about-text {
  flex: 1;
}

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

.about-text p {
  margin-bottom: 20px;
}

.about-features {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.feature {
  text-align: center;
  padding: 15px;
}

.feature i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.feature h4 {
  font-size: 1.1rem;
  color: var(--primary-color);
}

/* Programs Section */
.programs {
  padding: 100px 0;
  background: linear-gradient(to bottom, #fff, #f5f7fa);
}

.program-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.program-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.program-card:hover {
  transform: translateY(-10px);
  border-bottom: 3px solid var(--secondary-color);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.card-icon i {
  font-size: 2rem;
  color: var(--light-color);
}

.program-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.program-card p {
  color: var(--text-color);
}

/* Facilities Section */
.facilities {
  padding: 100px 0;
  background-color: var(--gray-color);
}

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

.facility {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
}

.facility:hover {
  transform: translateY(-10px);
}

.facility img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.facility h3 {
  font-size: 1.3rem;
  margin: 15px;
  color: var(--primary-color);
}

.facility p {
  padding: 0 15px 15px;
  color: var(--text-color);
}

.facility::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.facility:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(to bottom, #f5f7fa, #fff);
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial {
  display: none;
  animation: fadeEffect 1s;
}

.testimonial.active {
  display: block;
}

@keyframes fadeEffect {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

.testimonial-content {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  position: relative;
  border-left: 4px solid var(--secondary-color);
}

.testimonial-content::before {
  content: "\201C";
  font-size: 5rem;
  color: var(--secondary-color);
  opacity: 0.2;
  position: absolute;
  top: -20px;
  left: 20px;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.testimonial-author h4 {
  color: var(--primary-color);
  margin-bottom: 5px;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.prev-btn,
.next-btn {
  background-color: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
  padding: 0 15px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  margin: 0 15px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--secondary-color);
}

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

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-top: 5px;
}

.info-item h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.map {
  margin-top: 20px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  border: 3px solid rgba(1, 51, 153, 0.1);
}

.contact-form {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: var(--primary-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(1, 162, 211, 0.1);
}

/* Footer */
footer {
  background: linear-gradient(to right, var(--accent-color), var(--primary-color));
  color: var(--light-color);
  padding: 70px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.footer-logo h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--light-color);
}

.footer-logo .tagline {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.footer-logo .footer-address {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
  line-height: 1.5;
  margin-bottom: 15px;
}

.footer-links h4,
.footer-social h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--light-color);
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after,
.footer-social h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--secondary-color);
}

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

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--light-color);
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
}

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

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
  color: var(--secondary-color);
  font-weight: 500;
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--light-color);
  text-decoration: underline;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.whatsapp-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.whatsapp-button a i {
  font-size: 2.5rem;
}

.whatsapp-button a:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}

/* Add animation for the WhatsApp button */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-button a {
  animation: pulse 2s infinite;
}

@media (max-width: 576px) {
  .whatsapp-button {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-button a {
    width: 50px;
    height: 50px;
  }

  .whatsapp-button a i {
    font-size: 2rem;
  }
}

/* Gallery Section */
.gallery {
  padding: 100px 0;
  background: linear-gradient(to bottom, #fff, #f5f7fa);
}

/* Featured Gallery Slider */
.gallery-featured {
  position: relative;
  margin-bottom: 50px;
  overflow: hidden;
}

.gallery-featured-container {
  width: 100%;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.gallery-featured-track {
  display: flex;
  transition: transform 0.5s ease;
}

.featured-item {
  min-width: 100%;
  height: 500px;
  position: relative;
}

.featured-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(1, 0, 102, 0.1), rgba(1, 51, 153, 0.1));
  pointer-events: none;
}

.featured-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--primary-color);
  transition: var(--transition);
  z-index: 10;
}

.gallery-nav:hover {
  background-color: var(--secondary-color);
  color: white;
}

.gallery-nav.prev-btn {
  left: 20px;
}

.gallery-nav.next-btn {
  right: 20px;
}

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

.gallery-item {
  position: relative;
  height: 250px;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--box-shadow);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(1, 0, 102, 0.5), rgba(1, 51, 153, 0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-overlay i {
  color: white;
  font-size: 2rem;
}

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 0, 102, 0.95);
  z-index: 2000;
  overflow: hidden;
}

.lightbox-content {
  position: relative;
  width: 80%;
  max-width: 1200px;
  height: 80%;
  margin: 5% auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90%;
  object-fit: contain;
  box-shadow: 0 0 30px rgba(1, 162, 211, 0.3);
}

#lightbox-caption {
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 1.2rem;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2001;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 15px;
  z-index: 2001;
  transition: var(--transition);
}

.lightbox-nav:hover {
  color: var(--secondary-color);
}

.lightbox-nav.prev {
  left: 20px;
}

.lightbox-nav.next {
  right: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }

  .about-image,
  .about-text {
    width: 100%;
  }

  .hero h2 {
    font-size: 2.5rem;
  }

  .hero h3 {
    font-size: 1.5rem;
  }

  .hero {
    height: 80vh;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--light-color);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
    transition: var(--transition);
    z-index: 999;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

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

  .hero {
    height: 70vh;
    min-height: 500px;
  }

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

  .hero h3 {
    font-size: 1.3rem;
  }

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

  .about-features {
    flex-direction: column;
    gap: 20px;
  }

  .hero-controls {
    bottom: 15px;
  }

  .hero-control {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 576px) {
  .logo h1 {
    font-size: 1.2rem;
  }

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

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

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

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

  .footer-links h4::after,
  .footer-social h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

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

  .hero {
    height: 60vh;
    min-height: 400px;
  }

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

  .hero h3 {
    font-size: 1.1rem;
  }

  .hero-controls {
    bottom: 10px;
  }

  .hero-control {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .hero-dot {
    width: 8px;
    height: 8px;
    margin: 0 3px;
  }
}

@media (max-width: 992px) {
  .featured-item {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .featured-item {
    height: 300px;
  }

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

  .gallery-item {
    height: 200px;
  }

  .lightbox-content {
    width: 90%;
    height: 80%;
  }
}

@media (max-width: 576px) {
  .featured-item {
    height: 250px;
  }

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

  .gallery-item {
    height: 150px;
  }

  .gallery-nav {
    width: 40px;
    height: 40px;
  }

  .lightbox-nav {
    font-size: 1.5rem;
  }
}

/* Add specific styles for 360x740 resolution */
@media screen and (max-width: 360px) and (max-height: 740px) {
  /* Header adjustments */
  .logo h1 {
    font-size: 1rem;
  }

  /* Hero section adjustments */
  .hero h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .hero h3 {
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .hero p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  /* Contact form adjustments */
  .contact-form h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .form-group label {
    font-size: 0.9rem;
    margin-bottom: 3px;
  }

  .form-group input,
  .form-group textarea {
    padding: 8px;
    font-size: 0.9rem;
  }

  /* General text adjustments */
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  /* Footer adjustments */
  .footer-logo h3 {
    font-size: 1.1rem;
  }

  .footer-logo .tagline {
    font-size: 0.9rem;
  }

  .footer-logo .footer-address {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .footer-links h4,
  .footer-social h4 {
    font-size: 1rem;
    margin-bottom: 15px;
  }

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

  /* Increase spacing between sections */
  .about,
  .programs,
  .facilities,
  .testimonials,
  .contact,
  .gallery {
    padding: 50px 0;
  }

  /* Adjust container padding */
  .container {
    padding: 0 10px;
  }
}


/* Achievers Section */
.achievers {
    padding: 80px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.achievers .section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #013399;
    font-size: 2.5rem;
    font-weight: 700;
}

.achievers-slider {
    overflow: hidden;
    width: 100%;
}

.achievers-track {
    display: flex;
    gap: 30px;
    width: calc(280px * 12 + 30px * 11); /* Width for 6 cards * 2 sets */
    animation: scroll 20s linear infinite;
}

.achiever-card {
    flex: 0 0 280px;
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.achiever-card:hover {
    transform: translateY(-10px);
}

.achiever-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #013399;
}

.achiever-card h3 {
    color: #013399;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.achiever-card p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-280px * 6 - 30px * 5));
    }
}

/* Responsive */
@media (max-width: 768px) {
    .achievers {
        padding: 60px 0;
    }
    
    .achiever-card {
        flex: 0 0 250px;
        padding: 25px 20px;
    }
    
    .achiever-card img {
        width: 80px;
        height: 80px;
    }
    
    .achiever-card h3 {
        font-size: 1.1rem;
    }
    
    .achievers-track {
        width: calc(250px * 12 + 30px * 11);
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-250px * 6 - 30px * 5));
        }
    }
}

/* Study Room Seat Availability Styles */
.seat-availability {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
}

.seat-status-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0 40px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #333;
}

.seat-legend {
    width: 25px;
    height: 25px;
    border-radius: 6px 6px 0 0;
    display: inline-block;
    border: 2px solid rgba(0,0,0,0.1);
}

.seat-legend.available {
    background-color: #4CAF50;
}

.seat-legend.booked {
    background-color: #757575;
}

/* Seat Container for slots visualisation*/
.seat-container {
    display: grid;
    gap: 8px;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.seat {
    width: 45px;
    height: 45px;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.seat:hover::before {
    left: 100%;
}

.seat.available {
    background: linear-gradient(145deg, #4CAF50, #45a049);
    color: white;
    box-shadow: 0 3px 8px rgba(76, 175, 80, 0.3);
}

.seat.booked {
    background: linear-gradient(145deg, #757575, #616161);
    color: white;
    cursor: not-allowed;
    box-shadow: 0 3px 8px rgba(117, 117, 117, 0.3);
}

.seat:hover.available {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.4);
}

.seat:hover.booked {
    transform: translateY(-1px);
}

/* Seat Controls */
.seat-controls {
    text-align: center;
    margin-top: 30px;
}

.refresh-btn {
    background: linear-gradient(145deg, #2196F3, #1976D2);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.refresh-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
    background: linear-gradient(145deg, #1976D2, #1565C0);
}

.refresh-btn i {
    margin-right: 8px;
}

/* Loading and Error States */
.seat-container .no-data, 
.seat-container .error {
    grid-column: 1 / -1;
    padding: 40px;
    text-align: center;
    color: #666;
    font-style: italic;
    background: #f5f5f5;
    border-radius: 10px;
    margin: 20px 0;
}

.seat-container .error {
    color: #f44336;
    background: #ffebee;
}

/* Responsive Design */
@media (max-width: 768px) {
    .seat-availability {
        padding: 60px 0;
    }
    
    .seat-status-info {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .status-item {
        justify-content: center;
    }
    
    .seat {
        width: 35px;
        height: 35px;
        font-size: 10px;
    }
    
    .seat-container {
        gap: 6px;
        padding: 20px;
    }
    
    .refresh-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .seat {
        width: 30px;
        height: 30px;
        font-size: 9px;
    }
    
    .seat-container {
        gap: 4px;
        padding: 15px;
    }
}

