/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  color: #222;
  background: #f2f2f2; /* side background */
}

/* HEADER */
.main-header {
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

.header-container {
  width: 95%;
  max-width: 1400px;
  margin: auto;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

/* LOGO */
.logo img {
  max-height: 60px;
}

/* NAV */
.nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

.nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #333;
}

.nav a:hover,
.nav a.active {
  color: #1a73b8;
}

/* HERO WRAPPER (THIS IS THE KEY FIX) */
.hero-wrapper {
  width: 100%;
  background: #fff;
  padding: 30px 0;
}

.hero-slider {
  width: 95%;
  max-width: 1200px; /* SAME AS CONTENT */
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* SLIDE HEIGHT ADJUSTMENT */
.slide {
  height: 520px;
  background-size: cover;
  background-position: center;
}

.slide {
  display: none;
  height: 520px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.slide.active {
  display: block;
}

/* OVERLAY */
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

/* CONTENT BOX */
.slide-content {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 35px;
  max-width: 420px;
  z-index: 1;
}

.slide-content h2 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 15px;
}

.slide-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #ddd;
}

.slide-content a {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  color: #1a73b8;
  text-decoration: none;
}

/* DOTS */
.slider-dots {
  position: absolute;
  left: 30px;
  bottom: 25px;
  z-index: 2;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  cursor: pointer;
}

.slider-dots .dot.active {
  background: #1a73b8;
}

/* ABOUT SECTION (UNDER HERO) */
.about-section {
  width: 100%;
  padding: 50px 0; /* space from hero */
  background: #fff;
}

.about-container {
  width: 95%;
  max-width: 1200px; /* SAME AS HERO */
  margin: 0 auto;
  display: flex;
  gap: 40px;
}

/* LEFT SIDEBAR */
.about-left {
  width: 28%;
  font-size: 14px;
  color: #555;
}

.about-left h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.about-left p {
  line-height: 1.7;
}

.about-left a {
  color: #1a73b8;
  text-decoration: none;
}

/* VERTICAL DIVIDER */
.about-divider {
  width: 1px;
  background: #e5e5e5;
}

/* RIGHT CONTENT */
.about-right {
  width: 72%;
}

.about-right h2 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 20px;
}

.about-right p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid #e0e0e0;
  background: #ffffff;
  padding: 35px 0;
  margin-top: 50px;
}

.footer-container {
  width: 95%;
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}
/* ABOUT LEFT IMAGE (FIX SIZE) */
.about-image {
  margin-top: 20px;
}

.about-image img {
  width: 100%; /* stays inside left column */
  max-width: 260px; /* prevents stretching */
  height: auto; /* keeps proportions */
  display: block;
}

/* FOOTER COLUMNS */
.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

.footer-col p {
  font-size: 13px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 8px;
}

.footer-col a {
  color: #1a73b8;
  text-decoration: none;
}

/* LEFT */
.footer-left {
  text-align: left;
}

/* MIDDLE */
.footer-middle {
  text-align: center;
}

/* RIGHT */
.footer-right {
  text-align: right;
}

.footer-right .copyright {
  font-weight: 600;
  margin-bottom: 10px;
}

/* FULL WIDTH ABOUT PAGE */
.about-full {
  border-top: 1px solid #e0e0e0;
  background: #ffffff;
  padding: 50px 0;
}

.about-full-container {
  width: 95%;
  max-width: 1100px;
  margin: auto;
}

.about-full-container h2 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 25px;
}

.about-full-container p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;
}

/* PAGE HERO - SPLIT BANNER */
/* PAGE HERO (CONTAINED WIDTH) */
.page-hero {
  width: 100%;
  background: #fff;
  padding: 30px 0;
}

.page-hero-inner {
  width: 95%;
  max-width: 1200px; /* SAME as content width */
  margin: 0 auto;
  display: flex;
  height: 260px;
}

/* LEFT BLACK BOX */
.page-hero-left {
  width: 35%;
  background: #111;
  color: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero-left h1 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 10px;
}

.page-hero-left p {
  font-size: 14px;
  color: #bbb;
}

/* RIGHT IMAGE */
.page-hero-right {
  width: 65%;
  background-size: cover;
  background-position: center;
}

/* SERVICES SECTION */
.services-section {
  padding: 50px 0;
  background: #fff;
}

.services-container {
  width: 95%;
  max-width: 1100px;
  margin: auto;
}

.services-container h2 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 20px;
}

.services-container p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.service-box {
  border: 1px solid #e0e0e0;
  padding: 25px;
  background: #fafafa;
}

.service-box h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 14px;
  color: #555;
}

/* SERVICES ACCORDION */
.services-accordion-section {
  padding: 50px 0;
  background: #fff;
  border-top: 1px solid #eee;
}

.services-accordion-container {
  width: 95%;
  max-width: 1100px;
  margin: auto;
}

.services-accordion-container h2 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 30px;
}

/* ACCORDION BOX */
.service-accordion {
  border: 1px solid #e0e0e0;
  margin-bottom: 15px;
}

/* HEADER */
.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  background: #fafafa;
}

.service-header h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

/* PLUS BUTTON */
.toggle-btn {
  font-size: 22px;
  font-weight: 300;
  color: #1a73b8;
}

/* CONTENT */
.service-content {
  display: none;
  padding: 20px 22px;
  border-top: 1px solid #e0e0e0;
  background: #fff;
}

.service-content p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

/* ACTIVE STATE */
.service-accordion.active .service-content {
  display: block;
}

.service-accordion.active .toggle-btn {
  transform: rotate(45deg); /* + becomes x */
}

/* GREEN CHECK LIST */
.check-list {
  list-style: none;
  padding-left: 0;
  margin: 15px 0 25px 0;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 6px;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #7cb342; /* green like screenshot */
  font-size: 14px;
}
.normal-list {
  margin: 10px 0 25px 40px;
  list-style: disc;
}

.normal-list li {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 5px;
}

/* CAREER PAGE */
.career-section {
  padding: 50px 0;
  background: #fff;
}

.career-container {
  width: 95%;
  max-width: 1100px;
  margin: auto;
}

.career-container h2 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 20px;
}

.career-container p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;
}

/* ABOUT BOX */
.career-about-box {
  margin-top: 30px;
  padding: 25px;
  border: 1px solid #e0e0e0;
  background: #fafafa;
}

.career-about-box h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.career-about-box a {
  color: #1a73b8;
  text-decoration: none;
}
.career-box {
  border: 1px solid #ddd;
  padding: 30px;
  max-width: 900px;
  background: #fff;
}

.career-box h2 {
  margin-bottom: 15px;
}

.career-box h4 {
  margin-top: 25px;
}

.career-box p {
  line-height: 1.7;
}

.career-box hr {
  margin: 25px 0;
  border: none;
  border-top: 1px solid #e5e5e5;
}
.career-box {
  margin: 0 auto;
   background: #fafafa;
}

/* ===========================
   FINAL MOBILE RESPONSIVE AUDIT FIXES
   =========================== */

/* SMALL PHONES */
@media (max-width: 480px) {

  /* HEADER */
  .header-flex {
    padding: 15px 0;
  }

  .nav ul {
    gap: 12px;
  }

  .nav a {
    font-size: 13px;
  }

  /* HERO SLIDER */
  .slide {
    height: 380px;
  }

  .slide-content {
    padding: 22px;
    font-size: 13px;
  }

  .slide-content h2 {
    font-size: 20px;
  }

  /* PAGE HERO */
  .page-hero-inner {
    height: auto;
  }

  .page-hero-left {
    padding: 30px;
  }

  .page-hero-left h1 {
    font-size: 22px;
  }

  /* ABOUT TEXT */
  .about-right p,
  .about-full-container p {
    font-size: 13.5px;
    line-height: 1.9;
  }

  /* SERVICES ACCORDION */
  .service-header {
    padding: 16px;
  }

  .service-header h4 {
    font-size: 14px;
  }

  .toggle-btn {
    font-size: 24px;
  }

  /* CAREER BOX */
  .career-box {
    padding: 20px;
  }

  .career-box h2 {
    font-size: 22px;
  }
}

