* {
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: rgb(34, 34, 96);
}

/* ......................................NAVBAR SECTION.................................. */

nav {
    width: 100%;
    height: 60px;
    background-color: rgb(120, 40, 40);
    padding: 0px 20px;
    /* border-bottom: 1px solid rgb(81, 255, 0); */
}


div.logo {
    /* border: 1px solid red; */
    position: absolute;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

div.logo img {
    width: 60px;
    height: 60px;
    border-radius: 100%;
}

div.logo h3 {
    font-size: 15px;
    color: white;
}

nav ul {
    width: 100%;
    height: 50px;
    font-size: 15px;
    padding-top: 10px;
    /* padding-right: 10px; */
    display: flex;
    list-style: none;
    justify-content: flex-end;
    gap: 20px;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bolder;
}

nav ul li a:hover {
    color: yellow;
    font-weight: bolder;
}

.sidebar {
    display: none;
    position: fixed;
    /* top: 60px; */
    right: 0px;
    width: 100%;
    height: 100vh;
    background-color: black;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    padding: 50px 0px;
    z-index: 9999;
}

.sidebar ul {
    width: 100%;
}

.sidebar li {

    width: 100%;
    text-align: center;
    padding-top: 40px;
}

.sidebar li:hover {
    color: yellow;
    background-color: black;
}

.sidebar a {
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.sidebar a:hover {
    color: red;
    cursor: pointer;
}

#showmenu {
    display: none;
    cursor: pointer;
}

#closedmenu {
    cursor: pointer;
    text-align: center;
    /* padding-right: 25px; */
}

/* ..................................UPDATE SCROLLING.............................. */

.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    background-color: white;
    color: red;
    font-weight: bold;
    padding: 10px 0;
    box-sizing: border-box;
}

.ticker {
    display: flex;
}

.ticker-track {
    display: flex;
    gap: 50px;
    animation: scroll-left 20s linear infinite;
}

.ticker-wrapper:hover .ticker-track {
    animation-play-state: paused;
    color: black;
    font-weight: bold;
    /* pause on hover */
}

.ticker-item {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 18px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/*................................... HEADLINE SECTION.............................. */

.headline {
    width: 95%;
    /* border: 1px solid red; */
    margin: auto;
    text-align: center;
    margin-top: 20px;
    color: magenta;
}

/* .....................................SEARCH BAR................................ */

.dropdown-container {
    width: 53%;
    position: relative;
    margin: auto;
    margin-top: 4px;
}

.dropdown-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 15px;
    box-sizing: border-box;
    font-size: 20px;
    outline: none;
    background-color: magenta;
}

input::placeholder {
    color: white;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.tag {
    padding: 5px 12px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: white;
    cursor: grab;
    user-select: none;
    transition: transform 0.1s, opacity 0.2s;
}

.tag.dragging {
    opacity: 0.5;
    transform: scale(1.1);
}

.tag span {
    margin-left: 6px;
    font-weight: bold;
    cursor: pointer;
}

.dropdown-list {
    font-weight: bold;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 180px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-radius: 12px;
    border-top: none;
    background: white;
    display: none;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dropdown-list li {
    padding: 10px 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.dropdown-list li:hover,
.dropdown-list li.active {
    background-color: #f0f0f0;
}

.dropdown-list li a {
    text-decoration: none;
    font-weight: bold;
    color: black;
}

/* ......................................SCROLL SECTION................................... */

.carousel-container {
    /* border: 1px solid red; */
    margin: auto;
    margin-top: 2px;
    position: relative;
    width: 90%;
    height: 400px;
    max-width: 800px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 400px;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    z-index: 10;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

/*................................. PHOTO SECTION.................................. */

.products {
    width: 100%;
    /* height: 300px; */
    margin: auto;
    /* border: 1px solid rebeccapurple; */
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.container {
    width: 350px;
    height: 400px;
    /* border: 1px solid red; */
    justify-content: space-evenly;
}

.box {
    width: 100%;
    height: 400px;
    background-color: black;
    /* border: 1px solid red; */
}

.imgbox {
    width: 100%;
    height: 70%;
    /* border: 1px solid blue; */
}

.imgbox img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
    display: block;
}

.imgbox img:hover {
    transform: scale(1.05);
}

.content {
    width: 100%;
    height: 30%;
    text-align: center;

}

.content h5 {
    font-size: 25px;
    color: rgb(0, 247, 0);
    padding-top: 10px;
}

.content h6 {
    font-size: 15px;
    margin-top: 10px;
}

.content p {
    color: rgb(230, 0, 0);
    font-size: 18px;
    margin-top: 5px;
}

.blinking {
    animation: blink 1s step-start infinite;
    color: magenta;
    font-weight: bold;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* ....................................PHOTO CONTENT.................................... */

.photo-content {
    width: 95%;
    background-color: rgb(146, 63, 63);
    /* border: 1px solid red; */
    margin: auto;
    margin-top: 5px;
    text-align: justify;
    padding: 25px 10px;
}

.photo-content h2 {
    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 10px;
}

.photo-content h3 {
    font-size: 15px;
    margin-top: 10px;
    color: black;
}

.photo-content h4 {
    font-size: 13px;
    margin-top: 10px;
    color: black;
}

.photo-content p {
    color: white;
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    line-height: 25px;
}

.photo-content p span {
    color: rgb(255, 255, 18);
}

/* ......................................LOCAL LINKS.................................... */

.local-links {
    width: 95%;
    height: 100%;
    background-color: black;
    margin: auto;
    margin-top: 10px;
    padding: 10px 10px;
}

.local-links h6 {
    font-size: 25px;
    color: yellow;
}

.local-links p {
    font-size: 15px;
    margin-top: 10px;
    line-height: 30px;

}

.local-links a {
    text-decoration: none;
    background-color: red;
    color: white;
    font-weight: bold;
    gap: 10px;
}

.local-links a:hover {
    background-color: white;
    color: red;
}


/* ......................................POPULAR CITY................................... */

.city-links {
    width: 95%;
    height: 100%;
    background-color: black;
    margin: auto;
    margin-top: 20px;
    padding: 10px 10px;
}

.city-links h6 {
    font-size: 25px;
    color: yellow;
}

.city-links p {
    font-size: 15px;
    margin-top: 10px;
    line-height: 30px;

}

.city-links a {
    text-decoration: none;
    background-color: red;
    color: white;
    font-weight: bold;
    gap: 10px;
}

.city-links a:hover {
    background-color: white;
    color: red;
}

/* ....................................CONTACT SECTION...................................*/

.contact-button {
    width: 100%;
    height: 50px;
    /* margin-top: 10px; */
    display: flex;
    /* border: 1px solid black; */
}

.call-button {
    width: 50%;
    height: 50px;
    position: fixed;
    left: 0px;
    bottom: 0px;
    /* border: 1px solid red; */
}

.call-button a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.call-button a:hover {
    color: black;
    cursor: pointer;
}

#number-call {
    width: 100%;
    height: 50px;
    background-color: red;
    display: flex;
    justify-content: center;
    align-items: center;
}




.whtp-button {
    width: 50%;
    height: 50px;
    position: fixed;
    right: 0px;
    bottom: 0px;
    /* border: 1px solid white; */
}

.whtp-button a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.whtp-button a:hover {
    color: black;
    cursor: pointer;
}

#whtps2 {
    width: 100%;
    height: 50px;
    background-color: rgb(0, 211, 0);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ........................................UP BUTTON..................................... */

/* Smooth scrolling for the whole page */
html {
    scroll-behavior: smooth;
}

/* Back-to-top button base */
.back-to-top {
    position: fixed;
    right: 1px;
    bottom: 50px;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    background: #111;
    /* dark background, you can change */
    color: #fff;
    /* icon color */
    cursor: pointer;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 240ms ease, transform 240ms ease;
    z-index: 9999;
}

/* Visible state */
.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Hover/focus styles for accessibility */
.back-to-top:focus,
.back-to-top:hover {
    outline: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

/* Small screen tweak */
@media screen and (max-width:599px) {
    .back-to-top {
        right: 0px;
        bottom: 49px;
        width: 40px;
        height: 40px;
    }
}

/* ==================== FOOTER ==================== */
footer {
    width: 100%;
    background: #065f46;
    /* green shade */
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 30px 20px;
    color: white;
    margin-top: 10px;
}

.footerbox {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.footerbox h6 {
    font-size: 18px;
    color: yellow;
    margin-bottom: 12px;
}

.footerbox p {
    font-size: 14px;
    line-height: 22px;
    color: #f9f9f9;
}

.footerbox span {
    color: #ffcc00;
    font-weight: bold;
}

#footer-menu ul,
#footer-social ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer-menu ul li {
    margin-bottom: 8px;
}

#footer-menu ul li a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    transition: color 0.3s;
}

#footer-menu ul li a:hover {
    color: #ffcc00;
}

/* Social Icons */
#footer-social ul {
    line-height: 25px;
}

#footer-social ul li a {
    font-size: 15px;
    color: white;
    transition: color 0.3s;
}

#footer-social ul li a:hover {
    color: #ffcc00;
}

/* Contact Us */
#footer-contact p {
    margin: 6px 0;
    font-size: 14px;
}

#footer-contact i {
    margin-right: 6px;
    color: #ffcc00;
}

#footer-contact a {
    text-decoration: none;
    color: white;
}

#footer-contact a:hover {
    color: #ffcc00;
}

/* Footer Bottom */
.footer-bottom {
    width: 100%;
    background: #064e3b;
    text-align: center;
    padding: 12px 5px;
    margin-bottom: 50px;
}

.footer-bottom p {
    font-size: 13px;
    color: #ddd;
}

.footer-bottom a {
    text-decoration: none;
    color: #f0f0f0;
    font-weight: bold;
}

/* ..................................MEDIA QUERY................................... */

/* .....NAVBAR..... */
@media screen and (max-width: 1024px) {
    #showmenu {
        display: block;
    }

    .destopmenu {
        display: none;
    }
}


/* .....UPDATE SCROLLING..... */

/* Responsive adjustments */
@media (max-width: 1024px) {
    .ticker-track span {
        margin: 0 25px;
    }
}

/* .....SEARCH BAR..... */
@media (max-width: 1024px) {
    .dropdown-container {
        width: 90%;
        position: relative;
        margin: auto;
        margin-top: 2px;
    }
}




/* .....FOOTER..... */
@media screen and (max-width:1024px) {
    .footerbox {
        flex: 1;
        max-width: 350px;
        min-width: 300px;
        padding: 10px 0px;
        /* border: 1px solid blue; */
    }

    .footerbox h6 {
        text-align: center;
    }

    #footer-disclaimer{
        text-align: justify;
    }

    #footer-menu ul li a {
        font-size: 12px;
    }

    #footer-menu ul,
    #footer-social ul {
        font-size: 12px;
        display: flex;
        justify-content: center;
        gap: 12px;
        /* border: 1px solid red; */
    }

    #footer-social ul li a {
        color: white;
        font-size: 35px;
    }

    #footer-contact p {
        font-size: 15px;
        color: chartreuse;
        text-align: center;
    }

    .footer-bottom p {
        text-align: center;
        font-size: 10px;
        font-weight: bold;
        color: white;
    }
}

/* .....TABLE PRICE..... */
@media screen and (max-width:1024px) {
    .price-table {
        width: 100%;
    }

    table {
        width: 90%;
    }

    .price-head {
        width: 93%;
    }
}

/*.. HEADLINE SECTION..... */
@media screen and (max-width:1024px){
    .headline {
    font-size: 9px;
    text-align: center;
}
}