body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}
.preliminary-note {
  color: red;
  font-weight: bold;
  text-align: center;
  margin: 1rem 0;
  animation: blink 2s step-start infinite;

}
/* Blink animation */
@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* ===== logo styling ===== */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  gap: 0.75rem; /* spacing between image and text */
}

.logo img {
  width: 60px;   /* adjust size as needed */
  height: 60px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo h1 {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
}

.logo .full-logo {
  font-size: 15px;
  color: #ccc;
}

/* ===== End logo styling ===== */

/* ===== Header Styling ===== */
header {
  background: #0a4344;
  color: #fff;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 2000; /* higher than hero */


}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

header a {
  color: #fff;
  text-decoration: none;
}


.hero {
  background: url('images/welcome.png') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 7rem 2rem;
  position: relative;
}

/* ===== Header Styling End ===== */


/* Optional overlay for better text visibility */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* adjust darkness */
  z-index: 1;
}

/* Ensure text appears above overlay */
.hero h2,
.hero p,
.hero .btn {
  position: relative;
  z-index: 2;
}
.btn {
  background: #fff;
  color: #0073e6;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

section {
  padding: 5rem 2rem;
}

/* .service-list {
  display: flex;
  gap: 2rem;
}

.service {
  background: #f4f4f4;
  padding: 1rem;
  border-radius: 8px;
  flex: 1;
} */
#services {
  background: #f8f9fa;
  padding: 4rem 2rem;
}

#services h2 {
  text-align: center;
  color: #0a4344;
  margin-bottom: 3rem;
  font-size: 2rem;
}

.service-list {
  display: flex;
  gap: 2.5rem;
  flex-wrap: nowrap;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.service {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  flex: 1 1 300px;
  max-width: 380px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 1.5rem;
}

.service-content h3 {
  color: #0a4344;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.service-content h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: #0a4344;
  border-radius: 2px;
}

.service-content p {
  color: #555;
  line-height: 1.6;
  font-size: 1rem;
}

/* Responsive design for services */
@media (max-width: 1024px) {
  .service-list {
    gap: 2rem;
  }
  
  .service {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .service-list {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
  }

  .service {
    width: 100%;
    max-width: none;
    margin: 0 1rem;
  }
  
  #services {
    padding: 3rem 1rem;
  }
  
  .service-content {
    padding: 1.5rem;
  }
}


/* ===== Founders Section ===== */
#founders h2 {
  text-align: center;
  color: #0a4344;
  margin-bottom: 3rem;
  font-size: 2rem;
}

.founders-wrapper {
  width: 100%;
  overflow: hidden;
  margin: 2rem auto;
  padding: 1rem;
  max-width: 1200px;
}

.founders {
  display: flex;
  gap: 2.5rem;
  transition: transform 0.5s ease-in-out;
  margin: 0 auto;
}

.founder {
  text-align: center;
  background: #ffffff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 0 0 300px;
  min-width: 280px;
  margin: 0;
}

.founder:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.founder img {
  width: 220px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  /* border: 4px solid #0a4344; */
  transition: transform 0.3s ease;
}

.founder:hover img {
  transform: scale(1.05);
}

.founder h3 {
  color: #0a4344;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.founder .role {
  color: #666;
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.founder .expertise {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 0 0.5rem;
}

/* Mobile View: Stack founders vertically */
@media (max-width: 768px) {
  .founders-wrapper {
    max-width: 300px;
  }
  .founder {
    flex: 0 0 300px;
  }
}

/* ===== Founder Section End ===== */

footer {
  text-align: center;
  padding: 1rem;
  background: #0a4344;
  color: #fff;
}

.contact-inquiry-container{
  display: flex;
  gap: 2rem;
  flex-direction: row;
}
/* Contact & Inquiry Container */
.contact-inquiry-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
  padding: 3rem 1rem;
  background: #f7f9fb;
  border-top: 2px solid #e5e7eb;
}

/* Contact Section */
#contact {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  background: #ffffff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

#contact h2 {
  text-align: center;
  color: #1e3a8a;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

#contact a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s;
}

#contact a:hover {
  color: #1d4ed8;
}

/* Inquiry Section */
#inquiry {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
  background: #ffffff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#inquiry:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

#inquiry h2 {
  text-align: center;
  color: #1e3a8a;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

/* Inquiry Form Styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0a4344;
  box-shadow: 0 0 6px rgba(37, 99, 235, 0.3);
}

.contact-form textarea {
  resize: none;
  min-height: 100px;
}

/* Submit Button */
.contact-form button {
  padding: 0.8rem;
  background: #0a4344;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #0a4344;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-inquiry-container {
    flex-direction: column;
    align-items: center;
  }

  #contact,
  #inquiry {
    max-width: 90%;
  }
}


/* ====== Header Hamburger Menu ====== */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* Default nav links for desktop */
.nav-links ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

/* Hide nav links on mobile by default */
@media (max-width: 768px) {
  header nav {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

    .menu-toggle {
    display: block;
    margin-left: auto;
    position: relative;
    z-index: 2200;
  }

    .nav-links ul {
    display: none;
    flex-direction: column;
    background-color: #111;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding-top: 80px;
    z-index: 2100;
  }

  .nav-links ul.show {
    display: flex;
  }

  .nav-links ul li {
    margin: 15px 0;
  }

  .nav-links ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
  }

  .nav-links ul li a:hover {
    color: #0073e6;
  }
}


/* ====== End Header Hamburger Menu ====== */

/* ===== Projects Page Styling ===== */
.project-hero {
  background: linear-gradient(rgba(10, 67, 68, 0.9), rgba(10, 67, 68, 0.9)), url('images/welcome.png');
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
}

.project-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.project-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

.projects-section {
  padding: 4rem 2rem;
  background: #f8f9fa;
}

.projects-section h2 {
  text-align: center;
  color: #0a4344;
  margin-bottom: 3rem;
  font-size: 2rem;
}

.project-container {
  max-width: 1200px;
  margin: 0 auto;
}

.project-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.project-flex {
  display: flex;
}

.project-image {

  
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-image img {
  height: auto;
  max-height: 340px;
  min-height: 120px;
  object-fit: cover;
  display: block;
  border-radius: 12px 12px 0 0;
  transition: transform 0.4s cubic-bezier(.4,2,.6,1);
}

.project-card:hover .project-image img {
  transform: scale(1.04);
}

.project-content {
  padding: 2rem 0 0 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
      margin-left: 45px;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.project-card h3 {
  color: #0a4344;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  position: relative;
  padding-bottom: 1rem;
}

.project-card h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 3px;
  background: #0a4344;
  border-radius: 2px;
}

.project-card p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.project-card p:last-child {
  margin-bottom: 0;
}

/* Projects Page Responsive */
@media (max-width: 768px) {
  .project-flex{
    flex-direction: column;
    align-items: center;
  }
  .project-hero {
    padding: 3rem 1rem;
  }

  .project-hero h1 {
    font-size: 2rem;
  }

  .projects-section {
    padding: 3rem 1rem;
  }

  .project-card {
    padding: 1.5rem;
    min-width: 0;
  }

  .project-card h3 {
    font-size: 1.5rem;
  }

  /* .project-image {

    max-width: 100vw;
    max-height: 180px;
    min-height: 100px;
  } */

  /* .project-image img {
    max-height: 180px;
    min-height: 100px;
  } */

  .project-content {
    padding: 1rem 0 0 0;
  }
}

/* ===== About Section Better Layout ===== */
#about h2 {
  text-align: center;
  color: #0a4344;
  margin-bottom: 3rem;
  font-size: 2rem;
}

.about-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin: 3rem auto;
  max-width: 1100px;  /* keeps section centered and uniform */
  padding: 1rem;
}

.about-block.reverse {
  flex-direction: row-reverse;
}

/* Fixed width for both sides */
.about-image {
  /* flex: 0 0 27%; 40% for image, 60% for text */
  display: flex;
  justify-content: center;
}

.about-image img {
  /* width: 100%; */
  /* max-width: 420px; */
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.3),
    0 5px 15px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image img:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 10px 20px rgba(0, 0, 0, 0.3);
}

.about-text {
  flex: 0 0 50%;
  max-width: 500px;
}

.about-text h3 {
  color: #1e3a8a;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

/* ===== Responsive Layout ===== */
@media (max-width: 900px) {
  .about-block,
  .about-block.reverse {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    flex: none;
    width: 90%;
  }

  .about-text {
    flex: none;
    width: 90%;
  }

  .about-image img {
    max-width: 100%;
    height: auto;
  }
}