* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f8f9fb;
  color: #333;
  line-height: 1.6;
}

/* Container */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header & Navigation */
header {
  background: #2c3e50;
  color: white;
  padding: 20px 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav h2 {
  font-size: 1.8rem;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #00adb5;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #00adb5, #16a085);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
}

.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 25px;
  background: white;
  color: #16a085;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #2c3e50;
  color: white;
}

/* Section Styling */
.section {
  padding: 60px 0;
}

.section h2 {
  margin-bottom: 25px;
  font-size: 2rem;
  color: #2c3e50;
}

/* Cards / Grid Layout */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
  text-align: left;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.card h3 {
  margin-bottom: 10px;
  color: #16a085;
}

.card:hover {
  transform: translateY(-5px);
}

/* Lists inside cards */
.card ul {
  margin-left: 20px;
  list-style: disc;
}

.card ul li {
  margin-bottom: 8px;
}

/* Footer */
footer {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
  }

  nav ul {
    flex-direction: column;
    margin-top: 10px;
  }

  nav ul li {
    margin: 10px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }
}

p,
li {
  font-size: 20px; /* makes paragraphs bigger */
  line-height: 1.6; /* improves readability */
  margin-bottom: 20px;
}

/* Contact Layout */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info p {
  margin-bottom: 15px;
}

/* Form Styling */
.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #16a085;
  box-shadow: 0 0 0 2px rgba(22, 160, 133, 0.2);
}

.btn-submit {
  padding: 14px;
  background: #16a085;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #2c3e50;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.content-row {
  display: flex !important;
  align-items: flex-start;
  gap: 40px;
}

.text {
  flex: 1;
}

.image-group {
  width: 300px;
}

.image-group img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 135px;
}
.logo {
  height: 60px; /* controls size */
  width: auto; /* keeps it horizontal */
  border-radius: 12px; /* rounds edges */
  object-fit: cover; /* ensures clean scaling */
}

.logo {
  height: 90px; /* bigger and more visible */
  width: auto;
  border-radius: 12px;
  object-fit: contain;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center; /* centers items vertically */
}
nav ul li {
  margin-left: 25px;
  display: flex;
  align-items: center;
}

.logo {
  display: block;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(6px);
}
.logo {
  height: 90px;
  width: auto;
  border-radius: 12px;
  object-fit: contain;
  display: block;
  transform: translateY(-6px);
}
