/* style.css */
h1{
  font-size: 2.5rem;
}
p{
  font-size: 1rem;
}
:root {
    --green: #2e8b57;
  }
  
/* Navbar Custom Styles */
.navbar-custom {
  background-color: #5d175d;
  transition: background-color 0.3s ease;
}
.navbar-custom .nav-link {
  color: white;
  transition: color 0.3s ease;
}
.navbar-custom .nav-link:hover {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background-color: white;
  color: var(--green) !important
}
.navbar-custom .btn-outline-light {
  border-color: white;
}
.navbar-custom .btn-outline-light:hover {
  background-color: #ffc107;
  color: #5d175d;
  border-color: #ffc107;
}
.navbar-custom .nav-link.active {
  background-color: white;
  color: var(--green) !important;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
/* Admin Board Section */
.admin-board {
  background-color: #f5f9ff;
  padding: 60px 20px;
}

.admin-board h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #004080;
}

.admin-card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.admin-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.admin-card img {
  border-radius: 50%;
  width: 140px;
  height: 140px;
  object-fit: cover;
  margin-bottom: 15px;
  border: 4px solid #004080;
}

.admin-card h5 {
  font-weight: 700;
  color: #004080;
}

.admin-card p {
  color: #555;
  font-size: 0.95rem;
}

/* Hero Section Styles */
.hero-section {
  background: url('../images/hero-image.jpg') center center/cover no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-section .overlay {
  background: rgba(93, 23, 93, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  color:white;  
}

/* Carousel Layout */
.carousel-inner .carousel-item {
  display: none;
}
.carousel-inner .carousel-item.active {
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: all 0.5s ease-in-out;
}

.carousel-inner .text {
  flex: 1;
  animation: fadeInLeft 1s ease-in-out;
}
.carousel-inner .text h1 {
  font-size: 3rem;
  font-weight: bold;
}
.carousel-inner .text p {
  font-size: 1.1rem;
}
.carousel-inner .image {
  flex: 1;
  animation: fadeInRight 1s ease-in-out;
}
.carousel-inner .image img {
  max-width: 100%;
  border-radius: 1.5rem;
  width: 400px;
  height: auto;
}
.contact-section h1 {
  color: #004080;
  font-weight: bold;
}

.contact-section h4, .contact-section h5 {
  color: #004080;
  margin-top: 20px;
}

.contact-section p, .contact-section label {
  font-size: 1rem;
}

.contact-section .form-control {
  border-radius: 8px;
}

.contact-section .btn-primary {
  background-color: #004080;
  border: none;
  border-radius: 8px;
}

/* Responsive for Small Screens */
@media (max-width: 768px) {
  .carousel-inner .carousel-item {
    flex-direction: column;
    text-align: center;
  }
}

/* Animations */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

  
  .footer {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/footer-bg.jpg') no-repeat center center/cover;
    color: #ccc;
    padding: 40px 0;
  }
  
  .footer h5 {
    color: white;
  }
  
  .footer a {
    text-decoration: none;
    color: #ccc;
  }
  
  .footer a:hover {
    color: white;
    text-decoration: underline;
  }

.intro-text {
  text-align: center;
  margin-bottom: 40px;
}

.owl-carousel .item {
  padding: 10px;
}

.owl-carousel img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

  /* Shadow effect when navbar is scrolled */
.navbar-custom.navbar-scrolled {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

  
