/* ****************************************
****************************************
      
  WEBSITE NAME         :-        Sahayak Coolie 
  WEB DEVELOPER NAME   :-        MONU SONI
  DATE                 :-        30-08-2024
  DEVELOPER PORTFOLIO  :-        https://monuportfolio.000webhostapp.com/ 
  DEVLOPER E-MAIL      :-        monusoni9350@gmail.com  
  Contact No           :-        +91-8851394932


****************************************
**************************************** */

/********** Website Root CSS **********/
:root {
  --primary: #ff0000;
  --secondary: #fff1f1;
  --light: #f0f6ff;
  --dark: #262b47;
}
 

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Heading ***/
h1,
h2,
.fw-bold {
  font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
  font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
  font-weight: 500 !important;
}

/*** Gradient Text & BG ***/
.text-primary-gradient {
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-secondary-gradient {
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-primary-gradient {
  background: var(--primary);
}

.bg-secondary-gradient {
  background: var(--primary);
}

/*** Button ***/
.btn {
  transition: 0.5s;
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient {
  position: relative;
  overflow: hidden;
  border: none;
  color: #ffffff;
  z-index: 1;
}

.btn.btn-primary-gradient::after,
.btn.btn-secondary-gradient::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  z-index: -1;
  opacity: 0;
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient::after {
  background: var(--secondary);
  color: var(--primary);
  font-weight: bold;
}

.btn.btn-secondary-gradient,
.btn.btn-primary-gradient::after {
  background: var(--secondary);
  color: var(--primary);
  font-weight: bold;
}

.btn.btn-primary-gradient:hover::after,
.btn.btn-secondary-gradient:hover::after {
  opacity: 1;
  transform: scale(1.1px);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50px;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
  border: none;
  background: var(--primary);
}

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
  position: relative;
  margin-right: 25px;
  padding: 45px 0;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--light) !important;
  outline: none;
  transition: 0.5s;
}

.navbar-light .navbar-nav .nav-link::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border: 10px solid;
  border-color: var(--light) transparent transparent transparent;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--light);
}

.navbar-light .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .nav-link.active::before {
  top: 0;
}

.navbar-light .navbar-brand h1 {
  color: #ffffff;
}

.navbar-light .navbar-brand img {
  max-height: 60px;
  border-radius: 50%;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-brand img {
  max-height: 45px;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-light {
    position: relative;
    background: #ffffff;
  }
  .navbar-light{
    background: var(--primary);
    color: #fff;
  }

  .navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid #dddddd;
  }

  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    margin-left: 0;
    color: var(--light) !important;
  }
  .navbar-toggler{
    background: var(--light);
  }

  .navbar-light .navbar-nav .nav-link::before {
    display: none;
  }

  .navbar-light .navbar-nav .nav-link:hover,
  .navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
  }

  .navbar-light .navbar-brand h1 {
    background: linear-gradient(
      to bottom right,
      var(--primary),
      var(--secondary)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .navbar-light .navbar-brand img {
    max-height: 60px;
  }
}

@media (min-width: 992px) {
  .navbar-light {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
  }

  .sticky-top.navbar-light {
    position: fixed;
    background: var(--primary);
  }

  .sticky-top.navbar-light .navbar-nav .nav-link::before {
    border-top-color: var(--primary);
  }

  .sticky-top.navbar-light .navbar-brand h1 {
    background: linear-gradient(
      to bottom right,
      var(--primary),
      var(--secondary)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.jus {
  text-align: justify;
}

/*** Hero Header ***/
.hero-header {
  margin-bottom: 6rem;
  padding: 10rem 2rem 8rem;
  background-size: contain !important;
  background: url(../img/bg-circle.png), url(../img/bg-triangle.png),
    url(../img/bg-bottom.png), var(--primary);
  background-position: left 0px top 0px, right 0px top 50%, center bottom;
  background-repeat: no-repeat;
}
.hero-header h1 {
  font-size: 52px;
}

@media (max-width: 991.98px) {
  .hero-header {
    padding: 6rem 0 9rem 0;
  }
}

/*** Feature ***/
.feature-item {
  transition: 0.5s;
}

.feature-item:hover {
  margin-top: -15px;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
}

/*** Pricing ***/
.pricing .nav {
  padding: 2px;
}

.pricing .nav-link {
  padding: 12px 30px;
  font-weight: 500;
  color: var(--dark);
  background: #ffffff;
}

.pricing .nav-item:first-child .nav-link {
  border-radius: 30px 0 0 30px;
}

.pricing .nav-item:last-child .nav-link {
  border-radius: 0 30px 30px 0;
}

.pricing .nav-link.active {
  color: #ffffff;
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
}

/*** Screenshot ***/
.screenshot-carousel {
  position: relative;
  width: 253px;
  height: 500px;
  padding: 15px;
  margin-right: 30px;
}

.screenshot-carousel::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/screenshot-frame.png) center center no-repeat;
  background-size: 253px 500px;
  z-index: 1;
}

.screenshot-carousel .owl-item img {
  position: relative;
  width: 223px;
  height: 470px;
}

.screenshot-carousel .owl-dots {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.screenshot-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 5px 0;
  width: 15px;
  height: 15px;
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
  border-radius: 15px;
  transition: 0.5s;
}

.screenshot-carousel .owl-dot::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 5px;
  left: 5px;
  background: #ffffff;
  border-radius: 5px;
}

.screenshot-carousel .owl-dot.active {
  box-shadow: 0 0 10px var(--dark);
}

/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
}

.testimonial-carousel .owl-item.center .testimonial-item h5,
.testimonial-carousel .owl-item.center .testimonial-item p {
  color: #ffffff !important;
}

.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin: 0 12px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
  border-radius: 60px;
  font-size: 18px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  background: linear-gradient(
    to bottom right,
    var(--secondary),
    var(--primary)
  );
}

/*** Footer ***/
.footer {
  margin-top: 6rem;
  /* padding-top: 9rem; */
  background: var(--primary);
  background-position: left 0px bottom 0px, right 0px top 50%, center top;
  background-repeat: no-repeat;
}

.footer .btn.btn-social {
  margin-right: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid rgba(256, 256, 256, 0.1);
  border-radius: 40px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 10px;
  padding: 0;
  text-align: left;
  color: var(--light);
  font-weight: normal;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 14px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.iconSec img {
  border-radius: 10px 20px 45px 10px;
  padding: 12px;
  width: 100px;
  transition: all 0.6s;
  border: 2px solid var(--primary);
}
.iconSec img:hover {
  border-radius: 45px 28px 5px 60px;
  border: 2px solid var(--secondary);
}

/*** Service ***/
.service .nav .nav-link {
  transition: 0.5s;
}
.service h5 {
  font-size: 19px;
}

.service .nav .nav-link.active {
  border-color: var(--primary) !important;
  background: var(--primary);
}

.service .nav .nav-link.active h5 {
  color: #ffffff !important;
}

.service .nav .nav-link.active h5 i {
  color: #ffffff !important;
}

/*********************************/
/*         Helpers               */
/*===============================*/
.section {
  padding: 100px 0;
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}

.bg-overlay {
  background-color: rgba(60, 72, 88, 0.7);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.bg-overlay-white {
  background-color: rgba(255, 255, 255, 0.5);
}

.app-subscribe {
  position: absolute;
  top: -250px;
}

@media (max-width: 767px) {
  .app-subscribe {
    position: relative;
    top: 0;
  }
}

.section-title .title {
  letter-spacing: 0.5px;
  font-size: 30px !important;
}

@media (max-width: 768px) {
  .section-title .title {
    font-size: 24px !important;
  }
}

.navbar-toggler {
  border: 2px solid var(--primary) !important;
}

.top-bar {
  background: var(--primary);
  padding: 4px 0px;
}

.contact-details ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
  float: right;
}
.contact-details ul li {
  display: inline-block;
  padding: 0px 5px;
  color: #ffffff;
}
.contact-details ul li a {
  color: #fff;
  text-decoration: none;
}

.navbar-expand-lg.top-nav .navbar-nav .nav-link {
  padding: 10px 15px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
}
.navbar-expand-lg.top-nav .navbar-nav .nav-link i {
  font-size: 14px;
  float: right;
  margin-left: 5px;
}
.navbar-expand-lg.top-nav .navbar-nav .nav-link:hover {
  color: #fff;
  border-radius: 4.8px;
}
.navbar-expand-lg.top-nav .navbar-nav .nav-link.active {
  color: #fff;
}
.navbar-expand-lg.top-nav .navbar-nav .nav-link.active:before {
  content: "";
  position: absolute;
  width: 40px;
  background: #fff;
  height: 5px;
  top: 0px;
  left: 0px;
  border-radius: 6px;
}
.navbar-expand-lg.top-nav .navbar-nav .nav-link.active:after {
  content: "";
  position: absolute;
  width: 40px;
  background: #fff;
  height: 5px;
  bottom: 0px;
  right: 0px;
  border-radius: 6px;
}
.navbar-expand-lg.top-nav .navbar-nav .nav-link:before {
  content: "";
  position: absolute;
  width: 0px;
  background: #fff;
  height: 5px;
  top: 0px;
  left: 0px;
  border-radius: 6px;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}
.navbar-expand-lg.top-nav .navbar-nav .nav-link:after {
  content: "";
  position: absolute;
  width: 0px;
  background: #fff;
  height: 5px;
  bottom: 0px;
  right: 0px;
  border-radius: 6px;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}
.navbar-expand-lg.top-nav .navbar-nav .nav-link:hover:before {
  width: 40px;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}
.navbar-expand-lg.top-nav .navbar-nav .nav-link:hover:after {
  width: 40px;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}

.top-nav .navbar-toggler {
  color: var(--secondary);
  border-color: var(--secondary);
}
.top-nav .navbar-toggler:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.dropMen {
  color: #fff;
  padding: 50px 20px;
}
.dropMen:hover {
  color: #fff;
}

.newPoint li {
  background: #fff;
  margin: 10px;
  padding: 15px;
  border-radius: 15px;
  color: #000;
  border: 1px solid #ff0000;
}
.newPoint li i {
  color: #ff0000;
}

.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto !important;
}

.newIcon {
  list-style: none;
}
.newIcon li {
  margin-top: 15px;
}
.newIcon li i {
  color: var(--secondary);
  font-size: 22px;
}

.rs-section-head .badge-chip {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(229, 57, 53, 0.12);
  color: #e53935;
  border: 1px solid rgba(229, 57, 53, 0.25);
}
.rs-feature {
  position: relative;
  height: 100%;
  border-radius: 1rem;
  padding: 1.35rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}
.rs-feature:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 57, 53, 0.45);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}
.rs-icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e53935 100%);
  color: #fff;
  font-size: 1.35rem;
  box-shadow: 0 6px 18px rgba(229, 57, 53, 0.35);
}
.rs-feature h5 {
  margin-top: 0.9rem;
  margin-bottom: 0.35rem;
  color: #111827;
  font-weight: 600;
}
.rs-feature p {
  margin: 0;
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.5;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  border-radius: 12px;  /* optional rounded look */
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

  .amenity-card {
    background: var(--light);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .amenity-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    background: #fff;
  }

  /* Emoji bounce animation */
  .bounce {
    display: inline-block;
    animation: bounceAnim 1.5s infinite;
  }
  @keyframes bounceAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }