/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

header {
    background-color: transparent;
    color: #fff;
}

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

.logo a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    width: 30px;
    height: 3px;
    background: #fff;
    display: block;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    width: 30px;
    height: 3px;
    background: #fff;
    display: block;
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Navigation Styles */
.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    display: block;
}

/*.nav-menu a:hover {
    background-color: #575757;
}*/

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #142a44;
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-menu li {
    position: relative;
}
.dropdown-menu>li>a {
    display: block;
    padding: 7px 30px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #fff;
    white-space: nowrap;
}

.dropdown-menu a {
    padding: 0.5rem 1rem;
}

.dropdown-menu .dropdown-menu {
    left: 100%;
    top: 0;
}

/* Show Dropdown */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
    }

    .nav-menu.show {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }
    header {
    background-color: #142a44;
    color: #fff;
    }
    
    .nav-menu-margin{
        margin: 5px !important;
    }




}
.main-header-r {
    z-index: 999;
    width: 100%;
    padding: 0px 35px;
}



.main-header .main-menu .navigation {
    font-family: 'FontAwesome';
    position: absolute;
    left: 30px;
    top: 50%;
    height: 20px;
    line-height: 20px;
    margin-top: -9px;
    font-size: 14px;
    font-weight: normal;
    display: block;
}


.sticky-header{
    position:fixed;
    opacity:0;
    visibility:hidden;
    left:0px;
    top:0px;
    width:100%;
    padding: 0px 35px;
    background: #142a44;
    z-index:0;
/*  border-bottom:1px solid #cccccc;*/
    transition:all 500ms ease;
    -moz-transition:all 500ms ease;
    -webkit-transition:all 500ms ease;
    -ms-transition:all 500ms ease;
    -o-transition:all 500ms ease;
}

.sticky-header .logo{
    padding:6px 0px 2px;    
}

.fixed-header .sticky-header{
    z-index:999;
    opacity:1;
    visibility:visible;
    -ms-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -op-animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -ms-animation-duration: 500ms;
    -moz-animation-duration: 500ms;
    -op-animation-duration: 500ms;
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    -ms-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -op-animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -ms-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -op-animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;   
}

.dropdown-btn{
    display: none;
}

/* Basic styles for the popup */
        .custom-model-main {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);

            justify-content: center;
            align-items: center;
            z-index: 1000;
        }
        .custom-model-inner {
       background: #f2f2f2 !important;
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 999;
    font-family: inherit;
    font-weight: 500;
    color: #000;
}

        .close-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            cursor: pointer !important;
            font-size: 28px;
            font-weight: bold;
        }
        .bg-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
           

            z-index: 999;
        }
      .Click-here{
        cursor: pointer;
      }
      .pop-up-content-wrap{
        background: url(images/csrimg.jpg);
      }