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

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

.text-gradient {
  background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navbar */
.navbar {
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.img-landing {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-link {
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #3b82f6 !important;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-top: 56px;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

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

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
  display: flex;
  align-items: center;
}

.slide-content {
  color: white;
  max-width: 700px;
  padding: 0 50px;
}

.slide-category {
  display: inline-block;
  background: rgba(102, 126, 234, 0.9);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.slide-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.slide-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.slider-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

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

.slider-dot.active {
  background: white;
  width: 40px;
  border-radius: 6px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}

.slider-arrow:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
  left: 30px;
}

.slider-arrow.next {
  right: 30px;
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  font-size: 1.1rem;
  color: #6c757d;
}

/* Activities Section */
.activity-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

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

.activity-img {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.activity-date {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  padding: 10px 15px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.activity-date .day {
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
}

.activity-date .month {
  font-size: 0.9rem;
  color: #6c757d;
}

.activity-content {
  padding: 25px;
}

/* Structure Section - Ormawa Slider */
.structure-section {
  background: #f8f9fa;
}

.ormawa-slider-container {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.ormawa-slider-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}

.ormawa-slide {
  min-width: 100%;
  display: flex;
  gap: 30px;
  padding: 0 15px;
}

.ormawa-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ormawa-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.ormawa-logo {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.ormawa-logo img {
  max-width: 150px;
  max-height: 150px;
  object-fit: contain;
}

.ormawa-content {
  padding: 25px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.ormawa-title {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
}

.ormawa-description {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.ormawa-card .btn {
  width: 100%;
  padding: 10px 20px;
  font-weight: 500;
}

.ormawa-slider-controls {
  text-align: center;
  margin-top: 30px;
}

.ormawa-arrow {
  background: white;
  border: 2px solid #3b82f6;
  color: #3b82f6;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  margin: 0 10px;
}

.ormawa-arrow:hover {
  background: #3b82f6;
  color: white;
  transform: scale(1.1);
}

.ormawa-dots {
  display: inline-flex;
  gap: 10px;
  margin: 0 20px;
  align-items: center;
}

.ormawa-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s;
}

.ormawa-dot.active {
  background: #3b82f6;
  width: 30px;
  border-radius: 5px;
}

/* Contact Section - Professional Style */
.contact-section {
  background: #f7f9fc;
  position: relative;
  overflow: hidden;
}

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

.contact-section .section-title h2 {
  color: #0f172a;
  font-weight: 700;
}

.contact-section .section-title p {
  color: #475569;
  font-weight: 500;
}

/* Override inline text-white classes */
.contact-section .text-white {
  color: #0f172a !important;
}

.contact-section .text-white-50 {
  color: #475569 !important;
}

.contact-card {
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 8px;
  border: 1px solid #e1e8ed;
  transition: all 0.25s ease;
  height: 100%;
  position: relative;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.contact-icon {
  font-size: 2.25rem;
  margin-bottom: 18px;
  color: #3b82f6;
  transition: color 0.25s ease;
  display: inline-block;
}

.contact-card:hover .contact-icon {
  color: #2563eb;
}

.contact-card h5 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.contact-card p {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Map/Additional Info Section (Optional Enhancement) */
.contact-info-wrapper {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  border: 1px solid #e2e8f0;
  margin-top: 40px;
}

.contact-info-wrapper h4 {
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px;
  background: #f8fafc;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.info-item:hover {
  background: #f1f5f9;
  transform: translateX(5px);
}

.info-item i {
  color: #3b82f6;
  font-size: 1.3rem;
  margin-right: 15px;
  margin-top: 3px;
}

.info-item-content h6 {
  color: #334155;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.info-item-content p {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Footer */
.footer {
  background: #1a1a2e;
  color: white;
  padding: 60px 0 20px;
}

.footer-title {
  color: #3b82f6;
  font-weight: 600;
  margin-bottom: 20px;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(59, 130, 246, 0.2);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: white;
  margin-right: 10px;
  transition: all 0.3s;
}

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

/* Responsive */
@media (max-width: 768px) {
  .hero-slider {
    height: 70vh;
  }

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

  .slide-content {
    padding: 0 20px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
  }

  .img-landing {
    width: 35px;
    height: 35px;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }

  .ormawa-slide {
    flex-direction: column;
  }

  .ormawa-card {
    min-width: 100%;
  }

  .contact-card {
    margin-bottom: 20px;
  }
  
  .contact-icon {
    font-size: 2rem;
  }
  
  .contact-info-wrapper {
    padding: 25px;
  }
}