:root{
  --green:#2e9e55;
  --green-dark:#237a40;
  --blue:#0c6fb8;
  --text:#1b1f2a;
  --muted:#5d667a;
  --border:#e6e8ee;
  --bg:#ffffff;
  --container:1100px;
  --shadow: 0 10px 25px rgba(10, 30, 60, .08);
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  color:var(--text);
  background: var(--bg);
}
a{ color:inherit; text-decoration:none; }
.container{ width:min(var(--container), 92%); margin-inline:auto; }

/* top strip like the example */
.topbar{
  background: var(--blue);
  color:#fff;
  font-weight:700;
  font-size:14px;
}
.topbar .container{
  padding:10px 0;
  text-align:center;
}
.topbar a{ color:#fff; text-decoration:underline; }

/* header */
.header{
  background:#fff;
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px 0;
}

/* logo area (you'll replace with real logo later) */
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.logo-box{
  width:54px;
  height:54px;
  border:2px solid var(--green);
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--green);
  font-weight:900;
  letter-spacing:.5px;
}
.brand-text .name{
  font-size:26px;
  font-weight:900;
  line-height:1.1;
}
.brand-text .tag{
  color:var(--muted);
  font-size:13px;
  font-weight:700;
}

/* nav */
.nav-links{
  display:flex;
  align-items:center;
  gap:6px;
}
.nav-links a{
  padding:10px 14px;
  border-radius:6px;
  font-weight:800;
  color: #222;
}
.nav-links a:hover{
  background:#f4f6fb;
}
.nav-links a.active{
  color: var(--green);
  border-bottom: 3px solid var(--green);
  border-radius:0;
}

/* mobile menu */
.hamburger{
  display:none;
  background:#fff;
  border:1px solid var(--border);
  border-radius:8px;
  padding:10px 12px;
  font-size:18px;
  cursor:pointer;
}

/* hero with big photo */
.hero{
  position:relative;
}

.hero-photo{
  height: 600px;          /* set this to your perfect size */
  overflow: hidden;
  border-bottom: 6px solid #e9edf5;
  position: relative;
  background:#dfe7f3;
}

.hero-img{
  width: 100%;
  height: 100%;
  object-fit: cover;              /* enables cropping */
  object-position: center 40%;    /* move image UP (try 15%–40%) */
  display: block;
}
.hero-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
}
.hero-content{
  color:#fff;
  max-width: 680px;
  padding: 24px 0;
}
.hero-title{
  font-size: 56px;
  line-height: 1.05;
  margin:0 0 14px;
  font-weight:900;
}
.hero-sub{
  margin:0 0 20px;
  font-size:18px;
  line-height:1.6;
  opacity:.95;
}
.hero-buttons{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.btn{
  display:inline-block;
  padding:12px 18px;
  border-radius:6px;
  font-weight:900;
  border:2px solid transparent;
}
.btn.primary{
  background: var(--green);
  color:#fff;
}
.btn.primary:hover{ background: var(--green-dark); }
.btn.ghost{
  background: rgba(255,255,255,.12);
  color:#fff;
  border-color: rgba(255,255,255,.55);
}
.btn.ghost:hover{ background: rgba(255,255,255,.20); }

/* green info bar under hero */
.greenbar{
  background: var(--green);
  color:#fff;
  font-weight:800;
  margin-top: 70px;
}
.greenbar .container{
  padding:14px 0;
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:space-between;
}
.greenbar a{ color:#fff; text-decoration:underline; }

/* sections */
.section{
  padding: 34px 0;
}
.section h2{
  margin:0 0 12px;
  font-size: 28px;
}
.lead{
  margin:0 0 20px;
  color:var(--muted);
  line-height:1.7;
  max-width: 900px;
}

/* cards */
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:10px;
  box-shadow: var(--shadow);
  padding:18px;
}
.card h3{
  margin:0 0 8px;
}
.card p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}

/* footer */
.footer{
  border-top: 1px solid var(--border);
  padding: 22px 0;
  color: var(--muted);
  font-size:14px;
}
/* overlapping intro section */

.intro-overlap{
  margin-top:-100px;   /* pulls the card up into the hero */
  position:relative;
  z-index:5;
}

.intro-card{
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(1px);
  border-radius:10px;
  box-shadow: 0 15px 40px rgba(0,0,0,.15);
  padding:10px 40px 40px 40px;
  max-width:1600px;
  margin:auto;
}

.intro-card p{
  font-family: 'Inter', sans-serif;
  font-size:17px;
  line-height:1.7;
  color:#333;
  margin-bottom:18px;
}

.intro-card p:last-child{
  margin-bottom:0;
}
.about-grid{
display:grid;
grid-template-columns: 1fr 1fr;
gap:40px;
align-items:center;
}

.about-text h1{
font-size:36px;
margin-bottom:20px;
color:#1f5f87;
}

.about-text p{
line-height:1.7;
margin-bottom:16px;
color:#333;
}

.about-image img{
width:100%;
border-radius:6px;
box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.section{
padding:50px 0;
}

.section h2{
font-size:30px;
margin-bottom:12px;
color:#1f5f87;
}

.section h3{
margin-top:20px;
color:#1f5f87;
}
.about-section{
padding:30px 0;
}

.commitment-title{
font-weight:700;
color:#222;
margin-top:20px;
}
.about-main-title{
  font-size: 34px;
  color:#1f6e9f;
  margin-bottom: 12px;
}

.about-intro-line{
  font-size: 16px;
  margin-bottom: 30px;
  color:#222;
}

.about-content-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:40px;
  align-items:start;
}

.about-left-text p{
  line-height:1.7;
  margin-bottom:18px;
  color:#222;
}

.about-right-image img{
  width:100%;
  display:block;
  border-radius:0;
  box-shadow:none;
}

.about-section{
  padding:30px 0;
}

.commitment-title{
  font-weight:700;
  color:#222;
  margin-top:20px;
}
.services-banner{
  width: min(96%, 1120px);
  margin: 20px auto 40px auto;
  height: 240px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: #d9dde6;
}

.services-banner img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.55);
}

.services-banner-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-banner-overlay h1{
  color: white;
  font-size: 54px;
  font-weight: 800;
  margin: 0;
}

.services-page-section{
  padding: 10px 0 50px 0;
}

.service-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  border-radius: 22px;
  margin-bottom: 42px;
  padding: 22px 28px;
}

.service-row-light{
  background: transparent;
}

.service-row-green{
  background: #127985;
  color: white;
}

.service-text h2{
  margin: 0 0 18px 0;
  font-size: 28px;
  font-weight: 800;
  color: #0f6f90;
}

.service-row-green .service-text h2{
  color: white;
}

.service-text p{
  margin: 0 0 18px 0;
  line-height: 1.7;
  font-size: 16px;
  color: #222;
}

.service-row-green .service-text p{
  color: white;
}

.service-image{
  width: 100%;
}

.service-image img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 22px;
  background: #e3e7ee;
}
.cta-apply{
  padding: 70px 0;
}

.cta-box{
  display: block;
  text-align: center;
  background: #158127;
  color: rgb(223, 0, 0);
  padding: 30px 12px;
  border-radius: 22px;
  text-decoration: none;
  max-width: 1000px;
  margin: auto;
  transition: 0.3s;
}

.cta-box:hover{
  background: #167a67;
  transform: translateY(-2px);
}

.cta-box h2{
  margin: 0 0 2px 0;
  font-size: 32px;
  font-weight: 800;
  color : white;
}

.cta-sub{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
  font-size: 15px;
  margin-top: 0;
   transform: translateX(-12px)
}

.cta-sub img{
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.cta-sub span{
  display: inline-block;
  color: #ff0400;      /* red text */
  font-weight: 500;
}
.about-title{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 26px;
  color: #0f6f90;   /* keeps your blue style */
  margin-bottom: 10px;
}

.about-title img{
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.contact-section{
  padding: 40px 0;
}

.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3{
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #111;
}

.contact-info p{
  margin: 0 0 28px 0;
  line-height: 1.7;
  color: #222;
}

.contact-info .green,
.contact-info .green a{
  color: #3aa35c;
  text-decoration: none;
}

.contact-form{
  display: flex;
  flex-direction: column;
}

.contact-form label{
  margin-top: 16px;
  margin-bottom: 6px;
  font-size: 15px;
  color: #111;
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  padding: 14px 14px;
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  background: white;
  color: #111;
}

.contact-form textarea{
  resize: vertical;
  min-height: 150px;
}

.contact-form button{
  margin-top: 20px;
  width: 140px;
  background: #63b97a;
  color: white;
  border: none;
  padding: 14px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  transition: 0.2s;
}

.contact-form button:hover{
  background: #4fa767;
}

.hidden-field{
  display: none;
}

.form-success{
  display: none;
  margin-top: 16px;
  color: #2e8b57;
  font-weight: 600;
}

.map-section{
  padding: 10px 0 40px 0;
}

.map-box{
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.floating-call-btn{
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #127985;
  color: white;
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
  z-index: 999;
  transition: 0.2s;
}

.floating-call-btn:hover{
  background: #0f6670;
  transform: translateY(-2px);
}
.logo-img{
  height: 70px;       /* controls logo size */
  width: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 900px){
  .contact-grid{
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .floating-call-btn{
    right: 14px;
    bottom: 14px;
    padding: 12px 16px;
  }
}

@media (max-width: 900px){
  .services-banner{
    height: 180px;
    border-radius: 18px;
  }

  .services-banner-overlay h1{
    font-size: 38px;
  }

  .service-row{
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 20px;
  }

  .service-text h2{
    font-size: 24px;
  }
}

@media (max-width: 900px){
  .about-content-grid{
    grid-template-columns: 1fr;
  }

  .about-main-title{
    font-size: 28px;
  }
}


/* responsive */
@media (max-width: 920px){
  .header-inner{ align-items:flex-start; }
  .nav-links{
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    width: 100%;
    padding: 8px 0 0;
  }
  .nav-links.open{ display:flex; }
  .nav-links a{
    padding:12px 10px;
    border-radius:8px;
  }
  .hamburger{ display:inline-block; }
  .hero-photo{ height: 420px; }
  .hero-title{ font-size: 42px; }
  .grid-3{ grid-template-columns: 1fr; }
}