@import url(https://db.onlinewebfonts.com/c/2f86dc938a55788d3416b876b43a116a?family=Poppins);

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins";
}

/* Header Container */
.header {
    display: flex;
    justify-content: space-between;
    /* align-items: stretch; */
    gap: 5px;
    border-bottom: 2px solid #000;
    background: #000;
    position: sticky;
    /* stays fixed */
    top: 0;
    /* pinned at top */
    z-index: 999;
    /* keeps above content */
}

/* Left: Logo */
.header-left {
    /* flex: 1; */
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background: #fff;
    border-bottom-right-radius: 10px;
}

.header-left img {
    height: 55px;
}

/* Center: Navigation */
.header-center {
    flex: 2;
    background: #f5a000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.header-center ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.header-center a {
    text-decoration: none;
    color: #fff;
    font-weight: normal;
    padding: 2px 6px;
    font-size: 16px;
    font-weight: 500;
}

/* Right: Contact + CTA */
.header-right {
    /* flex: 2; */
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    padding: 10px 20px;
    border-bottom-left-radius: 10px;
}

.contact {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: 500;
}

.social a {
    margin: 0 6px;
    font-size: 18px;
    text-decoration: none;
}

.btn {
    background: #f5a000;
    color: #000;
    padding: 4px 10px;
    border-radius: 25px;
    /* font-weight: bold; */
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.btn:hover {
    background: #000;
    color: #fff;
}

.header-center .active a {
    color: #000000;
    font-size: 18px;
    font-weight: 900;
}


/******************** Footer  ***********************/
.footer {
    background: #111;
    color: #fff;
    padding: 20px 20px 10px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: -60px;
}

/* Top Section: Address (Left) + Newsletter (Right) */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #f5a000;

}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    /* Orange Heading */
}

.footer-box p {
    font-size: 14px;
    line-height: 1.6;
    /* margin: 0 0 8px; */
}

/* Newsletter */
.newsletter {
    display: flex;
    gap: 10px;
    align-items: center;
    max-width: 400px;
    width: 100%;
}

.email-input {
    flex: 1;
    padding: 8px 12px;
    border-radius: 10px;
    border: none;
    font-size: 14px;
    outline: none;
    width: 280px;
}

.send-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #ff9900;
    background: transparent;
    color: #fff;
    font-size: 14px;
    padding: 5px 12px;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

/* liquid background */
.send-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    /* start hidden */
    width: 100%;
    height: 100%;
    background: #ff9900;
    transition: left 0.4s ease-in-out;
    z-index: -1;
}

/* keep text above */
.send-btn span {
    position: relative;
    z-index: 1;
}

.send-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    color: #111;
}

.send-btn:hover::before {
    left: 0;
    /* slide background in from left to right */
}


/* Middle: Categories in 4 Columns */
.footer-middle {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.social {
    display: flex;
}

/* .social-icons {
    display: flex;
    gap: 12px;
    font-size: 18px;
} 

/* .social-icons a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
} */

.social-icons a:hover {
    color: #ff9900;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid #fff;
    margin-top: 25px;
    padding-top: 12px;
    text-align: center;
    font-size: 13px;
    color: #ccc;
}



/**************************************************** pop up card *****************************/
.popup {
    display: none;
    /* Initially hidden */
    position: fixed;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 500px;
    background-color: #ffffff;
    background-image: url(../images/Background.png);
    background-size: cover;
    background-position: center;
    transform: translate(-50%, -50%);
    padding: 30px 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    z-index: 1000;
    text-align: center;
    /* font-family: "Poppins", sans-serif; */
}

/* Heading */
.pop-up-heading {
    font-size: 36px;
    font-weight: 700;
    color: #004080;
    /* Theme orange */
    margin-bottom: 15px;
}

/* Paragraph */
.pop-up-para {
    color: #000;
    /* Olive green */
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
}

/* Button */
.close-btn {
    background-color: #000;
    /* Olive green */
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: auto;
}

.close-btn:hover {
    background-color: #004080;
}


/********************* WhatsApp Container *********************/
.whatsapp-container {
    position: fixed;
    /* fixed instead of sticky */
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 9999;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.whatsapp-container a {
    text-decoration: none;
}

.whatsapp-container i {
    font-size: 48px;
    color: #25D366;
    animation: whatsappbeat 1.5s infinite;
    transition: transform 0.3s ease;
}

.whatsapp-container i:hover {
    transform: scale(1.2);
}

/* WhatsApp icon animation */
@keyframes whatsappbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}


.footer a {
    color: #ff9900;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #004080;
}