@charset "utf-8";
/* CSS Document */

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    overflow-y: scroll;
    overflow-x: hidden;
    background: #ecf0f5;
}
a {
    outline: 0 !important
}
a {
    text-decoration: none !important;
    transition: all .4s linear
}
a:hover {
    text-decoration: none !important
}

img, object {
    max-width: 100%;
}

.clr {
    clear: both;
}

@media only screen and (min-width:250px) and (max-width:1399px) {
.h22 {
    font-size: 23px !important;
    font-family: "Oswald", sans-serif !important;
}	
	
.form-container {
  padding: 10px 15px 10px 15px !important;
  max-width: 100% !important;
}
.submit-btn {
    padding: 10px 10px !important;
    font-size: 16px !important;
	margin-bottom: 10px !important;
}
.input-group {
        flex-direction: column;
    }
.form-title {
        font-size: 1.9rem;
}
.input-group {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
input, textarea, select {
    padding: 15px !important;
}
.mb-banner{
margin-bottom: 50px !important;		
}
}

@media only screen and (min-width:1024px) and (max-width:1399px) {
 .h22 {
    font-size: 35px !important;
    font-family: "Oswald", sans-serif !important;
  }
	
.form-container {
  padding: 15px 15px 15px 15px !important;
  max-width: 100% !important;
}	
.submit-btn {
    padding: 10px 10px !important;
    font-size: 18px !important;
	margin-bottom: 15px !important;
}
	
.input-group {
        flex-direction: row;
  }
.form-container {
  padding: 20px 20px 20px 20px !important;
  max-width: 100% !important;
}
}

:root {
    --blue: #1e428a;
    --red: #d31e1e;
    --gray: #f4f4f4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/* Header */
.main-header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo img {
    height: 45px; /* Adjust according to your logo */
}

.menu-trigger {
    font-size: 26px;
    color: var(--blue);
    cursor: pointer;
}

.blue-info-bar {
    background: var(--blue);
    color: #fff;
    display: flex;
    justify-content: space-around;
    padding: 8px 5px;
    font-size: 13px;
    font-weight: bold;
}

.blue-info-bar i {
    color: var(--red);
    margin-right: 5px;
}

/* Sidebar Styling */
.right-sidebar {
    position: fixed;
    top: 0;
    right: -100%; /* Shuru me bahar hoga */
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 1000;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    overflow-y: auto;
}

.right-sidebar.active {
    right: 0;
}

.sidebar-top {
    background: var(--blue);
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.sidebar-top i {
    font-size: 20px;
    cursor: pointer;
}

/* Menu List */
.category-list {
    list-style: none;
}

.category-list li {
    border-bottom: 1px solid #eee;
}

.category-list li a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

/* Dropdown / Submenu */
.dropdown-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.dropdown-label i {
    padding-right: 20px;
    color: var(--blue);
}

.submenu {
    list-style: none;
    background: #f9f9f9;
    display: none; /* Default hidden */
    padding-left: 20px;
}

.has-dropdown.open .submenu {
    display: block;
}

.submenu li a {
    font-size: 14px;
    font-weight: normal;
    color: #555;
}

/* Background Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile & Tablet Logic (Dono ke liye ek jaisa) */
@media (max-width: 991px) {
    .right-sidebar {
        width: 80%; /* Tablet par thora bara dikhega */
        max-width: 320px;
    }
}