/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #f0f0f3;
  color: #333;
  text-align: center;
}

/* Header Section */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: #ffffff;
  box-shadow: 4px 4px 10px #cfcfcf, -4px -4px 10px #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2c3e50;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin: 0 20px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
  color: #e74c3c;
}

.cta-button {
  padding: 10px 20px;
  background: #e74c3c;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 3px 3px 6px #cfcfcf, -3px -3px 6px #ffffff;
  transition: 0.3s;
}

.cta-button:hover {
  background: #c0392b;
}

/* Hero Section */
.hero-section {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(/PICS/pexels-shottrotter-1309766.jpg) center/cover no-repeat;
}

.hero-content h3 {
  font-size: 2.5rem;
  color: rgb(238, 238, 238);
  text-shadow: 2px 2px 5px rgba(0,0,0,0.9);
}

.highlight-red {
  color: #e74c3c;
}

.highlight-yellow {
  color: #f1c40f;
}

.hero-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #f1c40f;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 3px 3px 6px #cfcfcf, -3px -3px 6px #ffffff;
  transition: 0.3s;
}

.hero-button:hover {
  background: #d4ac0d;
}

/* Welcome Section */
.welcome-section {
  padding: 50px 20px;
  background: #fff;
  box-shadow: 4px 4px 10px #cfcfcf, -4px -4px 10px #ffffff;
  margin: 20px;
  border-radius: 10px;
}

/* Services Section */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 50px;
}

.service-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 6px 6px 12px #cfcfcf, -6px -6px 12px #ffffff;
  text-align: center;
  transition: 0.3s;
}

.service-card img {
  width: 100%;
  border-radius: 10px;
}

.service-card h2 {
  margin: 15px 0;
  font-size: 1.5rem;
}

.service-card p {
  color: #777;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* Community Section */
.community-section {
  padding: 40px;
  background: #fff;
  box-shadow: 4px 4px 10px #cfcfcf, -4px -4px 10px #ffffff;
  margin: 20px;
  border-radius: 10px;
}

.community-button {
  padding: 12px 24px;
  background: #27ae60;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 3px 3px 6px #cfcfcf, -3px -3px 6px #ffffff;
  transition: 0.3s;
}

.community-button:hover {
  background: #1e8449;
}

/* Footer Section */
footer {
  padding: 20px;
  background: #2c3e50;
  color: white;
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 600px) {
  .logo{
display: none;  }

.cta-button{
  display: none;
}
header{
  font-size: 12px;
}
ul{
  margin: 0px;
  max-width: 100px;
  
}

}
