/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base */
body {
  font-family: "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #1C1C1C;
  background-color: #FFFFFF;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

nav .logo {
  color: #109DFF;
  font-weight: bold;
  font-size: 2rem;
  padding-top: 2rem;
  text-align: center;
}

/* Hero Section */
.hero {
  background-color: #FFFFFF;
  padding-top: 6rem;
}

.hero-background {
  background: url('assets/asset.png') no-repeat center/cover;
  color: white;
  padding: 4rem 2rem;
  padding-left: 10%;
  padding-right: 10%;
  position: relative;
  text-align: center;
}

.hero-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 24px;
  margin-bottom: 1rem;
}

.cta-button {
  background: #109DFF;
  color: white;
  padding: 0.8rem 1.6rem;
  font-size: 18px;
  border-radius: 8px;
  text-decoration: none;
}

/* Sections */
.section {
  padding: 4rem 2rem;
  max-width: 1000px;
  text-align: center;
}

.section h2 {
  font-size: 36px;
  margin-bottom: 1.5rem;
  color: #109DFF;
  text-align: center;
}

.section:nth-child(even) {
  background-color: #F2F2F2;
}

.section:nth-child(odd) {
  background-color: #FFFFFF;
}

#services {
  background-color: #E4F3FF;
}

/* About Us */
.about-card {
  background-color: #FFFFFF;
  border: 1px solid #E4F3FF;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.about-card .core-values {
  list-style: none;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.6;
}

.about-card .core-values li {
  margin-bottom: 0.5rem;
}

/* Cards */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.card {
  background: #FFFFFF;
  border: 1px solid #E4F3FF;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  padding: 2rem;
  flex: 1 1 280px;
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card .icon {
  width: 32px;
  height: 32px;
  margin-bottom: 1rem;
  fill: #109DFF;
}


/* Contact */
.contact-card {
  background-color: #FFFFFF;
  border: 1px solid #E4F3FF;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  font-size: 18px;
  line-height: 1.8;
}

.contact-card a {
  color: #109DFF;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

input, textarea {
  padding: 0.8rem;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background: #109DFF;
  color: white;
  padding: 0.8rem;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background: #0c86d3;
}
nav .logo img {
  height: 100%;
  vertical-align: middle;
}
/* Footer */
footer {
  background: #F2F2F2;
  padding: 1rem;
  text-align: center;
  font-size: 14px;
}
