* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

.top-bar {
    background: #0b6db7;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 6px 60px;
    font-size: 13px;
}

.top-bar a {
  color: white;
  text-decoration: none;
  margin-right: 15px;
}

.top-bar a:hover {
  text-decoration: underline;
}

.top-right span {
  margin-left: 20px;
}
/* HEADER */
.header {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-container {
    max-width: 1300px;
    margin: auto;
    padding: 18px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
}

.logo-main {
    font-size: 40px;
    font-weight: 900;
    color: #0b6db7;
}

.logo-sub {
    margin-left: 8px;
    font-size: 13px;
    letter-spacing: 4px;
    color: #555;
    text-transform: uppercase;
}


/* NAV LINKS */
.nav a {
    margin-left: 30px;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    position: relative;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #0b6db7;
    transition: 0.3s;
}

.nav a:hover::after {
    width: 100%;
}

.nav a:hover {
    color: #0b6db7;
}


/* HERO SECTION */
.hero {
    position: relative; /* ✅ IMPORTANT */
    min-height: 75vh;
    background-image: url("../images/hero.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}


.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-text {
    position: relative;
    color: white;
    margin-left: 80px;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 800;
}

.hero-text p {
    font-size: 20px;
    margin-top: 10px;
}



/* SERVICES */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 60px;
  background: #f5f5f5;
}

.service-box {
  background: white;
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-box h3 {
  margin: 20px 0 10px;
}

.service-box p {
  padding: 0 20px 25px;
  font-size: 14px;
}


/* FOOTER */
.footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px;
}
/* =========================
   ABOUT / WHO WE ARE PAGE
========================= */

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #0b6db7;
}

.nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav a.active,
.nav a:hover {
  color: #0b6db7;
}

/* HERO */
/* =========================
   PAGE HERO
========================= */
.page-hero {
    height: 70vh;
    background:
        linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url("../images/peep.jpg") center/cover no-repeat;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 80px;
}

.page-hero h1 {
    font-size: 48px;
}

.page-hero p {
    font-size: 18px;
    margin-top: 10px;
}

/* =========================
   ABOUT SECTION
========================= */

.about-advanced {
  padding: 100px 80px;
  background: #f9fafc;
}

.about-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* TEXT SIDE */
.about-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #222;
}

.about-line {
  display: block;
  width: 70px;
  height: 4px;
  background: #0b6db7;
  margin: 15px 0 30px;
}

.about-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.about-list li {
  font-size: 16px;
  margin-bottom: 14px;
  padding-left: 30px;
  position: relative;
  color: #333;
}

.about-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0b6db7;
  font-weight: bold;
}

/* IMAGE SIDE */
.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}
/* =========================
   MISSION / VISION
========================= */
.mv-section {
    background: #f5f5f5;
    padding: 80px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mv-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
}

.mv-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #0b6db7;
}

.mv-box p {
    line-height: 1.7;
}

/* =========================
   FOOTER
========================= */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {

    .page-hero {
        padding-left: 30px;
        height: 35vh;
    }

    .about-section {
        flex-direction: column;
        padding: 50px 30px;
        text-align: center;
    }

    .mv-section {
        grid-template-columns: 1fr;
        padding: 50px 30px;
    }
}
.services-details {
    padding: 80px;
    background: #f5f7fa;
}

.service-detail {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
    align-items: center;
}

.service-detail img {
    width: 420px;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-detail h2 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #0b6db7;
}

.service-detail p {
    margin-bottom: 6px;
    line-height: 1.6;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 900px) {
    .service-detail {
        flex-direction: column;
        text-align: center;
    }

    .service-detail img {
        width: 100%;
        height: auto;
    }
}
/* FOOTER */
.site-footer {
  background: #1f2a36;
  color: #ccc;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 50px 40px;
  flex-wrap: wrap;
}

.footer-box h4 {
  color: #fff;
  margin-bottom: 12px;
}

.footer-box p {
  margin-bottom: 6px;
  font-size: 14px;
}

.footer-bottom {
  background: #16202a;
  text-align: center;
  padding: 15px;
  font-size: 13px;
  color: #aaa;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
/* CONTACT HERO */
.contact-hero {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
              url("../images/phone.jpg") center/cover no-repeat;
  height: 180px;
  display: flex;
  align-items: center;
  padding-left: 60px;
}

.contact-hero h1 {
  color: white;
  font-size: 36px;
  letter-spacing: 2px;
}

/* CONTACT SECTION */
.contact-section {
  padding: 60px;
  background: #f5f7fa;
}

.contact-wrapper {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* IMAGE */
.contact-image img {
  width: 420px;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
}

/* DETAILS */
.contact-details h3 {
  color: #2f4fa2;
  margin-bottom: 15px;
}

.contact-details p {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #333;
}

.contact-details ul {
  padding-left: 20px;
}

.contact-details li {
  margin-bottom: 8px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-image img {
    width: 100%;
  }
}
/* CONTACT FORM */
.contact-form-section {
  background: #f5f7fa;
  padding: 60px;
}

.contact-form-section h2 {
  margin-bottom: 30px;
  color: #2f4fa2;
}

.contact-form {
  max-width: 900px;
}

.form-row {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.privacy-box {
  margin-top: 30px;
  padding: 20px;
  background: #fff;
  border-left: 4px solid #2f4fa2;
}

.privacy-box h4 {
  margin-bottom: 10px;
  color: #2f4fa2;
}

.checkbox {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  font-size: 14px;
}

.contact-form button {
  margin-top: 30px;
  padding: 14px 40px;
  background: #2f4fa2;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #243c7a;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
}
/* GALLERY */
.gallery-section {
  padding: 60px 40px;
  background: #f5f7fa;
}

.gallery-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #0b6db7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
