
/* ==============================================================
   GLOBAL STYLES
   ============================================================== */

/*style for counting section*/
 <style>
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: #f9f9f9;
      color: #222;
    }

    section.counter-section {
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(135deg, #4a90e2, #9013fe);
      color: #fff;

    }

    section.counter-section h2 {
      font-size: 2rem;
      margin-bottom: 40px;
      line-height: 1.4;
    }

    .counter-wrapper {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
      max-width: 100%;
      margin: 0 auto;
    }

    .counter-box {
      background: rgba(255, 255, 255, 0.1);
      padding: 30px 20px;
      border-radius: 12px;
      backdrop-filter: blur(6px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

    .counter-box:hover {
      transform: translateY(-8px);
    }

    .counter-number {
      font-size: 2.2rem;
      font-weight: bold;
      margin-bottom: 10px;
      display: block;
    }

    .counter-text {
      font-size: 1rem;
      opacity: 0.9;
    }
  </style>

  /*==========style counting section End============*/


.pricing-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.pricing-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 50px;
  margin-top: 50px;
  text-align: center;


}
/*.pricing-title::after {
            position: absolute;
            content: "";
            width: 60px;
            height: 3px;
            background: #ff3a6d;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
*/

.pricing-subtitle {
  font-size: 16px;
  margin-bottom: 40px;
  color: #555;

}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.pricing-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.featured {
  border: 2px solid #3827F5;
  background: #f3f1ff;
}

.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.price {
  font-size: 26px;
  font-weight: bold;
  color: #3827F5;
  margin: 15px 0;
}

.price span {
  font-size: 14px;
  color: #555;
}

.features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.features li {
  margin: 10px 0;
  font-size: 15px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #3827F5;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #2a1ec7;
}





/*.cat-wrap {
  display: flex;
  align-items: center;
  position: relative;
  gap: .5rem;
}

.scroll-btn {
  width: 36px;
  height: 36px;
  border: 1px solid blue;
  border-radius: 50%;
  background: #3827F5;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 16px;
  transition: background .2s ease;
  margin-right: 200px;
  margin-left: 200px;
}
.scroll-btn:hover {
  background: red;
}
.scroll-btn[disabled] {
  opacity: 0.4;
  pointer-events: none;
}

.cat-item {
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; 
  -ms-overflow-style: none; 
  flex: 1;
}
.cat-item::-webkit-scrollbar {
  display: none; 
}

.cat-item .item {
  white-space: nowrap;
  padding: .5rem .9rem;
  border-radius: 10px;
  background: green;
  border: 1px solid #ddd;
  font-size: .9rem;
  cursor: pointer;
  transition: background .2s ease;
}
.cat-item .item:hover {
  background: #e5e7eb;
}*/



   /* Modal background */
.modal1 {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(2px);
  overflow-y: auto;

}

/* Modal content box */
.modal1-content {
  background: #0571F5;
  margin: 40px auto;
  padding: 20px;
  border-radius: 12px;
  max-width: 900px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.2);
  animation: fadeInUp 0.3s ease;
}

/* Close button */
.close-btn1 {
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  float: right;
  color: #555;
}
.close-btn1:hover { color: #F5310A; }

/* Animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}


   /* Modal background */
.modal2 {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(2px);
  overflow-y: auto;

}

/* Modal content box */
.modal2-content {
  background: #0571F5;
  margin: 40px auto;
  padding: 20px;
  border-radius: 12px;
  max-width: 500px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.2);
  animation: fadeInUp 0.3s ease;
}

/* Close button */
.close-btn {
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  float: right;
  color: #555;
}
.close-btn:hover { color: #F5310A; }

/* Animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}



body {
/*  font-family: 'Roboto', sans-serif;*/ 
/*font-family: lucida grande,tahoma,verdana,arial,sans-serif;*/
}

  h1, h2, h3, h4, h5,
{
/*  font-family: "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; */
font-family: lucida grande,tahoma,verdana,arial,sans-serif;;
}

h1 {
/*   font-family: "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";*/
  font-family: lucida grande,tahoma,verdana,arial,sans-serif;;
  font-size: 62px;
  color: #fff;
  font-weight: 300px; }
  @media (max-width: 1200px) {
    h1 {
      font-size: 52px; } }
  @media (max-width: 992px) {
    h1 {
      font-size: 40px; } }

h2 {
  font-size: 47px; }
  @media (max-width: 768px) {
    h2 {
      font-size: 34px; } }

h3 {
  font-size: 35px; }
  @media (max-width: 992px) {
    h3 {
      font-size: 30px; } }

h4 {
  font-size: 30px; }

h5 {
  font-size: 28px; }
  @media (max-width: 768px) {
    h5 {
      font-size: 22px; } }

h6 {
  font-size: 21px;
  font-weight: 400; }

p {
  font-size: 15px; }

.main-block {
  padding: 90px 0; }
  @media (max-width: 768px) {
    .main-block {
      padding: 45px 0; } }

.light-bg {
  background: #f3f4f7; 
}

.dark-bg {
  background: #252a33; 
/*background-color: #190782;*/
}

/* ==============================================================
   HEADER
   ============================================================== */
.nav-menu {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto; 
  /*background-color: #190782;*/
  /*background: #08B3D1;*/
  background: linear-gradient(135deg, #190782, #0077b6);
}

.nav-menu-2 {
  position: inherit; }

.navbar {
  padding: .5rem 0; }

.navbar-brand {
  font-size: 25px;
  font-weight: bold; 
 margin-left: 50px; }
  .navbar-brand p{
    font-size: 12px;
    font-style: italic;
    margin-left: 50px;
  }

.navbar-light .navbar-brand {
  color: #fff; }
  .navbar-light .navbar-brand:hover {
    color: #fff; }

.navbar-light .navbar-nav .show > .nav-link {
  color: #fff; }

.navbar-light .navbar-nav .active > .nav-link {
  color: #fff; }

.navbar-light .navbar-nav .nav-link {
  font-size: 16px;
/*  font-size: 28px;*/
  font-weight: bold;
  color: #fff; }
  .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
    color: #fff;
    outline: none; }

.navbar-light .navbar-toggler {
  color: #fff;
  border-color: #fff; }

@media (max-width: 992px) {
  .navbar-nav {
    padding: 7px 20px; } }

.nav-item {
  margin: 0 20px 0 0; }
  .nav-item span {
    font-size: 12px;
    margin: 0 0 0 4px; }
 .nav-item:hover .nav-link {
  font-style: italic;
  text-decoration: underline;
 }   

.bg {
  width: 100%;
  height: 85px; }

.is-sticky {
  background: #252a33;
  opacity: 1; }

.transition {
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out; }

.fixed {
  border-bottom: 1px solid #636363;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1; }
  @media (max-width: 992px) {
    .fixed {
      border: none;
      background: #252a33; } }

.dropdown-menu {
  background: #030303; }

.dropdown-item {
  color: #aaaaaa;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }
  .dropdown-item:hover {
    color: #fff;
    background: none; }

.ti-plus {
  font-size: 14px;
  padding: 0 8px 0 0; }

.slider {
  background: url(../images/slid1.png) no-repeat;
  background-size: cover;
  min-height: 400px; }
  @media (max-width: 992px) {
    .slider {
      min-height: 700px; } }

.btn-outline-light {
  padding: 10px 16px; }
  @media (max-width: 992px) {
    .btn-outline-light {
      width: 25%; } }
  @media (max-width: 768px) {
    .btn-outline-light {
      width: 30%; } }
  @media (max-width: 576px) {
    .btn-outline-light {
      width: 40%; } }
  @media (max-width: 480px) {
    .btn-outline-light {
      width: 100%; } }
  .btn-outline-light:hover {
    color: #000; }

.slider-title_box {
  text-align: center; }

.slider-content_wrap h5 {
  color: #909090;
  font-weight: 400;
  margin: 24px 0; }

@media (max-width: 480px) {
  .form-wrap {
    margin: 0 !important; } }

.btn-group {
  width: 100%; }
  @media (max-width: 576px) {
    .btn-group {
      display: block; } }

.btn-group1 {
  padding: 24px;
  width: 40%;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border: none; }
  @media (max-width: 576px) {
    .btn-group1 {
      width: 100%;
      border-radius: 3px;
      margin: 0 0 10px;
      padding: 17px; } }

.btn-group2 {
  position: relative;
  padding: 24px;
  width: 33%;
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-left: 1px solid #ccc; }
  @media (max-width: 576px) {
    .btn-group2 {
      width: 100%;
      border-radius: 3px;
      margin: 0 0 10px;
      padding: 17px; } }
      
.form-row{
      background-color: var(--warning1); 
      width: 100%;
      height: 80%; 
      align-items: center; 
      border-radius: 10px;
      }
 @media (max-width: 768px) {
    .form-row {
      width: auto;
      height: auto;
       }
    }

.btn-form {
  font-weight: 400;
  font-size: 18px;
  padding: 17px;
  width: 27%;
  background: #ff3a6d;
  color: #ffffff;
  border: none;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px; }
  @media (max-width: 768px) {
    .btn-form {
      width: auto; 
        background-color: grey;
        margin: 10px;
    } }
  @media (max-width: 576px) {
    .btn-form {
      width: 100%;
      border-radius: 3px; } }

.search-icon {
  font-size: 15px;
  padding-right: 10px; }

.slider-link {
  color: #909090;
  margin: 45px 0 0;
  font-size: 19px; }
  @media (max-width: 480px) {
    .slider-link {
      margin: 18px 0 0; }
      .slider-link a,
      .slider-link span {
        display: block; } }
  .slider-link a {
    color: #909090;
    text-decoration: underline;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }
    .slider-link a:hover {
      color: #fff; }
  .slider-link span {
    padding: 0 18px; }

    .typed-words {
     /*color: #f38181; */
       color: #17E82C;
      }


/*============================= explore section start===============================*/


/*<style>*/
/*.cat-wrapper {*/
/*  position: relative;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  width: 100%;*/
/*  overflow: hidden;*/
/*  padding: 10px 0;*/
/*}*/

/*.cat-scroll {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Hide scrollbar (Firefox) *
  -ms-overflow-style: none; /* Hide scrollbar (IE) *
  gap: 50px;
}*/

/*.cat-scroll {*/
/*  display: flex;*/
/*  overflow-x: auto;*/
/*  scroll-behavior: smooth;*/
/*  gap: 10px;*
  max-width: 100%; /* adjust width */
/*}*/

/*.cat-scroll::-webkit-scrollbar {*
  display: none; /* Hide scrollbar (Chrome, Safari) */
/*}*/


/*.cat-scroll .item {*
  min-width: 150px; /* each category width */
/*  text-align: center;*/
/*  background: ;*/
/*  padding: 8px 12px;*/
/*  border-radius: 8px;*/
/*  white-space: nowrap;*/
/*  cursor: pointer;*/
/*}*/


/*.item {*/
/*  flex: 0 0 auto;*/
/*  white-space: nowrap;*/
/*}*/

/*.item a {*/
/*  display: inline-block;*/
/*  padding: 5px 14px;*/
/*  border-radius: 20px;*/
/*  background-color: #f2f2f2;*/
/*  text-decoration: none;*/
/*  color: #333;*/
/*  transition: all 0.3s ease;*/
/*  font-size: 14px;*/
/*}*/

/*.item a:hover {*/
/*  background-color: #333;*/
/*  color: #fff;*/
/*}*/

/*.scroll-btn {*/
/*  background: none;*/
/*  border: none;*/
/*  color: #333;*/
/*  font-size: 24px;*/
/*  cursor: pointer;*/
/*  padding: 5px;*/
/*  transition: opacity 0.3s;*/
/*}*/

/*.scroll-btn:hover {*/
/*  opacity: 0.6;*/
/*}*/

/* Hide scroll buttons on small screens */
/*@media (max-width: 768px) {*/
/*  .scroll-btn {*/
/*    display: none;*/
/*  }*/

/*  .cat-scroll {*/
/*    scroll-snap-type: x mandatory;*/
/*  }*/

/*  .item {*/
/*    scroll-snap-align: start;*/
/*  }*/
/*}*/
/*</style>*/

/*scroll-btn*/
.cat-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

.cat-scroll {
  display: flex;
  overflow-x: auto;
  /*scroll-behavior: smooth;*/
  /*gap: 10px;*/
  max-width: 100%; 
}

.cat-scroll::-webkit-scrollbar {
  display: none; 
}

.cat-scroll .item {
   min-width: 120px; 
  text-align: center;
  /*background: ;*/
  padding: 8px 12px;
  border-radius: 8px;
  white-space: nowrap;
  cursor: pointer;
}

.scroll-btn {
  background: var(--success);
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
  margin: 0 5px;
}

.scroll-btn:hover {
  background: #555;
}
 /*Hide scroll buttons on small screens */
@media (max-width: 860px) {
  .scroll-btn {
    display: none;
  }

  .cat-scroll {
    scroll-snap-type: x mandatory;
    display: none;
  }

  .item {
    scroll-snap-align: start;
  }
}


/*scroll-btn end*/






.explore {padding:40px 20px; background:*#f9f9f9; margin: 0px;}
.explore .pop-h2 {font-size:26px; font-weight:bold; text-align:center; margin-bottom:20px; position: relative;
        padding: 0 0 23px;
        &:after {
            position: absolute;
            content: "";
            width: 60px;
            height: 3px;
            background: #ff3a6d;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }}
.cat-item {display:flex; flex-wrap:wrap; justify-content:center; margin-bottom:20px;}
.cat-item .item {margin:5px;}
.cat-item .item a {display:inline-block; padding:8px 15px; background:#0073e6; color:#fff; border-radius:6px; text-decoration:none;}
.cat-item .item a:hover {background:#005bb5; box-shadow: blue;}

.comp-item-box {display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:20px; margin-left: 110px; margin-right: 110px; margin-top: 15px; margin-bottom: 10px;}
/*.comp-item-box :hover{border: 2px solid #fff;}*/
.comp-item {display:flex; background:#fff; border-radius:10px; overflow:hidden; box-shadow:0px 6px 18px rgba(0,0,0,0.15);}
 

.comp-item-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 items per row */
  gap: 20px; /* spacing between items */
}

.comp-item {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 1px;
/*  text-align: center;*/
}
.comp-item-box :hover{
  border-color: blue;
}





.d-logo {flex:0 0 120px; display:flex; align-items:center; justify-content:center; background:#f0f0f0;}
.d-logo img {width:100%; height:auto; object-fit:cover;}
.deflogo {width:100px; height:100px; display:flex; align-items:center; justify-content:center; font-weight:bold; font-size:18px; background:#ccc; border-radius:50%;}
.txt_part {padding:15px; flex:1;}
.c-name a {font-size:18px; font-weight:600; color:#0073e6; text-decoration:none;}
.c-name a:hover {text-decoration:underline;}
.c-addr, .c-link {font-size:14px; color:#555; margin-top:5px;}
.c-link a {color:/*#28a745*/ var(--danger); text-decoration:none; font-weight: bold;}
.btn-all {text-align:center; margin-top:30px;}
.btn-all a {background:#0073e6; color:#fff; padding:10px 20px; border-radius:6px; text-decoration:none;}
.btn-all a:hover {background:#005bb5;}


/* ✅ Media Queries */
@media (max-width: 991px) {
  .comp-item-box {
    margin: 15px 40px;
  }
}

@media (max-width: 768px) {
  .comp-item-box {
    margin: 15px 20px;
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablet */
  }
}

@media (max-width: 480px) {
  .comp-item-box {
    margin: 10px;
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }
}

 /*============================= explore section end===============================*/     

/* ==============================================================
   FIND PLACES
   ============================================================== */
.main-block{
  margin: 0px;
  max-width: 100vw;
}
.styled-heading {
  text-align: center;
  margin: 0 0 20px; }
  @media (max-width: 768px) {
    .styled-heading {
      margin: 0 0 30px; } }
  .styled-heading h3 {
    position: relative;
    padding: 0 0 23px; }
    .styled-heading h3:after {
      position: absolute;
      content: "";
      width: 60px;
      height: 3px;
      background: #ff3a6d;
      bottom: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%); }

.find-img-align {
  padding: 0 0 15px; }
  @media (max-width: 768px) {
    .find-img-align {
      padding: 0; } }







/* ==============================================================
   FEATURED PLACES
   ============================================================== */
   .container1{
     max-width: 100vw; max-height: auto;
     background-color: ;
     margin-left: 100px;
     margin-right: 100px;

   }
.featured-place-wrap {
  background: #fff;
  margin: 0 0 30px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative; 
/*  margin-left: -10px; margin-right: -10px; gap: 15px;*/
   
   }
  .featured-place-wrap:hover {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0px 3px 40px 0 rgba(206, 205, 205, 0.3);
    box-shadow: 0px 3px 40px 0 rgba(206, 205, 205, 0.3); }
  .featured-place-wrap a {
    display: block;
    text-decoration: none;
    color: #000; }
  .featured-place-wrap img {
    width: 100%; }

.featured-rating,
.featured-rating-orange,
.featured-rating-green {
  position: absolute;
  right: 10px;
  width: 60px;
  height: 60px;
  text-align: center;
  margin: -33px 10px 0 0;
  font-size: 23px;
  background: #ff7474;
  color: #fff;
  padding: 14px;
  border-radius: 50%; }

.featured-rating-orange {
  background: #ffae00 !important; }

.featured-rating-green {
  background: #46cd38 !important; }

.featured-title-box {
  padding: 22px 20px; }
  @media (max-width: 480px) {
    .featured-title-box {
      padding: 22px 14px; } }
  .featured-title-box h6 {
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    margin-bottom: 5px; }
  .featured-title-box p {
    color: #9fa9b9;
    display: inline-block;
    margin: 0; }
    @media (max-width: 320px) {
      .featured-title-box p {
        font-size: 13px; } }
    .featured-title-box p span {
      color: #ffb006;
      padding: 0; }
  .featured-title-box span {
    color: #9fa9b9;
    padding: 0 10px; }
    @media (max-width: 320px) {
      .featured-title-box span {
        padding: 0 4px; } }
  .featured-title-box ul {
    padding: 0;
    margin: 10px 0 0; }
    .featured-title-box ul li {
      list-style: none;
      color: #737882;
      line-height: 2; }
      .featured-title-box ul li span {
        padding: 7px 8px 0 0; }
        @media (max-width: 1200px) {
          .featured-title-box ul li span {
            padding: 0 4px 0 0; } }
        @media (max-width: 320px) {
          .featured-title-box ul li span {
            font-size: 12px;
            padding: 0 2px 0 0; } }
      .featured-title-box ul li p {
        margin: 0; }

.bottom-icons {
  padding: 15px 0 0;
  line-height: 1; }
  .bottom-icons span {
    float: right;
    line-height: 1;
    padding: 0 0 0 12px; }

.closed-now {
  color: #ff3a6d;
  font-size: 13px;
  display: block;
  font-weight: 400;
  display: inline-block; }

.open-now {
  color: #46cd38;
  font-size: 13px;
  display: block;
  font-weight: 400;
  display: inline-block; }

.featured-btn-wrap {
  text-align: center; }
  @media (max-width: 1200px) {
    .featured-btn-wrap {
      margin: 3px 0 0; } }
  .featured-btn-wrap .btn-danger {
    background: #ff3a6d;
    padding: 16px 50px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border: 0; }
    @media (max-width: 576px) {
      .featured-btn-wrap .btn-danger {
        width: 100%; } }
    .featured-btn-wrap .btn-danger:hover, .featured-btn-wrap .btn-danger:focus {
      background: #f34e79;
      outline: none;
      -webkit-box-shadow: none;
      box-shadow: none; }

/* ==============================================================
   CATEGORIES
   ============================================================== */
@media (max-width: 992px) {
  .category-responsive {
    max-width: 50%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%; } }

@media (max-width: 576px) {
  .category-responsive {
    max-width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%; } }

.category-wrap:hover {
  text-decoration: none; }

.category-wrap:hover .category-block {
  background: #4e79f3;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }

.category-wrap:hover .category-img path {
  text-decoration: none;
  fill: #fff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }

.category-wrap:hover .category-block h6 {
  color: #fff;
  text-decoration: none; }

.category-block {
  margin: 0 auto;
  text-align: center;
  border: 1px solid #e5e7ef;
  padding: 30px;
  margin: 0 0 30px; }
  .category-block h6 {
    color: #3e434b;
    margin: 10px 0 0; }

.category-img {
  width: 64px;
  height: 64px; }

/* ==============================================================
   ADD LISTING
   ============================================================== */
.add-listing-wrap {
  text-align: center;
  margin: 0 0 36px; }
  .add-listing-wrap h2 {
    font-weight: 300; }
  .add-listing-wrap p {
    font-size: 22px;
    font-weight: 300;
    color: #737882; }

    /* ==============================================================
   SIGN UP
   ============================================================== */
.signup p a{
  font-weight: bold;
   container-type: btn;
  border-color: whitesmoke
}
.signup p a:hover{
  background-color: whitesmoke;
  color: darkblue;
}

/* ==============================================================
   FOOTER
   ============================================================== */
footer {
  position: relative;
/*  background-color: #252a33;*/
background-color: #190782;
  color: whitesmoke;

   }
   footer ul{
    display: inline-block;
    justify-content: center;
   }
    footer ul li a{
      color: white;
      display: inline-block;
    }

.copyright {
  text-align: center; }
  .copyright p {
    font-size: 18px;
    font-weight: 400;
    color: #ccc;
    margin: 0; }
  .copyright ul {
    margin: 25px 0 0;
    padding: 0; }
    .copyright ul li {
      list-style: none;
      display: inline-block; }
      .copyright ul li a {
/*        color: #ccc;*/
        font-size: 22px;
        padding: 0 10px;
        opacity: 0.6;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s; }
        .copyright ul li a:hover {
          opacity: 1;
          text-decoration: none; }

/* ==============================================================
   SUB PAGES
   ============================================================== */
/* ==============================================================
   DETAIL PAGE
   ============================================================== */
.detail-filter-wrap {
  padding: 17px 0;
  border-bottom: 1px solid #e7e7e7; }
  .detail-filter-wrap p {
    font-size: 18px;
    color: #3e434b;
    font-weight: 300;
    margin: 6px 0 0; }
    .detail-filter-wrap p span {
      font-weight: 500; }

.detail-filter {
  text-align: right; }
  @media (max-width: 992px) {
    .detail-filter {
      text-align: left; } }
  .detail-filter p {
    font-weight: 300;
    color: #3e434b;
    font-size: 14px;
    display: inline-block;
    margin: 0 10px 0 0; }

.map-responsive-wrap {
  display: none; }
  @media (max-width: 992px) {
    .map-responsive-wrap {
      display: block; } }
  .map-responsive-wrap iframe {
    width: 100%;
    height: 800px; }

.map-icon {
  display: none;
  border: 1px solid #737882;
  color: #737882;
  padding: 8px 10px 2px 10px;
  margin: -46px 0 0;
  opacity: 0.6;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }
  .map-icon:hover {
    text-decoration: none;
    color: #737882;
    opacity: 1; }
  @media (max-width: 992px) {
    .map-icon {
      display: inline-block;
      text-align: right;
      float: right; } }
  @media (max-width: 480px) {
    .map-icon {
      float: left;
      margin: 10px 0 0; } }
  .map-icon span {
    font-size: 22px; }

.map-toggle {
  display: none; }

.filter-dropdown {
  display: inline-block; }
  .filter-dropdown select {
    border-radius: 0; }

.detail-checkbox-wrap {
  padding: 22px 0; }

.detail-options-wrap {
  padding: 15px 0; }

@media (max-width: 992px) {
  .responsive-wrap {
    max-width: 100%;
    -webkit-box-flex: 100%;
    -webkit-flex: 100%;
    -ms-flex: 100%;
    flex: 100%; } }

/* 
   BOOKING PAGE
   */
/* ==============================================================
   RESERVE A SEAT
   ============================================================== */
.reserve-block {
  padding: 30px 0; }
  .reserve-block h5 {
    color: #3e434b;
    font-weight: 400;
    display: inline-block;
    margin: 0; }
  .reserve-block p {
    display: inline-block;
    font-size: 18px;
    color: #b2b8c3;
    font-weight: 400;
    padding: 0 0 0 8px;
    margin: 0 0 8px; }
    @media (max-width: 992px) {
      .reserve-block p {
        margin: 0; } }
    .reserve-block p span {
      color: #ffb006; }

.reserve-description {
  font-size: 15px !important;
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important; }

.reserve-seat-block {
  text-align: right; }
  @media (max-width: 992px) {
    .reserve-seat-block {
      margin: 15px 0 0; } }
  @media (max-width: 768px) {
    .reserve-seat-block {
      text-align: left; } }
  @media (max-width: 576px) {
    .reserve-seat-block {
      text-align: center; } }

.reserve-rating {
  font-size: 23px;
  background: #46cd38;
  padding: 10px 14px;
  color: #fff;
  border-radius: 3px;
  display: inline-block;
  vertical-align: top; }

.review-btn {
  display: inline-block;
  text-align: center;
  margin: 3px 14px 0 14px; }
  @media (max-width: 1200px) {
    .review-btn {
      margin: 3px 4px 0 4px; } }
  @media (max-width: 576px) {
    .review-btn {
      margin: 3px 0px 0 0px; } }
  .review-btn span {
    display: block;
    color: #8a8e96;
    font-size: 13px;
    margin-top: 3px; }
  .review-btn .btn-outline-danger {
    color: #ff3a6d;
    border-color: #ff3a6d; }
    .review-btn .btn-outline-danger:hover {
      color: #fff;
      background: #ff3a6d; }

.reserve-btn {
  display: inline-block;
  vertical-align: top; }
  @media (max-width: 768px) {
    .reserve-btn {
      margin: -7px 0 0; } }
  @media (max-width: 576px) {
    .reserve-btn {
      margin: 0 0 0;
      width: 100%; } }

.custom-checkbox {
  color: #737882;
  font-size: 14px;
  line-height: 1.8;
  margin-right: 0; }
  .custom-checkbox span {
    padding: 0 10px 0 0; }

/* ==============================================================
   BOOKING DETAILS
   ============================================================== */
.booking-details_wrap {
  padding: 26px 0; }

.booking-checkbox_wrap {
  background: #fff;
  padding: 30px; }
  .booking-checkbox_wrap h5 {
    color: #3e434b;
    text-align: center;
    font-weight: 400; }

.booking-checkbox {
  color: #737882;
  font-size: 15px; }
  .booking-checkbox p {
    line-height: 1.8; }

.customer-review_wrap {
  display: inline-block;
  width: 100%; }

.customer-img {
  float: left; }
  @media (max-width: 992px) {
    .customer-img {
      text-align: center;
      float: none;
      margin: 0 0 15px; } }
  .customer-img img {
    border-radius: 50%; }
  .customer-img p {
    color: #3e434b;
    margin: 4px 0 0;
    text-align: center;
    font-size: 18px;
    line-height: 1.2; }
  .customer-img span {
    font-size: 14px;
    color: #737882;
    text-align: center; }

.customer-content-wrap {
  margin: 0 0 0 135px; }
  @media (max-width: 992px) {
    .customer-content-wrap {
      margin: 0 0 0 110px; } }
  @media (max-width: 992px) {
    .customer-content-wrap {
      margin: 0px; } }
  .customer-content-wrap ul {
    margin: 24px 0 0;
    padding: 0; }
    .customer-content-wrap ul li {
      list-style: none;
      display: inline-block;
      margin: 0 10px 0 0; }
      @media (max-width: 480px) {
        .customer-content-wrap ul li {
          margin: 0 0 10px 0; } }
  .customer-content-wrap span {
    color: #737882;
    display: inline-block;
    margin: 26px 0 0; }
  .customer-content-wrap a {
    border: 1px solid #ccc;
    color: #737882;
    font-size: 14px;
    border-radius: 3px;
    padding: 5px 10px;
    margin: 0 0 0 10px; }
    .customer-content-wrap a:hover {
      text-decoration: none; }
    .customer-content-wrap a span {
      margin: 0 6px 0 0; }

.customer-text {
  color: #737882;
  margin: 15px 0 0;
  line-height: 1.6; }

.customer-content h6 {
  color: #3e434b; }

.customer-content p {
  color: #737882;
  display: inline-block;
  vertical-align: top;
  line-height: 0.8;
  margin: 0 0 0 8px; }

.customer-review {
  display: inline-block; }
  @media (max-width: 576px) {
    .customer-review {
      display: block; } }
  .customer-review span {
    width: 10px;
    height: 10px;
    background: #46cd38;
    border-radius: 50%;
    display: block;
    float: left;
    margin: 0 5px 0 0; }

.round-icon-blank {
  background: #d9dce7 !important; }

.round-icon-red {
  background: #ff5a5a !important; }

.round-icon-orange {
  background: #ffbb27 !important; }

.customer-rating {
  background: #46cd38;
  padding: 8px 14px;
  float: right;
  font-size: 18px;
  color: #fff;
  border-radius: 3px; }
  @media (max-width: 576px) {
    .customer-rating {
      float: none;
      display: inline-block; } }

.customer-rating-red {
  background: #ff5a5a !important; }

.customer-description {
  margin: 0 0 0 50px; }

.contact-info {
  background: #fff;
  padding: 0 0 6px;
  margin: 0 0 15px; }
  .contact-info img {
    width: 100%; }
  .contact-info label {
    color: #46cd38;
    font-size: 14px;
    padding: 0 0 0 50px; }
    @media (max-width: 992px) {
      .contact-info label {
        display: block; } }

.address {
  color: #737882;
  padding: 18px 0 0 16px; }
  .address > span {
    font-size: 18px;
    float: left;
    margin: 4px 0 0; }
  .address p {
    margin: 0 0 0 34px; }
  .address .featured-open {
    font-size: 13px;
    padding: 0 0 0 34px; }

.btn-contact {
  display: block;
  padding: 16px;
  margin: 12px 16px;
  border: 2px solid #ff3a6d;
  color: #ff3a6d;
  font-weight: 400; }
  .btn-contact:hover {
    background: #ff3a6d;
    border: 2px solid #ff3a6d; }

.follow {
  background: #fff; }
  .follow ul {
    margin: 0;
    padding: 0;
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    text-align: center; }
    .follow ul li {
      list-style: none;
      padding: 13px 0;
      width: 33%; }
      @media (max-width: 1200px) {
        .follow ul li {
          padding: 12px 18px; } }
      .follow ul li:first-child, .follow ul li:nth-child(2) {
        border-right: 1px solid #ededed; }
      .follow ul li h6 {
        margin: 0; }
  .follow a {
    color: #ff3a6d;
    text-align: center;
    display: block;
    font-size: 14px;
    font-weight: 400;
    padding: 14px 0; }

.follow-img {
  text-align: center;
  padding: 20px 16px;
  color: #3e434b; }
  .follow-img img {
    border-radius: 50%; }
  .follow-img h6 {
    margin: 11px 0 0; }

.social-counts span {
  font-size: 14px;
  color: #737882; }

.map-wrap {
  padding: 0; }

.map-fix {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 41.7%; }
  @media (max-width: 992px) {
    .map-fix {
      display: none;
      top: 17%;
      left: 0;
      width: 100%; } }
  @media (max-width: 480px) {
    .map-fix {
      top: 24%; } }
  @media (max-width: 365px) {
    .map-fix {
      top: 29.3%; } }

#map {
  height: 100%;
  width: 100%; }

/*# sourceMappingURL=style.css.map */




/*# model form */

  :root{
      --bg:#f4f6f8;
      --card1:#ffffff;
      --accent:#4f46e5;
      --muted:#6b7280;
      --success:#10b981;
      --danger:#ef4444;
      --radius:12px;
      --gap:16px;
      --brand: #E8E3E3;
      --warning1: #F2AA3D;
       
    }

    *{box-sizing:border-box}
    /*body{
     /* margin:0;
      font-family:Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
      background: linear-gradient(180deg, var(--bg), #eef2ff 120px);
      color:#0f172a;
      padding:32px;
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;*/
    }*/

    .container1{
      max-width:100%;
      margin:0 auto;
/*      background-color: #5959F7;*/
    }

    .card1{
      background:var(--card);
      border-radius:var(--radius);
      padding:24px;
      box-shadow: 0 6px 30px rgba(11, 20, 72, 0.06);
      border: 1px solid rgba(15,23,42,0.04);
    }

    h1{
      /*font-size:1.25rem;
      margin:0 0 8px 0;
      letter-spacing: -0.2px;*/
    }
    p.lead{
      /*margin:0 0 20px 0;
      color:var(--muted);
      font-size:0.95rem;*/
    }

    .listingForm{
      display:grid;
      grid-template-columns: 1fr 360px;
      gap:var(--gap);
      align-items:start;
    }

    .left, .right{
      min-width:0;
    }

    .field{
      margin-bottom:14px;
    }

    label{
      display:block;
      font-size:0.9rem;
      margin-bottom:6px;
      color:#0b1220;
      font-weight:800;
    }

    input[type="text"],
    input[type="number"],
    input[type="email"],
    select,
    textarea{
      width:100%;
      padding:10px 12px;
      border-radius:10px;
      border:1px solid rgba(15,23,42,0.08);
      background:#fbfdff;
      font-size:0.95rem;
      outline: none;
      transition: box-shadow .12s, border-color .12s;
    }
    input:focus, select:focus, textarea:focus{
      box-shadow: 0 6px 20px rgba(79,70,229,0.12);
      border-color: rgba(79,70,229,0.4);
/*      margin-right: 50px;*/
    }

    textarea{
      min-height:120px;
      resize:vertical;
      line-height:1.4;
    }

    .small{
      font-size:0.85rem;
      color:var(--muted);
      margin-top:6px;
    }

    .row1{
      display:flex;
      gap:10px;
    }

    .checkbox-row{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
    }
    .chip{
      padding:8px 10px;
      border-radius:999px;
      background:#f1f5ff;
      color:#1f2937;
      font-size:0.85rem;
      border:1px solid rgba(79,70,229,0.06);
    }

    .file-drop{
      border: 2px dashed rgba(15,23,42,0.06);
      padding:12px;
      border-radius:10px;
      text-align:center;
      background: linear-gradient(180deg,#fff,#fbfdff);
    }

    .thumbs{
      display:flex;
      gap:8px;
      margin-top:10px;
      flex-wrap:wrap;
    }
    .thumb{
      width:96px;
      height:72px;
      border-radius:8px;
      object-fit:cover;
      border:1px solid rgba(15,23,42,0.06);
    }

    .meta{
      font-size:0.9rem;
      color:var(--muted);
      margin-bottom:10px;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 14px;
      border-radius:10px;
      background:var(--accent);
      color:#fff;
      font-weight:600;
      border:none;
      cursor:pointer;
      box-shadow: 0 6px 18px rgba(79,70,229,0.12);
      transition: transform .08s ease;
    }
    .btn:active{ transform: translateY(1px); }

    .btn.secondary{
      background:#fff;
      color:var(--muted);
      border:1px solid rgba(15,23,42,0.06);
      box-shadow:none;
      font-weight:600;
    }

    .hint{
      font-size:0.85rem;
      color:var(--muted);
    }

    /* Responsive */
    @media (max-width:900px){
      .listingForm{ grid-template-columns: 1fr; }
      .right{ order:2 }
    }

  /*# model form end */


  /*<style>*/
.popular-catbox {
  padding: 40px 20px;
  background: #fff;
  text-align: center;
  size: 50px;
}
.pop-h1 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  color: black;
 /*margin-right: 600px;
 margin-left: 500px;*/
}
.pop-h1::after {
  content: "";
  display: block;
  margin: 10px auto 0;
  width: 80px;
  height: 3px;
  background: #007bff;
  border-radius: 2px;
  background: #ff3a6d;
}
.pop-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  padding: 0;
/*  margin: 0 auto 5px;*/
margin-right: 100px; margin-left: 100px;
  max-width: 100vw;
  

}
.pop-list li a {
  display: block;
  /*background: #eeeeee;*/
  background: linear-gradient(135deg, #eeeeee,#E9F7F7);
  border: 1px solid #ddd;
  padding: 12px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  transition: all .3s ease;
  box-shadow:0px 6px 18px rgba(0,0,0,0.15);
  
}
.pop-list li a:hover {
  /*background: #007bff;*/
  background: white;
  color: /*#fff*/ #333;
  transform: translateY(-5px);
}
.menu-pop-cats {
  display: none;
}
.btn-all a {
  background: #007bff;
  color: #fff;
  padding: 10px 20px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background .3s ease;
}
.btn-all a:hover {
  background: #0056b3;
}
/* Responsive for small screens */
@media(max-width:768px) {
  .menu-pop-cats {
    display: block;
    text-align: right;
    margin-bottom: 15px;
  }
  .pop-list {
    display: none;
    grid-template-columns: 1fr;
  }
  .pop-list.responsive {
    display: grid;
  }
}
/*</style>*/



 /*<style>*/
    .green {
      color: #28a745;
    }
    .location-box {
      display: inline-block;
      width: 150px;
      height: 120px;
      margin: 10px;
      padding: 15px;
      border-radius: 12px;
      color: #fff;
      background: #6c757d;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .location-box:hover {
      transform: translateY(-5px);
      box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
    }
    .location-box h3 {
      font-size: 24px;
      margin-bottom: 5px;
      font-weight: bold;
    }
    .location-box p {
      margin: 0;
      font-size: 14px;
      text-transform: uppercase;
    }
    .orange-box {
      background: #ff8800;
    }
    .darkblue-box {
      background: #003366;
    }
    ul {
      list-style: none;
      padding: 0;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
    }
  /*</style>*/



  /*<style>*/
    .company-img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 20px;
    }
    .company-details h5 {
      font-weight: bold;
      margin-bottom: 15px;
    }
    .company-details p {
      margin-bottom: 8px;
    }
    .map-box {
      width: 100%;
      height: 400px;
      border-radius: 8px;
      overflow: hidden;
    }
  /*</style>*/
  
  
  
  /*<style>*/
    body {
      background-color: #f8fafc;
/*background-color: #757a80;*/
      font-family: 'Poppins', sans-serif;
    }

    /* Header */
    .job-header {
      background: linear-gradient(135deg, #1a237e, #0d47a1);
      color: #fff;
      padding: 70px 20px 60px;
      text-align: center;
    }

    .job-header h2 {
      font-weight: 500;
      font-size: 1.8rem;
    }

    .job-header p {
      font-size: 1rem;
      opacity: 0.9;
    }

    /* Filter Bar */
    .filter-bar {
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
      margin-top: -40px;
      padding: 20px;
      position: relative;
      z-index: 10;
    }

    .filter-bar input,
    .filter-bar select {
      font-size: 0.95rem;
      border-radius: 10px;
    }

    /* Job Card */
    .job-card {
      background-color: #F8FAFC;
      border-radius: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      padding: 20px;
      transition: all 0.3s ease;
    }

    .job-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    }

    .job-company-logo {
      width: 60px;
      height: 60px;
      object-fit: cover;
      border-radius: 12px;
      background: #f1f3f4;
    }

    .job-card h6 {
      font-size: 1rem;
    }

    .job-card small {
      color: #6c757d;
    }

    .apply-btn {
      background: linear-gradient(135deg, #ffb300, #ffca28);
      color: #000;
      font-weight: 600;
      border: none;
      border-radius: 8px;
    }

    .apply-btn:hover {
      background: linear-gradient(135deg, #ffca28, #ffd54f);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .filter-bar {
        padding: 15px;
      }

      .job-header {
        padding: 50px 10px 40px;
      }

      .job-header h2 {
        font-size: 1.5rem;
      }

      .job-card {
        padding: 15px;
      }

      .job-company-logo {
        width: 50px;
        height: 50px;
      }

      .apply-btn {
        width: 100%;
        margin-top: 10px;
      }

      .d-flex.justify-content-between {
        flex-direction: column;
        align-items: start;
      }
    }
  /*</style>*/
/*  style for job end */