
/* ====== Base Styles ====== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
  transition: background 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4 {
  color: #004c99;
  margin-bottom: 1rem;
}

ul {
  list-style: none;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ====== Navbar ====== */
nav {
  position: sticky;
  top: 0;
  background-color: #004c99;
  padding: 1rem;
  z-index: 1000;
}

nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

nav ul li a {
  color: white;
  padding: 0.5rem 1rem;
  transition: background 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  background-color: #ff9900;
  border-radius: 4px;
}

/* ====== Hero Section ====== */
.slideshow-container {
  position: relative;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
  height: 100vh; /* Adjust height as needed */
}

.mySlides {
  display: none; /* Hides all slides by default */
}

.hero {
  text-align: center;
  padding: 10rem 10rem;
  background-size: cover;
  background-position: center;
  color: white;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 2.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

.hero2 {
  text-align: center;
  padding: 10rem 10rem;
  background: url('../images/image1.jpg') center/cover no-repeat;
  color: white;
}

.cta-button {
  background-color: #ff9900;
  padding: 0.75rem 1.5rem;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cta-button2 {
  background-color: #ff9900;
  padding: 0.25rem 1.5rem;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cta-button2:hover {
  background-color: #e68a00;
}

.cta-button:hover {
  background-color:#e68a00;
}

/* ====== Page Headers ====== */
.page-header {
  text-align: center;
  padding: 3rem 1rem;
  background-color: #eaeaea;
}

/* ====== Sections ====== */
section {
  padding: 2rem 1rem;
  max-width: 1000px;
  margin: auto;
}

/* ====== Stats Counters ====== */
.stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 2rem;
  flex-wrap: wrap;
  text-align: center;
}

.counter {
  font-weight: bold;
  color: #004c99;
}

/* ====== Services ====== */
.services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.service-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  max-width: 300px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card i {
  color: #004c99;
  margin-bottom: 1rem;
}

.service-card ul {
  text-align: left;
  margin-top: 1rem;
  padding-left: 1.2rem;
  list-style-type: disc;
}

.service-card h4 {
  margin-top: 1rem;
  font-size: 1rem;
  color: #004c99;
}

/* ====== Testimonials ====== */
.swiper {
  max-width: 600px;
  margin: auto;
  padding: 2rem 0;
}

.swiper-slide {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  font-style: italic;
}

/* ====== Contact Info ====== */
.contact-info p {
  margin: 0.5rem 0;
  font-size: 1rem;
}

.contact-info i {
  color: #004c99;
  margin-right: 0.5rem;
}

/* ====== Map ====== */
#map {
  height: 300px;
  margin-top: 1rem;
  border-radius: 8px;
}

/* ====== Forms with Floating Labels ====== */
.contact-form form,
#membershipForm {
  max-width: 600px;
  margin: 2rem auto;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  position: relative;
}

.form-group {
  position: relative;
  margin-bottom: 2rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 1.5rem 1rem 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  background: transparent;
  outline: none;
}

label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: #666;
  font-size: 0.9rem;
  pointer-events: none;
  transition: 0.3s ease all;
  background: white;
  padding: 0 0.25rem;
}

input:focus + label,
textarea:focus + label,
input:not(:placeholder-shown) + label,
textarea:not(:placeholder-shown) + label {
  top: -0.6rem;
  left: 0.8rem;
  font-size: 0.75rem;
  color: #004c99;
}

select {
  padding: 1rem;
  background-color: white;
}

#formStatus {
  text-align: center;
  font-weight: bold;
  margin-top: 1rem;
}

/* ====== Footer ====== */
footer {
  text-align: center;
  padding: 1rem;
  background-color: #004c99;
  color: white;
}

/* ====== Dark Mode ====== */
.dark-mode {
  background-color: #121212;
  color: #eaeaea;
}

.dark-mode nav {
  background-color: #1f1f1f;
}

.dark-mode.service-card,
.dark-mode.swiper-slide,
.dark-mode.contact-form form {
  background-color: #1f1f1f;
  color: #eaeaea;
}

.dark-mode label {
  background-color: #121212;
  color: #ccc;
}

/* ====== Responsive Design ====== */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
}

.services-list {
    flex-direction: column;
    align-items: center;
}

.stats {
    flex-direction: column;
}

.cta-button {
    width: 100%;
    text-align: center;
}
}#about-livcci {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  margin-top: 2rem;
}

#about-livcci h2, h3 {
  color: #004c99;
  margin-bottom: 1rem;
}

#about-livcci p {
  margin-bottom: 1rem;
}

.objectives-list {
  padding-left: 1rem;
  list-style: none;
}

.objectives-list li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.objectives-list i {
  color: #ff9900;
  margin-right: 0.5rem;
}
