@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Medium.woff2') format('woff2'),
    url('../fonts/Gotham-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Asgard Trial FitMedium';
  src: url('../fonts/AsgardTrial-FitMedium.woff2') format('woff2'),
    url('../fonts/AsgardTrial-FitMedium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Asgard Trial FitBold';
  src: url('../fonts/AsgardTrial-FitBold.woff2') format('woff2'),
    url('../fonts/AsgardTrial-FitBold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Poppins", sans-serif;
  color: #000;
  background-image: url(../img/flight-takeoff.webp);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  color: #ed502e;
  text-decoration: none;
}

hr {
  color: #913A87;
}

.container {
  max-width: 1440px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #44246d;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #832886;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 26px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #0b2341;
}

#header .logo img {
  max-height: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  color: #0b2341;
  white-space: nowrap;
  transition: 0.3s;
  font-weight: 500;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #4f2471;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #44246d;
  padding: 8px 20px;
  margin-left: 8px;
  border-radius: 4px;
  color: #fff;
  border: 1px solid #44246d;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #000;
  background: transparent;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #ed502e;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #0b2341;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(4, 12, 21, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #000;
  text-transform: uppercase;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #4f2471;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #ed502e;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 89vh;
  background-color: rgba(4, 12, 21, 0.8);
  overflow: hidden;
  margin-top: 6em;
  position: relative;
}

#hero:after {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  height: 30px;
  z-index: 99;
  background: rgb(143, 41, 139);
  background: linear-gradient(90deg, rgba(143, 41, 139, 1) 16%, rgba(42, 35, 98, 1) 58%);
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

#hero .carousel-item.slider-1 {
  background-image: url(../img/hero/feb-25/slider-1.webp);
}

#hero .carousel-item.slider-2 {
  background-image: url(../img/hero/15-jan/banner-2.jpg);
}

#hero .carousel-item.slider-3 {
  background-image: url(../img/hero/15-jan/banner-3.jpg);
}

#hero .carousel-item.slider-4 {
  background-image: url(../img/hero/25-aug-2025/1.jpg);
}

/* #hero .carousel-item.slider-4 {
  background-image: url(../img/hero/new/slider-4.webp);
} */

/* #hero .carousel-item.slider-1 {
  background-image: url(../img/hero/new/slider-1.webp);
}
#hero .carousel-item.slider-2 {
    background-image: url(../img/hero/new/slider-2.webp);
}
#hero .carousel-item.slider-3 {
  background-image: url(../img/hero/new/slider-3.webp);
}

#hero .carousel-item.slider-4 {
  background-image: url(../img/hero/new/slider-4.webp);
} */

.carousel-item.slider-1 .banner-content {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  background-color: #ffefce;
  width: fit-content;
  padding: 30px;
}
.carousel-item.slider-1 .banner-content p {
  color: #000 !important;
  font-size: 16px !important;
}

.carousel-item.slider-1 .banner-content h5 {
  font-size: 16px;
  border: 1px solid #000;
  padding: 10px;
}

#hero .carousel-item::before {
  content: "";
  background-color: rgba(4, 12, 21, 0.1);
}

#hero .carousel-container {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 50px;
  right: 50px;
}

#hero h2 {
  color: #fff;
  margin: 0;
  font-size: 48px;
  font-weight: 400;
  position: relative;
  text-transform: uppercase;
  font-family: 'Asgard Trial FitMedium';
}

#hero h2 span {
  display: block;
  font-size: 58px;
  font-weight: 600;
  margin-bottom: 5px;
  font-family: 'Asgard Trial FitBold' !important;
}

#hero h2:before {
  content: "";
  position: absolute;
  width: 90px;
  height: 4px;
  background: rgb(255, 255, 255);
  z-index: 99;
  bottom: -25px;
}

#hero p {
  font-size: 24px;
  color: #ffff;
  margin-top: 2em;
  font-weight: 500;
  font-family: 'Gotham';
}


#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}


#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #8f298b;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  animation-delay: 0.8s;
  background: #ed502e;
  margin-top: 15px;
}

#hero .btn-get-started:hover {
  background: #ef6445;
}

#hero .carousel-indicators {
  bottom: 20px;
}

#hero .qr-code {
  position: absolute;
  z-index: 99;
  bottom: auto;
  top: 50px;
  right: 100px;
  /* width: 100px; */
}

#hero p.watermark-text {
  color: #fff;
  position: absolute;
  z-index: 99;
  bottom: 16em;
  top: auto;
  left: -7em;
  font-size: 10px;
  transform: rotate(-90deg);
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
.drop-shadow {
  -webkit-filter: drop-shadow(-10px 6px 3px rgba(0, 0, 0, 0.8));
}

.section-padding {
  padding: 5em 0;
}

h2.section-title {
  font-size: 28px;
  font-weight: 500;
  text-transform: uppercase;
}

.para {
  font-size: 14px;
  font-weight: 400;
  text-align: justify;
  color: #000000;
}

.form-control {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}

form#mainForm .form-control{
  font-size: 14px;
}

.mainForm_wrapper {
  position: absolute;
  top: 34%;
  width: 300px;
  background-color: rgb(0 0 0 / 63%);
  padding: 15px;
  right: 2%;
  z-index: 99;
}

form#mainForm label.form-check-label {
  color: #fff;
  font-size: 12px;
}

.mainForm_wrapper form#mainForm button.btn.btn-primary,
#submitButtonOther {
  background: rgb(143, 41, 139);
  background: linear-gradient(90deg, rgba(143, 41, 139, 1) 16%, rgba(42, 35, 98, 1) 58%);
  border: 0;
  width: 100%;
  height: 40px;
}

form#mainForm h3.form-head {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 15px;
}

.form-control.error-border {
  border-color: #ff0000;
}

.error-message {
  color: #ff0000;
  font-size: 14px;
}

.form-group.d-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

div#myModal .modal-dialog {
  max-width: 350px;
}

span#captchaDisplay {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 5px 10px;
}

input#captchaInput {
  width: 40%;
}

.form-group.d-flex .error-message {
  position: absolute;
  bottom: -25px;
}

#mainForm .form-group.d-flex lable {
  color: #fff;
  font-size: 12px;
}

#mainForm .error-message {
  display: none;
}

form .form-group {
  margin-bottom: 10px;
}

span#captchaDisplay2 {
  background-color: #fff;
  padding: 5px;
  font-weight: 600;
}

/* Popup Form */
#popupForm .form-check-label {
  font-size: 12px;
  margin-bottom: 15px;
}



/* Quick Overview */
section#quick-overview {
  background-color: #272361;
}

ul.quick-overview-list {
  display: flex;
  justify-content: space-between;
}

ul.list-unstyled.quick-overview-list {
  margin-bottom: 0;
}

ul.quick-overview-list li {
  text-align: center;
  color: #fff;
}

ul.quick-overview-list li p {
  font-weight: 300;
  line-height: 20px;
}

ul.quick-overview-list li figure.border-bottom {
  padding-bottom: 15px;
  margin-bottom: 14px;
  transition: 0.5s;
}

ul.quick-overview-list li:hover figure.border-bottom {
  transform: translateY(-10px);
  transition: 0.5s;
}



/* About  */
section#about .content-wrapper.border-left {
  position: relative;
}

section#about .content-wrapper.border-left:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-left: 1px solid #666;
}


/* Amenities */
#amenities .accordion {
  display: flex;
  align-items: stretch;
  height: 480px;
  background-color: #eee;
}

#amenities .accordion-slide {
  position: relative;
  padding-left: 50px;
  max-width: 50px;
  width: 100%;
  background-color: #777;
  background-repeat: no-repeat;
  background-size: cover;
  transition: max-width 0.3s, max-height 0.3s;
}

#amenities .accordion-slide__label {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50px;
  display: flex;
  padding-top: 38%;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  transition: background-color 0.3s;
  cursor: pointer;
  user-select: none;
  color: #000;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  background-color: rgb(255 255 255 / 73%);
  justify-content: flex-start;
  align-items: center;
  border-right: 2px solid #666;
}

#amenities .accordion-slide.active .accordion-slide__label {
  border-color: #832886;
}

#amenities .accordion-slide.active {
  max-width: 1404px;
  background-color: #ccc;
}

#amenities .accordion-slide.active .accordion-slide__label {
  background-color: #832886;
  color: #fff;
}

#amenities .accordion-slide.active .accordion-slide__content {
  display: flex;
}

#amenities .accordion-slide__content {
  display: none;
  margin: 7% 4%;
  padding: 15px 15px;
  max-width: fit-content;
  opacity: 1;
  transition: opacity 3s;
  background-color: rgb(255 255 255 / 69%);
  border-radius: 15px;
}

#amenities .accordion-slide__content ul {
  margin-bottom: 0;
}

#amenities .accordion-slide__content ul li {
  font-size: 14px;
  margin-bottom: 5px;
}

@media(max-width: 767px) {
  #amenities .accordion-slide {
    padding-left: 30px;
    max-width: 30px;
  }

  #amenities .accordion-slide__label {
    width: 30px;
    font-size: 14px;
  }

  #amenities .accordion-slide__content ul {
    padding: 0 10px;
  }

  #amenities .accordion-slide__content ul li {
    font-size: 11px;
    line-height: 14px;
  }
}

/* Connectivity */

section#connectivity {
  background-color: #272361;
  padding: 3em 0;
  color: #fff;
}

section.key-distance {
  background-color: #fff;
}

h2.key-distance-title {
  position: relative;
  color: #272361;
  font-size: 28px;
  /*     font-weight: 700; */
}

h2.key-distance-title:before {
  background-color: #272361;
  bottom: 8px;
  content: "";
  height: 1px;
  left: auto;
  position: absolute;
  right: 0;
  top: auto;
  width: 83%;
}

.key-distance .accordion-item {
  background: transparent;
  border: 0;
}

.key-distance button.accordion-button {
  color: #272361;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
}

.key-distance .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  transition: all 0.5s;
  color: #272361 !important;
  margin-left: unset !important;
}

.key-distance .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
  color: #272361 !important;
}

.key-distance .accordion-button::after {
  transition: all 0.5s;
}

.key-distance .accordion-button:not(.collapsed) {
  background-color: transparent;
  border: 0;
  box-shadow: none;
  color: #272361 !important;
}

.key-distance .accordion-button:focus {
  box-shadow: none;
}

.key-distance .accordion-body ul {
  padding: 0;
}

.key-distance .accordion-body ul li {
  font-size: 13px;
  margin-bottom: 8px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
  /* background: rgb(140,43,145);
background: linear-gradient(90deg, rgba(140,43,145,1) 0%, rgba(82,97,184,1) 43%, rgba(11,163,231,1) 79%); */
  padding: 90px 0 50px;
  color: #000;
}

.col.footer-logo {
  max-width: fit-content;
}


.footer- img {
  width: 112px;
}

.footer- a img {
  width: 115px;
}

footer h3 {
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: 700;
}

.footer- p {
  text-align: center;
  padding: 25px 0 0;
  font-size: 15px;
  font-weight: 500;
  color: #000;
}

.footer- a {
  display: block;
  margin: 0 0 25px;
}

.footer-block {
  padding: 20px 0;
}

.social-links {
  text-align: right;
}

.social-links a {
  color: #0a2233;
  font-size: 25px;
  line-height: 1;
}

.footer-address-list li i {
  margin: 0 5px 0 0;
}

.copyright {
  border-top: 1px solid #13334a;
  margin-top: 45px;
}

ul.footer-address-list.list-unstyled {
  display: flex;
  flex-wrap: wrap;
}

.footer-address-list li {
  font-size: 14px;
  text-indent: -12px;
  padding-left: 25px;
  line-height: 24px;
  margin-bottom: 10px;
}
footer .col-lg-4.contact {
  padding-left: 3em;
}


.footer-social-media-icons a {
  color: #fff;
  font-size: 16px;
  border: 1px solid #cacaca;
  border-radius: 4px;
  margin: 0 2px;
  width: 35px;
  height: 35px;
  display: inline-block;
  text-align: center;
  line-height: 34px;
}

.footer-social-media-icons a.facebook {
  background: #0069f7;
  border-color: #0069f7;
}

.footer-social-media-icons a.youtube {
  background: #FF0000;
  border-color: #FF0000;
}

.footer-social-media-icons a.instagram {
  background: #E4405F;
  border-color: #E4405F;
}

.footer-social-media-icons a.linkedin {
  background: #0e72a3;
  border-color: #0e72a3;
}

.footer-address-list li a {
  color: #fff;
}

p.Disclaimer-text {
  padding-top: 3em;
  font-size: 11px;
  line-height: 18px;
}


.qr-rera-wrapper {
  width: 320px;
  float: right;
}

.qr-rera-wrapper .d-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-rera-wrapper figure {
  margin: 0;
}

.qr-rera-wrapper figure img {
  width: 100%;
}

.qr-rera-wrapper .qr-code p {
  font-size: 7px;
  margin: 0;
  width: 78px;
  margin-left: 5px;
  line-height: 13px;
  font-weight: 600;
}