
.flickity-page-dots .dot{

    width:8px !important;
    height: 3px;
    margin: 0 !important;
    border-radius: 0 !important;
    margin-bottom: -20px !important;
    
    }


    .flickity-page-dots .dot.is-selected{

        background-color:rgb(167, 24, 24);
    }



.search-hero {
    background-image: linear-gradient(135deg, #07273ee7 0%, #192f42bb 50%, #1e2c38c0 100%),url("../img/home_background_pic.png");
    background-size:cover;
    background-repeat: none;
    background-position:center;
    padding: 60px 0 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 50vh;
}

.search-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.search-container {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.search-header {
    text-align: center;
    margin-bottom: 40px;
}

.search-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.location-selector {
    display: inline-flex;
    align-items: center;
    background: var(--primary-blue);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    margin-left: 10px;
}

.location-selector:hover {
    background: #3A7BC8;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.location-selector i {
    margin-left: 8px;
    font-size: 0.8rem;
}

.search-form {
    background: white;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.1),
        0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.search-form:hover,
.search-form:focus-within {
    transform: translateY(-2px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.15),
        0 8px 15px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-blue);
}

.search-input-wrapper {
    position: relative;
    flex-grow: 1;
}

.search-input {
    width: 100%;
    border: none;
    outline: none;
    padding: 16px 24px;
    font-size: 1rem;
    background: transparent;
    color: #374151;
    border-radius: 40px;
}

.search-input::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}

.search-input:focus {
    outline: none;
}

.search-btn {
    background: var(--primary-blue);
    border: none;
    border-radius: 40px;
    padding: 14px 28px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.search-btn:hover {
    background: #3A7BC8;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.search-btn:active {
    transform: translateY(0);
}

.search-btn i {
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .search-hero {
        padding: 40px 0 60px 0;
    }

    .search-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .search-header {
        margin-bottom: 30px;
        display:flex;
        justify-content:center;
        gap:20px;
    }

    .location-selector {
        padding: 6px 14px;
        font-size: 1.2rem;
        margin-top: 10px;
        margin-left: 0;
        display: block;
        text-align: center;
    }

    .search-form {
        padding: 6px;
        border-radius: 40px;
    }

    .search-input {
        padding: 14px 20px;
        font-size: 0.9rem;
        width:330px;
    }

    .search-btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .search-hero {
        padding: 30px 0 50px 0;
    }

    .search-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .location-selector {
        padding: 5px 12px;
        font-size: 1.1rem;
        border-radius: 20px;
    }

    .search-form {
        flex-direction: column;
        gap: 10px;
        padding: 16px;
        border-radius: 20px;
    }

    .search-input {
        padding: 12px 16px;
        font-size: 0.9rem;
        border-radius: 25px;
        background: #F8F9FA;
        border: 1px solid #E2E8F0;
    }

    .search-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        border-radius: 25px;
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .search-title {
        font-size: 1.5rem;
    }

    .location-selector {
        font-size: 1.0rem;
        padding: 4px 10px;
    }

    .search-input {
        font-size: 0.85rem;
        padding: 10px 14px;
    }

    .search-btn {
        font-size: 0.85rem;
        padding: 10px 20px;
    }
}

/* Demo content */
.demo-content {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.demo-content h2 {
    color: #1A365D;
    margin-bottom: 20px;
}

.demo-content p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}


 /*--------------------------------------------------------------
 # drop down styles
 --------------------------------------------------------------*/
 
 
 #show_production{ 
 
 
    padding: 10px;
    
    z-index: 1;
    
    box-shadow: 0px 0px 4px rgba(0,0,0,0.5);
    
    border:1px solid rgba(0,70,90,0.3);
    
    width: 300px;
    
    color: black;
    
    text-transform: capitalize;
    
    background-color: white;
    
    background-color: white;
    
    padding-left: 80px;
    
    
    }
    
    
   
    
    @media only screen and (max-width:497px){
    
    #show_production{ 
    
    
    padding: 10px;
    
    z-index: 1;
    
    box-shadow: 0px 0px 4px rgba(0,0,0,0.5);
    
    border: 2px solid skyblue;
    
    width: 300px;
    
    color: black;
    
    text-transform: capitalize;
    
    background-color: white;
    
    background-color: white;
    
    
    }
    
    
    }
    
    
    
    #show_product{ 
    position:absolute;
     margin-top:-160px;
    transform: translate(-50%,-50%);
    left: 450px; 
    padding:5px;    
    z-index: 1;    
    }
    
    
    
    #show_product a{ 
    
    font-size:12px;
    color: black;
    }
    
    @media only screen and (max-width:497px){
    
    
    
    #show_product{
    
    position:absolute;
    top: 100px;
    left: 150px !important;
    
    padding:5px;
    
    z-index: 1;
      
    }

    }
    
    
  /*state selection dropdown  */
    
    
.state-dropdown {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    list-style: none;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 10px 0;
    margin: 0;
    margin-top:150px;
    width: 250px;
    display: none;
    z-index: 9999;
    max-height: 250px;
    overflow-y: auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Optional: Smooth scrollbar for modern browsers */
.state-dropdown::-webkit-scrollbar {
    width: 6px;
}
.state-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.state-dropdown::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 10px;
}

/* Optional: Style each item (anchor tag or li) inside the dropdown */
.state-dropdown a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease;
}

.state-dropdown a:hover {
    background: #f0f0f0;
}