/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: #f9f9f9;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #2c5364, #203a43, #0f2027);
  color: #fff;
  padding: 150px 0;
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 10px;
}

.hero-description {
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 30px;
}

.hero-button {
  background: #fff;
  color: #2c5364;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}

.hero-button:hover {
  background: #2c5364;
  color: #fff;
  border: 2px solid #fff;
}

/* Services Section */
.services-section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.section-description {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding: 30px 20px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-icon {
  font-size: 2.5rem;
  color: #2c5364;
  margin-bottom: 20px;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.service-description {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

.service-link {
  text-decoration: none;
  color: #2c5364;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.service-link:hover {
  color: #203a43;
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(135deg, #2c5364, #203a43);
  color: #fff;
  padding: 80px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-text {
  font-size: 1rem;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.author-name {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.author-role {
  font-size: 0.9rem;
  color: #ddd;
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Events Section */
.events-section {
  background: #f9f9f9;
  padding: 80px 0;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.event-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-10px);
}

.event-date {
  text-align: center;
  background: #2c5364;
  color: #fff;
  padding: 10px;
  border-radius: 10px;
}

.event-day {
  font-size: 2rem;
  font-weight: 600;
}

.event-month {
  font-size: 1rem;
}

.event-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.event-description {
  font-size: 0.9rem;
  color: #666;
}

.event-link {
  text-decoration: none;
  color: #2c5364;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.event-link:hover {
  color: #203a43;
}

/* Footer Section */
.footer-section {
  background: #2c5364;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer-description {
  font-size: 0.9rem;
  color: #ddd;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #ddd;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #fff;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #ddd;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #ddd;
}