* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}


/* Default (100%) */
nav a,
nav button {
    font-size: 16px;
}

/* When screen behaves like 125% zoom (effective width reduces) */
@media (max-width: 1400px) {
    nav a,
    nav button {
        font-size: 15px;
    }
}

/* Laptop small / 125–150% zoom */
@media (max-width: 1280px) {
    nav a,
    nav button {
        font-size: 13px;
    }
}

/* Tight screens */
@media (max-width: 1200px) {
    nav a,
    nav button {
        font-size: 12.5px;
    }

    .nav-item {
        margin-right: 4px;
    }
}


.top-header{
    background-color: #2c5690;
}


.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 25s linear infinite;
}

.marquee-track span {
    padding: 0 24px;
    white-space: nowrap;
    font-weight: 500;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover (optional) */
.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}




@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide {
    animation: slideUp 1s ease-out;
}

.nav-item a{
    font-size: 13px;
    border-bottom: 1px solid #2c5690;
}

.bg-blue-600 {
    --tw-bg-opacity: 1 !important;
    background-color: #2c5690 !important;
}

.text-blue-600 {
    --tw-text-opacity: 1 !important;
    color: rgb(44 86 144) !important;
}

.text-blue-400 {
    --tw-text-opacity: 1 !important;
    color: #d3a546 !important;
}

.to-indigo-700 {
    --tw-gradient-to: #56b283 var(--tw-gradient-to-position) !important;
}
.from-blue-600 {
    --tw-gradient-from: #2c5690 var(--tw-gradient-from-position) !important;

}
.after\:bg-blue-600::after {
    content: var(--tw-content) !important;
    --tw-bg-opacity: 1 !important;
    background-color: #d3a546 !important;
}
.text-blue-500 {
    --tw-text-opacity: 1;
    color: rgb(211 165 70) !important;
    background-color: #fff;
    padding: 9px;
    border-radius: 4px;
}

.whatsapp-float{
    position:fixed;
    bottom:50px;
    left:25px;
    background:#25D366;
    color:#fff;
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    cursor:pointer;
    box-shadow:0 15px 30px rgba(0,0,0,.3);
    z-index:9999;
}

/* Popup Box */
.chat-popup{
    position:fixed;
    bottom:100px;
    left:25px;
    width:320px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 20px 40px rgba(0,0,0,.3);
    display:none;
    flex-direction:column;
    overflow:hidden;
    z-index:9999;
}

/* Header */
.chat-header{
    background:#25D366;
    color:#fff;
    padding:15px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.chat-header h4{
    margin:0;
    font-size:16px;
}
.chat-header span{
    font-size:12px;
    opacity:.9;
}
.close-chat{
    cursor:pointer;
    font-size:18px;
}

/* Body */
.chat-body{
    padding:15px;
    font-size:14px;
    color:#444;
}
.chat-body p{
    background:#f1f1f1;
    padding:10px;
    border-radius:8px;
}

/* Footer */
.chat-footer{
    padding:10px;
    display:flex;
    gap:8px;
}
.chat-footer input{
    flex:1;
    padding:10px;
    border-radius:20px;
    border:1px solid #ccc;
    outline:none;
}
.chat-footer button{
    background:#25D366;
    border:none;
    color:#fff;
    padding:10px 14px;
    border-radius:50%;
    cursor:pointer;
}
