@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
        /* styles.css */
        /* General Styles */
body {
    font-weight: bolder;
    margin: 0;
    padding: 0;
}


/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo img {
    width: 200px;
    height: auto;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #1f2d3d;
    font-size: 18px;
    font-weight: 600;
    padding: 10px;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links .active {
    color: #1a2a48;
    background-color: #dce3f1;
    border-radius: 5px;
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    list-style: none;
    top: 100%;
    left: 0;
    min-width: 150px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 10px;
    text-align: left;
}

.dropdown-menu li a {
    display: block;
    padding: 10px;
    color: #1f2d3d;
}

.dropdown-menu li a:hover {
    background-color: #dce3f1;
}

/* Responsive Design */
.menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* Media Queries */
@media screen and (max-width: 1024px) {
    .nav-links {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: white;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        margin: 0;
        padding: 10px 0;
    }

    .menu-icon {
        display: block;
    }
}

@media screen and (max-width: 480px) {
    .logo img {
        width: 100px;
    }

    .nav-links a {
        font-size: 16px;
    }
}

ul.slides {
    display: block;
    position: relative;
    height: 800px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    list-style: none;
}

.slides * {
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

ul.slides input {
    display: none; 
}


.slide-container { 
    display: block; 
}

.slide-image {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    opacity: 0;
    transition: all .7s ease-in-out;
}   

.slide-image img {
    width: auto;
    min-width: 100%;
    height: 100%;
}

.carousel-controls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    font-size: 100px;
    line-height: 600px;
    color: white;
}

.carousel-controls label {
    display: none;
    position: absolute;
    padding: 0 20px;
    opacity: 0;
    transition: opacity .2s;
    cursor: pointer;
}

.slide-image:hover + .carousel-controls label{
    opacity: 0.5;
}

.carousel-controls label:hover {
    opacity: 1;
}

.carousel-controls .prev-slide {
    width: 49%;
    text-align: left;
    left: 0;
}

.carousel-controls .next-slide {
    width: 49%;
    text-align: right;
    right: 0;
}

.carousel-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    z-index: 999;
    text-align: center;
}

.carousel-dots .carousel-dot {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: white;
    opacity: 0.5;
    margin: 10px;
}

input:checked + .slide-container .slide-image {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1s ease-in-out;
}

input:checked + .slide-container .carousel-controls label {
     display: block; 
}

input#img-1:checked ~ .carousel-dots label#img-dot-1,
input#img-2:checked ~ .carousel-dots label#img-dot-2,
input#img-3:checked ~ .carousel-dots label#img-dot-3,
input#img-4:checked ~ .carousel-dots label#img-dot-4,
input#img-5:checked ~ .carousel-dots label#img-dot-5,
input#img-6:checked ~ .carousel-dots label#img-dot-6 {
	opacity: 1;
}


input:checked + .slide-container .nav label { display: block; }


/* For tablets and small desktops (up to 1024px) */
@media (max-width: 1024px) {
    .slides {
        height: 500px; /* Reduce height for tablets */
        margin-bottom: 0px;
    }

    .carousel-controls {
        font-size: 80px; /* Decrease font size for navigation controls */
        line-height: 400px;
    }

    .carousel-dots .carousel-dot {
        width: 20px;
        height: 20px;
    }

    .slide-image img {
        width: 100%;
        height: auto;
    }
}

/* For tablets and medium-sized devices (up to 768px) */
@media (max-width: 768px) {
    .slides {
        height: 350px; /* Further decrease carousel height */
    }

    .carousel-controls {
        font-size: 50px; /* Adjust size for controls */
        line-height: 250px;
    }

    .carousel-controls label {
        padding: 0 10px;
    }

    .carousel-controls .prev-slide,
    .carousel-controls .next-slide {
        width: 45%;
        font-size: 40px;
    }

    .carousel-dots .carousel-dot {
        width: 15px;
        height: 15px;
        margin: 5px;
    }

    .slide-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

/* For mobile screens (up to 480px) */
@media (max-width: 480px) {
    .slides {
        height: 250px; /* Reduce height for mobile */
    }

    .carousel-controls {
        font-size: 30px;
        line-height: 200px;
    }

    .carousel-controls label {
        padding: 0 5px;
    }

    .carousel-controls .prev-slide,
    .carousel-controls .next-slide {
        width: 40%;
        font-size: 30px;
    }

    .carousel-dots .carousel-dot {
        width: 10px;
        height: 10px;
        margin: 3px;
    }

    .slide-image {
        position: relative;
    }

    .slide-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}


.section-2 {
    background-color: white;
    padding-top: 20px;
    padding-bottom: 60px;
  }
  
  .section_wrapper {
    background-color: white;
    padding: 30px;
  }
  
  .tes-designer-manufacturer {
    text-align: center;
  }
  
  .tes-designer-manufacturer h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #55996f;
    margin-bottom: 20px;
  }
  
  .tes-designer-manufacturer p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
  }
  
  .tes-designer-manufacturer strong {
    font-weight: 800;
  }
  
  .tes-designer-manufacturer a {
    color: #55996f;
    text-decoration: none;
  }
  
  .tes-designer-manufacturer a:hover {
    text-decoration: underline;
  }
  
  .tes-designer-manufacturer-list {
    margin-bottom: 30px;
  }
  
  .tes-designer-manufacturer-list ul {
    list-style: none;
    padding: 0;
  }
  
  .tes-designer-manufacturer-list li {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.5;
  }
  
  .tes-designer-manufacturer-list li i {
    margin-right: 10px;
    color: #55996f;
  }
  
  .tes-designer-manufacturer-youtube {
    position: relative;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
    height: 0;
    overflow: hidden;
  }
  
  .tes-designer-manufacturer-youtube .rll-youtube-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .tes-designer-manufacturer-youtube img {
    width: 100%;
    height: auto;
    border-radius: 0px;
  }
  
  .tes-designer-manufacturer-youtube .play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
  }
  
  .plain-cta-container {
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    background-color: white; 
    padding: 10px 20px;  
    flex-wrap: wrap;
}
.cta-content h5 {
    font-size: 20px; 
    font-weight: 400; 
    color: #333; 
    margin: 0; 
    flex-grow: 1; 
}
.cta-content a {
    color: #55996f; 
    text-decoration: none;
}
.cta-content a:hover {
    text-decoration: underline;
}
.cta-button a {
    text-decoration: none;
}
.cta-yellow-btn {
    background-color: white; 
    color: #55996f; 
    border: 1px solid black; 
    border-radius: 10px;
    padding: 8px 16px; 
    margin-right: 300px;
    font-size: 1rem; 
    font-weight: 600;  
    cursor: pointer; 
    transition: background-color 0.3s;
}
.cta-yellow-btn:hover {
    background-color: #55996f;
    color: white;
}


  
  .text-youtube-container{
      display: flex;
  }
  
  .text-container{
      width: 60%;
  }
  
  .youtube-container{
      width: 40%;
  }


  .play {
    width: 60px; /* Adjust size as needed */
    height: 60px;
    background: url('play-button-icon.png') no-repeat center center; /* Replace with your play button image */
    background-size: cover;
    border: none;
    cursor: pointer;
    position: absolute; /* For placing over the thumbnail */
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%);
    z-index: 10;
}
/* General Section Styling */
.why-you-should-choose-us {
    background-color: white; /* Light background for contrast */
    padding: 30px 10px;
    text-align: center;
}

.why-you-should-choose-us .container {
    max-width: 1000px;
    margin: 10px auto;
}

.why-you-should-choose-us .row {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Title Styling */
.why-you-should-choose-us-title h2 {
    font-size: 40px;
    color: #55996f;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
}

.why-you-should-choose-us-title h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: #55996f; /* Accent color */
    margin: 10px auto 0;
    border-radius: 5px;
}

/* Content Styling */
.why-you-should-choose-us-content p {
    font-size: 20px;
    line-height: 1.8;
    color: black;
    text-align: justify;
    margin-bottom: 1px;
    max-width: 1000px;
}

.why-you-should-choose-us-content a {
    color: #55996f; /* Accent color */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.why-you-should-choose-us-content a:hover {
    color: black; /* Change color on hover */
    text-decoration: underline;
}

/* For large tablets and small desktops (up to 1024px) */
@media (max-width: 1024px) {
    .tes-designer-manufacturer h1 {
        font-size: 2.5rem; /* Reduce heading size */
    }

    .tes-designer-manufacturer p {
        font-size: 16px;
    }

    .text-youtube-container {
        flex-direction: column; /* Stack text and video */
        align-items: center;
    }

    .text-container,
    .youtube-container {
        width: 100%;
    }

    .cta-yellow-btn {
        margin-right: 150px; /* Reduce button margin */
        padding: 6px 14px;
        font-size: 0.9rem;
    }
}

/* For tablets and medium-sized devices (up to 768px) */
@media (max-width: 768px) {
    .section-2 {
        
        padding-bottom: 40px;
    }

    .tes-designer-manufacturer h1 {
        font-size: 2rem;
    }

    .tes-designer-manufacturer p {
        font-size: 15px;
        line-height: 1.4;
    }

    .tes-designer-manufacturer-list li {
        font-size: 14px;
    }

    .why-you-should-choose-us-title h2 {
        font-size: 30px;
    }

    .why-you-should-choose-us-content p {
        font-size: 18px;
    }

    .cta-button {
        text-align: center;
        width: 100%;
    }

    .cta-yellow-btn {
        margin: 0;
        width: 100%;
        text-align: center;
    }
}

/* For mobile screens (up to 480px) */
@media (max-width: 480px) {
    .section-2 {
        padding-top: 5px;
        padding-bottom: 30px;
    }

    .tes-designer-manufacturer h1 {
        font-size: 1.8rem;
    }

    .tes-designer-manufacturer p {
        font-size: 14px;
    }

    .tes-designer-manufacturer-list li {
        font-size: 13px;
    }

    .why-you-should-choose-us-title h2 {
        font-size: 26px;
    }

    .why-you-should-choose-us-content p {
        font-size: 16px;
    }

    .cta-button a {
        font-size: 14px;
    }

    .cta-yellow-btn {
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    .text-youtube-container {
        flex-direction: column;
        text-align: center;
    }

    .youtube-container {
        width: 100%;
    }

    .play {
        width: 50px;
        height: 50px;
    }
}



div.gallery-container{
    display: block;
    font-size: 3rem;
    font-weight: 600;
    color: #55996f;
    align-items: center;
    padding-top: 100px;

}


/* Reset float issues */
.gallery-container:after {
  content: "";
  display: table;
  clear: both;
}

/* Gallery items */
div.gallery {
  margin: 20px;
  float: left; /* Align items side by side */
  width: calc(33.33% - 40px); /* Three items per row with margin accounted for */
  box-sizing: border-box; /* Includes padding and borders in width calculations */
  padding-top: 50px;
  position: relative;
  transition: transform 0.3s ease-in-out;
  padding-bottom: 20px;
}

/* Image styling */
div.gallery img {
  width: 100%;
  height: auto;
  display: block;
}

/* Hover effect */
div.gallery:hover {
  transform: scale(1.05); /* Slight zoom effect */
  overflow: hidden;
}

/* Description styling */
div.desc {
  padding: 15px;
  text-align: center;
  font-size: 16px;
  color: #333;
}

/* Responsive design */
@media (max-width: 768px) {
  div.gallery {
    width: calc(50% - 40px); /* Two items per row */
  }
}

@media (max-width: 480px) {
  div.gallery {
    width: 100%; /* One item per row */
  }
}


.cta-green-btn {
  display: block;
  margin: 30px auto;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bolder;
  color: #55996f;
  background: white;
  background-size: 200% auto; /* Set larger background size for sliding effect */
  border: 1px solid black;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  transition: background-position 0.3s; /* Smooth sliding transition */
}

/* Hover effect */
.cta-green-btn:hover {
  background-position: right center; /* Moves gradient from left to right */
  background-color: #55996f;
  color: white;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .cta-green-btn {
    font-size: 14px; /* Slightly smaller text for smaller devices */
    padding: 10px 20px; /* Adjust padding for better fit */
  }
}

@media (max-width: 480px) {
  .cta-green-btn {
    font-size: 12px; /* Smaller text for very small screens */
    padding: 8px 16px; /* Adjust padding for compact size */
  }
}


.service-container {
    font-weight: 600;
    font-size: 2rem;
    font-style: bolder;
    color: #55996f;
    margin-top: 100px;
}

/* Base styles for the container */
.row {
    display: flex;
    flex-direction: row;
    align-items: center;  /* Center the content horizontally */
    justify-content: center;  /* Center the content vertically */
    gap: 80px;
    margin-top: 50px;
    padding-bottom: 25px;
}

/* Style for individual rows */
.benifit-col-block {
    margin-bottom: 20px; /* Add space between the blocks */
    text-align: center; /* Center the text inside each block */
}

/* Make the image responsive */
.item-image {
    width: 100px;
    height: 90px;
    margin-bottom: 10px;
}

/* Optional: Style for the benefit content */
.benifit-content p {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

/* Responsive Styles */

/* For screens smaller than 1200px (large screens like laptops) */
@media screen and (max-width: 1200px) {
    .row {
        gap: 40px;  /* Reduce gap between columns */
    }

    .benifit-col-block {
        width: 23%;  /* Adjust width to fit four columns */
    }

    .item-image {
        width: 90px;
        height: 80px;
    }
}

/* For screens smaller than 992px (medium screens like tablets) */
@media screen and (max-width: 992px) {
    .row {
        flex-direction: column;
        gap: 40px;  /* Add gap between blocks in column view */
    }

    .benifit-col-block {
        width: 80%;  /* Adjust width to fit the screen */
    }

    .item-image {
        width: 80px;
        height: 70px;
    }

    .benifit-content p {
        font-size: 16px;
    }
}

/* For screens smaller than 768px (mobile screens) */
@media screen and (max-width: 768px) {
    .service-container {
        font-size: 1.6rem;
        margin-top: 50px;
    }

    .benifit-col-block {
        width: 90%;  /* Make the blocks take up most of the width */
    }

    .item-image {
        width: 70px;
        height: 60px;
    }

    .benifit-content p {
        font-size: 14px;
    }
}

/* For screens smaller than 480px (extra small mobile screens) */
@media screen and (max-width: 480px) {
    .service-container {
        font-size: 1.4rem;
        margin-top: 30px;
    }

    .benifit-col-block {
        width: 100%;  /* Full width on very small screens */
    }

    .item-image {
        width: 60px;
        height: 50px;
    }

    .benifit-content p {
        font-size: 12px;
    }
}

 /* Inline Section */
 .inline-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #55996f;
      padding: 20px 40px;
      color: white;
    }

    .inline-section h2 {
      margin-left: 100px;
      font-size: 30px;

    }

    .cta-button1 {
      text-decoration: none;
      margin-right: 200px;
      padding: 10px 20px;
      color: #55996f;
      background-color: white;
      border: 2px solid white;
      border-radius: 5px;
      font-size: 16px;
      font-weight: bold;
      transition: 0.3s;
    }

    .cta-button1:hover {
      background-color: #55996f;
      color: white;
    }

    /* Popup Overlay */
    .popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  display: none; /* Initially hidden */
  justify-content: center;
  align-items: center;
  z-index: 1000; /* Ensure it appears above other elements */
}

.popup-form {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 600px;
  width: 90%; /* Adapt for smaller screens */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


    .popup-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 15px;
      font-weight: 200;
    }

    .popup-header h3 {
      margin: 0;
    }

    .close-popup {
      font-size: 20px;
      cursor: pointer;
      color: #333;
    }

    .form-group {
      margin-bottom: 15px;
    }

    .form-group label {
      display: block;
      font-size: 14px;
      margin-bottom: 5px;
    }

    .form-group input {
      width: 95%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 14px;
      
    }

    .submit-btn {
      background: #55996f;
      color: #fff;
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      width: 30%;
      font-size: 16px;
      transition: background 0.3s ease;
    }

    .submit-btn:hover {
      background: #2d6040;
    }
    
    @keyframes slide{
      from{
        transform: translateX(0);
      }
      to{
        transform: translateX(-100%);
      }  
    }

    /* Mobile Devices (max-width: 600px) */
@media screen and (max-width: 600px) {
    .inline-section {
        flex-direction: column; /* Stack items vertically */
        padding: 15px 20px;
        text-align: center; /* Center align for smaller screens */
    }

    .inline-section h2 {
        margin: 0; /* Remove left margin */
        font-size: 24px; /* Reduce font size */
    }

    .cta-button1 {
        margin: 20px 0 0; /* Add top margin */
        width: auto; /* Allow button to resize naturally */
    }

    .popup-form {
        width: 95%; /* Make form almost full width */
        padding: 15px; /* Reduce padding */
    }

    .form-group input {
        width: 100%; /* Use full width */
    }

    .submit-btn {
        width: 100%; /* Full-width button */
        font-size: 14px; /* Adjust font size */
    }
}

/* Tablet Devices (max-width: 768px) */
@media screen and (max-width: 768px) {
    .inline-section {
        padding: 20px; /* Adjust padding */
        justify-content: center; /* Center items */
        text-align: center;
    }

    .inline-section h2 {
        font-size: 26px; /* Adjust font size */
    }

    .cta-button1 {
        margin: 15px 0;
        padding: 10px 15px; /* Adjust padding */
    }

    .popup-form {
        width: 80%; /* Adjust width for tablets */
    }

    .form-group input {
        width: 98%; /* Reduce horizontal margins */
    }
}

/* Large Screens (min-width: 1024px) */
@media screen and (min-width: 1024px) {
    .inline-section {
        padding: 30px 50px; /* Increase padding */
    }

    .cta-button1 {
        padding: 15px 30px; /* Larger button */
        font-size: 18px; /* Increase font size */
    }

    .popup-form {
        width: 50%; /* Smaller width for larger screens */
    }

    .form-group input {
        width: 95%; /* Maintain consistency */
    }
}


.clients-section {
    background-color: #55996f; /* Dark Blue */
    text-align: center;
    padding: 50px 20px;
    color: white;
}

.clients-section h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
}

.clients-section p {
    font-size: 30px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.swiper {
    width: 80%;
    margin: auto;
    padding: 20px 0;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 150px; /* Adjust logo size */
    height: auto;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.client-count {
    font-size: 18px;
    margin-top: 20px;
    font-weight: bold;
}
@media (max-width: 1024px) {
    .swiper {
        width: 90%;
    }
    
    .swiper-slide {
        padding: 10px; /* Add padding to separate slides */
    }

    .swiper-slide img {
        width: 120px;
        padding: 10px;
        margin: 5px; /* Add margin between logos */
    }
    
    .clients-section h2 {
        font-size: 24px;
    }
    
    .clients-section p {
        font-size: 14px;
    }
    
    .client-count {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .swiper {
        width: 95%;
    }

    .swiper-slide {
        padding: 20px; /* Increase padding for better spacing */
    }

    .swiper-slide img {
        width: 100px;
        padding: 8px;
        margin: 16px; /* More space between logos */
    }

    .clients-section {
        padding: 40px 15px;
    }

    .clients-section h2 {
        font-size: 22px;
    }

    .clients-section p {
        font-size: 13px;
    }

    .client-count {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .swiper {
        width: 100%;
    }

    .swiper-slide {
        padding: 20px; /* More padding for mobile spacing */
    }

    .swiper-slide img {
        width: 80px;
        padding: 6px;
        margin: 15px; /* Maximum space between logos */
    }

    .clients-section {
        padding: 30px 10px;
    }

    .clients-section h2 {
        font-size: 20px;
    }

    .clients-section p {
        font-size: 12px;
    }

    .client-count {
        font-size: 14px;
    }
}


.footer {
    background-color: #55996f;
    color: black;
    padding: 5rem 2.5rem 4rem;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.text-weight-medium{
    font-weight: bolder;
    font-size: 20px;
}

/* Footer Top Grid */
.footer-top-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

/* Footer Logo Section */
.footer-logo {
    object-fit: contain;
    width: 15rem;
}

/* Social Links Section */
.footer-social-link-grid {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    transition: border-color 0.3s, transform 0.3s;
    margin-top: 20px;
}

.footer-social-link:hover {
    border-color: black;
    transform: translateY(-3px);
    background-color: #000;
}

.footer-social-icon {
    object-fit: contain;
    width: 1.5rem;
    height: 1.5rem;
}

/* Quick Links and Other Sections */
.footer-link-heading {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    padding-left: 25px;
    color: var(--colors--white);
    transition: color 0.3s ease-in-out;
}

.footer-link-heading:hover {
    color: rgba(255, 255, 255, 0.85);
}

.footer-2-col-link-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-link-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 25px;
}

.footer-link {
    color: var(--colors--white);
    font-size: 1.125rem;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-link:hover {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: underline;
}

/* Contact Section */
.text-style-no-underline {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease-in-out;
    gap: 5rem;
}

.text-style-no-underline:hover {
    color: rgba(255, 255, 255, 0.85);
}

/* Footer Bottom Grid */
.footer-bottom-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 5rem;
    font-size: 0.875rem;
    margin-top: 30px;
}

.footer-bottom-grid a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-bottom-grid a:hover {
    color: rgba(255, 255, 255, 1);
}
/* Responsive Design */

/* Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
    .footer {
        padding: 4rem 2rem; /* Reduce padding */
        gap: 3rem;
    }

    .footer-top-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Adjust grid */
    }

    .footer-logo {
        width: 12rem; /* Reduce logo size */
    }

    .footer-link-heading {
        font-size: 1.1rem;
    }

    .footer-link {
        font-size: 1rem;
    }

    .footer-social-link {
        width: 2rem;
        height: 2rem;
    }

    .footer-social-icon {
        width: 1.2rem;
        height: 1.2rem;
    }

    .footer-bottom-grid {
        gap: 3rem;
        font-size: 0.8rem;
    }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 1.5rem;
        gap: 2.5rem;
    }

    .footer-top-grid {
        grid-template-columns: 1fr; /* Stack items vertically */
        gap: 2rem;
    }

    .footer-logo {
        width: 10rem;
        margin-bottom: 1rem;
    }

    .footer-social-link {
        width: 1.8rem;
        height: 1.8rem;
    }

    .footer-social-icon {
        width: 1rem;
        height: 1rem;
    }

    .footer-link-heading {
        font-size: 1rem;
    }

    .footer-link {
        font-size: 0.9rem;
    }

    .footer-2-col-link-grid {
        flex-direction: column; /* Stack links vertically */
        gap: 1rem;
    }

    .footer-bottom-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }
}

/* Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    .footer {
        padding: 2.5rem 1rem;
        gap: 2rem;
    }

    .footer-logo {
        width: 8rem;
    }

    .footer-social-link {
        width: 1.5rem;
        height: 1.5rem;
    }

    .footer-social-icon {
        width: 0.9rem;
        height: 0.9rem;
    }

    .footer-link-heading {
        font-size: 0.9rem;
    }

    .footer-link {
        font-size: 0.85rem;
    }

    .footer-bottom-grid {
        font-size: 0.75rem;
        gap: 1.5rem;
    }
}
