@tailwind base;

* {
    box-sizing: border-box;
}

:root {
    --white-color: #fff;
    --gray-color: #363638;
    --beige-color: #B98768;
    --black-color: #000;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--white-color);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

/* section:not(:last-child) {
    margin-bottom: 100px;
} */

.container {
    max-width: 1800px;
    margin: 0 auto;
}

/* Header Styles */
header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.header {
    top: 0;
    height: 100px;
    margin: 0 auto;
    background-color: transparent;
    /* Transparent by default */
    position: fixed;
    /* Fix the navbar to the top */
    width: 100%;
    z-index: 999;
    /* Make sure it's on top */
    transition: background-color 0.3s ease;
    /* Smooth transition for background change */
}

.header.scrolled {
    background-color: var(--black-color);
    height: 0px;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 20px;
    /* Optional padding */
}

.header__logo-div {
    margin-right: auto;
}

.header__logo {
    font-size: 0.9rem;
    font-weight: bold;
}

.header__logo svg path {
    transition: fill 0.3s ease;
    /* Smooth transition for fill */
}

.header__logo svg:hover {
    transform: scale(1);
}

.header__logo svg:hover path {
    fill: var(--beige-color);
    /* Change the color to tomato when hovered */
}

.head .header__nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px;
    background-color: #333;
    color: #fff;
    position: sticky;
    top: 60px;
    z-index: 1000;
}

.nav__list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav__list-item:not(:last-child) {
    margin-right: 80px;
}

.nav__list-link {
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
    color: var(--white-color);
    transition: all ease-in-out .2s;
}

.nav__list-link:after {
    transition: all ease-in-out .2s;
    background: none repeat scroll 0 0 var(--beige-color);
    content: "";
    display: block;
    height: 2px;
    width: 0;
}

.nav__list-link:hover {
    color: var(--beige-color);
}

.nav__list-link:hover:after {
    width: 100%;
}

.nav__button {
    border-radius: 20px;
    border: 1px solid #000;
    padding: 10px;
    background-color: var(--white-color);
    color: #363638;
}

.nav__button:hover {
    color: var(--white-color);
}

.swiper {
    position: absolute;
    top: 0;
    left: 0;
    height: 780px;
    max-width: 1800px;
}

.swiper-slide {
    background-size: cover;
    background-repeat: no-repeat;
}

.hero__heading {
    position: absolute;
    display: inline-block;
    max-width: 900px;
    margin: 0;
    margin-bottom: 24px;
    color: var(--white-color);
    font-style: normal;
    font-weight: 800;
    font-size: 70px;
    line-height: 85px;
    z-index: 10;
    padding: 200px 0 0 80px
}

.hero__button {
    position: absolute;
    padding: 24.83px 36.88px;
    margin-left: 80px;
    margin-top: 640px;
    color: var(--gray-color);
    background-color: var(--white-color);
    border: none;
    font-style: normal;
    font-weight: bold;
    font-size: 23.4581px;
    line-height: 29px;
    z-index: 10;
    border-radius: 5px;
    transition: all ease-in-out .2s;
}

.hero__button:hover {
    background-color: var(--beige-color);
    color: var(--white-color);
}

/* About Us Section */

.about__us-container {
    padding-top: 100px;
    margin-bottom: 100px;
}

.about__us-subheading {
    font-style: normal;
    font-weight: 400;
    font-size: 48px;
    line-height: 59px;
    margin-bottom: 20px;
    color: var(--darkgray-color);
}

.about__us-heading {
    font-style: normal;
    font-weight: 400;
    font-size: 48px;
    line-height: 59px;
    margin-bottom: 20px;
    color: var(--darkgray-color);
}

.about-us__description-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-us__list {
    padding-left: 32px;
    /* flex: 1 1 50%; */
    display: flex;
}

.about-us__list-item {
    /* flex: 1 1 50%; */
    display: inline-block;
    background-repeat: no-repeat;
}

.list-item__title {
    display: inline-flex;
    margin: 0;
    margin-bottom: 8px;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 29px;
    color: var(--beige-color);
    text-align: center;
}

.list-item__title-2 {
    display: inline-flex;
    margin: 0;
    margin-bottom: 8px;
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 40px;
    color: var(--beige-color);
    text-align: center;
}

.list-item__description {
    max-width: 450px;
    margin: 0;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 32px;
    color: var(--beige-color);
    text-align: center;
    margin-bottom: 8px;
}

.about-us__block {
    display: flex;
    align-items: center;
}

.second__block {
    padding-top: 36.5px;
}

.about__us-img,
.about__us-img-2 {
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 10px;
    margin-right: 50px;
}

.about__us-img img,
.about__us-img-2 img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}



.second-item {
    display: flex;
}

.about__us-button {
    background-color: var(--beige-color);
    color: var(--white-color);
    padding: 15px;
    border-radius: 15px;
    border: 1px solid var(--beige-color);
    transition: all ease-in-out .3s;
}

.about__us-button:hover {
    background-color: white;
    color: var(--beige-color);
    border: 1px solid var(--beige-color);
}

/* About us end */

/* How start  */

.how {
    background-color: #363638;
}

.how__container {
    padding-bottom: 100px;
}

.how__heading {
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 59px;
    margin-bottom: 20px;
    color: var(--beige-color);
}

.how__subheading {
    font-style: normal;
    font-weight: 400;
    font-size: 48px;
    line-height: 59px;
    margin-bottom: 20px;
    color: var(--white-color);
}

.how__description {
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 59px;
    margin-bottom: 20px;
    color: var(--white-color);
    text-align: center;
}

.how__list-block {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.how__list-block:first-child {
    padding-top: 100px;
}


.how__list-block-style {
    border-top: 2px solid var(--beige-color);
    border-bottom: 2px solid var(--beige-color);
    max-width: 1200px;
    margin: 0 auto;
}

.how__list {
    display: flex;
    text-align: center;
    align-items: flex-start;
}

.how__list-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 400px;
    padding-top: 15px;
    margin-bottom: 15px;
    color: var(--white-color);
    margin-right: 15px;
}

.how__list-item-heading {
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
    color: var(--beige-color);
    text-align: center;
    padding-top: 10px;
}

.how__button {
    color: var(--white-color);
    background-color: var(--beige-color);
    padding: 15px;
    border-radius: 25px;
    display: block;
    margin: 0 auto;
    margin-top: 40px;
    width: 350px;
    height: 60px;
    font-size: 18px;
    border: 1px solid var(--beige-color);
    transition: all ease-in-out .3s;
}

.how__button:hover {
    background-color: white;
    color: var(--beige-color);
    border: 1px solid var(--beige-color);
}


/* How end */

/* Get Help Start */

.get__help {}

.get__help-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    flex-wrap: wrap;
    /* Allow wrapping */
}

.get__help-first-block {
    flex: 1 1 50%;
    /* Allow flexibility */
    height: 464px;
    /* Define height */
}

.get__help-image {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* Center the background image */
}

.get__help-second-block {
    flex: 1 1 50%;
    /* Allow flexibility */
    padding: 20px;
}

.get__help-subheading {
    margin: 0;
    font-size: 18px;
}

.get__help-heading {
    font-size: 28px;
    margin: 10px 0;
}

.get__help-description {
    font-size: 16px;
    margin: 10px 0;
}

.get__help-button {
    font-size: 18px;
    padding: 10px 20px;
    cursor: pointer;
}

.get__help-subheading {
    color: var(--beige-color);
}

.get__help-button {
    background-color: var(--beige-color);
    padding: 15px;
    color: var(--white-color);
    border-radius: 10px;
    border: 1px solid var(--beige-color);
    transition: all ease-in-out .3s;
}

.get__help-button:hover {
    background-color: var(--white-color);
    color: var(--beige-color);
    border: 1px solid var(--beige-color);
}

.get__help-description {
    margin-bottom: 15px;
}



/* Get Help end */

/* Suppliers Section Start */
/* Suppliers Section Start */

.suppliers {
    background-color: #333;
    /* Darker background for better contrast */
    padding-top: 50px;
    padding-bottom: 50px;
}

.suppliers__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.suppliers__heading {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.suppliers__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 30px;
}

.suppliers__list-item {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 180px;
    width: 100%;
    padding: 10px;
    border: none;
}

.suppliers__list-item img,
.suppliers__list-item svg {
    width: 180px;
    height: 100px;
    object-fit: contain;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.suppliers__list-item:hover img,
.suppliers__list-item:hover svg {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    /* Removed brightness effect for clarity */
}



/* Suppliers end */


/* footer start  */

/* General Footer Styling */
.footer {
    background-color: #222;
    /* Solid dark background */
    color: #fff;
    padding: 60px 20px;
    text-align: left;
    border-top: 5px solid var(--beige-color);
    /* Subtle border for a sophisticated touch */
}

.footer__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styling */
.footer__about,
.footer__links,
.footer__contact,
.footer__social {
    flex: 1 1 30%px;
    padding: 20px;
    margin-right: 30px;
    margin-bottom: 20px;
    text-align: left;
}

.footer__about h3,
.footer__links h3,
.footer__contact h3,
.footer__social h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--beige-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer__about p,
.footer__contact p {
    color: #ddd;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer__links ul,
.footer__social ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__links li,
.footer__social li {
    margin-bottom: 12px;
}

.footer__links a,
.footer__social a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer__links a:hover,
.footer__social a:hover {
    color: var(--beige-color);
    transform: translateX(5px);
    /* Slide effect on hover */
}

/* Social Media Icons */
.footer__social a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
    /* Added bottom margin for spacing */
}

.footer__social a:hover {
    background-color: var(--beige-color);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
    /* More pronounced shadow */
    transform: translateY(-6px) rotate(10deg);
    /* Lift and rotate effect */
}

.footer__social img {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer__social a:hover img {
    transform: scale(1.3) rotate(15deg);
    /* Zoom and rotate the icon */
    filter: brightness(1.2);
    /* Slight brightness increase for effect */
}

/* Optionally, you can add a subtle bounce effect for the hover */
.footer__social a:hover {
    animation: bounce 0.5s ease-out;
}

/* Bounce Effect */
@keyframes bounce {
    0% {
        transform: translateY(0) rotate(10deg);
    }

    30% {
        transform: translateY(-8px) rotate(5deg);
    }

    50% {
        transform: translateY(0) rotate(0deg);
    }

    70% {
        transform: translateY(-4px) rotate(-5deg);
    }

    100% {
        transform: translateY(0) rotate(10deg);
    }
}


/* Footer Bottom */
.footer__bottom {
    background-color: #222;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-size: 14px;
    color: #aaa;
    border-top: 1px solid #444;
}

.footer__bottom p {
    margin: 0;
    letter-spacing: 0.5px;
}

/* Responsive Design */




/* Footer end */


/* About-us Page Start */

/* .header__about-us {
    background-color: #000;
} */

.about__us__page-container {
    background-image: url(/img/abous__us-backg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 354px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 110px;
}

.about__us__page-heading {
    color: var(--white-color);
    font-size: 50px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 2px solid var(--white-color);
    padding: 15px;
}

.about__us-page-container2 {
    display: flex;
    justify-content: space-around;
}

.about__us-page-img {
    max-width: 550px;
    height: 490px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 10px;
}

.about__us-page-description {
    font-size: 18px;
    letter-spacing: 0.5px;
    max-width: 480px;
    line-height: 35px;
}

.about__us-contact-container {
    background-image: url(/img/about__us-end.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 354px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact__form-container {
    background-color: #FAFAFA;
    margin: -160px 0 0 0;
    padding: 50px;
    max-width: 600px;
    max-height: 510px;
}

form p input,
form p textarea {
    background-color: #E7E7E7;
    border: none;
    border-radius: 20px;
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 14px;
}

form p input,
form p textarea {}

.form__input {
    border: 1px solid #000;
    background-color: #fff;
    width: 500px;
    height: 46px;
    padding: 5px 14px;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 400;
}

.form-group:not(:last-child) {
    margin-bottom: 10px;
}

.contact__form p {
    margin-bottom: 50px;
    /* Add space between form fields */
    font-size: 16px;
    /* Set font size for form fields */
    line-height: 1.5;
    /* Increase line height for better readability */
    padding: 10px;
    /* Add padding to the p tag */
    border: 1px solid #ddd;
    /* Add border around the form field */
    border-radius: 5px;
    /* Rounded corners */
    background-color: #f5f5f5;
    /* Light background color */
}

.contact__form p input {
    border: 1px solid #000;
    background-color: #fff;
    width: 500px;
    height: 46px;
    padding: 5px 14px;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 400;
}

.form__button {
    width: 100%;
    padding: 10px;
    background-color: #000;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all ease-in-out .3s;
    border: 1px solid var(--black-color);
}

.form__button:hover {
    background-color: var(--white-color);
    border: 1px solid var(--black-color);
    color: var(--black-color);
}

/* About-us Page End */



/* Contact-Us Page Start */


/* Existing Styles (No Changes) */
.contact-section {
    padding-top: 150px;
    text-align: center;
}



.contact-header {
    border-bottom: 0.1px solid var(--black-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.contact-header h1 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
}

.contact-header h2 {
    font-size: 30px;
    font-weight: bold;
    margin: 10px 0;
    color: #111;
}

.contact-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 40px;
}

.form-container {
    text-align: left;
    border-radius: 10px;
    width: 500px;
}

.map__container {
    width: 460px;
    margin-right: 50px;
}

.contact-info {
    padding-top: 20px;
}

.form-container h4 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    text-align: center;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 14px;
}

.form__input {
    border: 1px solid #000;
    background-color: #fff;
    width: 500px;
    height: 46px;
    padding: 5px 14px;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 400;
}

.form-group:not(:last-child) {
    margin-bottom: 10px;
}

.form__button {
    width: 100%;
    padding: 10px;
    background-color: #000;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all ease-in-out .3s;
    border: 1px solid var(--black-color);
}

.form__button:hover {
    background-color: var(--white-color);
    border: 1px solid var(--black-color);
    color: var(--black-color);
}

.contact-info {
    text-align: start;
    font-size: 14px;
    color: #666;
}

.contact-info h5 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.contact-info p {
    margin: 5px 0;
}

/* Media Queries for Responsiveness */


/* Contact-Us Page End */


/* navbar  star t*/
/* General Reset */
body {
    margin: 0;
}


/* Navbar Styles */
.navbar {
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    height: 60px;
    box-sizing: border-box;
    transition: transform 0.3s ease;
    z-index: 1000;
    border-bottom: 1px solid gray;
}

.navbar.hidden {
    transform: translateY(-100%);
}

.navbar-left,
.navbar-right {
    display: flex;
    align-items: center;
}

.navbar-left a,
.navbar-right a {
    color: #fff;
    text-decoration: none;
    margin-left: 10px;
    font-size: 16px;
}

.navbar-logo {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

.navbar-logo span {
    display: block;
    font-size: 12px;
}

/* Burger Menu Icon */
.burger-menu {
    display: none;
    /* Hide by default */
    font-size: 24px;
    cursor: pointer;
}

nav a {
    cursor: pointer;
}

/* Menu Styles */
.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    background-color: #202020;
    transition: top 0.3s ease;
    position: fixed;
    width: 100%;
    top: 60px;
    /* Below the navbar */
    z-index: 999;
}

.menu.scrolled {
    top: 0;
    /* Moves up when navbar disappears */
}

.menu a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 16px;
    text-align: center;
    border-radius: 5px;
    transition: background-color 0.2s ease;
}

.menu a:hover {
    background-color: #444;
}

.menu .dropdown {
    position: relative;
}

.menu .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #444;
    padding: 10px 0;
    border-radius: 5px;
    min-width: 200px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.menu .dropdown-content a {
    display: block;
    padding: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.menu .dropdown-content a:hover {
    background-color: #555;
}

.menu .dropdown:hover .dropdown-content {
    display: block;
}

/* navbar end  */


/* estimator css */



/* estimator end css */



/* Media queries */

/* Responsive Design */
@media (max-width: 1024px) {

    .hero__heading {
        font-size: 60px;
        line-height: 70px;
        padding: 180px 0 0 40px;
    }

    .hero__button {
        margin-left: 40px;
        margin-top: 550px;
        padding: 20px 30px;
        font-size: 20px;
    }

    .about__us-container .about-us__list {
        display: flex;
        flex-direction: column;
        /* Default layout */
        padding-left: 32px;
        align-items: center;
    }

    .about__us-img,
    .about__us-img-2 {
        margin: 0 auto;
        text-align: center;
    }

    .about__us-img img {
        width: 70%;
    }

    .about__us-img-2 img {
        width: 80%;
    }

    .get__help-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 0 auto;
    }

    .get__help-first-block,
    .get__help-second-block {
        width: 100%;
        padding: 10px;
    }

    .get__help-image {
        height: 300px;
        border-radius: 15px;
    }

    .get__help-first-block {
        height: 300px;
        /* Adjust height */
    }

    .get__help-second-block {
        padding-left: 0;
    }

    .navbar {
        padding: 15px 20px;
        /* Slightly reduce padding for tablets */
    }

    .menu {
        top: 60px;
        /* Keep menu position below navbar */
    }

    .contact-section {
        padding-top: 180px;
    }

    .estimator-section {
        padding-top: 180px;
    }

    .text .contact-container {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
        /* Add gaps on the sides */
    }

    .map__container {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .form-container {
        width: 100%;
    }

    .form__input {
        width: 100%;
    }

    .suppliers__list {
        justify-content: space-between;
    }

    .how__list {
        flex-direction: column;
        align-items: center;
    }

    .how__list-item {
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width: 768px) {

    .hero__heading {
        font-size: 60px;
        line-height: 60px;
        padding: 150px 0 0 25px;
    }

    .hero__button {
        margin-left: 25px;
        margin-top: 550px;
        padding: 15px 25px;
        font-size: 18px;
    }

    .about__us-img,
    .about__us-img-2 {
        margin: 0 auto;
        text-align: center;
    }

    .about__us-img img,
    .about__us-img-2 img {
        width: 80%;
    }

    .navbar {
        padding: 15px;
        /* Reduce padding for smaller tablets */
    }

    .menu {
        flex-wrap: wrap;
        /* Allow menu items to wrap on smaller screens */
        gap: 10px;
        /* Add gap between menu items */
    }

    .menu a {
        padding: 8px 12px;
        /* Reduce padding for smaller screens */
    }

    .menu .dropdown-content {
        min-width: 180px;
        /* Adjust dropdown width for smaller screens */
    }

    .contact-section {
        padding-top: 200px;
    }

    .estimator-section {
        padding-top: 220px;
    }

    .contact-header h1 {
        font-size: 18px;
    }

    .contact-header h2 {
        font-size: 24px;
    }

    .form-container h4 {
        font-size: 16px;
    }

    .form__input {
        height: 40px;
        font-size: 14px;
    }

    .form__button {
        font-size: 14px;
        padding: 8px;
    }

    .contact-info h5 {
        font-size: 14px;
    }

    .contact-info p {
        font-size: 12px;
    }

    .contact-container {
        padding: 0 15px;
        /* Add gaps on the sides */
    }

    .suppliers__list {
        justify-content: center;
    }

    .suppliers__list-item {
        max-width: 150px;
    }

    .footer__container {
        flex-direction: column;
        align-items: center;
    }

    .footer__about,
    .footer__links,
    .footer__contact,
    .footer__social {
        flex: 1 1 100%;
        margin-right: 0;
        text-align: center;
        margin-bottom: 30px;
    }

    .footer__bottom {
        font-size: 12px;
    }

    .footer__map {
        text-align: center;
    }

    .footer__map iframe {
        height: 200px;
    }

    .how__heading {
        font-size: 28px;
        line-height: 40px;
    }

    .how__subheading {
        font-size: 36px;
        line-height: 48px;
    }

    .how__description {
        font-size: 20px;
        line-height: 32px;
    }

    .how__button {
        width: 300px;
        height: 50px;
        font-size: 16px;
    }

    .footer__social-list {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 480px) {

    .hero__heading {
        font-size: 50px;
        line-height: 60px;
        padding: 170px 0 0 10px;
        text-align: center;
    }

    .hero__button {
        margin-left: 140px;
        margin-top: 580px;
        padding: 10px 20px;
        font-size: 16px;
    }

    .about__us-img img,
    .about__us-img-2 img {
        width: 70%;
    }

    .navbar {
        padding: 10px;
        /* Further reduce padding for mobile screens */
    }

    .navbar-logo {
        font-size: 18px;
        /* Slightly reduce logo font size for mobile */
    }

    .navbar-logo span {
        font-size: 10px;
        /* Slightly reduce logo subtext font size for mobile */
    }

    .menu {
        top: 60px;
        /* Keep menu position below navbar */
        padding: 8px 0;
        /* Reduce menu padding for mobile */
    }

    .menu a {
        font-size: 14px;
        /* Reduce font size for mobile */
        padding: 6px 10px;
        /* Reduce padding for mobile */
    }

    .menu .dropdown-content {
        min-width: 160px;
        /* Adjust dropdown width for mobile */
    }

    .contact-section {
        padding-top: 220px;
    }

    .estimator-section {
        padding-top: 220px;
    }

    .contact-header h1 {
        font-size: 16px;
    }

    .contact-header h2 {
        font-size: 20px;
    }

    .form-container h4 {
        font-size: 14px;
    }

    .form__input {
        height: 36px;
        font-size: 12px;
    }

    .form__button {
        font-size: 12px;
        padding: 6px;
    }

    .contact-info h5 {
        font-size: 12px;
    }

    .contact-info p {
        font-size: 10px;
    }

    .contact-container {
        padding: 0 10px;
        /* Add gaps on the sides */
    }

    .footer__social a {
        width: 40px;
        height: 40px;
    }

    .footer__social img {
        width: 18px;
        height: 18px;
    }

    .footer__map iframe {
        height: 180px;
    }

    .how__heading {
        font-size: 24px;
        line-height: 32px;
    }

    .how__subheading {
        font-size: 28px;
        line-height: 36px;
    }

    .how__description {
        font-size: 18px;
        line-height: 28px;
    }

    .how__button {
        width: 250px;
        height: 45px;
        font-size: 14px;
    }

    .footer__social-list {
        display: flex;
        justify-content: center;
    }
}

/* Map Section */
.footer__map {
    flex: 1 1 100%;
    padding: 20px;
    margin-top: 30px;
}

.footer__map h3 {
    font-size: 20px;
    color: var(--beige-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.map-container iframe {
    border: none;
    width: 100%;
    height: 250px;
    border-radius: 8px;
}