/* Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}




/* Hero Section */
.hero {
  background-image: url('../images/hero.jpeg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero-text {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  z-index: 1;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-button {
  background-color: #18bc9c;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  font-size: 1rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #128f76;
}

/* Features Section */
.features {
  width: 100%;
  background-color: #f9f9f9;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Container for rotating cards */
.feature-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  width: 100%;
}

/* Each individual service card */
.feature {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex: 0 1 30%;
  min-width: 300px;
  text-align: left;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* Image inside feature */
.feature img {
  width: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.feature img.fade-in {
  opacity: 1;
}

/* Text content inside card */
.feature h2 {
  font-size: 1.25rem;
  margin: 1rem 1rem 0.5rem 1rem;
  color: #2c3e50;
}

.feature p {
  font-size: 1rem;
  margin: 0 1rem 1.2rem 1rem;
  color: #555;
  line-height: 1.5;
}

/* Make the whole card clickable */
.feature a {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

/* Navigation buttons */
.feature-nav {
  text-align: center;
  margin-top: 1.5rem;
}

.feature-nav button {
  padding: 0.6rem 1.4rem;
  margin: 0 0.5rem;
  font-size: 1.2rem;
  border: none;
  border-radius: 4px;
  background-color: #2c3e50;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.feature-nav button:hover {
  background-color: #18bc9c;
}



.feature-content {
  opacity: 1;
  transition: opacity 0.4s ease;
}

.feature-content.fade-out {
  opacity: 0;
}

.feature-content.fade-in {
  opacity: 1;
}
.offer-highlights {
  padding: 6rem 2rem;
  background: linear-gradient(to bottom right, #f4fcfc, #e6f7f2);
  text-align: center;
}

.offer-highlights h2 {
  font-size: 2.6rem;
  color: #2c3e50;
  margin-bottom: 3rem;
}

.offer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
}

.offer-card {
  position: relative;
  background: white;
  padding: 3rem 2.5rem;
  flex: 1 1 350px;
  max-width: 420px;
  border-radius: 2.5rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.offer-icon {
  width: 140px;
  height: 140px;
  margin: 0 auto 2rem;
}

.offer-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.offer-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  color: #18bc9c;
}

.offer-card p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .offer-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}





/* About Section */
.about {
  padding: 3rem 2rem;
  background-color: #ecf0f1;
  text-align: center;
}

.about h2 {
  margin-bottom: 1rem;
  color: #2c3e50;
}



/* Responsive */
@media (max-width: 768px) {


  .hero h1 {
    font-size: 2rem;
  }

  .features {
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .cta-button {
    width: 100%;
    display: inline-block;
    margin-top: 1rem;
  }
  .feature-container {
    flex-direction: column;
    align-items: center;
  }
}