*{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    body{
      font-family:'Montserrat', sans-serif;
      background:#ececec;
      color:#222;
      line-height:1.7;
    }

    a{
      text-decoration:none;
      color:white;
    }

    * =========================
       HEADER
    ==========================*/
    
	.menu-btn {
		display: none;
	}
	
	.close-btn {
		visibility: hidden;
	}
	
	.nav2 a {
		display: none;
	}
	
	.navbar .logo {
		visibility: hidden;
	}
	
	@media (max-width: 768px) {
		
		/* Hamburger Icon */
    .menu-btn{
      font-size:25px;
	  padding-top: 10px;
      cursor:pointer;
      color:white;
      display:block;
    }
	
	.navbar .logo {
		visibility: visible;
	}
	
	
		/* SIDE MENU */
    .nav-links{
    position:fixed;
    top:0;
    left:-250px;
    width:250px;
    height:100%;
    background:#111;
    display:flex;
    flex-direction:column;
    padding-top:60px;
    transition:0.3s;
    z-index:1000;
}
    .nav-links a{
      color:white;
      text-decoration:none;
      padding:20px 30px;
      font-size:28px;
      transition:0.2s;
    }

    .nav-links a:hover{
      background:#222;
    }

    /* Show Menu */
    .nav-links.active{
      left:0;
    }
	
	.close-btn {
		visibility: visible;
	}

    /* Close Button */
    .close-btn{
      position:absolute;
      top:20px;
      right:25px;
      font-size:35px;
      cursor:pointer;
      color:white;
    }
	
	.logo-box img {
      height: 80px !important;
    }
	
	}

    /* NAVBAR */
    .navbar {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      padding: 23px 30px 18px;
      display: flex;
      justify-content: space-between;
      align-items: center;
	  background-color: black;
    }
	
	.logo{
      font-size:24px;
      color: transparent;
    }

    .logo-box {
      width: 74px;
      height: 74px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 8px;
      z-index: 7;
    }

    .logo-box img {
      height: 100px;
    }

    .logo-box span {
      display: block;
      font-size: 8px;
      margin-top: 4px;
      opacity: 0.8;
    }

    .nav-links {
      display: flex;
      gap: 42px;
    }

    .nav-links a {
      text-decoration: none;
      color: white;
      font-size: 15px;
      letter-spacing: 1px;
      font-weight: 600;
      transition: 0.3s ease;
      z-index: 7;
    }

    .nav-links a:hover {
      opacity: 0.75;
    }
	
	.split-banner{
      width:100%;
      height:350px;
      display:grid;
	  padding-top: 115px;
      grid-template-columns:1fr 1fr 1fr;
      overflow:hidden;
    }
	
	@media (max-width: 768px) {
		.split-banner {
			padding-top: 120px;
			height:250px;
		}
	}

    .banner-image{
      position:relative;
      overflow:hidden;
    }

    .banner-image img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }

    /* CENTER LOGO PANEL */
    .banner-center{
      background:#f4f4f2;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      position:relative;
      overflow:hidden;
    }

    .logo-mark{
      position:relative;
      width:140px;
      height:120px;
      margin-bottom:15px;
    }

    .shape{
      position:absolute;
    }

    .green-vertical{
      width:48px;
      height:118px;
      background:#96a597;
      left:22px;
      top:0;
    }

    .beige-square{
      width:48px;
      height:48px;
      background:#d1c2b3;
      right:18px;
      top:0;
    }

    .blue-square{
      width:48px;
      height:58px;
      background:#647d82;
      right:18px;
      bottom:2px;
    }

    .circle{
      width:38px;
      height:38px;
      border-radius:50%;
      background:#d1c2b3;
      left:82px;
      top:40px;
    }

    .logo-text{
      text-align:center;
      line-height:1;
    }

    .logo-text .small{
      font-size:2.8rem;
      font-weight:300;
      letter-spacing:2px;
      color:#97a596;
      display:block;
    }

    .logo-text .large{
      font-size:4.6rem;
      font-weight:300;
      letter-spacing:3px;
      color:#cbbcab;
      display:block;
    }

    /* =========================
   SERVICES SECTION
=========================*/

.services-section{
  background:#ececec;
  padding:40px 10%;
}

.services-title{
  text-align:center;
  margin-bottom:30px;
}

.services-title h2{
  font-family:'Cormorant Garamond', serif;
  font-size:48px;
  font-weight:500;
  letter-spacing:2px;
  color:#1f4b63;
}

.services-line{
  width:40px;
  height:2px;
  background:#d3d3d3;
  margin:18px auto 0;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:40px;
}

.service-card h3{
  font-size:22px;
  font-weight:500;
  color:#111;
  margin-bottom:28px;
  line-height:1.4;
}

.service-card ul{
  list-style:none;
  padding:0;
}

.service-card ul li{
  position:relative;
  padding-left:18px;
  margin-bottom:8px;
  font-size:16px;
  line-height:1.1;
  color:#444;
}

.service-card ul li::before{
  content:"–";
  position:absolute;
  left:0;
  color:#444;
}

.service-card a{
  display:inline-block;
  margin-top:10px;
  color:#000;
  font-size:15px;
  text-decoration:none;
  font-weight:500;
  transition:0.3s;
}

.service-card a:hover{
  color:#1f4b63;
}

/* =========================
   RESPONSIVE
=========================*/

@media(max-width:1100px){

  .services-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:768px){

  .services-grid{
    grid-template-columns:1fr;
  }

  .services-title h2{
    font-size:40px;
  }

  .service-card h3{
    font-size:24px;
  }
}

@media(max-width:600px){

  .services-section{
    padding:60px 25px;
  }

  .services-title h2{
    font-size:32px;
  }

  .service-card ul li{
    font-size:15px;
  }
}

    

    /* =========================
       RESPONSIVE
    ==========================*/
    @media(max-width:992px){

     

      nav ul{
        gap:20px;
      }
    }

    @media(max-width:600px){

      header{
        flex-direction:column;
        gap:20px;
      }

      nav ul{
        flex-wrap:wrap;
        justify-content:center;
      }
	}

      .hero-banner {
      position: relative;
      width: 100%;
      height: 260px;
      overflow: hidden;
    }

    .hero-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: brightness(65%);
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.15);
    }

    .hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      display: flex;
      align-items: center;
      gap: 30px;
      text-align: center;
      white-space: nowrap;
    }

    .hero-title {
      color: white;
      font-size: 2.3rem;
      font-weight: 400;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .hero-btn {
      background: #0f5c63;
      color: white;
      text-decoration: none;
      padding: 14px 28px;
      font-family: Arial, sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: background 0.3s ease;
    }

    .hero-btn:hover {
      background: #0b474d;
    }

    @media (max-width: 768px) {
      .hero-content {
        flex-direction: column;
        gap: 18px;
        white-space: normal;
        width: 90%;
      }

      .hero-title {
        font-size: 1.2rem;
        line-height: 1.2;
      }
	  
	  .hero-btn {
      padding: 10px 22px;
      font-size: 0.65rem;
    }
    }



/* =========================
   FOOTER
=========================*/

.footer{
  background:#000;
  color:#bdbdbd;
  text-align:center;
  padding:20px 20px;
}

.footer p{
  font-size:16px;
  margin:12px 0;
}

.footer-line{
  width:40px;
  height:1px;
  background:#444;
  margin:20px auto;
}

/* =========================
   RESPONSIVE
=========================*/

@media(max-width:900px){

  .about-grid{
    grid-template-columns:1fr;
  }

  .section-title h2{
    font-size:42px;
  }
}

@media(max-width:600px){

  .about-section{
    padding:60px 25px;
  }

  .section-title h2{
    font-size:34px;
  }

  .about-card p{
    font-size:15px;
  }
}