body {
    
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    
  }
.img{
    max-width: 100%;
}
  
  
  /* Remove horizontal scroll bar on mobile devices */
  @media (max-width: 768px) {
    body {
      overflow-x: hidden; /* Prevents horizontal scrolling on mobile devices */
      max-width: 100%;
    }
    html {
        /* This ensures that padding and border are included in the box sizing */
        box-sizing: border-box;
        overflow-x: hidden; /* Prevents horizontal scrolling on all devices */
      }
  }
  





/* Navbar styles */
.navbar {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    position: fixed; /* Fix position at the top */
   
    left: 0; /* Align to the left of the viewport */
    width: 100%; /* Full width of the viewport */
    background-color: #ffffff; /* Background color for the navbar */
    border-bottom: 1px solid #ddd; /* Optional border */
    gap: 20px; /* Space between elements */
    z-index: 1000; /* Ensure it's above other content */
    
}

.navbar-logo {
    margin-right: auto;
    margin-left: 160px;
}

.navbar-logo img {
    width: 83px;
    height: 72px;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.navbar ul li {
    margin: 0;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: #000000;
    /* Group 454 */
    left: 515px;
}
.dropdown.active .fa-chevron-down {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

/* Show dropdown menu on hover and click */
.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    display: block;
}

.navbar ul li a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 4px;
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 20px;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}
.navbar-contact a{
    text-decoration: none;
}
.navbar ul#navbar-menu li a:hover {
    color: #008081; 

    



}
/* Button styles */
.navbar-button .button {
    background-color: #F15A29; /* Button background color */
    padding: 10px 20px;
    text-decoration: none;
    font-family: 'Merriweather Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 22px; /* identical to box height, or 110% */
    text-align: center;
    text-transform: capitalize;
    color: #FFFFFF;
    left: 1300px;
}
.navbar ul li a .fa-chevron-down {
    font-size: 14px; /* Size of the dropdown icon */
    color: #000; /* Color of the dropdown icon */
    transition: transform 0.3s ease; /* Smooth rotation effect */
}

/* Optional: Rotate the icon when the dropdown is open */
.navbar ul li a.dropdown-open .fa-chevron-down {
    transform: rotate(180deg); /* Rotate the icon */
}
.navbar-button .button .fa-arrow-right {
    font-size: 16px; /* Size of the arrow icon */
    color: #FFFFFF; /* Color of the arrow icon */
}



.navbar-contact .phone-number:hover {

    color: #008081;
  
   
}
/* New styles for contact section */
.navbar-contact {
    display: flex;
    align-items: center;
    gap: 8px; /* Space between icon and text */
}

.navbar-contact i {
    font-size: 1.2rem; /* Adjust icon size */
    color: #FFFFFF; /* Icon color */
    background-color: #008081;
    border-radius: 50%;
    padding: 10px;
}

.navbar-contact .phone-number {
    font-size: 1rem; /* Font size for phone number */
    color: #000; /* Phone number color */
    font-family: 'DM Sans';
}

.vertical-line {
    width: 1px; /* Width of the line */
    background-color: #000; /* Color of the line */
    height: 40px; /* Adjust height according to the navbar height */
    /* Space on each side of the line */
    left: 1515px;
}

/* Styles for the toggle button */
.navbar-toggler {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

/* Styles for the mobile menu */
#navbar-menu {
    display: flex;
}
@media (min-width: 1024px) and (max-width: 1224px) {


.navbar ul li a {
    color: #000;
    text-decoration: none;
   
    padding: 10px 15px;
    border-radius: 4px;
    font-family: 'Poppins';
    font-weight: 500;
   
}

}

/* Media query for devices with a width of 1024px */
@media (max-width: 1024px) {
    .navbar {
        flex-wrap: wrap; /* Allow wrapping of elements */
        gap: 10px; /* Reduce gap between elements */
        padding: 10px 15px; /* Adjust padding */
    }

    .navbar-logo {
        margin-left: 0; /* Remove left margin */
        margin-right: 0; /* Center the logo */
        text-align: center;
        width: 100%;
    }

    .navbar-logo img {
        width: 70px; /* Adjust logo size */
        height: 60px; /* Adjust logo size */
    }




}

@media (max-width: 768px) {
    .navbar-toggler {
        display: block; /* Show toggle button on small devices */
    }

    #navbar-menu {
        display: none; /* Hide menu by default */
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        position: absolute;
        top: 65px; /* Align below the navbar */
        left: 0;
        padding: 10px 0;
        z-index: 999;
        margin-top: 15px;
    }
    .dropdown.active .dropdown-menu {
        display: flex;
        flex-direction: column;
        margin-top: 0px;
        border: 1px solid black;
        align-items: flex-start;
        margin-left: 90px;
    }
    .navbar ul li {
        width: 100%;
        text-align: center;
    }

    .navbar ul li a {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid #ddd; /* Optional border between items */
    }

    .navbar ul li:last-child a {
        border-bottom: none; /* Remove border from last item */
    }

    .navbar-button {
        text-align: center;
        width: 100%;
    }

    .navbar-contact {
        text-align: center;
        padding: 10px 0;
    }

    .vertical-line {
        display: none;
    }
}




body {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Navbar styles */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    position: fixed; /* Fix position at the top */
    
    left: 0; /* Align to the left of the viewport */
    width: 100%; /* Full width of the viewport */
    background-color: #ffffff; /* Background color for the navbar */
    border-bottom: 1px solid #ddd; /* Optional border */
    gap: 20px; /* Space between elements */
    z-index: 1000; /* Ensure it's above other content */
}


.navbar-logo img {
    width: 83px;
    height: 72px;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: none;
    align-items: center;
}

.navbar ul li {
    margin: 0;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: #000000;
    /* Group 454 */


left: 515px;



}

.navbar ul li a {
    color: #000;
    text-decoration: none;
  
    padding: 10px 15px;
    border-radius: 4px;
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 15px;
    
}


/* Button styles */
.navbar-button .button {
    background-color: #F15A29; /* Button background color */
    padding: 10px 20px;
    text-decoration: none;
    font-family: 'Merriweather Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 22px; /* identical to box height, or 110% */
    text-align: center;
    text-transform: capitalize;
    color: #FFFFFF;
    left: 1300px;
}
.navbar ul li a .fa-chevron-down {
    font-size: 14px; /* Size of the dropdown icon */
    color: #000; /* Color of the dropdown icon */
    transition: transform 0.3s ease; /* Smooth rotation effect */
}

/* Optional: Rotate the icon when the dropdown is open */
.navbar ul li a.dropdown-open .fa-chevron-down {
    transform: rotate(180deg); /* Rotate the icon */
}
.navbar-button .button .fa-arrow-right {
    font-size: 16px; /* Size of the arrow icon */
    color: #FFFFFF; /* Color of the arrow icon */
}

.navbar-button .button:hover .fa-arrow-right {
    color: #FFDAA3; /* Change color on hover (optional) */
}
/* New styles for contact section */
.navbar-contact {
    display: flex;
    align-items: center;
    gap: 8px; /* Space between icon and text */
}

.navbar-contact i {
    font-size: 1.2rem; /* Adjust icon size */
    color: #FFFFFF; /* Icon color */
    background-color: #008081;
    border-radius: 50%;
    padding: 10px;
}

.navbar-contact .phone-number {
    font-size: 1rem; /* Font size for phone number */
    color: #000; /* Phone number color */
    font-family: 'DM Sans';
}

.vertical-line {
    width: 1px; /* Width of the line */
    background-color: #000; /* Color of the line */
    height: 40px; /* Adjust height according to the navbar height */
    /* Space on each side of the line */
    left: 1515px;
}

/* Tablet screens (768px and below) */
@media (max-width: 768px)  {


    .navbar {
       
       align-items: center;
       justify-content: center;
       justify-items: center;
       display: grid;
       grid-template-columns: repeat(2, 1fr);
    
    }
    .navbar-button .button {
        font-size: 12px;
    }
    .navbar-contact .phone-number {
        font-size: 12px;
    }

    .navbar ul {
        flex-direction: column;
        gap: 10px;
    }

    .vertical-line {
        display: none;
    }

    .navbar-button,
    .navbar-contact {
        margin-top: 10px;
    }
    .navbar-button .button .fa-arrow-right{
        font-size: 12px;
    }
}

/* Mobile screens (480px and below) */
@media (max-width: 480px){
    .navbar ul {
        font-size: 14px;
    }

    .navbar-button a {
        font-size: 14px;
        padding: 8px 16px;
    }

    .navbar-contact {
        font-size: 14px;
        text-align: center;
        padding-left: 0px;
    }

   

    .navbar ul {
        text-align: center;
    }

    .navbar-button {
        width: 100%;
        text-align: center;
    }
}

/* Hide the dropdown menu by default */
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 1000;
    flex-direction: column;
}

/* Show the dropdown menu when the 'active' class is added to the parent */
.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu  {
    display: flex;
    flex-direction: column;
    margin-top: 25px;
    align-items: flex-start;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adding a box shadow */
    background-color: #ffffff; /* Ensure the dropdown has a background color */
    padding: 10px; /* Optional: add some padding to make the dropdown look better */
    border-radius: 5px 5px; /* Optional: round the corners */
}

.dropdown-menu li a{
    margin: 15px;
    gap: 10px;
    
}


@media (min-width: 1225px) {
    /* Large desktops */
    .navbar-logo img {
        width: 120px;
    }

    .navbar ul li {
        font-size: 20px;
    }

    .navbar-button .button {
        padding: 12px 24px;
        font-size: 20px;
    }

    .vertical-line {
        height: 50px;
    }

    .navbar-contact i {
        padding: 12px;
    }
}

@media only screen and (min-width: 1280px) and (max-width: 1440px){
    .navbar {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 15px 20px;
        position: fixed;
        
        left: 0;
        width: 100%;
        background-color: #ffffff;
        border-bottom: 1px solid #ddd;
        gap: 20px;
        z-index: 1000;
    }

}

@media only screen and (min-width: 768px) and (max-width: 1279px){
    .navbar ul li a {
        color: #000;
        text-decoration: none;
        padding: 10px 15px;
        border-radius: 4px;
        font-family: 'Poppins';
        font-weight: 500;
        font-size: 18px;

    }

}

@media (max-width: 320px){
    .navbar-contact .phone-number {
        font-size: 8px;
    }
    .navbar-button .button {
        font-size: 8px;
    }
    .navbar-button .button .fa-arrow-right{
        font-size: 8px;
    }
    }
