/*-- Reset and Base Style --*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #222;
    background-color: var(--bg-color);
}

:root {
  --primary-color: #00677C;
  --primary-dark: #004E5C;
  --primary-light: #E6F2F4;
  --text-color: #222;
  --bg-color: #f9f9f9;
}

/*--Navigation Bar--*/

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: var(--bg-color);
  flex-wrap: wrap;
  position: relative;
  z-index: 1000;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin-right: 0.5rem;
  align-items: center;
}

.nav-links li a {
  text-decoration: none;
  color: black;
  font-size: 18px;
  font-weight: 500;
  padding: 0.4rem 1.0rem;
  border-radius: 4px;
  display: inline-block;
  text-align: center;
  min-width: 100px;
  transition: all 0.3s ease;
  background-color: var(--bg-color);
  border: 1px solid transparent;
}

.nav-links .quote-btn {
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: 500;
  padding: 0.4rem 1.0rem;
  border-radius: 4px;
  display: inline-block;
  text-align: center;
  min-width: 100px;
  transition: all 0.3s ease;
  background-color: var(--primary-dark);
  border: 1px solid transparent;
}

.nav-links li a:hover {
  background-color: var(--primary-light);
  color: black;
  border: 1px solid var(--primary-color);
}

.hamburger {
  display: none;
}


/* =========================================
      HERO SECTION
========================================= */

.hero {
    min-height: 650px;

    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.58),
            rgba(0, 0, 0, 0.58)
        ),
        url("Image/Hero\ Image.jpeg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;

    padding: 4rem 8%;
}


.hero-content {
    max-width: 750px;
}


.hero-label {
    color: #00A6C7;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}


.hero-title {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}


.hero-title span {
    color: #00A6C7;
}


.hero-description {
    color: #f1f1f1;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 680px;
    margin-bottom: 2rem;
}


.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}


.hero-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}


.primary-btn {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}


.primary-btn:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}


.secondary-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}


.secondary-btn:hover {
    background-color: white;
    color: var(--primary-dark);
}


/* =========================================
   WHO WE ARE SECTION
========================================= */

.who-we-are {
    background-color: var(--bg-color);
    padding: 3rem 8%;
}

.who-content {
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1.5fr 0.6fr;
    gap: 4rem;

    align-items: center;
}

.who-label {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.who-title {
    color:black;
    font-family: 'poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
}

.who-title span {
    color:var(--primary-color);
}

.who-description {
    color: black;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.learn-more-btn {
    display: inline-block;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    color: var(--primary-dark);
    transform: translate(4px);
}

.who-graphic img {
    width: 140px;
    height: auto;
    opacity: 0.3;
    margin-left: 100px;
}

/* =========================================
   SERVICES SECTION
========================================= */
.services {
    background-color: var(--bg-color);
    padding: 3rem 5%;
}

.services-content {
    max-width: 1600px;
    margin: 0 auto;
}

.services-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.services-label {
    color: var(--primary-color);
    font-family: 'poppin',sans-serif;
    font-size: 1.0rem;
    font-weight: 600;
}

.services-title {
    color: black;
    font-family: 'poppin',sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}


.service-card {
    background-color: white;
    padding: 2rem, 1.2rem;
    text-align: center;

    border: 1px solid #e5e5e5;
    border-radius: 6px;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);

    transition: transform 0.3s ease,
    box-shadow 0.3 ease;
}

.service-icon {
    margin-bottom: 1.0rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon img {
    padding: 5px;
    width: 50px;
    height: 60px;
    
}

.service-card h3 {
    color: var(--primary-color);
    font-family: 'poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    color: black;
    font-family: 'inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.7;
}

.service-card:hover {
    transform: translate(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.112);
}


/* =========================================
   SOLUTIONS SECTION
========================================= */
.solutions {
    background-color: var(--bg-color);
    padding: 3rem 5%;
}


.solutions-content {
    max-width: 1600px;
    margin: 0 auto;
}

.solutions-heading {
    text-align: center;
    margin-bottom: 1.5rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.solutions-card {
    min-height: 330px;
    

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 2rem, 1.2rem;
    text-align: left;

    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;

    position: relative;

    display: flex;
    align-items: flex-end;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);

    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}

.land-system {
    background-image: url(Image/Hero\ Image.jpeg);
}

.real-estate {
    background-image: url(Image/Hero\ Image.jpeg);
}

.solutions-card::before {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0,0,0, 0.85)0%,
        rgba(0,0,0, 0.55)45%,
        rgba(0,0,0, 0.10)100%
    );
    z-index: 1;
}

.solutions-card-content {
    position: relative;
    z-index: 2;

    width: 100%;
    padding: 2rem;

    color: white;

}

.solutions-icon img{
    width: 60px;
    height: 60px;

    object-fit: contain;
    
    position: absolute;
    top: 2rem;
    left: 2rem;

    z-index: 2;
}

.solutions-card-content h3 {
    color: white;
    font-family: 'poppins', sans-serif;
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.2;

    margin-bottom: 1.0rem;
}

.solutions-card-content p {
    color: white;

    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;

    max-width: 550px;

    margin-bottom: 1.3rem;
}

.solutions-btn {
    display: inline-block;

    padding: 0.65rem 1.2rem;

    background-color: transparent;

    color: white;
    text-decoration: none;

    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;

    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 4px;

    transition: all 0.3s ease;
}

.solutions-btn:hover {
    background-color: white;
    color: var(--primary-dark);

    border-color: white;
}

.beta {
    display: inline-block;

    background-color: var(--primary-color);
    color: white;

    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;

    padding: 0.2rem 0.5rem;
    margin-left: 0.4rem;

    border-radius: 3px;

    vertical-align: middle;
}

.solutions-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.solutions-label {
    color: var(--primary-color);
    font-family: 'poppin',sans-serif;
    font-size: 1.0rem;
    font-weight: 600;
}

/* =========================================
   PROJECTS SECTION
========================================= */
.projects {
    background-color: var(--bg-color);
    padding: 3rem 5%;
}

.projects-content {
    max-width: 1600px;
    margin: 0 auto;
}

.projects-heading {
    text-align: center;
    margin-bottom: 1.5rem;
    font-family: 'poppins', sans-serif;
    font-size: 1.0rem;
    font-weight: 600;
    color: var(--primary-color);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.projects-card {
    background-color: white;


    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);

    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}

.projects-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.project-card-content {
    width: 100%; 
    color: black;
}

.project-card-content h3 {
    font-family: 'poppins', sans-serif;
    font-size: 1.1 rem;
    font-weight: 600;

    color: black;

    margin: 1rem 1.2rem 0.4rem;
}

.project-card-content p {
     font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;

    color: #555;

    margin: 0 1.2rem 1.5rem;
}

.projects-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.projects-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
    display: block;
}

.view-project-btn {
    display: block;
    width: fit-content;

    margin: 2rem auto 0;
    padding: 0.65rem 1.2rem;

    background-color: var(--primary-color);
    color: white;

    text-decoration: none;

    font-family: 'poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;

    border: 2px solid var(--primary-color);
    border-radius: 4px;

    transition: all 0.3s ease;
}

.view-project-btn:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);

    transform: translateY(-2px);
}









/*Responsive Layout -- this is for phones*/
@media (max-width: 600px) {
  .hamburger {
    display:block;
  }

  .nav-links {
    display: none;
  }

}