@charset "UTF-8";
/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

    h1 {
		font-family: 'Roboto', sans-serif;
		font-size: 48px;
		font-weight: bold;
		color: #333; /* Dark color for contrast */
		text-align: left;
		line-height: 1.3;
		letter-spacing: 0;
		margin-top: 20px;
		margin-bottom: 20px;
		padding: 0;
	 }
	 
	 @media (max-width: 768px) {
		h1 {
		   font-size: 36px; /* Adjust size for smaller screens */
		}
	 }
	 

    h2 {
		font-family: 'Arial', sans-serif; /* Clear, web-safe font */
		font-size: 28px; /* Readable size */
		font-weight: 700; /* Bold, but not too heavy */
		color: #333333; /* High contrast for readability */
		line-height: 1.4; /* Readable line height */
		letter-spacing: normal; /* Standard spacing */
		text-transform: capitalize; /* Capitalize first letters */
		margin-top: 20px; /* Space above */
		margin-bottom: 15px; /* Space below */
		text-align: left; /* Left-align for readability */
		padding: 0; /* No padding unless needed */
	  }
	  
	  
	  
	h3 {
		font-family: 'Arial', sans-serif; /* Choose a clean, web-safe font */
		font-size: 1.75rem; /* Adjustable size for readability */
		font-weight: 600; /* Slightly bolder for emphasis, but not too heavy */
		line-height: 1.4; /* Better readability with enough line spacing */
		color: #333; /* Neutral color that ensures good contrast with background */
		letter-spacing: 0.5px; /* A bit of letter spacing for clarity */
		margin-top: 20px; /* Spacing before the h3 tag */
		margin-bottom: 15px; /* Spacing after the h3 tag */
		text-transform: capitalize; /* Capitalize first letter of each word for consistency */
		text-decoration: none; /* Remove any unwanted underline or decoration */
		word-wrap: break-word; /* Ensures long words break correctly in narrow spaces */
		padding: 5px 0; /* Vertical padding for better separation */
		text-align: left; /* Align text left for readability */
	}
	
	@media (max-width: 768px) {
		h3 {
			font-size: 1.5rem; /* Slightly smaller on mobile for better fit */
			margin-top: 15px; /* Reduced margin for tighter mobile layout */
			margin-bottom: 10px;
		}
	}
	
	
	
	
	
	
	/* Basic styles for voice-search */
	
	#search-box {
    width: 300px;
    padding: 10px;
    border: 1px solid #ccc;
    }
    
    #voice-search-btn {
    padding: 10px 20px;
    background-color: #4CAF50;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
   }
    
    #voice-search-button img {
    width: 20px;
    height: 20px;
    }
    
    input[type="text"] {
    margin-top: 10px;
    padding: 10px;
    font-size: 16px;
    width: 300px;
    border: 2px solid #ddd;
    border-radius: 5px;
    }
    
    
    
    
    
    
    /* Breadcrumb Container */
.breadcrumb {
    list-style: none;
    display: flex;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
}

/* Breadcrumb Items */
.breadcrumb li {
    font-size: 16px;
    color: #007bff;
}

/* Breadcrumb Links */
.breadcrumb li a {
    text-decoration: none;
    color: #007bff;
    padding: 5px;
    transition: color 0.3s ease-in-out;
}

/* Breadcrumb Links Hover Effect */
.breadcrumb li a:hover {
    color: #0056b3;
}

/* Separator between Breadcrumb Items */
.breadcrumb li:not(:last-child)::after {
    content: " > ";
    padding: 0 10px;
    color: #6c757d;
}

/* Last Item (Current Page) */
.breadcrumb .active {
    font-weight: bold;
    color: #6c757d;
}


.breadcrumb li:not(:last-child)::after {
    content: " ➤ ";
    padding: 0 8px;
    color: #6c757d;
}


.breadcrumb li a:hover {
    background: #e9ecef;
    padding: 5px;
    border-radius: 4px;
}

@media (max-width: 600px) {
    .breadcrumb {
        flex-wrap: wrap;
        font-size: 14px;
    }
}






/* Breadcrumb container */
        .brd {
            font-family: Arial, sans-serif;
            font-size: 14px;
            color: #333;
            margin-bottom: 10px;
        }

        /* Breadcrumb links */
        .brd a {
            color: #007bff;
            text-decoration: none;
            padding: 5px;
        }

        .brd a:hover {
            text-decoration: underline;
        }

        /* Separator */
        .brd .dvdr {
            color: #666;
            margin: 0 5px;
        }


    
    
    
    
    
    
    
    
    
    
    
    
    
    
    /* Styling for city suggestion input box */
    #hd_city_sugg {
    width: 200px;
    padding: 8px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

    /* Styling for autocomplete dropdown */
    .autocomplete-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 210px;
    border: 1px solid #ccc;
    border-top: none;
    position: absolute;
    background: white;
    z-index: 1000;
    display: none;
    }

    .autocomplete-list li {
    padding: 8px;
    cursor: pointer;
    }

    .autocomplete-list li:hover {
    background: #f0f0f0;
    }

    /* Styling for 'All India' selection */
    .hd_alop {
    margin-top: 5px;
    padding: 10px;
    background: #007bff;
    color: white;
    text-align: center;
    width: 200px;
    cursor: pointer;
    border-radius: 5px;
    }

    .hd_alop:hover {
    background: #0056b3;
    }    
        
    
    
    
    
    
    /* Button Styling */
    #hd_searchPlace {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    }

    /* Hover Effect */
    #hd_searchPlace:hover {
    background-color: #0056b3;
    }

    /* Container */
    #city_hold {
    margin-top: 10px;
    display: none; /* Hidden by default */
    }

    #cityInput {
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    }
    
    
    
    
    /* Container Styling */
    .city-container {
    position: relative;
    width: 300px;
    margin: 20px auto;
    }

    /* Box Styling */
    #hd_city_sugg {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

   /* suggestion Box Styling */
    .suggestions {
    position: absolute;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}

   /* Individual Suggestion Styling */
    .suggestions div {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

   /* Highlight Suggestion on Hover */
    .suggestions div:hover {
    background: #f0f0f0;
}
    
    
    
    
    
    
    
    /* City search suggestion */
    .autocomplete-container {
    position: relative;
    width: 300px;
    }
    #cityInput {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    }
    .suggestions {
    position: absolute;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    border-top: none;
    display: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    }
    .suggestions div {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    }
    .suggestions div:hover {
    background: #f0f0f0;
    }   
    
    
    
    
    
    
    /* Class for inactive state of the paragraph (perhaps makes the text faded or disables interaction) */
    .proInact {
    opacity: 0.6;  /* Reduced opacity for inactive look */
    pointer-events: none; /* Disable interactions */
    }

    /* Class for color styling (maybe for font color) */
    .color3 {
    color: #333; /* Dark grey color for the text */
    }

    /* Class for font size */
    .atxu {
    font-size: 18px; /* Set font size for the paragraph */
    }

    /* Class for custom font style */
    .cbl_fs16 {
    font-family: Arial, sans-serif; /* Set font family */
    font-size: 16px; /* Font size specifically for this class */
    }

    /* Class for additional text formatting */
    .befwt {
    font-weight: bold; /* Make the text bold */
    }

    .seo-paragraph { font-size: 16px; color: #444; line-height: 1.6; }









    /* language selector General Styles */
    .lang-style {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f4;
    }
    
    /* Button Styling */
    .lang-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
    }

    .lang-btn:hover {
    background-color: #0056b3;
    }

    /* Modal (Popup) */
    .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    }

    /* Modal Content */
    .modal-content {
    background: white;
    padding: 20px;
    width: 350px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    }

    h5 {
    margin-bottom: 15px;
    color: #333;
    }
    
    
    

    /* Language List */
    .language-options {
    list-style-type: none;
    padding: 0;
    }

   .language-options li {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
    font-size: 18px;
    transition: background 0.3s ease;
    }

    .language-options li:hover {
    background-color: #f0f0f0;
    }

    /* Close Button */
    .close-btn {
    margin-top: 15px;
    background-color: red;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    }

    .close-btn:hover {
    background-color: darkred;
    }
    
    
    
    
    
    
    /* language selector General Styles */
    .language-container {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: inline-block;
}

label {
    font-size: 18px;
    font-weight: bold;
    margin-right: 10px;
    font-family: 'Noto Sans', 'Noto Serif', sans-serif;
}

select {
    font-size: 16px;
    padding: 5px;
    border-radius: 5px;
    }
    
    
    
    
    

    
   
    





    
    
    
    
    

	
	 


