:root {
  --bg: #ffffff;
  --text: #0B1C2C;
  --accent: #0097A7;
  --accent-light: #00BCD4;
  --header-bg: #0B1C2C;
  --card-bg: #ffffff;
  --hero-gradient: linear-gradient(90deg, #0097A7 0%, #004D60 100%);
  --bubble-bg: #ffffff;
  --shadow: rgba(0, 0, 0, 0.1);
  --border: #e0e0e0;
  --footer-bg: #0B1C2C;
}

/* ---------- Global Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: var(--bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ---------- Header ---------- */
header {
  background-color: var(--header-bg);
  color: #E9ECEF;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 6px var(--shadow);
}

header h1 {
  color: var(--accent-light);
  font-size: 1.5em;
  font-weight: 600;
}

nav a {
  color: #E9ECEF;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover,
nav a.active {
  color: var(--accent-light);
  border-bottom: 2px solid var(--accent-light);
}

/* ---------- Hero Section ---------- */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: var(--hero-gradient);
  color: #ffffff;
  padding: 80px 10%;
  border-radius: 12px;
  box-shadow: 0 6px 15px var(--shadow);
  margin: 40px 5% 20px;
}

.hero-text {
  max-width: 600px;
}

.hero h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
  font-weight: 600;
}

.hero p {
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 1.05em;
}

.hero button {
  background: #ffffff;
  color: var(--accent);
  border: none;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero button:hover {
  background: var(--accent-light);
  color: #fff;
}

/* ---------- Hero Bubble ---------- */
.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bubble-bg);
  border-radius: 50%;
  width: 220px;
  height: 220px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.hero-image img {
  width: 140px;
  height: auto;
  border-radius: 50%;
}

/* ---------- Mission, Values, Goals ---------- */
.mission, .values, .goals {
  max-width: 900px;
  margin: 60px auto;
  text-align: center;
  color: var(--text);
  background: transparent;
  padding: 30px 20px;
  line-height: 1.8;
}

.mission h2, .values h2, .goals h2 {
  color: var(--accent);
  margin-bottom: 15px;
  font-size: 1.9em;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
}

/* Subtle underline accent */
.mission h2::after, .values h2::after, .goals h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 10px auto;
  border-radius: 3px;
}

.mission p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.05em;
}

.values ul, .goals ol {
  list-style: none;
  padding: 0;
  max-width: 750px;
  margin: 0 auto;
  text-align: left;
}

.values li, .goals li {
  margin: 8px 0;
  font-size: 1.02em;
}

.values li strong, .goals li strong {
  color: var(--accent);
  font-weight: 600;
}

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.service-card {
  border: 1px solid var(--border);
  background: var(--card-bg);
  padding: 24px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 3px 8px var(--shadow);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px var(--shadow);
}

.service-card h3 {
  color: var(--accent);
  margin-bottom: 10px;
}

/* ---------- Pricing Plans ---------- */
.pricing {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.plan {
  border: 2px solid var(--accent);
  border-radius: 12px;
  padding: 30px;
  width: 280px;
  background: var(--card-bg);
  text-align: center;
  transition: 0.3s;
}

.plan:hover {
  box-shadow: 0 6px 15px var(--shadow);
  transform: translateY(-5px);
}

.price {
  font-size: 2em;
  font-weight: 600;
  color: var(--text);
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: var(--accent-light);
}

/* ---------- Forms ---------- */
form {
  max-width: 500px;
  margin: auto;
}

input, textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--card-bg);
  color: var(--text);
}

button.submit {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

button.submit:hover {
  background: var(--accent-light);
}

/* ---------- Plan Dropdown Styling (Centered and Seamless) ---------- */
label[for="plan"] {
  display: block;
  text-align: center;
  font-weight: 600;
  margin-top: 20px;
}

select {
  display: block;
  margin: 10px auto 20px;
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--card-bg);
  color: var(--text);
  font-size: 1em;
  text-align: center;
  text-align-last: center;
  appearance: none;
  cursor: pointer;
  transition: 0.3s;
}

select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 5px var(--accent-light);
}

/* ---------- Contact Form ---------- */
.contact {
  max-width: 600px;
  margin: 80px auto;
  text-align: center;
  color: var(--text);
  padding: 40px 20px;
}

.contact h2 {
  color: var(--accent);
  font-size: 1.9em;
  margin-bottom: 20px;
}

label {
  display: block;
  text-align: left;
  margin-top: 15px;
  font-weight: 500;
}

.confirmation-message {
  margin-top: 20px;
  color: var(--accent);
  font-weight: 600;
}

/* ---------- Founder Section ---------- */
.founder {
  max-width: 1000px;
  margin: 80px auto;
  text-align: center;
  color: var(--text);
  padding: 40px 20px;
}

.founder-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 3px 10px var(--shadow);
  padding: 30px;
  gap: 30px;
}

.founder-card img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--accent);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.founder-info {
  max-width: 600px;
  text-align: left;
}

.founder-info h2 {
  color: var(--accent);
  font-size: 1.9em;
  margin-bottom: 10px;
}

.founder-info h3 {
  font-weight: 600;
  margin-bottom: 10px;
}

.founder-info p {
  line-height: 1.7;
  margin-bottom: 10px;
  font-size: 1.05em;
}

/* ---------- Footer ---------- */
footer {
  text-align: center;
  padding: 20px;
  background: var(--footer-bg);
  color: #E9ECEF;
  box-shadow: 0 -2px 6px var(--shadow);
}

/* ---------- Animations ---------- */
.fade-in {
  animation: fadeIn 0.8s ease-in forwards;
  opacity: 0;
}

.slide-up {
  animation: slideUp 0.8s ease-out forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(10px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes slideUp {
  from {opacity: 0; transform: translateY(25px);}
  to {opacity: 1; transform: translateY(0);}
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }
  nav {margin-top: 10px;}
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-image {margin-top: 30px;}
  .founder-card {
    flex-direction: column;
    text-align: center;
  }
  .founder-info {
    text-align: center;
  }
}
