body {
  background-image: url("../images/rental-bg.jpg");
  background-attachment: scroll;
  background-repeat: repeat-y;
  background-size: contain;
}

/* .navbar-brand {
  margin-right: 20%;
} */

.navigation_bar {
  background-color: #c8dcfe !important;
  padding: 0 !important;
}

.navigation_logo img {
  width: 65%;
  margin-left: 22%;
}

.navbar_li a {
  color: #000;
  font-weight: 600;
  padding: 25px 16px;
  margin-right: 8px;
  min-width: 80px;
  border-radius: 5px;
  text-align: center;
}

.navbar-toggler {
  border: 2px solid #0954eb;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 600;
  padding: 28px 16px;
  text-align: center;
  border-radius: 0px;
}

section {
  scroll-margin-top: 80px; /* Navbar ki height ke hisaab se adjust karein */
}

#home {
  position: relative;
  margin-top: 4vw;
  padding-top: 1vw;
  background-color: #c8dcfe;
}

.large_display {
  display: flex;
}

.small_display {
  display: none;
}

/* Hover Effect */
/* .navbar-nav .nav-link:hover {
  color: #000 !important;
} */

/* Active Link Effect (Click hone ke baad ye rahega) */
.navbar-nav .nav-link.active {
  color: #c8dcfe !important;
  border-radius: 0px !important;
  line-height: 30px;
  height: 80px;
  font-weight: bold;
  background-color: #0954eb;
}

ul {
  padding: 0;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16 px;
  color: #000;
  position: relative;
}

ul li a:before {
  content: "";
  width: 0;
  height: 5px;
  background-color: #000;
  position: absolute;
  top: 75%;
  left: 0;
  transition: all 0.5s;
}

ul li a:after {
  content: "";
  width: 0;
  height: 5px;
  background-color: #000;
  position: absolute;
  top: 75%;
  right: 0;
  transition: all 0.5s;
}

ul li a:hover:before {
  width: 50%;
  transform: translateX(100%);
}

ul li a:hover:after {
  width: 50%;
  transform: translateX(-100%);
}

ul li a:active:before {
  width: 50%;
  transform: translateX(100%);
}

ul li a:active:after {
  width: 50%;
  transform: translateX(-100%);
}

.titles h1 {
  color: #fff !important;
}

.title_subheading {
  font-size: 1.5em;
}

.inner_titles {
  background-color: #000000 !important;
  margin: 0px 0px;
}

.titles {
  background-color: #02475b !important;
  margin: 0px 0px;
}

.tableList li {
  font-size: 1.5em;
  padding: 10px;
}

.ulDisc li {
  list-style-type: square;
}

.containerWidth {
  margin-left: 6% !important;
  margin-right: 6% !important;
}

.pd-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.ptp-5 {
  padding-top: 5vw;
}
.ptp-3 {
  padding-top: 3vw;
}

.pdtp-2 {
  padding-top: 2vw;
}

.my-20 {
  margin-top: 12%;
}

.top_banner {
  margin-left: 6%;
  margin-right: 6%;
}

.img_row {
  padding: 5%;
}

.pdtp-2 {
  padding-top: 2%;
}

.lgList {
  padding-top: 8vw;
}

.top_slider img {
  height: 640px;
  object-fit: cover;
}

.inner_slider img {
  height: 855px;
  object-fit: cover;
}

.slider_2 {
  height: 870px;
  object-fit: cover;
}

.subscribe_col {
  background-color: #21495b;
}

.footer {
  background-color: #c8dcfe !important;
  color: #000 !important;
}

.footer a {
  color: #000 !important;
  text-decoration: none;
}

/* HTML: <div class="slanted-edge"></div> */
.slanted-edge {
  --p: 70px; /* control the shape (can be percentage) */
  height: 180px;
  padding-top: 70px;
  clip-path: polygon(0 var(--p), 100% 0, 100% 100%, 0 100%);
  background: #c6eb09;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
}

.slanted-edge2 {
  --p: 70px; /* control the shape (can be percentage) */
  height: 220px;
  padding-top: 70px;
  clip-path: polygon(0 var(--p), 100% 0, 100% 100%, 0 100%);
  background: #c6eb09;
}

.img-bg {
  width: 100vw; /* Viewport ki puri width lega */
  height: auto; /* Image ka aspect ratio maintain rahega */
  display: block; /* Extra spacing hatane ke liye */
}

#concept {
  margin-top: 5vw;
}

.imgSize {
  border-radius: 20px;
  filter: drop-shadow(1px 1px 4px #a2a2a2);
}

.filter-shadow {
  filter: drop-shadow(1px 1px 2px #888888);
  border-radius: 6px;
}

.textButton {
  color: #fff9c9;
  background-color: #005aab;
  text-align: center;
  padding: 5px;
}

.ititle {
  text-transform: uppercase;
}

.greyTab {
  color: #000;
  background-color: #b1b1b1;
  text-align: center;
  padding: 5px;
}

.floatImg {
  margin-left: -35%;
  margin-top: 22%;
}

.floating {
  animation-name: floating;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@keyframes floating {
  from {
    transform: translate(0, 0px);
  }
  65% {
    transform: translate(0, 15px);
  }
  to {
    transform: translate(0, -0px);
  }
}

.suptitle {
  font-weight: bold;
  font-size: 1.3em;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  position: relative;
  margin-left: 5em;
  font-family: "inter", sans-serif !important;
  -webkit-transform: scaleX(1) !important;
  -webkit-transition-delay: 200ms;
  -webkit-transform-origin: left;
  -webkit-transition: 800mscubic-bezier(0.15, 0.75, 0.5, 1);
  transform: scaleX(1) !important;
  transition-delay: 200ms;
  transform-origin: left;
  transition: 800mscubic-bezier(0.15, 0.75, 0.5, 1);
  color: #005aab;
}

.suptitle:before {
  content: "";
  width: 3em;
  margin: 0;
  position: absolute;
  top: 50%;
  left: -4em;
  border-style: solid;
  border-width: 2px 0 0;
}

.lgDisplay {
  display: flex;
}

.smDisplay {
  display: none;
}

.ipara {
  font-size: 1.4em;
  width: 80%;
  margin: auto;
}

.bold {
  font-weight: bold;
}

.news {
  padding: 4.8px 0 9.6px 0;
  text-align: center;
}
.news-heading {
  font-size: 44px;
  line-height: 1.4;

  color: #333;
}
.news p {
  font-size: 18px;
  margin-bottom: 16px;
  margin-top: 12px;
  line-height: 1.8;
}

input[type="email"] {
  display: inline-block;
  width: 60%;
  padding: 18px 36px;
  margin: 8px 0;
  border: 1px solid #aaaaaa;
  box-sizing: border-box;
  height: 70px;
  margin-top: 18px;
  border-radius: 20px;
  border: none;
  box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.1);
}
input,
input::-webkit-input-placeholder {
  font-size: 16px;
  line-height: 3;
}

.bt {
  font-size: 16px;
  display: inline-block;
  font-weight: 600;
  padding: 16px 32px;
  margin-top: 16px;
  border-radius: 20px;

  /* Only necessary for .btn */
  border: none;
  cursor: pointer;
  background-color: #0954eb;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .navigation_logo img {
    width: 30%;
  }

  .navbar {
    color: #fff !important;
  }

  .navigation_bar {
    padding: 1% !important;
  }

  .lgDisplay {
    display: none;
  }

  .smDisplay {
    display: flex;
    margin-top: 30px;
  }

  .ipara {
    font-size: 1.2em;
    width: 98%;
    margin-left: 2%;
  }

  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 1rem !important;
  }

  ul li a:before {
    background-color: #fff;
  }

  ul li a:after {
    background-color: #fff;
    padding-top: 5px;
  }

  .tableList {
    margin-left: 4%;
  }

  .smTitle {
    font-size: 0.75em;
  }

  .pd-0 {
    padding-left: 2% !important;
    padding-right: 2% !important;
  }

  .tableList li {
    font-size: 0.8em;
  }

  .suptitle {
    font-size: 0.8em;
    margin-left: 2em;
    padding-left: 15px;
  }

  .suptitle:before {
    width: 2em;
    left: -2em;
  }

  #home {
    margin-top: 12vw;
    padding-top: 4vw;
  }

  .tableList li {
    padding: 4px;
  }

  .slider_2 {
    height: 330px;
  }

  .large_display {
    display: none;
  }

  .small_display {
    display: block;
  }

  .l-mrgn-2 {
    padding-left: 8%;
  }

  .img_long {
    object-fit: cover;
    height: 600px;
  }

  .top_slider img {
    height: 340px;
    object-fit: contain;
  }

  .inner_slider img {
    height: 180px;
    object-fit: contain;
  }

  .news-heading {
    font-size: 25px;
    line-height: 1.2;
  }

  input[type="email"] {
    display: block;
    width: 100%;
  }

  .disclaimer {
    font-size: 14px;
  }

  footer img {
    width: 30%;
    margin-left: 35%;
  }

  .navbar-brand {
    display: contents;
  }

  .navbar-nav {
    background-color: #0954eb;
    color: #fff;
  }

  .navbar-nav .nav-link {
    padding: 15px;
    border-bottom: 1px dashed gray;
  }
  .navbar-nav .nav-link.active {
    height: 50px;
    padding-bottom: 10px;
  }
  .navbar-nav .nav-link.active:before {
    margin-top: 10px;
    margin-bottom: 10px;
    transition: all 0.5s;
  }
  .navbar-nav .nav-link.active:after {
    margin-top: 10px;
    margin-bottom: 10px;
    transition: all 0.5s;
  }

  .navbar-nav .nav-link:hover {
    color: #000 !important;
    background-color: #225cd8 !important;
  }
}
