@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600;700&display=swap');

/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Raleway', 'Segoe UI', Arial, sans-serif;
  color: #1a3a5c;
  background: #fff;
}

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

/* HEADER / NAV */
header {
  background-color: #1a3a5c;
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 70px;
  width: 70px;
  object-fit: contain;
}

.logo-text {
  color: #7eafd4;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

nav {
  display: flex;
  gap: 40px;
}

nav a {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

nav a:hover,
nav a.active {
  color: #7eafd4;
  border-bottom: 2px solid #7eafd4;
}

/* SLIDESHOW */
.slideshow {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  background: #000;
}

.slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.slide.active {
  display: block;
}

.slide-text {
  position: absolute;
  top: 40px;
  left: 60px;
  color: white;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

.slide-text h1 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 8px;
}

.slide-text p {
  font-size: 1rem;
  font-weight: 300;
}

.slide-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-size: 1.1rem;
  font-weight: 400;
  background: rgba(0,0,0,0.3);
  padding: 4px 12px;
}

.slide-prev,
.slide-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.3);
  color: white;
  border: none;
  font-size: 1.5rem;
  padding: 10px 16px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}

.slide-prev { left: 10px; }
.slide-next { right: 10px; }

.slide-prev:hover,
.slide-next:hover {
  background: rgba(0,0,0,0.6);
}

/* CEO SECTION */
.ceo-section {
  background-color: #2d5f8a;
  color: #ffffff;
  padding: 50px 60px;
}

.ceo-section h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.ceo-section p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 28px;
  background-color: #4a6fa5;
  color: white;
  border: none;
  border-radius: 3px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s;
}

.btn:hover {
  background-color: #3a5f95;
}

/* TWO COLUMN SECTION (home page) */
.two-col-section {
  display: flex;
  gap: 40px;
  padding: 50px 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.enable-col {
  flex: 1.2;
}

.enable-col h2 {
  font-size: 1.4rem;
  color: #1a3a5c;
  margin-bottom: 20px;
}

.enable-inner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.enable-img {
  width: 160px;
  height: 120px;
  object-fit: cover;
  flex-shrink: 0;
}

.enable-text p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #333;
}

.link-blue {
  color: #4a6fa5;
  font-size: 0.9rem;
}

.link-blue:hover {
  text-decoration: underline;
}

.testimonial-col {
  flex: 1;
}

.testimonial-col h2 {
  font-size: 1.4rem;
  color: #1a3a5c;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.testimonial-col blockquote {
  background: #d6e8f5;
  padding: 24px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #1a3a5c;
  border-radius: 3px;
}

/* FOOTER */
footer {
  background-color: #b8d4ea;
  padding: 20px 40px 0 40px;
  margin-top: 40px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding-bottom: 20px;
}

.footer-links a {
  color: #1a3a5c;
  font-size: 0.88rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-linkedin {
  display: flex;
  justify-content: flex-end;
  background-color: #1a3a5c;
  margin: 0 -40px;
  padding: 10px 40px;
}

/* PAGE MAIN (inner pages) */
.page-main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 40px;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a3a5c;
  margin-bottom: 20px;
}

.page-subtitle {
  font-size: 1rem;
  color: #1a3a5c;
  margin-bottom: 40px;
  max-width: 700px;
  line-height: 1.6;
}

/* ABOUT PAGE */
.bio-card {
  display: flex;
  align-items: stretch;
  margin-bottom: 30px;
  max-width: 480px;
}

.bio-photo {
  width: 120px;
  height: 160px;
  object-fit: cover;
  object-position: center 10%;
  flex-shrink: 0;
}

.bio-name-box {
  background: #4a6fa5;
  color: white;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.bio-name-box p:first-child {
  font-size: 1.1rem;
  font-weight: 600;
}

.bio-name-box p:last-child {
  font-size: 0.9rem;
  font-weight: 300;
}

.bio-text p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 14px;
  color: #333;
}

.inline-quote {
  font-style: italic;
  color: #333;
  border-left: 3px solid #4a6fa5;
  padding-left: 16px;
  margin: 16px 0;
  font-size: 0.92rem;
  line-height: 1.7;
}

.lets-meet {
  margin-top: 50px;
}

.lets-meet h2 {
  font-size: 1.6rem;
  color: #1a3a5c;
  margin-bottom: 24px;
}

.speech-bubble {
  background: #d6e8f5;
  border: 1px solid #b0cfe8;
  padding: 28px 32px;
  border-radius: 4px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #1a3a5c;
  margin-bottom: 20px;
}

.bio-sign {
  font-size: 0.9rem;
  color: #333;
  margin-top: 10px;
}

/* SERVICES PAGE */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px 50px;
  margin-bottom: 50px;
}

.service-block h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a3a5c;
  margin-bottom: 14px;
  text-align: center;
}

.service-block p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #333;
  text-align: justify;
  margin-bottom: 8px;
}

.testimonial-section {
  margin-top: 40px;
}

.testimonial-section h2 {
  font-size: 1.4rem;
  color: #1a3a5c;
  margin-bottom: 20px;
}

.testimonial-box {
  background: #d6e8f5;
  border: 1px solid #b0cfe8;
  padding: 28px 32px;
  font-size: 1rem;
  font-style: italic;
  color: #1a3a5c;
  border-radius: 4px;
  max-width: 700px;
}

/* WHITE PAPERS PAGE */
.wp-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.wp-item {
  display: block;
  background: #4a6fa5;
  color: white;
  padding: 22px 28px;
  font-size: 0.95rem;
  border-radius: 3px;
  transition: background 0.2s;
  line-height: 1.5;
}

.wp-item:hover {
  background: #3a5f95;
}

/* CONTACT PAGE */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 620px;
  margin-top: 30px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 16px;
  background: #d6e8f5;
  border: none;
  border-radius: 2px;
  font-size: 0.92rem;
  font-family: inherit;
  color: #1a3a5c;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #5a7fa5;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn {
  align-self: flex-end;
}

.form-note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: #666;
}

.form-note a {
  color: #4a6fa5;
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-inner {
    flex-direction: column;
    height: auto;
    padding: 16px 0;
    gap: 12px;
  }

  nav {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .slideshow {
    height: 280px;
  }

  .slide-text h1 {
    font-size: 2rem;
  }

  .slide-text {
    left: 20px;
    top: 20px;
  }

  .ceo-section {
    padding: 30px 20px;
  }

  .two-col-section {
    flex-direction: column;
    padding: 30px 20px;
  }

  .enable-inner {
    flex-direction: column;
  }

  .enable-img {
    width: 100%;
    height: 180px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .page-main {
    padding: 30px 20px;
  }

  .page-title {
    font-size: 2rem;
  }

  .bio-card {
    max-width: 100%;
  }

  .footer-links {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
