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

body {
    background-color: #f8f9fa;   /* SAME as original */
    color: #333;                /* SAME */
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    background-color: #e9ecef;   /* SAME */
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #dee2e6;
}

.container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.location-info {
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #333;
    text-decoration: none;
}

/* Header */
header {
    background-color: #f0f3f6; /* SAME */
    border: 1px solid #083e7753; /* SAME */
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles - Updated for Image */
.logo {
    max-width: 200px; /* Desktop max width */
    height: auto;
    display: block;
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 50px; /* Desktop max height */
    object-fit: contain; /* Ensures image maintains aspect ratio */
}

.search-bar {
    width: 40%;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: 1px solid #dee2e6;
    border-radius: 25px;
    background-color: #f8f9fa;
    color: #333;
    outline: none;
}

.search-bar button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #083D77;
    cursor: pointer;
    padding: 5px 10px;
}

/* Location Selector - Desktop */
.location-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 25px;
    cursor: pointer;
    position: relative;
    margin-right: 15px;
}

.location-selector i {
    color: #083D77;
}

.location-text {
    color: #333;
    font-weight: 500;
}

.location-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    min-width: 200px;
    z-index: 1000;
    display: none;
    margin-top: 5px;
    border: 1px solid #dee2e6;
}

.location-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-dropdown li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s;
}

.location-dropdown li a:hover {
    background-color: #e9ecef;
}

.location-selector:hover .location-dropdown {
    display: block;
}

/* Mobile Location Selector */
.mobile-location-selector {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    cursor: pointer;
    position: relative;
}

.mobile-location-selector i {
    color: #083D77;
    font-size: 12px;
}

.mobile-location-selector .location-text {
    color: #333;
    font-weight: 500;
    font-size: 12px;
}

.mobile-location-selector .location-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    min-width: 150px;
    z-index: 1000;
    display: none;
    margin-top: 5px;
    border: 1px solid #dee2e6;
}

.mobile-location-selector .location-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-location-selector .location-dropdown li a {
    display: block;
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s;
    font-size: 12px;
}

.mobile-location-selector .location-dropdown li a:hover {
    background-color: #e9ecef;
}

.mobile-location-selector.active .location-dropdown {
    display: block;
}

/* ===========================
   NAVIGATION (BLUE THEME)
   only this section changed
=========================== */
nav {
    background-color: #083D77;             /* CHANGED: white -> blue */
    padding: 0;
    position: sticky;
    top: 70px;
    z-index: 999;
    border-bottom: 1px solid #083D77;      /* CHANGED */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 15px 20px;
    color: #fff;                          /* CHANGED: text white */
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;                      /* little bolder */
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    background-color: #fff;               /* CHANGED hover invert */
    color: #083D77;
}

/* Dropdown Menu (BLUE) */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #083D77;            /* CHANGED */
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    border: 1px solid #083D77;            /* CHANGED */
    border-top: none;
}

.nav-menu li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    padding: 12px 20px;
    text-transform: capitalize;
    border-bottom: 1px solid rgba(255,255,255,0.2); /* CHANGED */
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
    color: #fff;                          /* CHANGED */
}

.dropdown a:last-child {
    border-bottom: none;
}

.dropdown a:hover {
    background-color: #fff;              /* CHANGED hover invert */
    padding-left: 25px;
    color: #083D77;
}

.dropdown a i {
    color: #fff;                          /* CHANGED */
    width: 20px;
    text-align: center;
}

.dropdown a:hover i {
    color: #083D77;                       /* CHANGED */
}

/* Slider */
.slider {
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    max-width: 800px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.486);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.slide-content h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #083D77;
}

.slide-content p {
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
}

.slide-content .btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #083D77;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.slide-content .btn:hover {
    background-color: #3367d6;
    color: #ffffff;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-nav button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: rgba(66, 133, 244, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-nav button.active {
    background-color: #083D77;
}

/* Service Keywords Section */
.service-keywords-section {
    padding: 40px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #dee2e6;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #083D77;
}

.service-keywords-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 100%;
    overflow-x: auto;
    padding: 10px 0;
}

.service-keyword {
    padding: 10px 20px;
    background-color: #f8f9fa;
    border-radius: 30px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

.service-keyword:hover {
    background-color: #083D77;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Keywords Section */
.keywords-section {
    padding: 40px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #dee2e6;
}

.keywords-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 100%;
    overflow-x: auto;
    padding: 10px 0;
}

.keyword {
    padding: 10px 20px;
    background-color: #f8f9fa;
    border-radius: 30px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
    white-space: nowrap;
    flex-shrink: 0;
}

.keyword:hover {
    background-color: #083D77;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Promotional Banner */
.promo-banner {
    background-color: #083D77;
    color: #ffffff;
    padding: 15px 0;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
}

/* Product Categories */
.product-categories {
    padding: 60px 0;
    background-color: #ffffff;
}

.categories-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(66, 133, 244, 0.2);
}

.category-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.category-info {
    padding: 20px;
}

.category-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

.category-info p {
    color: #6c757d;
    margin-bottom: 15px;
}

.category-info a {
    color: #083D77;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.category-info a:hover {
    color: #3367d6;
}

/* Footer */
footer {
    background-color: #f8f9fa;
    padding: 50px 0 20px;
    margin-top: 50px;
    border-top: 1px solid #dee2e6;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #083D77;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

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

.footer-col ul li a:hover {
    color: #333;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
    color: #6c757d;
    font-size: 14px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: #ffffff;
    z-index: 1001;
    padding: 20px;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dee2e6;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #333;
    font-size: 24px;
    cursor: pointer;
}

.mobile-search {
    margin-bottom: 20px;
    position: relative;
}

.mobile-search input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: 1px solid #dee2e6;
    border-radius: 25px;
    background-color: #f8f9fa;
    color: #333;
    outline: none;
}

.mobile-search button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #083D77;
    cursor: pointer;
    padding: 5px 10px;
}

.mobile-nav-menu {
    list-style: none;
    margin-bottom: 30px;
}

.mobile-nav-menu > li {
    margin-bottom: 5px;
}

.mobile-nav-menu > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 5px;
    font-size: 16px;
}

.mobile-nav-menu > li > a:hover {
    background-color: #083D77;
    color: #ffffff;
}

.mobile-nav-menu > li > a i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mobile-nav-menu > li > a.active i {
    transform: rotate(180deg);
}

.mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f8f9fa;
    border-radius: 0 0 5px 5px;
}

.mobile-dropdown.active {
    max-height: 500px;
}

.mobile-dropdown a {
    display: block;
    padding: 10px 15px 10px 30px;
    color: #333;
    text-decoration: none;
    text-transform: capitalize;
    font-size: 14px;
    transition: all 0.2s ease;
    border-bottom: 1px solid #e9ecef;
}

.mobile-dropdown a:last-child {
    border-bottom: none;
}

.mobile-dropdown a:hover {
    color: #333;
    background-color: #e9ecef;
    padding-left: 35px;
}

.mobile-dropdown a i {
    color: #083D77;
    margin-right: 10px;
    width: 16px;
    text-align: center;
}

.mobile-menu-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    text-align: center;
}

.toll-free {
    font-size: 18px;
    font-weight: bold;
    color: #083D77;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

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

/* City Selection Modal */
.city-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    overflow-y: auto;
}

.city-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.city-modal-content {
    background-color: #ffffff;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
    animation: modalFadeIn 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.city-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.city-modal-title {
    font-size: 24px;
    color: #333;
}

.city-modal-close {
    background: none;
    border: none;
    color: #333;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
}

.city-modal-close:hover {
    color: #083D77;
}

.city-search-container {
    position: relative;
    margin-bottom: 30px;
}

.city-search-input {
    width: 100%;
    padding: 15px 45px 15px 20px;
    border: 1px solid #dee2e6;
    border-radius: 30px;
    background-color: #f8f9fa;
    color: #333;
    font-size: 16px;
    outline: none;
}

.city-search-button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #083D77;
    font-size: 18px;
    cursor: pointer;
}

.popular-cities-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.popular-cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.city-card {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.city-card:hover {
    background-color: #083D77;
    transform: translateY(-5px);
    color: #ffffff;
}

.city-card:hover .city-icon {
    color: #ffffff;
}

.city-card:hover .city-name {
    color: #ffffff;
}

.city-icon {
    font-size: 30px;
    margin-bottom: 10px;
    color: #083D77;
}

.city-name {
    font-size: 16px;
    color: #333;
}

.view-all-cities {
    display: block;
    text-align: center;
    color: #083D77;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s;
    cursor: pointer;
}

.view-all-cities:hover {
    color: #3367d6;
}

/* All Cities Section */
.all-cities-section {
    display: none;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
}

.all-cities-section.active {
    display: block;
}

.all-cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
}

/* Responsive City Modal */
@media (max-width: 768px) {
    .city-modal-content {
        width: 95%;
        padding: 20px;
    }

    .city-modal-title {
        font-size: 20px;
    }

    .popular-cities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .all-cities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .city-card {
        padding: 10px;
    }

    .city-icon {
        font-size: 24px;
    }

    .city-name {
        font-size: 14px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .search-bar { display: none; }
    .location-selector { display: none; }
    .mobile-location-selector { display: flex; }
    .menu-toggle { display: block; font-size: 18px; }
    nav { display: none; }

    .logo { max-width: 120px; }
    .logo img { max-height: 30px; }

    .slide-content h1 { font-size: 19px; }
    .slide-content p { font-size: 18px; }

    .slider { height: 400px; }

    .slide {
        background-image: url('https://24x7kitchencare.com/image/24x7banner.webp') !important;
    }

    .mobile-menu { display: block; }

    .service-keywords-container,
    .keywords-container {
        justify-content: flex-start;
        padding: 10px;
        scrollbar-width: thin;
        scrollbar-color: #083D77 #f8f9fa;
    }

    .service-keywords-container::-webkit-scrollbar,
    .keywords-container::-webkit-scrollbar {
        height: 6px;
    }

    .service-keywords-container::-webkit-scrollbar-track,
    .keywords-container::-webkit-scrollbar-track {
        background: #f8f9fa;
    }

    .service-keywords-container::-webkit-scrollbar-thumb,
    .keywords-container::-webkit-scrollbar-thumb {
        background-color: #083D77;
        border-radius: 3px;
    }
}

@media (min-width: 769px) {
    .slider {
        height: calc(100vw / 3);
        max-height: 650px;
    }

    .slide {
        background-image: url('https://24x7kitchencare.com/image/24x7banner.webp') !important;
    }

    .mobile-menu { display: none !important; }
    .mobile-location-selector { display: none !important; }
}

/* Added styles for city modal logo */
.city-modal-logo {
    text-align: center;
    margin-bottom: 20px;
}

.city-modal-logo img {
    max-width: 150px;
    height: auto;
}
/* =========================================
   FINAL MOBILE ONLY HEADER/NAVBAR BLUE
   Desktop untouched
========================================= */
@media (max-width: 768px) {

  /* Mobile header bar blue */
  header{
    background-color: #062d57 !important;
    border: 1px solid #062d57 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15) !important;
  }

  /* Header ke andar sab white */
  header *,
  header a,
  header span,
  header i{
    color:#fff !important;
  }

  /* Mobile logo ko white version se replace karna
     Bas apna white logo ka path yaha daal dena */
  .logo img{
    content: url("https://www.24x7kitchencare.com/image/24x7Logo.png") !important; /* <-- yaha apna white logo */
    max-height: 30px !important;
    width: auto !important;
  }

  /* Select City pill white rahe taaki contrast acha lage */
  .mobile-location-selector{
    background:#fff !important;
    border:1px solid #fff !important;
  }
  .mobile-location-selector i,
  .mobile-location-selector .location-text{
    color:#083D77 !important;
    font-weight:600 !important;
  }

  /* Hamburger menu icon white already ho jayega header * rule se
     Fir bhi safety ke liye */
  .menu-toggle,
  .menu-toggle i{
    color:#fff !important;
  }

  /* Mobile menu (sidebar) same rahe — desktop jaisa perfect hai */
}
