dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0rem !important;
}
/* .container {
  max-width: 1200px; 
  margin: 0 auto; 
} */
#header {
  position: fixed; /* Keeps the navbar fixed at the top */
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff; /* Navbar background */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); padding:5px;
}
.nav {
  display: flex;
  align-items: center;
  padding: 5px;
}

.nav > .nav-header {
  flex: 1;
}


/* .logo {
  width: 100%;
  max-width: 200px;
} */



.logo {
  width: 100%;
  max-width: 220px;
	margin-top:5px;
  /* max-height: 100%!important;  
  height: auto!important;
  width: auto!important;
  object-fit: contain!important; */
}

.nav > .nav-list {
  display: flex;
  gap: 2rem;
}

.nav > .nav-list > li {
  list-style-type: none;     font-weight: 600;
}

.nav > .nav-list > li a {
  font-weight: 600;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

.nav > .nav-list > li a:hover {
  text-decoration: none;
  color: #00408D;
  cursor: pointer;
}

.nav > #nav-check {
  display: none;
}

.topBtn {
  background-color: #00408D !important;
  border-style: none !important;
  color: #1a237e;
  padding: 10px 20px;
  border-radius: 5px;
  margin-left: 30px;
}

@media only screen and (max-width: 600px) {
  /* .nav {
    padding: 1rem;
    position: fixed;
    top: 0;
  } */

  #header {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 5px 2px #ccc;
	
  /*  top: 0;
    position: fixed;
    z-index: 9999;
    padding: 0.5rem;*/
  }
  .nav > .nav-header > .nav-title {
    margin-left: 0px;
  }

  .logo {
    width: 70%;
	  margin-left:5px;margin-top:5px;
  }

  .topBtn {
    display: none;
  }
  .nav > .nav-btn {
    display: inline-block;
    position: absolute;
    right: 0;
    /* top: 0; */
   /*padding-top: 1rem;*/
    padding-right: 30px;
  }
  .nav > .nav-btn > label {
    display: inline-block;
    padding: 10px 10px 5px 10px;
    background-color: #00408D;
    border-radius: 5px;
  }
  .nav > .nav-btn > label > span {
    display: block;
    width: 20px;
    height: 6px;
    border-top: 2px solid #eee;
  }
  .nav > .nav-list {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    background-color: #000;
    height: 0;
    transition: all 0.3s ease-in;
    top: 70px!important;
    left: 0;
    overflow: hidden;
    padding-left: 20px;
  }
  .nav > .nav-list > li {
    width: 100%;
    margin-top: 1.5rem;
    color: #fff;
  }

  .nav > .nav-list > li > a {
    color: #fff;
  }
  .nav > #nav-check:checked ~ .nav-list {
    height: calc(40vh - 0px);
  }
}




.header_heading {
	color: #f97316;
	font-size: 22px;
	font-weight: 700;
}
.logo {
	width: 50%;
	max-width: 200px;
}

@media only screen and (max-width:1024px){
  .header_heading {
	display: none;
}
.logo{
  width: 100%;
}
.logo img {
	width: 100%;
}
}
.navbar {
	padding-right: 10px !important;
	padding-left: 10px;
}

.logo {
	display: flex;
	align-items: center;
}

.des_logo {
	display: flex;
	align-items: end;
}

.des_logo img {
	width: 80%;
}

.mang_logo {
  width: 55%;
}

.logo hr {
	color: #cccccc;
	height: 65px;
	rotate: 180deg;
	width: 0px;
	margin: 0px 10px !important;
	margin-left: -5px !important;
}

@media only screen and (max-width:768px){
  .navbar {
  width: unset;
}
  .logo {
	flex-direction: row-reverse;
	max-width: 100%;
	margin: 0px;
	width: 100%;
}
.des_logo {
	width: 45% !important;
}

.logo hr {
	display: none;
}
.top-navbar {
	padding: 10px 0px !important;
}
.top-navbar .coupon-btn-main {
	display: none;
}
.des_logo {
	display: flex;
	align-items: end;
	justify-content: end;
}
.des_logo img {
	width: 40%;
}
}

.coupon-btn-main img {
	width: 10%;
	border-radius: 50px;
	margin-right: 10px;
}



.coupon-btn-main {
	position: relative;
	padding: 7px 0px;
	font-size: 14px;
	font-weight: bold;
	color: #ffffff;
	background: linear-gradient(135deg, #2ecc71, #27ae60);
	border: none;
	border-radius: 8px;
	cursor: pointer;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(46, 204, 113, 0.4);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	animation: pulse 2s infinite;
	margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Shine animation */
.coupon-btn-main::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    transform: skewX(-25deg);
    animation: shine 2.5s infinite;
}

/* Pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.6);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(46, 204, 113, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

/* Shine movement */
@keyframes shine {
    0% {
        left: -75%;
    }
    100% {
        left: 125%;
    }
}

.navbar {
	position: fixed !important;
	top: 0px !important;
	width: 100%;
	z-index: 1049;
	background: #fff;
	box-shadow: 0px 5px 20px #00000025;
	height: 80px;
	padding: 10px;
}

.top-navbar {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	color: #fff;
	height: 65px;
	padding: 10px;
	width: 100%;
	max-width: 1150px;
	margin: auto;
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 10;
}