
/*  import google fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    user-select: none;

}
html{
    scroll-behavior: smooth;
}
html, body {
    max-width: 100%;
    overflow-x: hidden; /* Prevents horizontal scrolling */
}

/* custom scroll bar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #000;
}
::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* all similar content styling codes */
section{
    padding: 100px 0;
}
.max-width{
    height: 100%;
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}
.about, .services, .skills, .featured, .contact, footer{
    font-family: 'Poppins', sans-serif;
    
}
.about .about-content, 
.services,
.skills .skills-content,
.contact .contact-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.serv-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Adjust the gap between cards as needed */
}

/* Alignment for the first row */
.row-space-between {
    justify-content: space-between;
    width: 100%; /* Ensure this row spans the full width of its container */
    padding: 3%;
}

/* Alignment for the second row */
.row-center {
    justify-content: center;
    width: 100%; /* Ensure this row also spans the full width */
}


section .title {
  position: relative;
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 60px;
  padding-bottom: 20px;
  font-family: 'Ubuntu', sans-serif;
}

section .title::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 180px;
  height: 3px;
  background: #11111100;
  transform: translateX(-50%);
}

section .title::after {
  content: attr(data-after); /* Use 'data-after' attribute as content */
  font-size: 24px;
  color: #176B3A;
  padding: 0 10px; /* Add padding */
  background: transparent;
  display: block;
  margin-top: 10px; /* Add margin to separate from title */
}

/* navbar styling */
.navbar{
  position: fixed;
  width: 100%;
  z-index: 999;
  padding: 30px 0;
  font-family: 'Ubuntu', sans-serif;
  transition: all 0.3s ease;
}
.navbar.sticky{
  padding: 15px 0;
  background: #176B3A;
}
.navbar .max-width{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .logo a{
  color: #FCDB00;
  font-size: 35px;
  font-weight: 600;
  z-index: 1000;
  position: relative;
}
.navbar .logo a span{
  color: #176B3A;
  font-size: 35px;
  z-index: 1000;
  transition: all 0.3s ease;
  position: relative;
}
.navbar.sticky .logo a span{
  color: #fff;
}
.navbar .menu li{
  list-style: none;
  display: inline-block;
  padding: 25px;
}
.navbar .menu li a{
  display: block;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  margin-left: 28px;
  transition: color 0.3s ease;
  height: 40px; /* Set a fixed height */
  line-height: 40px; /* Vertically center the text */
}
.navbar .menu li a:hover{
  color: #176B3A;
}
.navbar.sticky .menu li a:hover{
  color: #fff;
}

/* menu btn styling */
.menu-btn{
    color: #000;
    font-size: 28px;
    cursor: pointer;
    display: none;
    margin-right: -50px;
}

.menu-btn i.active {
  color: #ffffff; /* Color when active */
}

.social-menu-icons {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none; /* Initially hide the icons */
  padding: 20px 0;
  background: linear-gradient(#176B3A,#111111); /* Background color for the icons container */
}

.social-menu-icons a {
  color: #fff;
  margin: 0 10px;
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-menu-icons a:hover {
  color: #176B3A;
}

.scroll-up-btn{
    position: fixed;
    height: 38px;
    width: 32px;
    background: #176B3A;
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    z-index: 9999;
    font-size: 30px;
    border-radius: 6px;
    border-bottom-width: 2px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.scroll-up-btn.show{
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
}
.scroll-up-btn:hover{
    filter: brightness(190%);
}


/* home section styling */
.home {
  display: flex;
  justify-content: space-between; /* Ensures that children (left and right content) are spread out evenly */
  align-items: center; /* Vertically centers children within the section */
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8)); /* Gradient background for aesthetic appeal */
  height: 100%; /* Adjusted height for better proportion */
  color: #fff; /* Text color */
}
.home .max-width {
  max-width: 1080px; /* Set a maximum width for the container */
  margin: 0 auto; /* Center the container */
  padding: 0 20px; /* Add some padding to the sides */
  width: 100%; /* Ensure the container takes up the full width */
  box-sizing: border-box; /* Include padding in the total width */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center; /* Ensure text-1 is centered */
}
.home-content img {
  width: 100%;
  height: auto;
  margin-left: 0; /* Adjust this based on your layout needs */
}
.left-column-image{
  height: 300px;
}

.text-1 {
  width: 100%; /* Ensure text-1 spans the full width */
  font-size: 40px;
  font-weight: 1000;
  margin-bottom: 30px; /* Space between text-1 and the columns below */
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent; /* Make the text color transparent to show the gradient */
  display: inline-block; /* Required for gradients in some cases */
  text-align: center; /* Keep the text centered if it was before */
}

.columns {
  display: flex;
  width: 100%; /* Match the parent's width */
  justify-content: space-between;
}
.left-column img.left-column-image {
  width: 300px; /* Fixed width as per your HTML inline styles */
  height: auto; /* Fixed height to match the width for consistency */
  margin-bottom: 10px; /* Add some space between the image and the next text */
  border-radius: 15px; /* Adds smooth rounded corners */
  border: 2px solid #ddd; /* Example border: light grey, you can adjust the color */
  object-fit: cover; /* Ensures the images cover the area without losing aspect ratio */
}
.left-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Aligns content to the left */
  padding: 0 10px; /* Adjust padding as needed */
  font-size: 25px;
  font-family: 'Poppins', sans-serif;
  color: #000;
  text-align: left; /* Ensures text alignment is also to the left */
}

.text-1-right .text-1-span{
  font-size: 40px;
  text-align: center;
  color: #176B3A;
  font-weight: 800;
}

.left-column, .text-1-right {
  flex: 1; /* Each column takes up an equal amount of space */
  margin-top: 1%;
  padding: 0 15px; /* Spacing inside each column */
  font-size: 25px;
  font-family: 'Poppins', sans-serif;
  color: #000 ;
  text-align: left;
}
.img-center{
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  height: 300px; 
  width: 300px;
}
/* Adjustments for the email button to center it below the columns */
.max-width .email-button {
  display: block; /* Changes display from flex to block for the button */
  background: #176B3A; /* Background color with transparency */
  color: #fff; /* Text color */
  text-align: center; /* Centers the text inside the button */
  width: fit-content; /* Adjust the width to fit its content */
  padding: 12px 36px; /* Padding for size and comfort */
  margin: 150px auto 0; /* Adds top margin, auto for left and right margins centers the button */
  font-size: 25px; /* Font size for visibility */
  border-radius: 6px; /* Rounded corners for the button */
  border: 2px solid #176B3A; /* Border to enhance button appearance */
  transition: all 0.3s ease; /* Smooth transition for hover effects */
}
.max-width .email-button:hover {
  color: #176B3A; /* Changes text color on hover */
  background: none; /* Removes background color on hover */
}




/* about section styling */
.about .title::after{
  content: "[ who we are ]";
  color: #176B3A;
}
.about .about-content .left{
  width: 45%;
}
.about .about-content .left img{
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
.about .about-content .right{
  width: 55%;
}
.about .about-content .right .text{
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
}
.about .about-content .right .text span{
  color: #176B3A;
}
.about .about-content .right p{
  text-align: left;
  font-size: 18px;
}
.about .about-content .right a{
  display: inline-block;
  background: #176B3A;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  padding: 10px 30px;
  margin-top: 20px;
  border-radius: 6px;
  border: 2px solid #176B3A;
  transition: all 0.3s ease;
}


/* services section styling */
.services, .featured{
    color:#fff;
    background: #111;
}
.services .title::after{
  content: "[ Solutions & Installations ]";
  color: #176B3A;
}

.services .serv-content .card{
  width: calc(33% - 20px);
  background: #222;
  text-align: left;
  border-radius: 6px;
  padding: 20px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden; 
}
.services .serv-content .card:hover{
  background: #176B3A;
}
.services .serv-content .card .box{
  transition: all 0.3s ease;
}
.services .serv-content .card:hover .box{
  transform: scale(1.05);
}
.services .serv-content .card i{
  font-size: 50px;
  color: #176B3A;
  transition: color 0.3s ease;
}
.services .serv-content .card:hover i{
  color: #fff;
}
.services .serv-content .card .text{
  font-size: 25px;
  font-weight: 500;
  margin: 10px 0 7px 0;
}




/* featured section styling */
.featured .title::after{
  content: "[ Certified upon Completion ]";
  color: #176B3A;
}
.featured .carousel .card{
    background: #222;
    border-radius: 6px;
    padding: 25px 35px;
    text-align: center;
    overflow: hidden;
    transition: all 0.3s ease;
}
.featured .carousel .card:hover{
    background: #176B3A;
}
.featured .carousel .card .box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.featured .carousel .card:hover .box{
    transform: scale(1.05);
}
.featured .carousel .card .text{
    font-size: 25px;
    color: #ffffff;
    font-weight: 500;
    margin: 10px 0 7px 0;
}
.featured .carousel .card img{
    height: auto; /* Maintains the aspect ratio of the image */
    display: block; /* Removes any default inline spacing beneath the image */
    margin-left: 0 auto;
    border-radius: 10px; /* Optional: Adds rounded corners to the image */
    height: 220px;
    width: 250px;
    object-fit:inherit;
    border-radius: 50%;
    border: 5px solid #176B3A;
    transition: all 0.3s ease;
}

.featured .carousel .card:hover img{
    border-color: #fff;
}
.owl-dots{
    text-align: center;
    margin-top: 20px;
}
.owl-dot{
    height: 13px;
    width: 13px;
    margin: 0 5px;
    outline: none!important;
    border-radius: 50%;
    border: 2px solid white!important;
    transition: all 0.3s ease;
}
.owl-dot.active{
    width: 35px;
    border-radius: 14px;
}
.owl-dot.active,
.owl-dot:hover{
    background: #176B3A!important;
}


/* contact section styling */
.container {
    position: relative;
    width: 100%;
    min-height: 60vh;
    padding: 2rem;
    background-color: #fafafa;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .form {
    width: 100%;
    max-width: 100%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    z-index: 0;
  }
  
  .contact-form {
    background-color: #176B3A;
    position: relative;
  }
  
  .circle {
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 20%, #FCDB00);
    position: absolute;
  }
  
  .circle.one {
    width: 130px;
    height: 130px;
    top: 130px;
    right: -40px;
  }
  
  .circle.two {
    width: 80px;
    height: 80px;
    top: 10px;
    right: 30px;
  }
  
  .contact-form:before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: #176B3A;
    transform: rotate(45deg);
    top: 50px;
    left: -13px;
  }
  
  form {
    padding: 2.3rem 2.2rem;
    z-index: 10;
    overflow: hidden;
    position: relative;
  }
  
  .title {
    color: #FCDB00;
    padding-bottom: 20%;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1;
  }
  
  .input-container {
    position: relative;
    margin: 1rem 0;
  }
  
  .input {
    width: 100%;
    outline: none;
    border: 2px solid #fafafa;
    background: none;
    padding: 0.6rem 1.2rem;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 5px;
    transition: 0.3s;
  }
  
  textarea.input {
    padding: 0.8rem 1.2rem;
    min-height: 150px;
    border-radius: 5px;
    resize: none;
    overflow-y: auto;
  }
  
  .input-container label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    padding: 0 0.4rem;
    color: #fafafa;
    font-size: 0.9rem;
    font-weight: 400;
    pointer-events: none;
    z-index: 1000;
    transition: 0.5s;
  }
  
  .input-container.textarea label {
    top: 1rem;
    transform: translateY(0);
  }
  
  .btn {
    padding: 0.6rem 1.3rem;
    background-color: #fff;
    border: 2px solid #fafafa;
    font-size: 0.95rem;
    color: #176B3A;
    line-height: 1;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    margin: 0;
    width: 100%;
  }
  
  .btn:hover {
    background-color: transparent;
    color: #fff;
  }
  
  .input-container span {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    padding: 0 0.4rem;
    color: transparent;
    pointer-events: none;
    z-index: 500;
  }
  
  .input-container span:before,
  .input-container span:after {
    content: "";
    position: absolute;
    width: 10%;
    opacity: 0;
    transition: 0.3s;
    height: 5px;
    background-color: #176B3A;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .input-container span:before {
    left: 50%;
  }
  
  .input-container span:after {
    right: 50%;
  }
  
  .input-container.focus label {
    top: 0;
    transform: translateY(-50%);
    left: 25px;
    font-size: 0.8rem;
  }
  
  .input-container.focus span:before,
  .input-container.focus span:after {
    width: 50%;
    opacity: 1;
  }
  
  .contact-info {
    padding: 2.3rem 2.2rem;
    position: relative;
  }
  
  .contact-info .title {
    color: #176B3A;
  }
  
  .information {
    display: flex;
    color: #555;
    margin: 0.7rem 0;
    align-items: center;
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .information i {
      color: #176B3A;
  }

  .info {
      display: flex;
      flex-direction: column;
  }

  .map-container {
      margin-top: 10px;
  } 

  .icon {
    width: 28px;
    margin-right: 0.7rem;
  }
  
  .social-media {
    padding: 2rem 0 0 0;
  }
  
  .social-media p {
    color: #333;
  }
  
  .social-icons {
    display: flex;
    margin-top: 0.5rem;
  }
  
  .social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background: linear-gradient(45deg, #129033, #149279);
    color: #fff;
    text-align: center;
    line-height: 35px;
    margin-right: 0.5rem;
    transition: 0.3s;
    z-index: 500;
  }
  
  .social-icons a:hover {
    transform: scale(1.05);
  }
  
  .contact-info:before {
    content: "";
    position: absolute;
    width: 110px;
    height: 100px;
    border: 22px solid #FCDB00;
    border-radius: 50%;
    bottom: -77px;
    right: 50px;
    opacity: 0.3;
  }
  
  .big-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #FCDB00, #176B3A);
    bottom: 50%;
    right: 50%;
    transform: translate(-40%, 38%);
  }
  
  .big-circle:after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background-color: #fafafa;
    border-radius: 50%;
    top: calc(50% - 180px);
    left: calc(50% - 180px);
  }
  
  .square {
    position: absolute;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(181%, 11%);
    opacity: 0.2;
  }

/* Popup message styles */
.popup-message {
  position: fixed;
  bottom: 20%;
  right: 30%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: none; /* Initially hidden */
  z-index: 9999;
}

/* footer section styling */
footer{
  background: #111;
  padding: 15px 23px;
  color: #fff;
  text-align: center;
}
footer span a{
  color: #176B3A;
  text-decoration: none;
}
footer span a:hover{
  text-decoration: underline;
}



/* sizing  */
@media (max-width: 1080px){
  .menu-btn{
      display: block;
      z-index: 999;
      order: 4;
  }
  .menu-btn i.active:before{
      content: "\f00d"; /* Correct icon for close (X) */
  }
  .navbar .menu{
      position: fixed;
      height: 100vh;
      right: -100%; 
      top: 0;
      background: #111;
      text-align: center;
      padding-top: 100px;
      transition: all 0.3s ease;
  }
  
  .navbar .menu.active{
      right: 0;
      transition: all 0.5s ease;
  }

  .navbar .menu li{
    display: block;
    max-width: 300px;
  }

  .navbar .menu li a{
      display: inline-block;
      color: #fff;
      margin: 15px 0;
      font-size: 25px;
  }

  .social-menu-icons {
    display: flex; /* Initially hide the icons */
    justify-content: flex-start;
    padding: 35px 10px;
    order: 5;
  }
  .columns {
    flex-direction: column-reverse; /* Change the flex direction to reverse the order */
    align-items: center;
  }

  .left-column {
    width: 100%;
    text-align: center;
  }

  .left-column img {
    display: block;
    margin: 0 auto 20px;
    max-width: 80%;
    height: auto;
  }

  .text-1-right {
    text-align: center;
    margin-bottom: 20px;
  }
  .home .home-content .text-2,
  .home .home-content .text-3,
  .home .home-content a{
      /* Adjust font sizes for readability */
      font-size: adjust; /* Adjust based on specific needs */
  }

  .max-width{
      max-width: 100%; /* Make max-width responsive */
  }

  .about .about-content .left img {
    height: auto;
    max-width: 50%;
    align-items: center;
  }

  .about .about-content .left img {
    width: 100%;
    height: auto;
  }

  .about .about-content .column,
  .services .serv-content .card,
  .skills .skills-content .column,
  .contact .contact-content .column{
      /* Adjust widths and margins for a fluid layout */
      width: 100%;
      margin-bottom: adjust; /* Adjust based on specific layout */
  }
}


@media screen and (max-width: 768px) {
  .menu-btn {
    display: block;
  }

  .navbar .menu li a{
    display: block;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-left: 28px;
    transition: color 0.5s ease;
    height: 40px; /* Set a fixed height */
    line-height: 40px; /* Vertically center the text */
  }

  .menu-btn {
      display: block;
      margin-left: auto; /* Ensure it stays on the far right */
  }

  .social-menu-icons {
    display: flex; /* Initially hide the icons */
    justify-content: flex-start;
    padding: 35px 10px;
    order: 5;
  }

  .columns {
    flex-direction: column-reverse; /* Change the flex direction to reverse the order */
    align-items: center;
  }

  .left-column {
    width: 100%;
    text-align: center;
  }

  .left-column img {
    display: block;
    margin: 0 auto 20px;
    max-width: 80%;
    height: auto;
  }

  .text-1-right {
    text-align: center;
    margin-bottom: 20px;
  }

  .about .about-content .left img {
    height: auto;
    max-width: 50%;
    align-items: center;
  }

  .contact .contact-info .text {
    font-size: 14px;
    text-align: center;
  }

  .contact .contact-info .info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-form,
  .contact-info {
    padding: 1.5rem 1.2rem;
  }

  .contact .social-media {
    text-align: center;
  }

  .contact .social-icons {
    display: flex;
    justify-content: center;
  }

  .contact .social-icons a {
    margin: 0 10px;
  }

  .form {
    grid-template-columns: 1fr;
  }

  .big-circle {
    width: 300px;
    height: 300px;
    transform: translate(-50%, 50%);
  }

  .big-circle:after {
    width: 200px;
    height: 200px;
    top: calc(50% - 100px);
    left: calc(50% - 100px);
  }

  .square {
    height: 200px;
    transform: translate(130%, 25%);
  }
}

@media screen and (max-width: 576px) {
  .menu-btn {
    display: block;
  }

  .navbar .menu li a{
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-left: 28px;
    transition: color 0.3s ease;
    height: 40px; /* Set a fixed height */
    line-height: 40px; /* Vertically center the text */
  }

  .menu-btn {
      display: block;
      margin-left: auto; /* Ensure it stays on the far right */
  }

  .social-menu-icons {
    display: flex; /* Initially hide the icons */
    justify-content: flex-start;
    padding: 35px 10px;
    order: 5;
  }

  section .title {
    font-size: 30px;
  }

  section .subtitle {
      font-size: 18px;
  }

  .columns {
    flex-direction: column-reverse; /* Change the flex direction to reverse the order */
    align-items: center;
  }

  .left-column {
    width: 100%;
    text-align: center;
  }

  .left-column img {
    display: block;
    margin: 0 auto 20px;
    max-width: 80%;
    height: auto;
  }

  .text-1-right {
    text-align: center;
    margin-bottom: 20px;
  }

  .about .about-content .left img {
    height: auto;
    width: auto;
    max-width: 60%;
  }

  .contact .max-width {
    padding: 0 20px;
  }
  
  .contact .title {
    font-size: 30px;
    text-align: center;
  }

  .contact .container {
    flex-direction: column;
    align-items: center;
  }

  .contact .contact-info, .contact .contact-form {
    width: 100%;
    padding: 20px;
  }

  .contact .contact-info .title, .contact .contact-form .title {
    font-size: 20px;
    text-align: center;
  }

  .contact .contact-info .text {
    font-size: 14px;
    text-align: center;
  }

  .contact .contact-info .info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact .contact-info .information {
    margin-bottom: 10px;
  }

  .contact .social-media {
    text-align: center;
  }

  .contact .social-icons {
    display: flex;
    justify-content: center;
    z-index: 1000;
  }

  .contact .social-icons a {
    margin: 0 10px;
  }

  .contact .form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact .contact-form .input-container {
    margin-bottom: 15px;
  }

  .contact .contact-form .input, .contact .contact-form .textarea .input {
    width: 100%;
  }

  .contact .contact-form .btn {
    width: 100%;
    padding: 10px;
  }

  .contact .popup-message {
    text-align: center;
    font-size: 16px;
  }
}


@media screen and (max-width: 430px) {
  .navbar {
    display: flex;
    justify-content: space-between; /* Distribute space between title and menu button */
    align-items: center; /* Vertically center the items */
    width: 100%;
  }

  .navbar a,
  .navbar span {
    font-size: 18px; /* Adjust font size for small screens */
    margin-left: 0; /* Remove any left margin */
    margin-right: auto; /* Ensure it stays on the far left */
  } 

  .navbar .menu li a{
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-left: 10px;
    transition: color 0.3s ease;
    height: 0px; /* Set a fixed height */
    line-height: 0px; /* Vertically center the text */
  }

  .menu-btn {
    display: block;
    margin-left: auto; /* Ensure it stays on the far right */
  }

  .social-menu-icons a {
    color: #fff;
    margin: 0 8px; /* Negative margin to reduce space between icons */
    font-size: 16px;
    transition: color 0.3s ease;
  }

  .scroll-up-btn{
    position: fixed;
    height: 30px;
    width: 24px;
    background: #176B3A;
    right: 20px;
    bottom: 5px;
    text-align: center;
    line-height: 30px;
    color: #fff;
    z-index: 9999;
    font-size: 20px;
    border-radius: 6px;
    border-bottom-width: 2px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  section .title {
      font-size: 30px;
  }

  section .subtitle {
      font-size: 18px;
  }

  .home .max-width {
    width: 100%;
    padding: 0 15px; /* Add padding to prevent content from touching the edges */
    box-sizing: border-box; /* Ensure padding is included in the element's total width and height */
  }

  .home .columns {
    display: flex;
    flex-direction: column-reverse; /* Makes the right column come first */
    align-items: center; /* Centers the columns */
    width: 100%; /* Ensure columns fit within the parent container */
  }

  .home .left-column,
  .home .text-1-right {
    width: 80%;
    text-align: center;
  }

  .home .left-column img {
    width: 50%;
    height: auto;
    margin-bottom: 15px;
  }

  .home .text-1-right .img-center {
    width: 70%;
    height: auto;
  }

  .home .text-1-right {
    font-size: 18px; /* Smaller font size */
    margin-bottom: 2px; /* Adds space between the text and the images */
  }

  .about .about-content .left img {
      height: auto;
      width: auto;
      max-width: 80%;
  }

  .featured .carousel .card {
      padding: 15px;
  }

  .featured .carousel .card .text {
      font-size: 20px;
  }

  .featured .carousel .card img {
      height: 150px;
      width: 150px;
  }

  .contact .max-width {
      padding: 0 20px;
  }

  .contact .title {
      font-size: 30px;
      text-align: center;
  }

  .contact .container {
      flex-direction: column;
      align-items: center;
  }

  .contact .contact-info, 
  .contact .contact-form {
      width: 100%;
      padding: 20px;
  }

  .contact .contact-info .title, 
  .contact .contact-form .title {
      font-size: 20px;
      text-align: center;
  }

  .contact .contact-info .text {
      font-size: 14px;
      text-align: center;
  }

  .contact .contact-info .info {
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .contact .contact-info .information {
      margin-bottom: 10px;
  }

  .contact .social-media {
      text-align: center;
  }

  .contact .social-icons {
      display: flex;
      justify-content: center;
      z-index: 1000;
  }

  .contact .social-icons a {
      margin: 0 10px;
  }

  .contact .form {
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .contact .contact-form .input-container {
      margin-bottom: 15px;
  }

  .contact .contact-form .input, 
  .contact .contact-form .textarea .input {
      width: 100%;
  }

  .contact .contact-form .btn {
      width: 100%;
      padding: 10px;
  }

  .contact .popup-message {
      text-align: center;
      font-size: 16px;
  }

  .contact .contact-info .information p {
    font-size: 12px; /* Adjust the font size */
    word-wrap: break-word; /* Allow long words to be broken and wrap onto the next line */
}
}