html {
  scroll-behavior: smooth;
}

.container-center {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Google Font and Body */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Global */
h1, h2, h3 {
  font-weight: 600;
  margin-bottom: 0.5em;
  color: #111;
}

p {
  margin-bottom: 1em;
}

ul {
  padding-left: 1.2em;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #fff;
  border-bottom: 2px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.7); /* semi-transparent for glass look */
  backdrop-filter: blur(12px); /* frosted glass effect */
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center; /* nav stays centered */
  gap: 2rem;
}

.logo {
  position: absolute;
  left: 2rem; /* keeps logo fixed left */
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  width: 28px;
  height: 28px;
}

.logo span {
  font-weight: 600;
  font-size: 1.2rem;
  color: #111;
}

.nav-container nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-container nav ul li a {
  text-decoration: none;
  font-size: 1rem;
  color: #333;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.nav-container nav ul li a:hover {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(8px);
  color: #0071e3; /* Apple blue */
}

/* Active nav link */
.nav-container nav ul li a.active {
  color: #0071e3; /* Apple blue */
  font-weight: 600;
  background: rgba(0, 113, 227, 0.1);
  border-radius: 12px;
}

/* Quote Section */
.quote {
  background: #f0f0f0; /* soft cream/pastel background */
  padding: 4rem 2rem;
}

.quote .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap; /* makes it responsive */
}

.quote-text {
  flex: 1;
  min-width: 300px;
}

.quote-text h1 {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.4;
  color: #222;
  max-width: 600px;
}

.quote-illustration {
  flex: 1;
  display: flex;
  justify-content: center;
}

.quote-illustration img {
  max-width: 450px;
  width: 100%;
  height: auto;
}

/* Intro */
.intro {
  padding: 3rem 2rem;
  text-align: center;
  max-width: 900px;
  margin: auto;
}

/* Services */
.services {
  padding: 3rem 2rem;
  background: #f9f9f9;
}

.services h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

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

.service-card i {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 1rem;
}

/* Services expanded */
.service-card ul {
  margin-top: 1rem;
  padding-left: 1.2rem;
  color: #444;
}

.service-card ul li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* Industries */
.industries {
  padding: 3rem 2rem;
}

.industries h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.industries ul {
  columns: 2;
  gap: 2rem;
  max-width: 900px;
  margin: auto;
  margin-bottom: 1rem;
}

.industries li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Mission Section */
.mission {
  padding: 4rem 2rem;
  background: #f9f9f9;
}

.mission h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: auto;
}

.mission-block {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.mission-block h3 {
  margin-bottom: 1rem;
  color: #007bff;
}

.mission-block ul {
  list-style: none;
  padding: 0;
}

.mission-block ul li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .mission-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Why Choose */
.why {
  background: #ffffff;
  color: black;
  padding: 3rem 2rem;
  text-align: center;
}

.why h2 {
  margin-bottom: 1rem;
}

.why ul {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: auto;
}

.why li {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

/* Footer */
footer {
  /* width: 80%; */
  background-color: #f8f9fa;
  padding: 20px 0;
  font-size: 14px;
  color: #333;
  /* text-align: center; */
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0 20px;
}
.footer-left,
.footer-right {
  flex: 1;
  margin: 10px;
}
.footer-left p,
.footer-right p {
  margin: 5px 0;
}
.footer-right .social {
  margin-top: 10px;
}

.footer-right .social a {
  margin-right: 10px;
  color: #333;
  text-decoration: none;
  font-size: 18px;
}

footer hr {
  margin: 20px 0;
  border: 0;
  border-top: 1px solid #ddd;
}

footer .copy {
  text-align: center;
  font-size: 12px;
  color: #666;
}
.footer-wrapper {
  max-width: 900px; /* Matches the width of the .mission section */
  margin: 0 auto; /* Centers the footer content */
  padding: 0 20px; /* Adds padding for spacing */
}

/* 
footer p {
  margin: 0.5rem 0;
}

footer .social {
  margin: 1rem 0;
}

footer .social a {
  color: #ddd;
  margin: 0 0.5rem;
  font-size: 1.5rem;
  transition: color 0.3s;
}

footer .social a:hover {
  color: #ff6600;
}

footer .copy {
  font-size: 0.85rem;
  color: #aaa;
  margin-top: 1rem;
} */

/* Responsive */
@media (max-width: 768px) {
  .industries ul {
    columns: 1;
  }

  .quote h1 {
    font-size: 1.4rem;
  }
}



/* Founder Section */
.founder {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.founder-profile img {
  width: 100%;
  max-width: 220px;   /* medium size on desktop */
  aspect-ratio: 1 / 1;  /* keeps width=height ratio */
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.founder-profile img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.founder-info {
  flex: 1;
}

.founder-info h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.founder-info h2 span {
  color: #006699;
}

.founder-info h3 {
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
  color: #333;
}

.founder-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.founder-info ul li {
  margin: 0.4rem 0;
  font-size: 1rem;
  color: #444;
}

.founder-info blockquote {
  margin-top: 2rem;
  font-style: italic;
  font-size: 1.2rem;
  color: #006699;
  border-left: 4px solid #006699;
  padding-left: 1rem;
}


/* team poage */
/* Two-column layout for the profile-row */
.profile-row {
  display: flex;
  align-items: flex-start; /* Align items to the top */
  gap: 20px; /* Space between columns */
  margin-bottom: 20px; /* Add spacing below the row */
}

.profile-row .image {
  flex: 0 0 30%; /* 30% width for the image column */
    /* width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1); */
}

.profile-row .image img {
  width: 100%; /* Make the image responsive */
  height: auto;
  border-radius: 0px; /* Optional: Add rounded corners */
}

.profile-row .info {
  flex: 0 0 70%; /* 70% width for the info column */
  text-align: left; /* Align text to the left */
}

.profile-row .info .intro {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}