* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Roboto', sans-serif;
}

body {
    background: #f9f9f9;
}

/* Brand Colors */
:root {
    --brand-blue: #242176;
    --brand-red: #ee1d24;
    --text-dark: #555;
}

/* Header */
.premium-header {
    background: var(--brand-blue);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 15px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

.logo img {
    height: 65px;

}

/* Mobile adjustments */
@media (max-width: 768px) {
    .logo img {
        height: 60px;
        /* slightly smaller for tablets */
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 45px;
        /* smaller for mobile */
    }
}

/* Alig Center */
.text-center {
    text-align: center;
}

/* Navigation */
.navbar {
    flex: 1;
    margin-left: 50px;
}

.navbar .nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}


.submenu {
    display: none;
}

.submenu.open {
    display: flex;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    font-weight: 800;
    /* Makes text bold */
    color: #ffffff;
    font-weight: 500;
    font-size: 18px;
    transition: color 0.3s ease-in-out;
}

.nav-links a:hover {
    color: var(--brand-red);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    list-style: none;
    /* ensures dropdown appears just below the parent */
    left: 0;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    min-width: 180px;
    z-index: 1001;
}

.dropdown-menu li {
    padding: 10px;
}

.dropdown-menu li a {
    color: var(--text-dark);
    font-size: 14px;
}

/* Desktop Hover Dropdown */
.dropdown:hover .dropdown-menu {
    display: flex;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 30px;
    padding: 5px 15px;
}

.search-box input {
    border: none;
    outline: none;
    background: transparent;
    width: 180px;
    font-size: 14px;
}

.search-box button {
    border: none;
    background: transparent;
    color: #777;
    cursor: pointer;
}

.user-actions {
    display: flex;
    gap: 15px;
}

.user-actions a {
    color: var(--text-dark);
    font-size: 18px;
    transition: color 0.3s;
}

.user-actions a:hover {
    color: var(--brand-blue);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #ffffff;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .navbar {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 60%;
        height: 100vh;
        background: var(--brand-blue);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 999;
    }

    .navbar.active {
        left: -50px;
    }

    .nav-links {
        flex-direction: column;
        padding: 30px;
        gap: 20px;
    }

    .menu-toggle {
        display: block;
    }

    .search-box {
        display: none;
    }

    .premium-header {
        padding: 10px 3%;
    }
}

/* Blinking effect for Today's Price button */
.today-price-btn {
    background: #ee1d24;
    color: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    margin: 0 10px;
    transition: background 0.3s ease;
    animation: blink 2s infinite;
    /* 🔥 Add blinking animation */
}

.today-price-btn:hover {
    background: #fffb21;
    color: #1c2aa8;
}

/* Keyframes for blinking */
@keyframes blink {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0.5;
    }
}


/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-icons a {
    color: #ffffff;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

/* Responsive: stack items on mobile */
@media (max-width: 768px) {
    .today-price-btn {
        padding: 6px 12px;
        font-size: 14px;
    }

    .social-icons a {
        font-size: 14px;
    }
}



/* Footer */
.site-footer {
    position: relative;
    padding: 60px 3%;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background: linear-gradient(135deg, #242176 0%, #242176 100%);
    overflow: hidden;
}

/* Floating Logo */
.footer-logo-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
    z-index: 0;
}

.footer-logo-bg img {
    max-width: 400px;
    width: 50%;
    height: auto;
}

/* Footer Container */
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* Sections */
.footer-section {
    flex: 1;
    min-width: 220px;
    animation: fadeInUp 1s ease-in-out;
}

/* Section Titles */
.footer-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fffb21;
}


.footer-section p {
    margin-bottom: 10px;
    /* Adjust the value as needed */
    color: #ffffff;
    /* Optional: keep text white */
    line-height: 1.5;
    /* Optional: better readability */
}

/* Products Links */
.footer-products ul {
    list-style: none;
    padding: 0;
}

.footer-products ul li {
    margin-bottom: 8px;
}

.footer-products ul li a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-products ul li a:hover {
    color: #fffb21;
    transform: scale(1.05);
}

/* App Buttons */
.footer-apps .apps a img {
    height: 35px;
    margin-right: 10px;
    transition: transform 0.4s ease, opacity 0.4s;
}

.footer-apps .apps a img:hover {
    transform: scale(1.1) rotate(-5deg);
}

/* Social Icons */
.footer-social .social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-social .social-icons a {
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social .social-icons a:hover {
    color: #fffb21;
    transform: scale(1.2);
}

/* Legal Text */
.footer-social .legal {
    font-size: 13px;
    line-height: 1.5;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.dot-animate::after {
    content: '';
    display: inline-block;
    width: 1ch;
    animation: dots 1s steps(4, end) infinite;
}

@keyframes dots {

    0%,
    20% {
        content: '';
    }

    40% {
        content: '.';
    }

    60% {
        content: '..';
    }

    80% {
        content: '...';
    }

    100% {
        content: '....';
    }
}


.footer-about i {
    color: #ee1d24;
    /* your theme color */
    margin-right: 10px;
}

@media (max-width: 992px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
        text-align: left;
    }

    .footer-section {
        flex: 1 1 100%;
        min-width: auto;
        text-align: left;
    }

    /* Products list: vertical on mobile */
    .footer-products ul {
        display: block;
        /* Stack items vertically */
        padding-left: 0;
    }

    .footer-products ul li {
        margin-bottom: 10px;
        /* Space between items */
    }

    /* App buttons */
    .footer-apps .apps {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 10px;
    }

    /* Social icons */
    .footer-social .social-icons {
        justify-content: flex-start;
    }

    /* Legal text */
    .footer-social .legal {
        text-align: left;
    }

    /* Floating logo */
    .footer-logo-bg {
        max-width: 250px;
        opacity: 0.03;
    }
}

.legal a {
    color: #ffffff;
    /* white color */
    text-decoration: none;
    /* remove underline */
    transition: color 0.3s ease;
}

.legal a:hover {
    color: #fffb21;
    /* optional hover color */
}