@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

    text-decoration: none;
    transition: ease;


}
::-webkit-scrollbar-thumb {
    background: #ee7777;
    border-radius: 5px;
}

/* Customize the thumb when hovered */
::-webkit-scrollbar-thumb:hover {
    background: #ff0000;
}
::-webkit-scrollbar {
    width: 5px; /* For vertical scrollbars */
    height: 8px; /* For horizontal scrollbars */
}

/* Customize the track (background of the scrollbar) */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

header {
    z-index: 999;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 100px;
    transition: 0.5s ease;
    background: rgba(1, 1, 1, 0.1);

}

header .brand img {

    width: 100px;
    height: 50px;
    object-fit: cover;
}

header .nav {
    position: relative;
}

header .nav .nav-items a {
    position: relative;
    color: #fff;
    font-size: clamp(14px, 1.8vw, 18px);
    font-weight: 500;
    text-decoration: none;
    margin-left: 30px;
    transition: 0.3s ease;
}

header .nav .nav-items a:hover {
    color: #ef8903;
}



header .nav .nav-items .text:before {
    content: '';
    position: absolute;
    background: #fff;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    transition: 0.3s ease;
}

header .nav .nav-items .text:hover:before {
    width: 100%;
    background: #ef8903;
}

section {

    padding: 100px 100px;
}

.home {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: rgb(24, 9, 4);
}

.home .content {
    z-index: 888;
    color: #fff;
    width: 90%;
    margin-top: -90px;

}

.home .content h1 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 900;
    margin-bottom: 15px;

}

.home .content h1 #rest {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 600;

}

.home .content #name {
    color: #ef8903;
}

.home .content p {
    font-size: clamp(14px, 2vw, 18px);
    margin-bottom: 20px;
}

.home video {
    z-index: 000;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#bottone1 {
    padding-left: 33px;
    padding-right: 33px;
    padding-bottom: 16px;
    padding-top: 16px;
    border-radius: 30px;
    background: #d5f365;
    border: none;
    font-family: inherit;
    text-align: center;
    cursor: pointer;
    transition: 0.5s;
    font-size: clamp(14px, 1.5vw, 18px);
}

#bottone1:hover {
    box-shadow: 7px 5px 56px -14px #C3D900;
}

#bottone1:active {
    transform: scale(0.97);
    box-shadow: 7px 5px 56px -10px #C3D900;
}

/* why choose auto latch */
.why-choose {
    max-width: 100%;
    height: 100%;
    margin: 0 auto;
    /* padding: 60px 20px; */
    text-align: center;
    background-color: beige;

}

.spacer {
    width: 100%;
    height: 50vh;
    background-color: beige;
}

.why-choose h2 {
    margin-bottom: 45px;
    text-align: center;
    font-size: clamp(26px, 3vw, 32px);
    font-weight: 900;
    color: rgb(112, 36, 36);
    text-transform: uppercase;
}

.features-grid {
    display: grid;
    gap: 20px;
    margin: 30px 100px;
    justify-content: center;
    /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
    grid-template-columns: repeat(3, clamp(150px, 40%, 300px));
}

.feature-item {
    background-color: beige;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 226, 0.833);

}

.feature-icon {
    /* font-size: 2rem; */
    font-size: clamp(1.2rem, 3.5vw, 2rem);
    font-weight: 600;
    margin-bottom: 15px;
    color: #d38a3d;
}

.feature-item h3 {
    font-size: clamp(18px, 2.5vw, 24px);
    color: #2a423f;
    margin-bottom: 10px;
}

.feature-item p {
    color: #1A120B;
    font-size: clamp(14px, 1.5vw, 16px);
    margin: 0;
}

/* features of the product */
#two {
    height: 100vh;
}

#feature-section {
    height: 100%;
    background-color: #D5CEA3;
}

#feature-section h1 {
    text-align: center;
    font-size: clamp(26px, 3vw, 32px);
    font-weight: 900;
    color: #1A120B;
    text-transform: uppercase;

}

.feature-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(200px, 30%, 400px), 1fr));
    align-items: center;
    gap: 20px;
    justify-content: center;
    /* padding: 10px; */
}

.images {
    width: 80%;


}

.images img {
    width: 100%;
    height: auto;
    filter: drop-shadow(5px 60px 18px rgba(0, 0, 0, 0.41));
}

.updown-animation {
    animation-name: infiniteupdown;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    transition: all .4s;



}

@keyframes infiniteupdown {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.features {
    display: grid;
    gap: 16px;
    justify-content: center;
    grid-template-rows: repeat(4, minmax(auto, 1fr));
}

.feature {
    color: #1A120B;
    font-weight: 700;
    /* font-size: larger; */
    font-size: clamp(14px, 2vw, 18px);

}



@media (max-width:800px) {
    header {
        padding: 12px 50px;
    }

    section {
        padding: 100px 50px;
    }

    header .nav {
        display: none;

    }

    header .nav.active {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 300px;
        display: flex;
        align-items: center;
        justify-content: center;

    }

    header .nav .nav-items a {
        color: #fff;
        font-size: 1.2em;
        margin: 20px;
    }

    header .nav .nav-items a:first-child {
        margin-top: 50px;
    }

    header .nav.active .nav-items {
        z-index: 999;
        background: rgba(1, 1, 1, 0.5);
        backdrop-filter: blur(10px);
        height: 100vh;
        width: 100%;
        padding: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-items: flex-start;
        box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    }

    .menu-btn {
        background: url(../images/menu.svg)no-repeat;
        background-size: 30px;
        background-position: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
        transition: 0.3s ease;
    }

    .menu-btn.active {
        z-index: 999;
        background: url(../images/x.svg)no-repeat;
        background-size: 25px;
        background-position: center;
        transition: 0.3s ease;
    }
 
    
}

@media (max-width:430px) {


    header .nav.active {

        width: 80%;

    }

    section {
        padding: 80px 40px;
    }

    .home .content {
        width: 100%;
        margin-top: -90px;

    }

}
@media (max-width:520px) {

    .features-grid {
        grid-template-columns: repeat(2, clamp(155px, 40%, 300px));
        margin: 20px;
        padding: 20px;
    }
   
    /* .feature-item {
       
    } */
}

@media (max-width:769px) {

    section {
        padding: 100px 50px;
    }

    .home .content {
        width: 100%;
        margin-top: -90px;

    }

    #bottone1 {
        padding-left: 28px;
        padding-right: 28px;
        padding-bottom: 12px;
        padding-top: 10px;

    }

}

.branch-section {
    width: 100%;
    height: 100%;
    background-color: beige;
    display: flex;
    flex-direction: column;

    gap: 40px;
}

.branch-section h1 {
    text-align: center;
    font-size: clamp(26px, 3vw, 32px);
    font-weight: 900;
    /* color:#1A120B; */
    color: rgb(112, 36, 36);

    text-transform: uppercase;
}

.branch {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(155px, 30%, 400px), 1fr));
    align-items: center;
    gap: 30px;
    justify-content: center;

}

.branch-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.branch-item:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 226, 0.833);
}

.branch-item p {
    font-size: clamp(14px, 2vw, 18px);
    color: rgb(112, 36, 36);


}

.branch-item h3 {
    font-size: clamp(18px, 2.5vw, 25px);
    color: #d38a3d;


}

#three {
    background-color: #3C2A21;
}

.varients h1 {
    text-align: left;
    font-family: 'Anton', sans-serif;
    font-weight: bold;
    font-style: normal;
    font-size: clamp(28px, 7.25vw, 75px);
    text-transform: uppercase;
    color: #E5E5CB;
    letter-spacing: 0.25vw;
    /* line-height: 12vh; */
}

.varients .work_link {
    font-size: clamp(12px, 1.3vw, 16px);
    text-align: center;

    align-self: flex-start;
    color: #F29559;
    background-color: transparent;
    border: 2px solid #F29559;
    padding: 8px;
    border-radius: 30px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    width: 15vw;
}

.varients .work_link:hover {
    background-color: #F29559;
    color: #fff;
}

.varients {
    display: flex;
}

.left {
    width: 50%;
}

.right {
    height: 100vh;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.desktopContent {
    margin: auto;
    width: 80%;
}

.desktopContentSection {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 40px;
}


.desktopPhotos {
    width: 35vw;
    height: 25vw;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.4);
    transition: transform 0.7s ease-in-out, filter 0.3s ease-in-out;
}

.desktopPhotos:hover {
    transform: translateY(-8px);
    filter: drop-shadow(23px 19px 27px rgba(229, 229, 203, 0.473));
}

.desktopPhoto {
    position: absolute;
    width: 100%;
    height: 100%;
}




.black {
    background: url(../images/0001.png);
    background-position: center;
    background-size: cover;
}

.grey {
    background: url(../images/silver01.png);
    background-position: center;
    background-size: cover;
}


.brown {
    background: url(../images/brown01.png);
    background-position: center;
    background-size: cover;
}





/* small screen / mobile layout */
.mobileContent {
    display: none;
    width: 80vw;
}

.mobilePhoto {
    width: 70vw;
    height: 50vw;
    margin-top: 5em;
    border-radius: 6vw;
}






/* defines styles for screens up to 499px wide */
@media screen and (max-width: 499px) {
    .left {
        display: none;
    }

    .right {
        height: auto;
        width: 100%;
        align-items: center;
        margin-left: 20px;

    }

    .desktopPhotos {
        display: none;
    }

    .mobileContent {
        display: block;
    }


}

/* sample */
.sample {
    width: 100%;
    height: .5vh;
    background-color: #1A120B;
}

.sample2 {
    width: 100%;
    height: 2vh;
    background-color: #1A120B;
    margin: 0;
}



/* footer style */


.hover-text {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.hover-text .text {
    visibility: hidden;
    width: 100px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -80px;
    opacity: 0;
    transition: opacity 0.3s;
}

.hover-text .text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: 20px;

    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.hover-text:hover .text {
    visibility: visible;
    opacity: 1;
}

.footer {
    /* background: #1A120B; */
    /* background-color: #E5E5CB; */
    background-color: rgb(28, 18, 18);

    /* Footer background color */
    padding: 40px 20px;
    color: #fffcf8e9;
    /* color: #1A120B; */
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-section {
    max-width: 300px;
    margin-bottom: 20px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 600;
    /* color: #ef8903; */
    color: beige;

}

.footer-section p,
.footer-section a {
    font-size: clamp(12px, 2vw, 14px);
    /* color: #1A120B; */

    color: #fffcf8e9;
    /* Text color in the footer */
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.footer-section a {
    text-decoration: none;
    color: #ef8903;
    /* Button color for links in the footer */
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-bottom {
    /* background-color: #E5E5CB; */
    background-color: beige;

    /* Footer background color */
    color: #105445;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: #105445;
    /* Footer links color */
    font-size: 16px;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
    color: #ef8903;
}

.footer-info p {
    font-size: clamp(14px, 2vw, 16px);
    margin: 5px 0;
}

.footer-social {
    display: flex;
    align-items: center;
}

.footer-social span {
    margin-right: 10px;
    font-size: 16px;
}

.footer-social a {
    color: #105445;
    /* Button color for social media icons in the footer */
    margin: 0 8px;
    font-size: clamp(18px, 2vw, 24px);
    margin-right: 15px;

}

.footer-social a:hover {

    color: #ef8903;
}

.certifications {
    display: flex;
    align-items: center;
}

.certifications img {
    margin: 0 15px;
    height: 80px;
    /* Adjust the size as needed */
    background-color: white;
    /* Ensures a clean look */
    padding: 5px;
    border-radius: 10px;
}

.map-iframe {
    width: 100%;
    margin-top: 5px;
    border-radius: 10px;
    border: solid 2px #105445;
}

.copy {
    font-size: 12px;
}

.copy a {
    font-size: 12px;
    color: #fffcf8e9;
    text-decoration: underline;
}

.copy a:hover {

    color: #ef8903;
}
/* Position the popup at the bottom-right corner */
.swal2-container {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 1rem;
}
.swal2-popup-small {
    width: 300px !important; /* Set the width of the popup */
    height: auto !important;  /* Set the height to auto for better text alignment */
    font-size: clamp(12px, 1.5vw, 14px); /* Use clamp to make the text responsive */
    padding: 15px;
}

.swal2-popup-bottom-right {
    position: fixed !important;
    bottom: 15px !important;
    right: 15px !important;
}

/* Style the WhatsApp Icon */
#whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
}
#whatsapp-icon a {
    text-decoration: none;
    color: #03f759;
    position: fixed;
    right: 30px;
    bottom: 35px;
}
#whatsapp-icon i {
    font-size: xx-large;
    cursor: pointer;
}

/* Ensure the page remains scrollable when the popup is displayed */
body.swal2-shown {
    overflow: auto !important;
}
.swal2-timer-progress-bar {
    background-color: #25D366 !important; /* WhatsApp green color */
    height: 5px !important; /* Adjust the height of the progress bar */
}

