
    /* ============================================
      GLOBAL STYLES
    ============================================ */
    body {
      font-family: Arial, sans-serif;
      background: #fff;
      margin: 0;
      height: 100%;
    }
    main {
      padding: 0 20%;
    }
    h1, p {
      color: #000;
      text-align: center;
    }
    p{
    line-height: 1.6;
    color: #555;
    font-family: 'Open Sans', sans-serif;
    }
/* ============================================
  NAVIGATION
============================================ */

  .navbar{
    flex: 1;
    text-align: left;
    padding: 10px 0;
  }
  .navbar ul {
    display: flex;
    gap: 20px; /* space between links */
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .navbar ul li a {
    display: block;
    color: #fff;
    text-align: center;
    float: right;
    padding: 14px 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 1.2rem;
  }
  .navbar ul li a:hover {
    color: #000;
    background-color: #fff;
  }
  .navimg {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0% 20%;
  }
  .navimg .navbar img{
    height: 125px;
  }
  @media (max-width: 1318px){
    .navimg .navbar img{
      height: 150px;
    }
  }
/* ============================================
  BANNER
============================================ */

  .background-image {
    position: relative;
    background: url("images/build_site.png") center/cover no-repeat;
    height: auto;
    color: #fff;
    overflow: hidden;
  }
  .background-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.35); /* adjustable darkness */
    z-index: 1;
  }
  .background-image * {
    position: relative;
    z-index: 2;
  }
  .caption {
    position: relative;
    margin: 2% 20%;
  }
  .caption span.border {
    color: #fff;
    font-size: 6rem;
    font-family: 'Times New Roman', Times, serif;
    letter-spacing: 0;
  }
  .sub-heading p{
    padding: 0 30% 0 0%;
    color: #fff;
    font-size: 1rem;
    font-family: 'Times New Roman', Times, serif;
    letter-spacing: 0;
    text-align: left;
  }
  button{
    background-color: #04aa4f;
    border: none;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 8px;
    font-weight: bold;
  }
  button a{
    text-decoration: none;
    color: white;
  }
  button:hover{
    background-color: #2d22be;
  }
  @media (max-width:1317px){
    .sub-heading p{
      padding: 0%;
    }
    .caption span.border{
      font-size: 2.5rem;
      font-weight: bolder;
      letter-spacing: 0;
    }
  }
/* ============================================
  CONTENT SECTIONS
============================================ */
  .reviews{
    padding: 0 10%;
  }
  .review-button{
    text-align: center;
  }
  .portfolio {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
  }
  .row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .column {
    flex: 1 1 30%;
    max-width: 30%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  .column img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
    display: block;
  }
  .column:hover img {
    transform: scale(1.05);
    filter: brightness(0.9);
    cursor: pointer;
  }
  @media (max-width: 900px) {
    .column {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }

  /* FOUR COLUMN LAYOUT --------------------------------------- */
  .column4 {
    flex: 1 1 20%;
    max-width: 30%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  .column4 img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
    display: block;
  }
  .column4:hover img {
    transform: scale(1.05);
    filter: brightness(0.9);
    cursor: pointer;
  }
  @media (max-width: 900px) {
    .column4 {
      flex: 1 1 45%;
      max-width: 45%;
    }
  }
  @media (max-width: 600px) {
    .column4 {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }

  /* TWO COLUMN LAYOUT --------------------------------------- */
    .button-icons {
    flex: 1;
    }
  .two-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .button-icons ul li a{
    color: white; 
    font-size: 2.5rem;
    transition: color 0.3s ease;
  }
  .button-icons ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px; 
    float: right;
  }
  .image-text {
    position: absolute;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 1px;
    background-color: rgba(0, 0, 0, 0.5); 
    padding: 8px 16px;
    border-radius: 6px;
    pointer-events: none; 
  }
  .contact-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
  }
  .two-column {
    flex: 1 1 45%;
    min-width: 300px;
  }
  .two-column img {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .two-column h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #2b2b2b;
    font-family: 'Poppins', sans-serif;
  }
  .two-column h2 {
    margin-top: 30px;
    font-size: 1.5rem;
    color: #444;
    border-bottom: 2px solid #ddd;
    display: inline-block;
    padding-bottom: 4px;
  }
  .two-column p {
    line-height: 1.6;
    color: #555;
    font-family: 'Open Sans', sans-serif;
  }
  .owner {
    font-weight: 600;
    margin-top: 10px;
  }
  .contact-info {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    font-size: 1.1rem;
    color: #333;
  }
  .contact-info li {
    margin-bottom: 10px;
  }
  .clearfix{
    clear:both;
  }

  @media (max-width:1600px){
    .image-text{
      font-size: 2rem;
    }
  }
  @media (max-width:1400px){
    .image-text{
      font-size: 1.5rem;
    }
  }
  @media (max-width:1100px){
    .image-text{
      font-size: 1rem;
    }
  }
  @media (max-width:900px){
    .image-text{
      font-size: 2rem;
    }
  }
  @media (max-width:750px){
    .image-text{
      font-size: 1.5rem;
    }
  }
  @media (max-width:600px){
    .image-text{
      font-size: 2.5rem;
    }
  }

  /* ============================================
    FOOTER
  ============================================ */
  .social-footer {
    background-color: #8a8a8a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 3px 30%;
  }
  .social-footer .social-footer-icons ul {
    list-style: none;      
    display: flex;         
    gap: 15px;             
    padding: 0;
    margin: 0;
    justify-content: center; 
  }
  .social-footer .social-footer-icons ul li a{
    color: white;
  }
  .social-footer .social-footer-icons li:last-of-type {
    margin-right: 0;
  }
  .social-footer .social-footer-icons .fa {
    font-size: 1.3rem;
    color: #fefefe;
  }
  .social-footer .social-footer-icons .fa:hover {
    color: #4a4a4a;
    transition: color 0.3s ease-in;
  }

  @media (max-width: 1320px) {
    .social-footer {
      flex-direction: column;     
      justify-content: center;    
      align-items: center;        
      padding: 10px 5%;           
      text-align: center;        
    }

    .social-footer .social-footer-icons ul {
      flex: none;                 
      justify-content: center;    
      max-width: 100%;
    }

    .social-footer .social-footer-left {
      margin-bottom: 10px;        
    }
  }

/* ============================================
   MOBILE (PHONES)
============================================ */
@media (max-width: 600px) {

  main {
    padding: 0 5%; 
  }
  h1 {
    font-size: 1.8rem;
  }
  p {
    font-size: 1rem;
    padding: 0%;
  }
  .navimg .navbar img {
    height: 115px;
    margin-bottom: 10px;
  }
}
@media (max-width:900px) {
  .navbar ul {
    flex-direction: column;
    align-items: right;
    gap: 10px;
  }

  .navbar ul li a {
    font-size: 1rem;
    padding: 10px 0;
  }
}
