/**********************media query********************/

@media screen and (min-width: 768px) {
  .banner-main-sec > img {
    width: 100%;
    /* max-width: 60%; */
    object-fit: cover;
  }
  .owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent!important;
  }
  .expectation-carousel.owl-theme .owl-nav button,
  .plan-tab-carousel.owl-theme .owl-nav button {
    position: absolute;
    top: 50%;
    margin-top: -25px;
    width: 50px;
    height: 50px;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .expectation-carousel.owl-theme .owl-nav button span,
  .plan-tab-carousel.owl-theme .owl-nav button span {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    transition: all ease-in-out 0.35s;
  }
  .plan-tab-carousel {
    overflow: hidden;
  }

  .expectation-carousel .owl-nav button.owl-prev {
    left: 20px;
  }

  .expectation-carousel .owl-nav button.owl-next {
    right: 20px;
  }
  .plan-tab-carousel .owl-nav button.owl-prev {
    left: 36px;
  }

  .plan-tab-carousel .owl-nav button.owl-next {
    right: 36px;
  }
  .expectation-carousel .owl-nav button.owl-prev span,
  .plan-tab-carousel .owl-nav button.owl-prev span {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
  }

  .expectation-carousel .owl-nav button.owl-next span,
  .plan-tab-carousel .owl-nav button.owl-next span {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight;
  }

  .expectation-carousel .owl-nav button.owl-prev.active span,
  .plan-tab-carousel .owl-nav button.owl-prev.active span {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
  }
  .expectation-carousel .owl-nav button.owl-next.active span,
  .plan-tab-carousel .owl-nav button.owl-next.active span {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
  }
  .expectation-carousel .owl-nav button::before,
  .plan-tab-carousel .owl-nav button::before {
    content: '';
    position: absolute;
    width: 48px;
    height: 48px;
    display: block;
    border-radius: 50%;
    transform: scale(1.2);
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.35s ease-in-out;
    /* transition-delay: 2s; */
  }
  .expectation-carousel .owl-nav button::before {
    border: 1px solid #fff;
  }
  .plan-tab-carousel .owl-nav button::before {
    border: 1px solid #000;
  }
  .expectation-carousel .owl-nav button.active::before,
  .plan-tab-carousel .owl-nav button.active::before {
    clip-path: inset(0 0 0 0);
  }

  .expectation-carousel .owl-nav button span,
  .plan-tab-carousel .owl-nav button span {
    position: relative;
    width: 33px;
    height: 1px;  /* Arrow thickness */
    font-size: 0;
    transition: width 0.4s ease-out, transform 0.4s ease-out; /* Animation for length and direction */
    display: block;
  }
  .expectation-carousel .owl-nav button span {
    background-color: #fff;
  }
  .plan-tab-carousel .owl-nav button span {
    background-color: #000;
  }

  /* Arrow head */
  .expectation-carousel .owl-nav button span::before, .expectation-carousel .owl-nav button span::after,
  .plan-tab-carousel .owl-nav button span::before, .plan-tab-carousel .owl-nav button span::after {
      content: '';
      position: absolute;
      top: -5px;
      width: 0;
      height: 0;
      border-top: 5px solid transparent;
      border-bottom: 5px solid transparent;
  }

  /* Left arrow (previous button) */
  .expectation-carousel .owl-nav button.owl-prev span::before {
    border-right: 10px solid #fff;
    left: -4px;
  }
  .plan-tab-carousel .owl-nav button.owl-prev span::before {
    border-right: 10px solid #000;
    left: -4px;
  }

  /* Right arrow (next button) */
  .expectation-carousel .owl-nav button.owl-next span::after {
    border-left: 10px solid #fff;
    right: -4px;
  }
  .plan-tab-carousel .owl-nav button.owl-next span::after {
    border-left: 10px solid #000;
    right: -4px;
  }

  /* Hover effect for expanding arrow */
  .expectation-carousel .owl-nav button.owl-prev:hover span,
  .expectation-carousel .owl-nav button.owl-next:hover span,
  .plan-tab-carousel .owl-nav button.owl-prev:hover span,
  .plan-tab-carousel .owl-nav button.owl-next:hover span {
    width: 100px;  /* Expand the width when hovering */
  }

  /* Arrow-prev */
  .expectation-carousel .owl-nav button.owl-prev:hover span,
  .plan-tab-carousel .owl-nav button.owl-prev:hover span {
    left: -20px; /* Move left */
  }

  /* Arrow-next */
  .expectation-carousel .owl-nav button.owl-next:hover span,
  .plan-tab-carousel .owl-nav button.owl-next:hover span {
    right: -20px;  /* Move right */
  }

  /* Optional: Animation to reset width */
  /* .expectation-carousel .owl-nav button span {
      animation: resetWidth 1s ease-out infinite;
  }

  @keyframes resetWidth {
      0% {
          width: 0;
      }
      100% {
          width: 50px;
      }
  } */
}
@media screen and (min-width: 992px) {
  .nav-links li:not(.header-btn-menu) a{
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, #0b4d8a, #1968b3 50%, #000 50%);
    background-size: 200% 100%;
    background-position: -100%;
    transition: all 0.3s ease-in-out;
  }
  .nav-links li:not(.header-btn-menu) a:hover,
  .nav-links li:not(.header-btn-menu) a.active {
    background-position: 0;
  }
}

@media screen and (max-width: 1380px) {

  .container{max-width: 100%;}

}

@media screen and (max-width: 1365px) {

  .header-btn-menu a{padding: 10px 46px 10px 25px;}
  .header-btn-menu a:before{top:16px;}
.enquiry-form-wrap .form-group{width: calc(30% - 38px);}
.li-txt h2 a, .li-txt h2, .footer-top-sec ul li:last-child .li-txt h2 a{font-size: 16px; line-height: 17px;}
.li-txt h2 span, .li-txt p{font-size: 12px;}
.li-img{width: 42px;}
.li-txt{width: calc(100% - 55px);}
footer{padding: 35px 0 0 0;}
.footer-top-sec{padding: 0 0 35px 0;}
.footer-txt-sec{padding: 35px 0;}
.connect-sec, .expectation-sec, .developer-sec, .skyline-sec{padding: 50px 0;}
.connect-sec-wrap{padding: 40px;}
.connect-sec-wrap h2{font-size: 32px; line-height: 36px;}
.common-h2{font-size:38px; line-height: 40px;}
.location-box-sec{padding: 30px 0 30px 30px;}
ul.tabs li{font-size: 15px; margin: 0 30px 0 0;}
.banner-main-sec::before{padding-left: 30px;}
.banner-txt img{left: -30px;}
.banner-txt h1{font-size: 50px; line-height: 52px;}
.banner-main-sec, .banner-txt{height: 500px;}
.banner-txt{padding-bottom:60px;}
.expectation-box h3, .east-gallery-box h3{font-size: 16px; line-height: 18px; left: 20px; bottom: 20px; right: 20px;}
.expectation-sec-top{padding-bottom: 25px;}
.skyline-box h3{font-size: 16px; line-height: 20px;}
.developer-sec{gap:50px;}
.developer-img-sec{width: 30%;}
.developer-txt-sec{width: calc(70% - 50px);}
ul.developer-tab li{margin: 0 40px 0 0;}
.east-plan-sec{padding-top: 50px;}
.plan_content img{max-width: calc(100% - 140px);}
.east-gallery-wrap{padding-top: 25px;}

}



@media screen and (max-width:1200px) {

.header-logo-sec{width: 25%;}
.header-menu{width: 75%;}
.nav-links li{padding: 0 0 0 30px;}


}

@media screen and (max-width: 1024px) {

.nav-links li a{font-size: 15px;}
.enquiry-form-wrap{display: block;}
.enquiry-form-wrap h2{font-size: 30px; line-height: 36px; padding: 0 0 25px 0; width: 100%;}
.enquiry-form-wrap form{width: 100%;}
.enquiry-form-wrap .form-group-btn{width: 152px !important;}
.footer-top-sec ul li{display: block;}
.li-txt{width: 100%; padding: 10px 0 0 0;}
.footer-top-sec ul{align-items: flex-start;}
.footer-bottom-sec .container{display: block;}
.footer-bottom-txt{font-size: 12px; padding: 10px 0 0 0;}
.connect-sec-wrap h2{font-size: 26px; line-height: 32px;}
.banner-main-sec::before{width: 50%;}
.banner-txt{width: 50%;}
.banner-txt h1{font-size: 40px; line-height: 42px;}
.banner-main-sec, .banner-txt{height: 100%; min-height: 450px;}
.common-h2{font-size: 30px; line-height: 32px; padding: 0 0 10px 0;}
.expectation-carousel .owl-nav{top: -90px;}
.skyline-sec-top p{max-width: 100%;}
.skyline-sec-top{padding-bottom: 30px;}
.skyline-wrap{gap:16px;flex-wrap: wrap;}
.skyline-box{width: calc(25% - 12px);}
.developer-txt-sec{width: calc(70% - 30px);}
ul.developer-tab li{margin: 0 20px 0 0; font-size: 15px;}
ul.developer-tab li:last-child{margin: 0;}
.developer-sec{gap:30px;}
ul.tabs li:last-child{margin: 0;}
ul.tabs li{font-size: 14px; margin: 0 16px 0 0;}
.tab_content ul li h3{font-size: 18px; line-height: 20px;}
.tab_content ul li p{font-size: 14px; line-height: 16px;}
.tab_content ul li{padding-bottom: 20px;}
.tab_content ul{padding-top: 20px;}
.location-map-txt{max-width: 260px; padding: 20px;}
.location-map-txt h3{font-size: 18px; line-height: 20px; padding: 0 0 5px 0;}
.location-map-txt p{font-size: 14px; line-height: 20px;}
.east-gallery-wrap{padding-top: 20px;}
.plan_content .owl-nav .owl-prev{position: relative; left: auto; top: auto; transform: none;}
.plan_content .owl-nav .owl-next{position: relative; right: auto; top: auto; transform: none;}
.plan_content img{max-width: 100%;}


}

@media screen and (max-width: 991px) {

/* .header-menu-sec{
  padding: 10px 0;
  min-height: 52px;
} */
.nav-links li{padding: 0 30px;}

  .header-menu .btn {
    display: block;
    /* height: 32px; */
  }
.header-menu .btn img{
  float: right;
}
  .header-menu .nav-links {
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background:#072654;
    display: block;
    padding: 90px 10px 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
    z-index: 9;
  }

  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }

  ::-webkit-scrollbar-track {
    background: #242526;
  }

  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }

  #menu-btn:checked~.nav-links {
    left: 0%;
  }

  #menu-btn:checked~.btn.menu-btn {
    display: none;
  }

  #close-btn:checked~.btn.menu-btn {
    display: block;
  }

  .nav-links li {
    margin: 0;
  }

  .nav-links li a {
    padding: 0;
    display: block;
    font-size: 16px;
    color: #fff;
    padding: 10px 0;
    border-bottom: solid 1px rgba(244,244,244,0.3);
  }


  .nav-links li.header-btn-menu{margin-top: 20px;}

  .nav-links .drop-menu {
    position: relative;
    opacity: 1;
    top: 0;
    visibility: visible;
    padding: 10px 0 0 5px;
    width: 100%;
    max-height: 100%;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
    background: none;
  }
.header-btn-menu a:before{display: none;}
.nav-links li.header-btn-menu a{display: inline-block; padding: 10px 25px; border-color: #fff;}
header{position: relative !important;}

}



@media screen and (max-width: 767px) {

.container{padding: 0 20px;}
header {position: fixed !important;min-height: 64px;}
.header-logo-sec{width:60%;}
.header-menu{width: 40%;}
.enquiry-form-wrap .form-group{width: 100%;}
.enquiry-form-wrap .form-group-btn:before{right: 20px;}
.enquiry-form.bottom-enquiry-form{background-position: center center;}
.footer-top-sec ul{display: block;}
.footer-top-sec ul li:nth-child(2n){padding: 20px 0;}
.connect-sec-wrap{display: block; padding: 30px;}
.connect-sec-wrap h2{font-size: 28px; line-height: 32px; width: 100%; padding:0 0 20px 0;}
.banner-main-sec::before{display: none;}
.banner-txt{
  width: 100%;
  padding: 0 20px 40px 20px;
  height: auto;
  min-height: auto;
  background-size: cover;
  text-align: left;
  align-items: start;
  position: absolute;
  left: 0;
  z-index: 1;
  bottom: 0;
  background: rgb(12, 47, 98);
  background: linear-gradient(0deg, rgba(12, 47, 98, 0.6531862745098039) 0%, rgba(12, 47, 98, 0) 100%);
}

.banner-main-sec{background: none; display: block;}
.banner-txt h1{font-size: 26px; line-height: 32px; padding:0 0 6px 0;color: #fff;}
.banner-txt p {color: #fff;}
.mob-view{display: block;height: 100dvh;object-fit: cover;}
.banner-main-sec, .banner-txt{min-height: auto;}
.banner-txt img{position: relative; top:auto; left: auto; padding-bottom: 20px;width: 97px;}
.expectation-carousel .owl-nav{top: auto; position: relative; margin-top: 10px;}
.common-h2{font-size: 24px; line-height: 28px;}
/* .connect-sec, .expectation-sec, .developer-sec, .skyline-sec{padding: 35px 0;} */
.location-sec{display: block;}
.location-map-sec{width: 100%;}
.location-box-sec{width: 100%;padding: 20px 20px 35px 20px;}
.location-map-txt{max-width: 280px; padding: 20px;}
.location-map-txt h3{font-size: 18px; line-height: 22px; padding: 0 0 5px 0;}
.location-tab{overflow: hidden;}
.skyline-box{width: calc(50% - 8px);}
.skyline-wrap{margin-bottom: 30px;}
.developer-sec{display: block;}
.developer-txt-sec{width: 100%; padding-right: 20px; overflow: hidden;}
.developer-img-sec{width: 100%; margin-top: 40px;}
ul.developer-tab li{margin-right: 14px;}
.developer-img-sec img{border-radius: 0;}
.developer-sec{padding-bottom: 0;}
.east-gallery-wrap{padding:10px 20px 0 20px;}
.east-gallery-carousel .owl-nav{display: block !important;}
.east-gallery-carousel .owl-nav .owl-prev{background: url(../images/theme/frontend/images/prev-arrow.svg)left top no-repeat !important; width: 30px; height: 30px; background-size: 100% !important;}
.east-gallery-carousel .owl-nav .owl-next{background: url(../images/theme/frontend/images/next-arrow.svg)left top no-repeat !important; width: 30px; height: 30px; background-size: 100% !important;}
.east-gallery-carousel .owl-nav .owl-prev span, .east-gallery-carousel .owl-nav .owl-next span{font-size: 0;}
ul.plan-tab{margin-bottom: 20px;}
ul.plan-tab li{font-size: 15px;}
.location-sec .location-map-sec img{height:auto !important;}
.skyline-sec:before{opacity: 0.4;}
.skyline-sec-top {
  text-align: left;
}
.enquiry-form-wrap h2 {
  font-size: 22px;
  line-height: 30px;
  padding: 0 0 10px 0;
}

.expectation-carousel .owl-nav{display: block !important; margin: 0;}

.expectation-carousel .owl-nav .owl-prev,.plan-tab-carousel .owl-nav .owl-prev{background: url(../images/theme/frontend/images/prev-arrow.svg)left top no-repeat !important;background-size: 100% !important; width: 30px; height: 30px;}

.expectation-carousel .owl-nav .owl-next,.plan-tab-carousel .owl-nav .owl-next{background: url(../images/theme/frontend/images/next-arrow.svg)left top no-repeat !important;background-size: 100% !important; width: 30px; height: 30px;}

.expectation-carousel .owl-nav .owl-prev span, .expectation-carousel .owl-nav .owl-next span{font-size: 0;}

.expectation-carousel .owl-prev.active, .expectation-carousel .owl-next.active {
    background-color: rgba(0, 0, 0, 0.7) !important;
    color: white !important;
    transform: scale(1.2);
    transition: all 0.3s ease-in-out;
	border-radius: 50%;
}
/* .banner-main-sec > img {
  height: 100dvh;
  object-fit: cover;
} */
}



@media screen and (max-width: 480px) {
	.tabs, .plan-tab, .developer-tab{
		display: none;
	}
	.tab_drawer_heading {
		color: #fff;
		margin: 0;
		padding: 15px 0;
		display: block;
		cursor: pointer;
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		-khtml-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
    font-size: 18px;
    font-weight: 400;
    border-bottom: solid 1px #8DA2C3;
	}
	.d_active {
		color: #fff;
	}
.tab_container{padding: 0;}
.tab_content{padding-top: 20px;}
.tab_content ul{padding: 0;}
.tab_content ul li h3{font-size: 18px; line-height: 22px;}
.tab_content ul li p{font-size: 14px; line-height: 16px;}
.tab_content ul li{padding-bottom: 20px;}

.developer-tab {
  display: none;
}

/* .skyline-box{width:100%;} */
.developer-txt-sec .d_active{color: #072654; font-weight: 600;}
.developer-txt-sec .tab_drawer_heading{color: #3E4959;}
.east-plan-tab .tab_drawer_heading{display: none;}
.developer-tab-content ul{padding-top: 20px;}
.skyline-box .skyline-box-inner {
  border-radius: 10px;
  padding: 10px;
}
.skyline-box .hover-layout {
  padding: 10px;
}
.skyline-box h3 {
  font-size: 12px;
}
.skyline-box:hover .hover-layout img, .skyline-box .front-box img {
  width: 44px;
}
.connect-sec, .expectation-sec, .skyline-sec {
  padding: 20px 0;
}
.developer-sec {
  padding: 20px 0 0;
}
.east-plan-sec {
  padding-top: 20px;
}
ul.plan-tab {
  margin: 20px auto;
}
ul.plan-tab li {
  padding: 10px 18px;
}
.tab_drawer_heading {
  position: relative;
  padding-right: 30px;
}
.tab_drawer_heading::before,
.tab_drawer_heading::after {
  content: '';
  background-color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.tab_drawer_heading::before {
  width: 2px;
  height: 14px;
  right: 6px;
  transition: height ease-in-out 0.35s;
}
.tab_drawer_heading.d_active::before {
  height: 0px;
}
.tab_drawer_heading::after {
  width: 14px;
  height: 2px;
  right: 0;
}
.developer-txt-sec .tab_drawer_heading::before,
.developer-txt-sec .tab_drawer_heading::after {
  background-color: #072654;
}
.enquiry-form {
  padding: 20px 0 27px;
}
.connect-sec-wrap {
  padding: 20px 10px;
  text-align: center;
}
.connect-sec-wrap h2 {
  font-size: 22px;
}
.connect-sec-wrap .common-btn {
  margin: 0 auto;
}
}


/**/
