* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f8f9f6;
    color: #333;
    scroll-behavior: smooth;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.center {
    text-align: center;
    margin-bottom: 40px;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 600 !important;
}
h1 {
    font-size: 36px !important;
    margin-bottom: 20px;
}
h2 {
    font-size: 28px !important;
    margin-bottom: 15px;
}
h3 {
    font-size: 22px !important;
    margin-bottom: 10px;
}
h4 {
    font-size: 18px !important;
    margin-bottom: 8px;
}
h5 {
    font-size: 16px !important;
    margin-bottom: 6px;
}
h6 {
    font-size: 14px !important;
    margin-bottom: 4px;
}

/* HEADER */
.header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}
.menu-toggle{display:none}

.logo {
    color: #3F799F;
}
.logo img {
    height: 70px;
}
button {
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}
nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
}

.btn-primary {
    background: #3F799F;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
}

/* HERO */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
                url("images/hero.jpg") center/cover;
    display: flex;
    align-items: center;
}

.hero-content {
    color: #fff;
    width: 50%;
    margin-left: 5%;
}

.hero-content h2 {
    font-size: 48px;
}

.hero-buttons {
    margin-top: 20px;
}

/* SECTIONS */
.section {
    padding: 40px 0;
}

.about-grid, .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-images img {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 10px;
}

.ticks li {
    list-style: none;
    margin: 10px 0;
}

.ticks li::before {
    content: "✔ ";
    color: #3F799F;
    font-weight: bold;
}

/* SERVICES */
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
  gap: 10px; /* space between lines and text */
}

.section-title h2 {
  font-family: 'Georgia', serif;
  font-size: 28px;
  font-weight: bold;
  color: #3F799F; 
  margin: 0;
}

.section-title span {
  flex: 1;
  height: 2px; /* base thickness */
  background: linear-gradient(to right, transparent, #b69f83 40%, #b69f83 60%, transparent);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}
.services {
    background: url('./images/bg.jpg') center/cover no-repeat;
}
.img-service img {
    width: 120px;
}
.card {
    background: #ffffff87;
    padding: 0;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.card-text {
    font-size: 14px;
}
/* Why choose us */
.why-choose {
  position: relative;
  background: url('./images/why-choose-bg.jpg') no-repeat center center;
  background-size: cover;
  height: 400px; /* adjust as needed */
  display: flex;
  align-items: center;
}

.overlay {
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, rgb(2, 75, 94), rgba(0,0,0,0)); /* dark to transparent */
  display: flex;
  align-items: center;
  padding-left: 50px; /* space from left */
}

.content {
  color: #fff;
  max-width: 500px;
}

.content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.content ul {
  list-style: none;
  padding: 0;
}

.content ul li {
  font-size: 18px;
  margin-bottom: 10px;
}

/* PROJECTS */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.project-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-card h4 {
    padding: 15px;
}

.project-card button {
    margin-bottom: 20px;
    padding: 10px 16px;
    border: none;
    background: #3F799F;
    color: #fff;
    border-radius: 6px;
}

.badge {
    position: absolute;
    background: #3F799F;
    color: #fff;
    padding: 5px 10px;
    margin: 10px;
    border-radius: 5px;
}

.process {
    background: #ffffff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 40px;
}
.container.service-grid {
    max-width: 1240px;
}
.process-step {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: #f8f9f6;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-6px);
}

.process-step img {
    width: 60px;
    margin-bottom: 15px;
}

.process-step h4 {
    color: #3F799F;
    margin-bottom: 8px;
    font-size: 17px !important;
}
.process-step p {
    font-size: 14px;
}


.workflow-section {
    background: linear-gradient(90deg, #3F799F, #2e7d5b);
    padding: 40px 20px;
}

.workflow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.workflow-step {
    text-align: center;
    color: #ffffff;
    min-width: 120px;
}

.workflow-step .icon, .process-step .icon {
    width: 60px;
    height: 60px;
    background: #ffffff;
    color: #3F799F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 8px;
}

.workflow-step p {
    font-size: 14px;
    font-weight: 500;
}

.arrow {
    color: #ffffff;
    font-size: 26px;
}

a {
    text-decoration: none !important;
}

/* CTA */
.cta {
    background: url("./images/footer-bg.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

/* FOOTER */
.footer {
    background: #3F799F;
    color: #fff;
    text-align: center;
    padding: 20px;
}
.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-box p {
    line-height: 1.7;
    color: #d8e5df;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #d8e5df;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

.contact-location {
    margin-bottom: 20px;
}

.contact-location strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
}

.footer-bottom {
    margin-top: 40px;
    padding: 15px 0;
    text-align: center;
    background: #0b2f24;
    font-size: 13px;
    color: #cfe1da;
}
.footer-box a {
    color: #d8e5df;
    text-decoration: none;
}
.footer-box hr {
    margin: 10px 0;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .hero-content {
        width: 90%;
    }
    .about-grid, .why-grid {
        grid-template-columns: 1fr;
    }
}
@media(max-width:768px){
  nav{position:absolute;top:70px;left:0;width:100%;        padding: 20px;background:#ebebeb;flex-direction:column;display:none}
  nav.show{display:flex}
  .menu-toggle{display:block}
  .about-grid,.why-grid{grid-template-columns:1fr}
  .hero h1{font-size:32px}
  .nav a {
        margin: 5px 0;
  }
  .hero-content h2 {
        font-size: 28px;
  }
}
@media(max-width:480px){
  .hero p{font-size:14px}
}