t@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
}

a {
  text-decoration: none;
}

.clear {
  clear: both;
}

.ovh {
  overflow: hidden;
}

.error {
  color: red;
}

.success {
  color: green;
}

a:hover {
  text-decoration: none;
}

.headline {
  text-align: center;
  margin-bottom: 50px;
}

.headline h2 {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-top: 0;
}

.headline h3 {
  font-size: 18px;
  margin-top: 0;
}

.headline-white {
  color: #fff;
}

.bg-gray {
  background: #f2f3f3 !important;
}

.bg-white {
  background: #ffffff !important;
}

/* whatsapp icon */
.whatsapp-icon {
  position: fixed;
  bottom: 15px;
  left:75px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.whatsapp-icon img {
  width: 40px;
  height: 40px;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
  transition: 0.3s;
}

/* buttons */

.site-btn {
  font-size: 14px;
  color: #ffffff;
  font-weight: 800;
  text-transform: uppercase;
  display: inline-block;
  padding: 13px 30px 12px;
  background: #7fad39;
  border: none;
}

/* top bar */

.top {
  width: 100%;
  padding-top: 10px;
  height: 40px;
  /* background: #ececec; */
  background: #f5f5f5;
  color: #1c1c1c;
}

.top .left {
  float: left;
}

.top .left ul {
  padding-top: 8px;
}

.top .left ul li {
  list-style-type: none;
  float: left;
  margin-right: 14px;
  /* color: #0d1452; */
  color: #1c1c1c;
}

.top .left ul li i {
  /* color: #0d1452; */
  color: #1c1c1c;
}

.top .right {
  float: right;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top .right ul {
  /* padding-top: 8px; */
}

.top .right ul li {
  list-style-type: none;
  float: left;
  margin-left: 5px;
}

.top .right ul li a {
  /* color: #0d1452; */
  color: #1c1c1c;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 50%;
  display: block;
  transition: all 0.4s ease;
}

.top .right ul li a:hover {
  background: #478e44;
  color: #fff;
}

/* .header__top__right__auth a{
  color: #1c1c1c;
}
.header__top__right__auth i{
  color: #1c1c1c;
}
.header__top__right__auth{
  margin-left: 20px;
  border-left: 1px solid black;
  padding-left: 20px;
}
.header__top__right__auth a:hover{
  background: #478e44;
  color: #fff;
  border-radius: 20px;
  padding: 5px 20px;
}  */

.login_cred ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  flex-wrap: nowrap;
  overflow-x: auto; 
  padding: 0;
  margin: 0;
  list-style: none;
}


.login_cred ul li {
  list-style: none;
  white-space: nowrap; /* Prevent text from wrapping awkwardly */
  margin:auto 10px;
}

.login_cred ul li a {
  text-decoration: none;
  color: #1c1c1c;
}
@media (max-width: 768px) {
  .login_cred ul {
    gap: 15px;
  }

}


/* header logo */


.header img {
  width: 250px;
}

.header__menu {
  /* padding: 24px 0; */
  text-align: end;
}

.header__menu ul li {
  list-style: none;
  display: inline-block;
  margin-right: 30px;
  position: relative;
}


.header__menu ul li.active a {
  color: #7fad39;
}



.header__menu ul li:hover>a {
  color: #7fad39;
}

.header__menu ul li:last-child {
  margin-right: 0;
}

.header__menu ul li a {
  font-size: 14px;
  color: #252525;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  -webkit-transition: all, 0.3s;
  -moz-transition: all, 0.3s;
  -ms-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
  padding: 5px 0;
  display: block;
}
@media (min-width: 992px) {
  .header .header-row {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .login_cred {
    text-align: right;
    display: flex;
    justify-content: flex-end;
  }
}

/* 
hamburger
*/

.nav {
  background: #7fad39;
}

.nav::before {
  content: none !important; /* Hides unwanted text */
  display: none !important;
}

.menu-container {
  width: 100%;
  margin: 0 auto;
  background: #7fad39;
  position: relative;
}

/* ======================
   Hamburger Menu
====================== */
.menu-toggle {
  display: none;
  cursor: pointer;
  width: 30px;
  flex-direction: column;
  justify-content: space-between;
  margin: 15px;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  border-radius: 5px;
}

/* ======================
   Menu Structure
====================== */
.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.nav-menu a {
  font-size: 14px; /* Or any size you prefer */
}
.nav-menu li {
  position: relative;
  list-style: none;
}

.nav-menu > li > a,
.nav-menu > li > .menu-item-with-arrow > a {
  color: #fff !important;
  text-decoration: none;
}

.menu-dropdown-icon,
.submenu-toggle {
  color: #fff !important;
  font-size: 12px;
}
.menu-dropdown-icon{
  
}

/* ======================
   Menu Items with Arrows
====================== */
.menu-item-with-arrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  background: #7fad39;
  white-space: nowrap;
  transition: background 0.3s;
}

.menu-item-with-arrow:hover {
  background: #6ea030;
}

.menu-item-with-arrow a {
  flex-grow: 1;
}

/* ======================
   Submenu Styles
====================== */
.nav-menu li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  z-index: 9999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 0;
  margin: 0;
}

.nav-menu li:hover > ul {
  display: block;
}

.nav-menu li ul li {
  position: relative;
}

.nav-menu li ul .menu-item-with-arrow {
  padding: 10px 15px;
  background: white;
  border-bottom: 1px solid #eee;
}

.nav-menu li ul .menu-item-with-arrow:hover {
  background: #f5f5f5;
}

.nav-menu li ul a {
  color: #000 !important;
  text-decoration: none;
}

/* ======================
   3rd Level Dropdown
====================== */
.nav-menu li ul li ul {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background: white;
  min-width: 200px;
  z-index: 9999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nav-menu li ul li:hover > ul {
  display: block;
}
/* Target only the end-category <a> */
.nav-menu li ul li ul li > a {
  padding: 10px 20px;
  margin-left: 10px;
  display: block;
}
/* ======================
   Responsive Styles
====================== */
@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    flex-direction: column;
    display: none;
    width: 100%;
    background: #7fad39;
  }

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

  .nav-menu li ul,
  .nav-menu li ul li ul {
    position: static !important;
    box-shadow: none;
    width: 100%;
    background: #f9f9f9;
  }

  .nav-menu li.open > ul {
    display: block;
  }

  .menu-item-with-arrow a {
    color: #000 !important;
  }

  .submenu-toggle {
    display: inline-block;
    color: #ffffff !important;
  }

  .menu-mobile {
    display: none;
  }
  /* Second level dropdown icon (mid-category under top-category) */
  .nav-menu li ul .submenu-toggle {
    color: #000 !important; /* override for second level */
  }

  /* Optional: third level */
  .nav-menu li ul li ul .submenu-toggle {
    color: #000 !important;
  }
}

/* ======================
   Desktop Enhancements
====================== */
@media (min-width: 993px) {
  .submenu-toggle {
    display: none;
  }

  .nav-menu li:hover > ul,
  .nav-menu li ul li:hover > ul {
    display: block;
  }

  .nav-menu li ul li {
    padding-right: 20px;
  }

  .nav-menu li ul li:hover {
    background: #f5f5f5;
  }
}

.menu-mobile{
  display: none;
}
/* welcome styles */
.hero {
  margin-top: 15px;
  padding-bottom: 50px;
}

.hero.hero-normal {
  padding-bottom: 30px;
}

.hero.hero-normal .hero__categories {
  position: relative;
}

.hero.hero-normal .hero__categories ul {
  display: none;
  position: absolute;
  left: 0;
  top: 46px;
  width: 100%;
  z-index: 9;
  background: #ffffff;
}

.hero.hero-normal .hero__search {
  margin-bottom: 0;
}

.hero__categories__all {
  background: #7fad39;
  position: relative;
  padding: 10px 25px 10px 40px;
  cursor: pointer;
}

.hero__categories__all i {
  font-size: 16px;
  color: #ffffff;
  margin-right: 10px;
}

.hero__categories__all span {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.hero__categories__all:after {
  position: absolute;
  right: 18px;
  top: 9px;
  content: "\f107";
  /* Unicode for Font Awesome dropdown icon */
  font-family: "FontAwesome";
  /* Ensure Font Awesome is loaded */
  font-size: 18px;
  color: #ffffff;
}

.hero__categories {
  /* margin-top: 30px */
}

.hero__categories ul {
  border: 1px solid #ebebeb;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 12px;
}

.hero__categories ul li {
  list-style: none;
  list-style: none;
  padding: 9px 2px;
  /* margin-bottom: 0px; */
  border-bottom: 1px solid black;
}

.hero__categories ul li a {
  font-size: 16px;
  color: #1c1c1c;
  line-height: 39px;
  display: block;
}

.hero__categories ul li a img {
  height: 45px;
  margin-right: 10px;
  border-radius: 50%;
  /* Optional: Makes the images round */
}

.hero__search {
  overflow: hidden;
  margin-bottom: 30px;
}

.hero__search__form {
  width: 610px;
  height: 50px;
  border: 1px solid #ebebeb;
  position: relative;
  float: left;
}

.hero__search__form form .hero__search__categories {
  width: 30%;
  float: left;
  font-size: 16px;
  color: #1c1c1c;
  font-weight: 700;
  padding-left: 18px;
  padding-top: 11px;
  position: relative;
}

.hero__search__form form .hero__search__categories:after {
  position: absolute;
  right: 0;
  top: 14px;
  height: 20px;
  width: 1px;
  background: #000000;
  opacity: 0.1;
  content: "";
}

.hero__search__form form .hero__search__categories span {
  position: absolute;
  right: 14px;
  top: 14px;
}

.hero__search__form form input {
  width: 70%;
  border: none;
  height: 48px;
  font-size: 16px;
  color: #b2b2b2;
  padding-left: 20px;
}

.hero__search__form form input::placeholder {
  color: #b2b2b2;
}

.hero__search__form form button {
  position: absolute;
  right: 0;
  top: -1px;
  height: 50px;
}

.hero__search__phone {
  float: right;
}

.hero__search__phone__icon {
  font-size: 18px;
  color: #7fad39;
  height: 50px;
  width: 50px;
  background: #f5f5f5;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  float: left;
  margin-right: 20px;
}

.hero__search__phone__text {
  overflow: hidden;
}

.hero__search__phone__text h5 {
  color: #1c1c1c;
  font-weight: 700;
  margin-bottom: 5px;
}

.hero__search__phone__text span {
  font-size: 14px;
  color: #6f6f6f;
}

.hero__item {
  height: 431px;
  display: flex;
  align-items: center;
  padding-left: 75px;
}

.hero__text span {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 4px;
  color: #7fad39;
}

.hero__text h2 {
  font-size: 46px;
  color: #252525;
  line-height: 52px;
  font-weight: 700;
  margin: 10px 0;
}

.hero__text p {
  margin-bottom: 35px;
}

.hero__item {
  width: 100%;
  height: 350px;
  /* Adjust height as needed */
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__text .primary-btn {
  background-color: #ff6600;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.carousel {
  height: 500px;
}

.slide-text {
  top: 10%
}

.slide-text h1 {
  font-size: 45px;
}

.slide-text p {}

.bx-wrapper {
  position: relative;
  box-shadow: none;
  border: 0;
  margin-bottom: 0;
}

.bx-controls {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9999;
}

.welcome {
  width: 100%;
  height: auto;
  overflow: hidden;
  background: #333;
  text-align: center;
  padding: 70px 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: fixed;
  -webkit-background-size: cover;
  background-size: cover;
  position: relative;
}

.welcome .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background: #333;
}

.welcome h2 {
  color: #fff;
  margin-bottom: 25px;
}

.welcome p {
  color: #fff;
}

.welcome p.button {
  color: #fff;
  margin-top: 35px;
}

.welcome p.button a {
  background: #0d1452;
  color: #fff;
  padding: 10px 14px;
  transition: all 0.4s ease;
  text-decoration: none;
}

.welcome p.button a:hover {
  background: #fff;
  color: #0d1452;
}


/* new arrivals */

.new-arrival-photo {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.new-arrivals-carousel {
  display: flex;
  justify-content: center;
}

.new-arrivals-carousel .owl-stage-outer {
  overflow: hidden;
  /* Prevents overflow issues */
}

.new-arrivals-carousel .owl-stage {
  margin: 0 auto !important;
  /* Centers the carousel */
  display: flex;
}

.new-arrival-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 300px;
  /* Set a fixed height */
  overflow: hidden;
  /* Ensures no extra space */
  border-radius: 10px;
}

.new-arrival-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures all images cover the area without distortion */
  display: block;
}

.new-arrival-title {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.8);
  color: black;
  font-size: 16px;
  font-weight: bold;
  padding: 8px 12px;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  width: 80%;
}

/* service styles */

.service {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 70px 0;
}

.col-md-3 {
  margin: 10px 0px;
}

.service .item {
  text-align: center;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.service .item .photo img {
  width: 55px;
}

.service .item .s_description {
  text-align: left;
  width: 172px;
}

.service .item .s_description h3 {
  font-size: 12px;
}

.service .icon {
  text-align: center;
}

.service .icon i {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background: #0d1452;
  color: #fff;
  font-size: 38px;
  border-radius: 50%;
}

/* product styles */

.product .product-carousel {
  position: relative;
}

.product .owl-controls {
  position: absolute;
  top: -60px;
  right: 0;
}

.product .owl-controls .owl-prev,
.product .owl-controls .owl-next {
  background: #7fad39;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding-left: 10px;
  padding-right: 13px;
  border-radius: 19px;
}

.product .owl-controls .owl-prev i,
.product .owl-controls .owl-next i {
  font-size: 14px;
}

.product .owl-controls .owl-prev:hover,
.product .owl-controls .owl-next:hover {
  background: #353535;
}

.product .item {
  border: 2px solid #e5e5e5;
}

.product .text {
  background: #f2f3f3;
  padding: 14px;
  overflow: hidden;
}

.product .text del {
  color: #9d9d9d;
}

.product .text h3 {
  font-weight: 700;
  text-align: center;
  color: #353535;
  font-size: 18px;
  margin-bottom: 5px;
  margin-top: 0;
}

.product .text h3 a {
  color: #333;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}

.product .text h3 a:hover {
  text-decoration: none;
}

.product .text h4 {
  color: #0d1452;
  text-align: center;
  font-size: 18px;
}

.product .text p {
  text-align: center;
  font-size: 14px;
  margin-top: 20px;
  margin-bottom: 14px;
}

.product .text p a {
  /* background: #0d1452; */
  background: #7fad39;
  color: #fff;
  border-radius: 16px;
  font-size: 14px;
  padding: 6px 10px;
  transition: all 0.4s ease;
}

.product .out-of-stock {
  width: 100%;
  text-align: center;
}

.product .out-of-stock .inner {
  display: inline-block;
  background: #0d1452;
  color: #fff;
  font-size: 14px;
  padding: 6px 10px;
  transition: all 0.4s ease;
  text-decoration: line-through;
}

.product .text .rating {
  text-align: center;
}

.product .text p a:hover {
  background: #333;
}

.product .item a.thumb {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none; /* Removes any underlines */
}
.product .item a.thumb .photo {
  width: 100%;
  height: 280px;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.product .item {
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product .item:hover {
  /* transform: scale(1.2); */
  z-index: 10;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.6); /* Darker shadow */
}

.product .item img {
  transition: transform 0.3s ease;
}

.product .item:hover img {
  transform: scale(1.3); /* Enlarges image outside the box */
}

.product .item a.thumb .overlay {
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: alpha(opacity=0);
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: scale(0.2);
  -ms-transform: scale(0.2);
  -o-transform: scale(0.2);
  transform: scale(0.2);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  background: rgba(255, 255, 255, 0.6);
}

.product .item:hover a.thumb .overlay {
  opacity: 1;
  filter: alpha(opacity=1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.product-cat {
  padding-top: 14px;
}

.product-cat .item {
  margin-bottom: 30px;
}

.product .item-product-cat {
  border: 0;
}

.product .item-product-cat .inner {
  border: 2px solid #e5e5e5;
}

.product .item-search-result {
  border: 0;
}

.product .item-search-result .inner {
  border: 2px solid #e5e5e5;
}

.product .item-search-result:nth-of-type(4n + 1) {
  clear: both;
}

/* Mobile & Tablet: 2 per row */
@media (max-width: 991.98px) {
  .product .item-product-cat {
    width: 50% !important;
    float: left;
  }

  .product .item-product-cat:nth-of-type(2n + 1) {
    clear: left;
  }
}
@media (max-width: 1107px) {
  .product .item a.thumb .photo {
    height: 200px;
  }
  .product .text h3 a{
    font-size: 14px;
  }
}
/* Desktop: 3 per row (handled by Bootstrap col-lg-4) */
@media (min-width: 992px) {
  .product .item-product-cat:nth-of-type(3n + 1) {
    clear: both;
  }
}


/* testimonial styles */

.testimonial-v1 {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.testimonial-v1 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #353535;
  opacity: 0.7;
}

.testimonial-v1 .container {
  position: relative;
  z-index: 9999;
}

.testimonial-v1 .heading {
  margin-bottom: 50px;
}

.testimonial-v1 .heading h2 {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

.testimonial-v1 .heading p {
  font-size: 14px;
  text-align: center;
  color: #fff;
}

.testimonial-v1 .testimonial-carousel {
  text-align: center;
  position: relative;
  width: 70%;
  margin: 0 auto;
}

.testimonial-v1 .content .comment {
  color: #fff;
  padding: 14px 50px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  position: relative;
}

.testimonial-v1 .content .comment p {
  margin: 0 auto;
  color: #fff;
  font-size: 14px;
}

.testimonial-v1 .author {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.testimonial-v1 .photo {
  display: inline-block;
  margin-right: -4px;
  vertical-align: top;
}

.testimonial-v1 .photo img {
  width: 80px;
  height: 80px;
  float: right;
  margin-right: 25px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}

.testimonial-v1 .text {
  display: inline-block;
  vertical-align: top;
}

.testimonial-v1 .text h3 {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-align: left;
  margin-top: 10px;
}

.testimonial-v1 .text h4 {
  font-size: 13px;
  color: #fff;
  text-align: left;
}

.testimonial-v1 .owl-nav {
  margin-top: 20px;
}

.testimonial-v1 .owl-nav i {
  width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 20px;
  text-align: center;
}

.testimonial-v1 .owl-nav .owl-prev,
.testimonial-v1 .owl-nav .owl-next {
  color: #fff;
  background: none;
  position: absolute;
  top: 14%;
}

.testimonial-v1 .owl-nav .owl-prev i,
.testimonial-v1 .owl-nav .owl-next i {
  font-size: 30px;
  font-weight: bold;
}

.testimonial-v1 .owl-nav .owl-prev {
  left: -80px;
}

.testimonial-v1 .owl-nav .owl-next {
  right: -80px;
}

.testimonial-v1 .owl-nav .owl-prev:hover,
.testimonial-v1 .owl-nav .owl-next:hover {
  background: none;
}

/* blog styles */

.home-blog {
  width: 100%;
  height: auto;
  padding: 70px 0;
  overflow: hidden;
}

.home-blog .item {}

.home-blog .item .photo {
  width: 100%;
  height: 300px;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.home-blog .text {
  padding: 14px;
  background: #f2f3f3;
}

.home-blog .text h3 {
  margin-top: 0;
  font-size: 18px;
  font-weight: 700;
}

.home-blog .text p.button {
  margin-top: 25px;
}

.home-blog .text p.button a {
  background: #0d1452;
  color: #fff;
  font-size: 14px;
  padding: 6px 10px;
  transition: all 0.4s ease;
}

.home-blog .text p.button a:hover {
  background: #333;
}



/* bulk section */
.event-section {
  padding: 50px 0;
  margin-bottom: 20px;
  background-color: #f8f9fa;
  text-align: center;
  opacity: 1;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.event-section .row {
  display: flex;
  align-items: center;
}

.event-section h2 {
  font-size: 24px;
  font-weight: bold;
}

.event-section p {
  font-size: 16px;
  text-align: left;
  color: #555;
}

.event-section ul {
  font-size: 16px;
  text-align: left;
  list-style: decimal;
  color: #555;
}

.event-section .event-image-con img {
  width: 450px;
  border-radius: 50px;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

/* Fade-out and move down slightly */
.fade-out {
  opacity: 0;
  transform: translateY(20px);
}

/* Fade-in and return to position */
.fade-in {
  opacity: 1;
  transform: translateY(0);
}


/* footer styles */
/* Footer Main Styles */
.footer-main {
  width: 100%;
  padding: 50px 20px;
  background: #f3e2e2;
}

/* Footer Flexbox Layout */
.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin: 10px auto;
  max-width: 1200px;
}

/* Footer Description */
.discription {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
}

/* Shop Name - Styled Like the Image */
.discription h3 {
  font-family: "Satisfy", cursive;
  font-size: 32px;
  color: #7fad39;
  font-weight: bold;
  margin-bottom: 10px;
}
.discription ul{
  display: flex;
}
.discription ul li{
  list-style: none;
  margin: 4px auto;
}
.discription ul li a{
  color: #000;
  cursor: pointer;
}
.discription ul li a:hover{
  color: #7fad39;
}

/* Footer Headings - No Borders */
.footer-main h4 {
  color: #000;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Footer Columns */
.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  font-size: 14px;
  padding: 5px 0;
  cursor: pointer;
  transition: color 0.3s;
}
.footer-col ul li a{
  color: #000;
}
.footer-col ul li:hover {
  color: #6aa328;
}

/* Contact Section */
.contact {
  flex: 1;
  min-width: 200px;
}

.contact p {
  font-size: 14px;
}

/* Payment Section */
.payments {
  flex: 1;
  text-align: center;
  min-width: 200px;
}

.payments img {
  width: 100%;
  max-width: 250px;
  margin: 10px 0;
}

.payments section {
  max-width: 250px;
  margin: 10px auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    text-align: center;
  }

  .discription {
    margin: 0 auto;
  }

  .footer-col,
  .contact,
  .payments {
    text-align: center;
    margin: 10px 0;
  }

  .footer-col ul li {
    display: inline-block;
    margin: 5px 10px;
  }
}

.footer-bottom {
  width: 100%;
  height: auto;
  background: #333;
  padding: 14px 0;
}

.footer-bottom .copyright {
  font-size: 13px;
  letter-spacing: 1px;
  color: #eeeeee;
  text-align: center;
}

/* scroll up button styles */
.scrollup {
  position: fixed;
  z-index: 99999;
  bottom: 20px;
  left: 20px;
  display: none;
}

.scrollup i {
  width: 50px;
  height: 50px;
  line-height: 40px;
  border-radius: 50%;
  background: #0d1452;
  color: #fff;
  border: 4px solid #0d1452;
  text-align: center;
  font-size: 26px;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.scrollup i:hover {
  opacity: 1;
  filter: alpha(opacity=1);
}

/* image in full screen  */
ul.prod-slider li {
  height: auto;
  aspect-ratio: 2 / 3; /* maintains a tall rectangle */
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
  background-position: center center;
  position: relative;
}

ul.prod-slider li a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 99999999;
}


.bx-controls {
  display: none;
}

.prod-pager-thumb {
  width: 80px;
  height: 80px;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: top center;
}

#prod-pager {
  margin-top: 20px;
}

#prod-pager a {
  float: left;
  margin-right: 3px;
}

ul.nav-tabs {
  margin-top: 50px;
}

.product .p-title h2 {
  color: #0d1452;
  margin-top: 0;
  font-size: 24px;
  font-weight: 700;
}

.product .p-status {
  margin-bottom: 10px;
}

.product .p-review {
  margin-bottom: 10px;
}

.product .p-price {
  line-height: 30px;
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.product .p-price span {
  font-size: 30px;
}

.product .p-price del {
  color: #c7c7c7;
}

.product .p-short-des {
  margin-bottom: 30px;
}

.product .p-quantity {
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 35px;
  font-size: 14px;
}

.product .p-quantity input[type="number"] {
  height: 30px;
  width: 100px;
  border: 2px solid #c7c7c7;
}

.product .btn-cart {
  margin-bottom: 30px;
}

.product .btn-cart a {
  padding: 10px 14px;
  /* background: #0d1452; */
  background: #f19000;
  color: #fff;
}

.product .btn-cart1 input[type="submit"] {
  border: 0;
  padding: 10px 14px;
  /* background: #0d1452; */
  background: #f19000;
  color: #fff;
}

.product .share {
  line-height: 30px;
  font-weight: 700;
}

.product .nav {
  background: transparent;
}

.product .nav-tabs li a {
  font-weight: 700;
  color: #333;
}

.product .tab-content>.tab-pane {
  padding-top: 20px;
}

@media (max-width: 992px) {
  .bx-wrapper{
    margin-top: 40px;
  }
  .product .p-title h2 {
    margin-top: 107px;
  }
}
@media (min-width: 430px) and (max-width: 992px) {
  .bx-wrapper {
      margin-top: 27px;
  }
}

.review-form h2 {
  font-size: 24px;
  font-weight: 700;
}

.review-form .btn-default {
  background: #0d1452;
  color: #fff;
  border-radius: 0;
  border: 0;
  padding: 10px 14px;
}

.rating-section {
  margin-bottom: 14px;
}

.rating i.fa-star {
  color: #ffbc00 !important;
  /* Filled stars in gold */
}

.page-banner {
  width: 100%;
  height: auto;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  background-size: cover;
  position: relative;
  /* padding-top: 80px;
  padding-bottom: 80px; */
  padding-top: 15px;
  padding-bottom: 15px;
  overflow: hidden;
}

.page-banner .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  /* background: #333; */
  background: #131921;
}

.page-banner h1 {
  color: #fff;
  text-align: center;
  z-index: 999;
  position: relative;
}

.page {
  width: 100%;
  height: auto;
  padding-top: 50px;
}

.page h3.special {
  font-size: 22px;
  font-weight: 600;
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 25px;
  border-bottom: 1px solid #b9b9b9;
  position: relative;
}

.page h3.special:after {
  content: "";
  position: absolute;
  width: 50px;
  background: #0d1452;
  left: 0;
  bottom: -2px;
  height: 4px;
}

/*test code*/

/* Default table layout */
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  display: flex;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 8px;
  background: #fff;
  position: relative;
  gap: 15px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.cart-item-image img {
  width: 100px;
  height: auto;
  border-radius: 5px;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-item-details h4 {
  margin: 0;
  font-size: 16px;
}

.cart-item-details p {
  margin: 0;
  font-size: 14px;
}

.cart-item-qty-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  flex-wrap: wrap;
  gap: 10px;
}

.cart-item-qty-price input[type="number"] {
  width: 60px;
  height: 30px;
  padding-left: 8px;
  font-size: 14px;
  border: 2px solid #ccc;
  border-radius: 4px;
}

.cart-item-actions {
  position: absolute;
  top: 10px;
  right: 10px;
}

.cart-item-actions .trash {
  color: red;
  font-size: 18px;
}

.cart-total {
  text-align: right;
  margin-top: 20px;
  font-weight: bold;
  font-size: 16px;
}

.cart-buttons {
  width: 100%;
  margin-top: 40px;
}

.cart-buttons ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.cart-buttons li {
  list-style: none;
}

.cart-buttons li input[type="submit"],
.cart-buttons li a {
  background: #0d1452;
  border: 0;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-size: 16px;
  padding: 10px 18px;
  color: #fff;
  text-decoration: none;
}

.cart-buttons li input[type="submit"]:hover,
.cart-buttons li a:hover {
  background: #333;
  color: #fff;
}

@media (max-width: 768px) {
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-item-image img {
    width: 130px;
    height: 165px;
    max-width: 100%;
    border-radius: 5px;
    }

  .cart-buttons ul {
    flex-direction: column;
    align-items: center;
  }

  .cart-buttons li a,
  .cart-buttons li input[type="submit"] {
    width: 100%;
    text-align: center;
  }

cart-buttons li a,
  .cart-buttons li input[type="submit"] {
    width: 100%;
    text-align: center;
  }
}
/*test code end*/

/*.cart {*/
/*  width: 100%;*/
/*  height: auto;*/
/*}*/

/*.cart table img {*/
/*  width: 100px;*/
/*}*/

/*.cart table tr td {*/
/*  vertical-align: middle;*/
/*}*/

/*.cart input[type="number"] {*/
/*  height: 30px;*/
/*  width: 70px;*/
/*  border: 2px solid #c7c7c7;*/
/*  padding-left: 10px;*/
/*  padding-right: 10px;*/
/*}*/

/*.cart table tr td .trash {*/
/*  color: #0d1452;*/
/*  font-size: 18px;*/
/*}*/

/*.cart table tr td.total-text,*/
/*.cart table tr th.total-text {*/
/*  text-align: right;*/
/*  font-size: 14px;*/
/*}*/

/*.cart table tr td.total-amount,*/
/*.cart table tr th.total-amount {*/
/*  text-align: right;*/
/*  font-size: 14px;*/
/*}*/

/*.cart-buttons {*/
/*  width: 100%;*/
/*  float: right;*/
/*  margin-top: 40px;*/
/*}*/

/*.cart-buttons ul {*/
/*  float: right;*/
/*}*/

/*.cart-buttons li {*/
/*  float: left;*/
/*  list-style-type: none;*/
/*  margin-left: 14px;*/
/*}*/

/*.cart-buttons li input[type="submit"],*/
/*.cart-buttons li a {*/
/*  background: #0d1452;*/
/*  border: 0;*/
/*  border-radius: 0;*/
/*  -webkit-transition: all 0.4s ease;*/
/*  transition: all 0.4s ease;*/
/*  font-size: 18px;*/
/*  padding: 10px 20px;*/
/*  color: #fff;*/
/*}*/

/*.cart-buttons li input[type="submit"]:hover,*/
/*.cart-buttons li a:hover {*/
/*  background: #333;*/
/*  color: #fff;*/
/*}*/

.cform input[type="submit"] {
  background: #0d1452;
  border: 0;
}

.cform address span,
.cform address a span {
  color: #0d1452;
}

.page iframe {
  width: 100%;
}

.gal-container {
  padding: 12px;
}

.gal-item {
  overflow: hidden;
  padding: 3px;
}

.gal-item .box {
  height: 350px;
  overflow: hidden;
}

.box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.gal-item a:focus {
  outline: none;
}

.gal-item a:after {
  content: "\e003";
  font-family: "Glyphicons Halflings";
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.75);
  position: absolute;
  right: 3px;
  left: 3px;
  top: 3px;
  bottom: 3px;
  text-align: center;
  line-height: 350px;
  font-size: 30px;
  color: #fff;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.gal-item a:hover:after {
  opacity: 1;
}

.modal-open .gal-container .modal {
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-open .gal-item .modal-body {
  padding: 0px;
}

.modal-open .gal-item button.close {
  position: absolute;
  width: 25px;
  height: 25px;
  background-color: #000;
  opacity: 1;
  color: #fff;
  z-index: 999;
  right: -12px;
  top: -12px;
  border-radius: 50%;
  font-size: 14px;
  border: 2px solid #fff;
  line-height: 25px;
  -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.35);
}

.modal-open .gal-item button.close:focus {
  outline: none;
}

.modal-open .gal-item button.close span {
  position: relative;
  top: -3px;
  font-weight: lighter;
  text-shadow: none;
}

.gal-container .modal-dialogue {
  width: 80%;
}

.gal-container .description {
  position: relative;
  height: 40px;
  top: -40px;
  padding: 10px 25px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: left;
}

.gal-container .description h4 {
  margin: 0px;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}

.gal-container .modal.fade .modal-dialog {
  -webkit-transform: scale(0.1);
  -moz-transform: scale(0.1);
  -ms-transform: scale(0.1);
  transform: scale(0.1);
  top: 100px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.gal-container .modal.fade.in .modal-dialog {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transform: translate3d(0, -100px, 0);
  transform: translate3d(0, -100px, 0);
  opacity: 1;
}

@media (min-width: 768px) {
  .gal-container .modal-dialog {
    width: 55%;
    margin: 50 auto;
  }
}

@media (max-width: 768px) {
  .gal-container .modal-content {
    height: 250px;
  }
}

/* Footer Style */
i.red {
  color: #bc0213;
}

.gal-container {
  padding-top: 0px;
  padding-bottom: 75px;
}

.videos {
  padding-top: 30px;
  padding-bottom: 10px;
  text-align: center;
}

.videos .adv img {
  width: 100%;
  height: auto;
}

.videos .prop-4-col:nth-of-type(4n + 1) {
  clear: both;
}

.videos .prop-3-col:nth-of-type(3n + 1) {
  clear: both;
}

.videos h2 {
  color: #464646;
  font-family: "Open Sans", serif;
  font-size: 26px;
  font-weight: 800;
  position: relative;
  text-transform: uppercase;
}

.videos h3 {
  color: #464646;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 40px;
  margin-top: 20px;
}

.single-room {
  position: relative;
  margin-bottom: 30px;
  background: #fff;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 14px -2px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 14px -2px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 14px -2px rgba(0, 0, 0, 0.75);
}

.single-room .photo-col2 {
  width: 100%;
  height: 360px;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.single-room .photo-col3 {
  width: 100%;
  height: 150px;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.single-room-text {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.single-room-text h2 {
  background: #fff;
  font-size: 13px;
  line-height: 1.4;
  text-transform: none;
  margin-bottom: 0;
}

.single-room-text h2 a {
  color: #333;
  padding: 8px !important;
  font-weight: 600;
  display: block;
}

table.bill-address tr td:nth-of-type(1) {
  font-weight: bold;
  width: 200px;
}

.user-sidebar ul {
  text-align: center;
}

.user-sidebar ul li {
  list-style-type: none;
  border-bottom: 1px solid #fff;
  display: inline-block;
}

.user-sidebar ul li a {
  padding: 7px 20px;
  min-height: 40px;
  line-height: 40px;
  background: #444;
  color: #fff;
}

.user-content h3 {
  margin-bottom: 20px;
}
.input-group-password{
  display: flex;
  align-items: center;
  justify-content: center;
}
.input-group-text {
  background: #fff;
  border-left: 0;
  border-radius: 0 5px 5px 0;
}
.input-group-append{
  margin-left: 10px;
}
.blog {
  background: #fff;
}

.blog .post-item {
  margin-bottom: 30px;
  overflow: hidden;
}

.blog .image-holder {
  width: 285px;
  float: left;
  position: relative;
  margin-right: 15px;
}

.blog .image-holder-single {
  width: 100%;
  float: none;
  position: relative;
}

.blog .image-holder-single img {
  width: 100%;
  height: auto;
}

.blog .image-holder .date {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  z-index: 999;
}

.blog .image-holder .day {
  width: 60px;
  height: 40px;
  line-height: 40px;
  background: #0d1452;
  color: #fff;
  text-align: center;
  position: relative;
  font-size: 16px;
}

.blog .image-holder .day:before {
  position: absolute;
  top: 22px;
  left: 24px;
  color: #0d1452;
  font-family: "FontAwesome";
  content: "\f0d7";
  font-size: 24px;
}

.blog .image-holder .month {
  width: 60px;
  height: 40px;
  line-height: 40px;
  background: #333;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
}

.blog .text {
  width: calc(100% - 300px);
  float: left;
}

.blog .text-single {
  width: 100%;
  float: none;
}

.blog .text-single h3 {
  font-family: "Roboto", sans-serif;
  margin-top: 20px;
}

.blog .text .inner {
  padding: 0 20px 20px 20px;
}

.blog h3 {
  font-family: "Roboto", sans-serif;
  text-align: left;
  color: #333;
  font-weight: 700;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1.5;
  text-transform: uppercase;
}

.blog h3 a {
  font-family: "Roboto", sans-serif;
  color: #333;
}

.blog h3 a:hover {
  color: #0d1452;
}

.blog .text ul.status {
  overflow: hidden;
  margin-bottom: 15px;
}

.blog .text ul.status li {
  text-align: left;
  margin-bottom: 15px;
  color: #0d1452;
  font-size: 14px;
  float: left;
  list-style-type: none;
  margin-right: 15px;
  line-height: 18px;
  margin-bottom: 5px;
  padding-left: 0;
}

.blog .text ul.status li a {
  color: #0d1452;
}

.blog .text ul.status li i {
  margin-right: 8px;
}

.blog ul.status li:before {
  content: "";
}

.blog ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  list-style-type: none;
}

.blog ul li:before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "FontAwesome";
  content: "\f044";
  color: #333;
}

.blog h1 {
  font-size: 24px;
  color: #0d1452;
  font-weight: bold;
}

.blog h2 {
  font-size: 20px;
  color: #0d1452;
  font-weight: bold;
}

.blog h3 {
  font-size: 18px;
  color: #333;
  font-weight: bold;
}

.blog h4 {
  font-size: 16px;
  color: #0d1452;
  font-weight: bold;
}

.blog h5 {
  font-size: 14px;
  color: #0d1452;
  font-weight: bold;
}

.blog h6 {
  font-size: 12px;
  color: #0d1452;
  font-weight: bold;
}

.blog p {
  margin-bottom: 15px;
  font-size: 14px;
}

.blog p.button {
  margin-top: 20px;
}

.blog p.button a {
  font-family: "Roboto", sans-serif;
  background: #0d1452;
  color: #fff;
  padding: 10px 14px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.blog p.button a:hover {
  background: #444;
}

.blog .pagination {
  margin-top: 20px;
}

.blog .pagination ul {
  width: 100%;
  height: auto;
  text-align: center;
}

.blog .pagination ul li {
  display: inline-block;
  color: #333;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin-right: 10px;
  padding-left: 0;
}

.blog .pagination ul li:before {
  content: "";
}

.blog .pagination ul li a {
  background: #0d1452;
  color: #fff;
  display: block;
  font-size: 16px;
}

.blog .pagination ul li a i {
  margin-right: 0;
}

.blog .pagination ul li a:hover {
  background: #333;
}

.blog .pagination ul li a.active {
  background: #333;
}

.blog .gallery-carousel {
  position: relative;
  z-index: 999;
}

.blog .owl-controls {
  position: absolute;
  top: 0px;
  right: 0;
  z-index: 999;
}

.blog .owl-controls .owl-prev,
.blog .owl-controls .owl-next {
  background: #333;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding-left: 13px;
  padding-right: 13px;
}

.blog .owl-controls .owl-prev i,
.blog .owl-controls .owl-next i {
  font-size: 16px;
}

.blog .owl-controls .owl-prev:hover,
.blog .owl-controls .owl-next:hover {
  background: #0d1452;
}

.blog .video {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
}

.blog .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.blog .audio {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}


/* bulk page */
.bulk-order-container {
  width: 80%;
  margin: auto;
  padding: 40px 0;
}

.section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  flex-wrap: wrap;
}

.left-text {
  flex-direction: row;
}

.right-text {
  flex-direction: row-reverse;
}

.text-content,
.image-content {
  width: 50%;
  padding: 20px;
}

.text-content h2 {
  font-size: 24px;
  color: #333;
}

.text-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.image-content {
  text-align: center;
}

.image-content img {
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
}

/* 🔽 Media Queries for responsiveness */
@media (max-width: 768px) {
  .section {
    flex-direction: column !important;
    text-align: center;
  }

  .text-content,
  .image-content {
    width: 100%;
    padding: 10px;
  }

  .text-content h2 {
    font-size: 20px;
  }

  .text-content p {
    font-size: 15px;
  }

  .image-content img {
    width: 100%;
    max-width: 100%;
  }
}


/* track order section */
.track-container {
  margin-top: 95px;
  padding-bottom: 50px; /* extra space before footer */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.track-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  width: 400px;
  text-align: center;
}

.track-box h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #4CAF50;
}

.track-box p {
  font-size: 16px;
  margin: 10px 0;
  color: #333;
}

.track-form {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.track-form input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

.track-form button {
  padding: 10px 15px;
  border: none;
  background: #4CAF50;
  color: white;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.track-form button:hover {
  background: #45a049;
}

.track-status {
  margin-top: 15px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.error-message {
  color: red;
  font-size: 16px;
  margin-top: 10px;
}

/**
 * ---------------------------------------------------
 * Sidebar Style
 * ---------------------------------------------------
 */
.sidebar {
  width: 100%;
}

.widget {
  overflow: hidden;
  margin-bottom: 30px;
}

.widget-search input {
  height: 36px;
  border: 2px solid #afafaf;
  float: left;
  padding-left: 6px;
  padding-right: 6px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}

.widget-search input:focus {
  border: 2px solid #0d1452;
}

.widget-search button {
  width: 42px;
  height: 36px;
  float: left;
  border: 2px solid #0d1452;
  background: #0d1452;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  margin-left: 5px;
  color: #fff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.widget-search button:hover {
  background: #333;
  color: #fff;
  border-color: #333;
}

.widget h4 {
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-weight: 700;
  padding-bottom: 6px;
  margin-bottom: 15px;
  border-bottom: 2px solid #0d1452;
}

.widget ul li {
  display: block;
  float: none;
  color: #333;
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}

.widget ul li:before {
  content: "\f105";
  font-family: "FontAwesome";
  position: absolute;
  color: #333;
  top: 1px;
  left: 3px;
}

.widget ul li a {
  color: #333;
  font-size: 14px;
}

.widget ul li a:hover {
  color: #0d1452;
}

.widget ul.tag-cloud li {
  display: inline-block;
  padding-left: 0;
  padding: 4px 10px;
  border: 2px solid #afafaf;
  font-size: 12px;
  margin-right: 5px;
}

.widget ul.tag-cloud li:before {
  content: "";
}

.widget ul.tag-cloud li:hover {
  background: #0d1452;
  border: 2px solid #0d1452;
}

.widget ul.tag-cloud li:hover a {
  color: #fff;
}

.card .nav-tabs {
  border-bottom: 2px solid #ddd;
  background: #fff;
}

.card .nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {}

.card .nav-tabs>li>a {
  border: none;
  color: #666;
}

.card .nav-tabs>li.active>a,
.card .nav-tabs>li>a:hover {
  border: none;
  color: #0d1452 !important;
  background: transparent;
}

.card .nav-tabs>li>a::after {
  content: "";
  background: #0d1452;
  height: 2px;
  position: absolute;
  width: 100%;
  left: 0px;
  bottom: -1px;
  transition: all 250ms ease 0s;
  transform: scale(0);
}

.card .nav-tabs>li.active>a::after,
.nav-tabs>li:hover>a::after {
  transform: scale(1);
}

.tab-nav>li>a::after {
  background: #21527d none repeat scroll 0% 0%;
  color: #fff;
}

.tab-pane {
  padding: 14px 0;
}

.tab-content {
  padding: 20px;
}

.card {
  background: #fff none repeat scroll 0% 0%;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

.vid iframe {
  width: 100%;
  height: 250px;
}

div.pagination {
  padding: 3px;
  margin: 3px;
  z-index: 1000;
  font-size: 14px;
  margin-bottom: 20px;
}

div.pagination a {
  padding: 5px 7px;
  margin: 2px;
  border: 1px solid #cf0d42;
  text-decoration: none;
  /* no underline */
  background-color: #0d1452;
  color: #fff;
  font-weight: bold;
}

div.pagination a:hover,
div.pagination a:active {
  border: 1px solid #cf0d42;
  color: #fff;
  background-color: #b20b39;
}

div.pagination span.current {
  padding: 5px 7px;
  margin: 2px;
  border: 1px solid #cf0d42;
  font-weight: bold;
  background-color: #b20b39;
  color: #fff;
  font-weight: bold;
}

div.pagination span.disabled {
  padding: 5px 7px;
  margin: 2px;
  border: 1px solid #929693;
  color: #929693;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999999;
}

#status {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: url(../img/1.gif);
  background-repeat: no-repeat;
  background-position: center;
  margin: -100px 0 0 -100px;
}

.ad-section img {
  width: 100% !important;
  height: auto !important;
}

.breadcrumb {
  background: #fff;
  margin-top: -40px;
}

.breadcrumb ul li {
  float: left;
  list-style-type: none;
  margin-right: 10px;
  color: #0d1452;
}

.breadcrumb ul li:last-child {
  color: #333;
}

.breadcrumb ul li a {
  color: #0d1452;
}

.bs-slider .item {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  height: 500px;
}

.home-newsletter {
  /* padding: 80px 0; */
  /* background: #0d1452; */
  /* background: #526d2a9e; */
}

.home-newsletter .single {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.home-newsletter .single h2 {
  font-size: 22px;
  color: #333;
  text-transform: uppercase;
  margin-bottom: 40px;
  margin-top: 0;
}

.home-newsletter .single .form-control {
  height: 50px;
  border-color: #333;
  outline: none;
}

.home-newsletter .single .btn {
  min-height: 50px;
  background: #333;
  color: #fff;
  padding-left: 15px;
  padding-right: 15px;
}



/* Tablet Device = 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero__categories {
    margin-bottom: 30px;
  }

  .hero__search__form {
    width: 485px;
  }
}

/* Wide Mobile = 480px */

@media only screen and (max-width: 767px) {
  .hero__categories {
    margin-bottom: 30px;
  }

  .hero__search {
    margin-bottom: 30px;
  }

  .hero__search__form {
    width: 100%;
  }

  .hero__search__form form input {
    width: 100%;
  }

  .hero__search__form form .hero__search__categories {
    display: none;
  }

  .hero__search__phone {
    float: left;
    margin-top: 30px;
  }

  .header img {
    width: 150px;
  }

  .header_row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }

  .header__menu ul li {
    margin-right: 20px;
  }
}

@media (max-width: 480px) {
  .slide-text h1 {
    font-size: 28px;
    line-height: 37px;
    margin-bottom: 5px;
  }
}/* event section */
.event-section {
  padding: 50px 15px;
  background-color: #f8f9fa;
}

.event-section .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.event-section .col-lg-6 {
  width: 50%;
  padding: 15px;
  box-sizing: border-box;
}

/* Make sure text content stacks vertically */
.event-section .text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.event-section h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
}

.event-section p {
  font-size: 16px;
  color: #555;
}

.event-section img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .event-section .row {
    flex-direction: column-reverse;
    text-align: center;
  }

  .event-section .col-lg-6 {
    width: 100%;
    padding: 10px;
    text-align: center;
  }

  .event-section .text-content {
    align-items: center;
  }

  .event-section img {
    margin-bottom: 20px;
    max-height: 300px;
  }

  .event-section h2 {
    font-size: 24px;
  }

  .event-section p {
    font-size: 15px;
  }
}



@media (max-width: 1024px) {
  #st-2 {
    display: none !important;
    }
  }

  @media (max-width: 768px) {
    #st-2 {
        display: none !important;
    }
}

@media (max-width: 1024px) {
  #st-2 {
    display: none !important;
    }
    #st-3 {
      display: none !important;
    }
  }

  @media (max-width: 768px) {
    #st-2 {
        display: none !important;
    }
    #st-3 {
      display: none !important;
    }
}

/* Basic styling for the video section */
.video-section {
  padding: 50px 15px;
  background-color: #f8f9fa;
  display: flex;
  flex-direction: row;
  justify-content: center; /* Center everything */
  align-items: center;
  gap: 20px; /* Add some space between video and description */
}

/* Video container takes 65% of the width */
.video-section .video-container {
  flex: 0 0 65%;  /* 65% width for video */
  max-width: 65%;
}

/* Description container takes 35% of the width */
.video-section .description-container {
  flex: 0 0 35%;  /* 35% width for description */
  max-width: 35%;
}

/* Set fixed height for the video and make it responsive */
.video-section video {
  width: 100%;
  height: 500px; /* Slightly smaller height looks better */
  object-fit: cover; /* cover gives a better look */
  border-radius: 10px;
}

/* Styling for video title */
#video-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Styling for video description */
#video-description {
  font-size: 16px;
  color: #555;
}

/* Media query for responsiveness on smaller screens */
@media (max-width: 768px) {
  .video-section {
    flex-direction: column;
    text-align: center;
  }

  .video-section .video-container,
  .video-section .description-container {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .video-section video {
    margin-bottom: 20px;
    height: auto;
  }
}

/* Initial state for the video section (smooth fade transition) */
#video-section {
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

/* Hidden state for fade-out */
#video-section.fade-out {
  opacity: 0;
}

/* After fading in */
#video-section.fade-in {
  opacity: 1;
}
