* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #ffffff;
  color: #1e293b;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  border-radius: 12px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 10%;
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0ea5e9;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  margin-right: 8px;
}

.navbar nav a {
  margin-left: 20px;
  font-weight: 500;
}

.navbar .btn {
  background: #0ea5e9;
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
}

.hero {
  padding: 100px 10%;
  text-align: center;
  background: #ffffff;
  color: black;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero .highlight {
  color: #38bdf8;
}

.hero p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: black;
}

.cta {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn.green {
  background-color:black ;
  color: #ffffff;
}

.btn.green:hover {
  background-color: #0ea5e9;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .cta {
    flex-direction: column;
    gap: 12px;
  }
}

.info {
  padding: 80px 10%;
  background-color: white;
  color: black;
  text-align: center;
}

.info-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.info-box {
  flex: 1 1 300px;
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.info-box h3 {
  color: black;
  margin-bottom: 10px;
}

.info-box p {
  color: black;
  line-height: 1.6;
}


/* about.css */
.about {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 60px 10%;
  align-items: center;
  background: #fff;
}

.about .text {
  flex: 1;
  min-width: 300px;
  margin-right: 40px;
}

.about .image {
  flex: 1;
  min-width: 300px;
}

.team {
  padding: 60px 10%;
  background-color: white;
  text-align: center;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
  width: 200px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
}


footer {
  background-color: #0f172a;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.about-page {
  padding: 60px 10%;
  background-color: #ffffff;
  color: #1e293b;
  line-height: 1.8;
}

.about-page h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: black;
}

.about-page h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 16px;
  color: black;
}

.about-page p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: justify;
}

.about-page ul {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.about-image {
  text-align: center;
  margin: 40px 0;
}

.about-image img {
  max-width: 100%;
  width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* our-team.css */
.member {
  background-color: #1e293b;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  max-width: 250px;
  width: 100%;
}

.member:hover {
  transform: translateY(-8px);
}

.member img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.member h3 {
  margin: 0;
  font-size: 1.2rem;
  color: white;
}

.member p {
  font-size: 0.95rem;
  color: #e2e8f0;
}

/* PROJECTS SECTION */
.projects {
  padding: 100px 10%;
  background-color: white;
  color: #f8fafc;
  text-align: center;
}

.projects h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: black;
}

.projects h1 {
  font-size: 1rem;
  margin-bottom: 40px;
  color: black;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.project-card {
  background-color: white;
  padding: 20px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.project-card h3 {
  font-size: 1.25rem;
  color: black;
  margin-bottom: 10px;
}

.project-card p {
  font-size: 0.95rem;
  color: black;
  line-height: 1.5;
}



.contact-page {
  padding: 100px 10%;
  background-color: white;
  color: black;
  text-align: center;
}

.contact-page h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: black;
}

.contact-page p {
  font-size: 1rem;
  margin-bottom: 40px;
  color: black;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.contact-form, .contact-info {
  flex: 1;
  min-width: 280px;
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 20px;
  padding: 12px;
  border-radius: 6px;
  border: none;
  color: black;
  font-size: 1rem;
}

.contact-form textarea {
  height: 120px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: black;
}

.contact-info h3 {
  margin-bottom: 15px;
  color: black;
}

.contact-info p {
  margin: 10px 0;
  color: black;
}

