* {
    padding: 0;
    margin: 0;
}
a,
a:hover,
a:focus {
    text-decoration: none;
    outline: none;
    border: 0;
}
ul {
    list-style: none;
}
.btn.focus,
.btn:focus {
    outline: 0;
    box-shadow: none;
}
:focus {
    text-decoration: none;
    outline: none;
    border: 0;
}
img:focus {
    text-decoration: none;
    outline: none;
}
button:focus {
    outline: 1px dotted;
    outline: 0;
}
body {
    font-family: "Vend Sans", Sans-serif;
    color: #606060;
    font-size: 16px;
    line-height: 1.8;
    background: #f7f3ed;
}
h1,
h2,
h3 {
    font-family: "Space Grotesk", Sans-serif;
}
.heading {
    font-size: 3.75rem;
    line-height: 70px;
    letter-spacing: -0.03em;
    font-weight: 400;
    color: #393838;
}
.heading span {
    font-weight: 200;
}
.top-btn {
    margin-top: 10px;
}
nav.navbar-expand-lg {
    z-index: 999;
}
nav.navbar-expand-lg.navbar-light.fixed {
    background: #f6f6f6;
    box-shadow: 10px 10px 10px #b7b7b721;
    -webkit-animation: slide-down 1s;
    animation: slide-down 1s;
}
@-webkit-keyframes slide-down {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        opacity: 0.9;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes slide-down {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        opacity: 0.9;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
.navbar-brand {
    width: 130px;
    margin: 0px 0 0 20px;
}
.navbar-brand img {
    width: 100%;
}
nav .rightnav {
    margin-right: 0px;
}
.product-itemtext {
    background: #264357;
    display: flex;
    align-items: center;
    height: 100%;
    color: #fff;
    padding: 100px 30px;
    overflow: hidden;
}
.header-bg {
    display: flex;
    align-items: center;
    margin: 15px 0;
    width: 100%;
}
.header-bg2 {
    background: #ffffff0f;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    border-radius: 10px;
    width: 100%;
    transition: 0.5s;
}
.header-bg2 .navbar-collapse {
    justify-content: end !important;
}

/* .header-bg2.scrolled .nav-link,
.header-bg2:hover .nav-link {
    opacity: 1;
    color: #063f5a;
} */

.nav-link {
    transition: opacity 0.3s ease;
}

#modal_drawer_right .modal.show .modal-dialog{
	padding:0px !important;
	margin:0px !important;
	border:0px !important;
}
#modal_drawer_right .modal-dialog{
	padding:0px !important;
	margin:0px !important;
	border:0px !important;
	height:100%;
}
#modal_drawer_right .modal-content{	
	border:0px !important; 
	border-radius:0px !important;
	height:100%;
	max-width: 320px;
}
#offcanvasTpmenu{
	max-width:320px;
}
.offcanvas-title{
	    border-bottom: 1px solid #013b5c;
}
.offcanvas-body .nav-link{
	color:#000000;
}
/***********/
/* General Reset */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: sans-serif; }

.mobile-nav {
  color: #000;
  padding: 0px;
  position: relative;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* Hide Checkboxes */
.menu-checkbox, .sub-checkbox { display: none; }

/* Hamburger Icon */
.hamburger {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.3s;
}

/* Main Menu List */
.nav-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  list-style: none;
  padding-left: 0px;
  display:flex;
  flex-direction: column;
}

.nav-list li { border-bottom: 1px solid #dce0e3; }
.nav-list li:last-child {
  border-bottom: none;
}
.nav-list li a, .sub-label {
  display: block;
  padding: 10px 4px;
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/* Submenu Styling */
.submenu, .submenu-inner{
	padding: 0px 10px;
}
.submenu, .submenu-inner {
  list-style: none;
  display: none; /* Hidden */
}
.submenu-inner {  }

/* Logic to Show Menus when Checked */
#menu-toggle:checked ~ .nav-list { display: flex; }
.sub-checkbox:checked ~ .submenu, 
.sub-checkbox:checked ~ .submenu-inner { display: block; }

/* Arrow Icon Animation */
.arrow {
  border: solid #000;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  float: right;
  transform: rotate(45deg);
  transition: 0.3s;
}
.sub-checkbox:checked + .sub-label .arrow {
  transform: rotate(-135deg);
}

/* Hamburger to Cross Animation */
#menu-toggle:checked + .hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
#menu-toggle:checked + .hamburger span:nth-child(2) { opacity: 0; }
#menu-toggle:checked + .hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }


.sub-checkbox:checked + .sub-label {
    background: linear-gradient(6deg, #0c4ca3 16.43%, #013b5c 87.65%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.sub-checkbox:checked + .sub-label .arrow {
    background: linear-gradient(6deg, #cfe5ff 16.43%, #013b5c 87.65%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.submenu li a, 
.submenu-inner li a {
    color: #000 !important; 
    font-weight: normal;
}

/* .nav-list li a:hover, .sub-label:hover {
    background: linear-gradient(6deg, #0c4ca3 16.43%, #013b5c 87.65%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
} */

.header-bg2:hover .dropdown-submenu:hover .dropdown-menu li:hover > .nav-link {
    opacity: 1;
} /*****************/

.hover-logo {
    display: none;
}

a.hd-btn {
    width: 155px;
    background: #edc716;
    padding: 15px 25px;
    color: #000;
    margin-left: 15px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    font-weight: 600;
}
a.hd-btn:hover {
    background: #0c4ca3;
    color: #fff;
}
.navigation_black .white-logo {
    display: block;
}
.black-logo {
    display: none;
}
.white-logo {
    display: block;
}
nav.navbar-expand-lg.fixed .white-logo {
    display: none;
}
nav.navbar-expand-lg.fixed .black-logo {
    display: block;
} /*.navigation_black nav.navbar-expand-lg{background:#fff}*/ /* .navigation_black nav.navbar-expand-lg .nav-link {  color: #000;} */
.navbar-expand-lg {
    width: 100%;
    top: 0;
    background: transparent;
    position: absolute; /*border-bottom: 1px solid rgb(0 0 0 / 25%);*/
}
.main-nav {
    width: 65%;
    float: left;
    flex-wrap: wrap;
    position: relative;
}
.navbar-expand-lg .navbar-nav {
    margin-right: 30px;
}
.navbar-expand-lg .nav-link {
    padding: 15px 0px;
    color: #fff;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
}
.dropdown:hover > .dropdown-menu {
    padding-top: 0px;
    padding-bottom: 0px;
	    margin-top: 5px;
}
nav.navbar-expand-lg.fixed .nav-link {
    color: #000;
}
/* nav.navbar-expand-lg.fixed .header-bg2 {
    background: #fff;
} */
nav .nav-item {
    margin-left: 25px;
}
.navbar-expand-lg .first-nav .navbar-nav li:first-child {
    margin-left: 0px;
}
.nav-link:hover {
    color: #edc716;
}
nav.navbar-expand-lg.navbar-light.fixed .nav-link:hover {
    color: #edc716;
}
.navbar-expand-lg .nav-link {
    position: relative;
}
ul.navbar-nav li {
    position: relative;
} /*.navbar-expand-lg .navbar-nav .dropdown-menu {  margin: 0;  padding: 10px 20px;  background: #fff;  border-radius: 10px;  display: block;  position: absolute;  visibility: hidden;  left: 0px;  top: 130%;  opacity: 0;  transition: 0.5s;  border-radius: 0;  border: 0;  z-index: 99;  min-width: 315px;  -webkit-box-shadow: 0px 12px 30px -2px rgba(0, 0, 0, 0.1);  -moz-box-shadow: 0px 12px 30px -2px rgba(0, 0, 0, 0.1);  -o-box-shadow: 0px 12px 30px -2px rgba(0, 0, 0, 0.1);  box-shadow: 0px 12px 30px -2px rgba(0, 0, 0, 0.1);  -webkit-transition: all 0.5s ease-in-out;}ul.navbar-nav li:hover .dropdown-menu {  opacity: 1;  top: 121%;  visibility: visible;}.dropdown-menu li a:hover {  padding-left: 8px !important;  color: #edc716;}.dropdown-menu li {  margin-left: 0;}.dropdown-menu .nav-link {  padding: 10px 0;  text-transform: uppercase;}.dropdown-menu .nav-link {  transition: all 0.8s ease-in-out;  text-transform: capitalize;  border-bottom: 1px solid #ccc;  color: #000;}*/
nav.navbar-expand-lg.fixed .dropdown-menu .nav-link {
    color: #000;
}
.navbar-expand-lg .dropdown-menu .nav-link:after {
    display: none;
}
.dropdown-submenu {
    position: relative;
}
.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -4px;
    display: none;
} /* Desktop hover */

.logo-slider .product-showcase-carousel-controls{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    border-radius: 50%;
    color: #fff;
    background: transparent;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all .3s ease-in-out;
    font-size: 18px;
    z-index: 9;
}
@media (min-width: 992px) {
    .dropdown:hover > .dropdown-menu {
        display: block;
    }
    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }
}
.company-overview p {
    text-align: justify;
} /*.bg-grey{background:#242a4c}*/
.bg-grey {
    /*background: #d6e4f0;*/
    background: #fff;
}
.pad100 {
    padding: 100px 0;
}
.banner {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 0px;
}
.banner-video {
    width: 100%;
    height: 100;
    object-fit: cover;
}
.banner-caption {
    position: absolute;
    width: 100%;
    top: 0;
    height: 100vh;
    display: flex;
    background: #00000063;
    z-index: 9;
    align-items: center;
}
.banner-caption > div {
    margin: 0 auto;
    width: 1200px;
    text-align: center;
    text-transform: uppercase;
    padding-top: 50px;
}
.banner-caption h2 {
    font-size: 65px;
    color: #fff;
    letter-spacing: 1px;
    line-height: 80px;
    margin-bottom: 40px;
    text-transform: uppercase;
    position: relative;
    z-index: 99;
    font-family: "Merriweather", serif;
    font-weight: 400;
}
.banner-caption span {
    color: #edc716;
}
.banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.urban-btn {
    background: #edc716;
    color: #000;
    padding: 10px 30px;
    border-radius: 8px;
    margin-top: 20px;
    display: inline-block;
}
.bg-background {
    background: #0c4ca3;
}
.sub-title {
    position: relative;
    color: #0c4ca3;
    margin-bottom: 40px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    z-index: 9;
}
.number-thumb {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #ccc; /*border-left: 0;  border-right: 0;*/
    margin-top: 60px;
}
.number-box {
    text-align: center;
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
    padding: 40px;
    width: 100%;
}
.about-number .number-box {
    padding: 40px 20px;
}
.number-box span {
    font-size: 55px;
    color: #0c4ca3;
    font-weight: 500;
    font-family: 'Vend Sans';
}
.brd-left {
    border-left: 0;
}
.brd-bottom {
    border-bottom: 0;
}
.abt-image {
    overflow: hidden;
    margin-top: 60px;
    padding-right: 70px;
}
.luvestinner-img {
    overflow: hidden;
    border-radius: 20px;
}
.abt-image-inner,
.luvest-thumb,
.vision-img{
    overflow: hidden;
    border-radius: 20px;
}
.abt-image:hover .abt-image-inner img,
.luvest-thumb:hover .luvestinner-img img,
.vision-thumb:hover .vision-img img,
.img-zoom-out:hover img {
    /* -webkit-filter: none;  filter: none;*/
    -webkit-transform: scale(1.09, 1.09);
    transform: scale(1.09, 1.09);
    -webkit-filter: brightness(70%);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}
.border-radius-10 {
    border-radius: 10px;
}

.border-radius-20 {
    border-radius: 20px;
}

.img-zoom-out {
    overflow: hidden;
}

.img-zoom-out img {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.abt-image img {
    border-radius: 20px;
    height: calc(80vh + 30px);
    object-fit: cover;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.luvest-thumb img {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.product-slider .item {
    overflow: hidden;
    position: relative;
}
.product-slider .item img {
    border-radius: 20px;
    height: 550px;
    object-fit: cover;
}
.project-title {
    position: absolute;
    top: 50px;
    left: 50px;
    z-index: 999;
}
.project-btn {
    position: relative;
    color: #000;
    background: #fff;
    padding: 6px 15px;
    font-weight: 500;
    border-radius: 30px;
    font-size: 13px;
}
.project-btn span {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 15px;
}
.project-btn span:after {
    content: "";
    left: 0;
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: #edc716;
}
.icon-thumb {
    text-align: center;
    border-radius: 10px;
    border: 1px solid #fff;
    padding: 25px;
    margin-top: 30px;
    min-height: 200px;
}
.icon-thumb h5 {
    color: #fff;
    font-size: 14px;
    margin-top: 20px;
    line-height: 22px;
}
.icon-thumb img {
    width: 55px;
} /* ════════════════════════════════════════         SECTION 3 — FEATURED INVESTMENTS      ════════════════════════════════════════ */
.investments-section {
    background: #f9f8f5;
    padding: 72px 64px 80px;
    overflow: hidden;
}
.investments-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeInLeft 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}
.investments-meta .inv-label {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #1d3f6e;
}
.investments-meta .inv-star {
    color: #1d3f6e;
    font-size: 16px;
    display: inline-block;
    animation: starSpin 8s linear infinite;
}
.investments-header {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 56px;
    max-width: 1200px;
}
.investments-heading-col {
    flex: 0 0 auto;
    opacity: 0;
    animation: fadeInLeft 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
} /* .investments-heading-col h2 {        font-family: 'Cormorant Garamond', serif;        font-size: clamp(40px, 5vw, 62px);        font-weight: 400;        color: #1a2a3a;        line-height: 1.08;      }*/
.investments-desc-col {
    flex: 1;
    padding-top: 10px;
    opacity: 0;
    animation: fadeInRight 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.32s forwards;
}
.investments-desc-col p {
    font-size: 14px;
    font-weight: 300;
    color: #444;
    line-height: 1.78;
    max-width: 480px;
    margin: 0 auto;
}
.investments-desc-col p + p {
    margin-top: 14px;
} /* Two cards */
.investments-cards {
    display: flex;
    gap: 16px;
    width: 100%;
    height: 420px;
    opacity: 0;
    animation: fadeInUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}
.inv-card {
    position: relative;
    flex: 1 1 0;
    border-radius: 18px;
    overflow: hidden;
    cursor: none;
    transition: flex 0.85s cubic-bezier(0.76, 0, 0.24, 1);
}
.inv-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: filter 0.85s ease;
    filter: saturate(0.85) brightness(0.88);
}
.inv-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.55) 100%);
    transition: background 0.85s ease;
}
.inv-card-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c9a84c, transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1) 0.08s;
    z-index: 6;
}
.inv-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 26px 28px;
    z-index: 3;
}
.inv-card-location {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}
.inv-card-title-row {
    display: flex;
    align-items: center;
    gap: 14px;
}
.inv-card-title-row h3 {
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    line-height: 1;
    letter-spacing: 1px;
}
.inv-card-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.7);
    width: 0;
    margin: 0;
    transition: width 0.55s cubic-bezier(0.76, 0, 0.24, 1) 0.15s;
}
.inv-card-explore {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 15px;
    letter-spacing: 0px;
    text-transform: capitalize;
    color: #fff;
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity 0.4s ease 0.25s,
        transform 0.4s ease 0.25s;
}
.inv-arrow {
    display: block;
    width: 24px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    position: relative;
}
.inv-arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: -3px;
    width: 6px;
    height: 6px;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    transform: rotate(45deg);
}
.hero-thumbnail {
    height: 100vh;
    position: relative;
}
.hero-thumbnail:after {
    content: "";
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: #00000030;
}
.homebanner-caption {
    height: 100vh;
    position: relative;
    z-index: 2;
    padding: 0 50px;
}
.homebanner-caption .left-part {
    width: 610px;
    margin: 0;
    position: absolute;
    bottom: 60px;
    line-height: 80px;
}
.homebanner-caption span {
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
    line-height: 20px;
    letter-spacing: 0.5px;
}
.homebanner-caption h2 {
    font-size: 75px;
    color: #fff;
    text-transform: uppercase;
    line-height: 80px;
}
.right-text {
    width: 300px;
    position: absolute;
    right: 0;
    bottom: 100px;
}
.right-text p {
    color: #fff;
    font-size: 22px;
    line-height: 30px;
}
a.banner-btn {
    background: #fff;
    border-radius: 8px;
    color: #000;
    padding: 12px 25px;
    display: inline-block;
    margin-top: 10px;
    transition: all ease-in-out 0.8s;
}
a.banner-btn:hover {
    background: #0c4ca3;
    color: var(--white);
}
.projects-wrapper {
    position: relative;
    margin-top: 50px;
} /* Each card */
.project-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff /*#d6e4f0*/; /* margin-bottom: 100px;*/
    position: sticky;
    top: 100px;
    padding: 0px;
    border-radius: 20px; /*box-shadow: 0 10px 30px rgba(0,0,0,0.1);*/
    transition: all 0.5s ease;
} /* Left Right */
.project-left,
.project-right {
    width: 50%;
}
.card-content {
    padding: 53px 80px;
}
.card-content h3 {
    font-size: 40px;
    color: #000;
    margin-bottom: 25px;
}
.card-content span {
    color: #0c4ca3 /*#edc716*/;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
}
.card-content p {
    margin-bottom: 0; /*opacity: 0.7;*/
    color: #000;
}
a.card-btn {
    background: #0c4ca3;
    padding: 12px 25px;
    color: #fff;
    font-size: 15px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 25px;
} /*.blue-bg{background:#0C4CA3}*/
.project-box img {
    width: 100%;
}
.left-radius {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}
.right-radius {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
} /* Overlap effect depth */
.project-box:nth-child(1) {
    z-index: 1;
}
.project-box:nth-child(2) {
    z-index: 2;
}
.project-box:nth-child(3) {
    z-index: 3;
}
.project-box:nth-child(4) {
    z-index: 4;
}
.project-box:nth-child(5) {
    z-index: 5;
}
.project-box:nth-child(6) {
    z-index: 6;
}
.project-box:nth-child(7) {
    z-index: 7;
}
.project-box:nth-child(8) {
    z-index: 8;
}
.project-box:nth-child(9) {
    z-index: 9;
}
.project-box:nth-child(10) {
    z-index: 10;
}
.project-box:nth-child(11) {
    z-index: 11;
}
.project-box:nth-child(12) {
    z-index: 12;
}
.project-box:nth-child(13) {
    z-index: 13;
}
.project-box:nth-child(14) {
    z-index: 14;
}
.project-box:nth-child(15) {
    z-index: 15;
}
.project-box:nth-child(16) {
    z-index: 16;
}
.project-box:nth-child(17) {
    z-index: 17;
}
.project-box:nth-child(18) {
    z-index: 18;
}
.project-box:nth-child(19) {
    z-index: 19;
}
.project-box:nth-child(20) {
    z-index: 20;
}
.project-box:nth-child(21) {
    z-index: 21;
}
.project-box:nth-child(22) {
    z-index: 22;
}
.project-box:nth-child(23) {
    z-index: 23;
}
.project-box:nth-child(24) {
    z-index: 24;
}
.project-box:nth-child(25) {
    z-index: 25;
}
.news-thumb {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    border: 1px solid rgba(10, 22, 40, 0.06);
    transition: all 0.3s;
    margin-top: 30px;
}
.news-thumb {
    border: 1px solid #ccc;
    padding: 20px;
    display: flex;
}
.date {
    width: 150px;
    text-align: center;
    margin-right: 40px;
}
.date strong {
    font-size: 70px;
    display: block;
    line-height: 80px;
    color: #0c4ca3;
}
.news-details h4 {
    font-size: 20px;
    margin-bottom: 35px;
    color: #000;
}
.news-details p {
    margin-bottom: 0;
    font-size: 14px;
}
.footer .container {
    position: relative;
    z-index: 5;
}
.footer {
    /*padding: 100px 0 40px;*/
    position: relative;
}
/*.footer:after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*}*/
/*.footer:after {*/
/*    background: #0000004d #000000bf #00000066;*/
/*}*/
.ft-address p {
    margin: 0;
    font-size: 15px;
    color: #7e7c7c;
}
.marge-contact {
    display: flex;
}
.footer-contact {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
}
.footer-img img {
    border-radius: 15px;
    width: 100px;
    margin-right: 0;
}
.contact-left {
    margin: 0;
    width: 400px;
}
.footer-img {
    margin-right: 0;
}
.contact-left h5 {
    text-transform: uppercase;
    font-size: 15px;
}
.contact-left h4 {
    font-size: 25px;
    color: #474747;
    font-family: "Space Grotesk", Sans-serif;
}
.footer-cnt {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}
.footer-cnt .tel {
    margin-left: 0;
    color: #000;
}
.footer-cnt .email {
    margin-right: 0;
    border-bottom: 1px solid #ccc;
    color: #000;
}
.social-media {
    margin: 0 auto;
    display: block;
}
.footer-emial {
    margin-right: 0;
    color: #000;
    text-align: center;
}
.bottom-footer {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    margin-top: 45px;
}
.copy-menu a {
    color: #7e7c7c
}
.circle {
    width: 60px;
    height: 60px;
    margin-right: 0;
}
.ft-inner h6 {
    font-size: 22px;
    margin: 20px 0 30px;
    color: #4b4a4a;
    position: relative;
    text-transform: uppercase;
    font-family: "Space Grotesk", Sans-serif;
} /*.ft-inner h6:after{content:'';left:0;position:absolute;bottom:-8px;width:35px;height:1px;background:#818080}*/
.ft-inner ul {
    padding: 0;
    margin: 0;
}
.ft-inner ul li a {
    font-weight: 400;
    font-size: 15px;
    color: var(--bs-nav-link-disabled-color);
    margin-bottom: 10px;
    letter-spacing: 1px;
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
    line-height: 20px;
    display: inline-block;
}
.ft-inner a {
    color: var(--bs-nav-link-disabled-color);
}
.social-media i {
    color: #7e7c7c;
    font-size: 20px;
    margin-right: 15px;
}
.copy-right {
    border-top: 1px solid #ccc;
    padding-top: 30px;
    margin-top: 50px;
}
.copy-right p {
    margin: 0 auto;
    font-size: 15px;
    color: #7e7c7c;
    text-align: right;
}

.digital {
    width: 30px;
    margin-right: 0;
}
.navtoggle {
    width: 40px;
    margin-left: 50px;
    position: relative;
    top: 0px;
    margin: 0;
}
.navtoggle span {
    width: 40px;
    height: 1px;
    display: block;
    background: #fff;
    margin: 8px 0;
}
nav.navbar-expand-lg.fixed .navtoggle span {
    background: #000;
}
.windowheightnav {
    width: 500px;
    height: 100vh;
    float: left;
    background: #e1ddd9;
    position: fixed;
    top: 0;
    right: 0;
    -webkit-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
}
.windowheightnav.shownavactive {
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transform: translateX(0);
}
.windowheightnav .navclose {
    width: auto;
    position: absolute;
    top: 25px;
    right: 12%;
}
.windowheightnav .navclose a {
    width: 40px;
    height: 40px;
    float: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.windowheightnav .navclose a span {
    width: 25px;
    height: 1px;
    display: block;
    background: #000;
    margin: 8px 0;
}
.sp1 {
    transform: rotate(45deg);
}
.sp2 {
    transform: rotate(316deg);
    margin-right: 0;
    position: absolute;
}
.windowheightnav .windogrid {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.windowheightnav .windogrid .lrsection {
    width: 100%;
    float: left;
}
.windowheightnav .windogrid .lrsection .parknavbar {
    width: 100%;
    height: 100%;
    float: left;
    border-right: 1px solid #c3c3c3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.windowheightnav .windogrid .lrsection .parknavbar .innernavbar {
    width: 100%;
    float: left;
    margin-bottom: 46px;
}
.windowheightnav .windogrid .lrsection .parknavbar .innernavbar:last-child {
    margin-bottom: 0;
}
.windowheightnav .windogrid .lrsection .parknavbar .innernavbar span {
    width: auto;
    float: left;
    font-family: Optima;
    font-size: 1rem;
    margin-right: 15px;
    margin-top: 20px;
    color: #606060;
    opacity: 0.6;
    position: relative;
    top: -7px;
    display: none;
}
.windowheightnav .windogrid .lrsection .parknavbar .width70 {
    width: 78%;
}
.windowheightnav .windogrid .lrsection .parknavbar .innernavbar strong {
    width: auto;
    float: left;
    font-family: Freight;
    font-weight: 500;
    font-size: 32px;
    color: #606060;
    margin-bottom: 20px;
}
.windowheightnav .windogrid .lrsection .parknavbar .innernavbar strong a {
    color: #3e3e3e;
    display: block;
    position: relative;
}
.windowheightnav .windogrid .lrsection .parknavbar .innernavbar strong a:after {
    content: "";
    background: #0c4ca3;
    width: 0;
    height: 2px;
    position: absolute;
    right: 0;
    bottom: 0;
    -webkit-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    transition: all ease-in-out 0.5s;
}
.windowheightnav .windogrid .lrsection .parknavbar .innernavbar strong a:hover:after {
    right: auto;
    left: 0;
    width: 100%;
}
.windowheightnav .windogrid .lrsection .parknavbar .innernavbar ul {
    width: 100%;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 0;
    opacity: 1;
    visibility: visible;
    transition: all ease-in-out 0.3s;
}
.windowheightnav .windogrid .lrsection .parknavbar .innernavbar:hover ul {
    opacity: 1;
    visibility: visible;
}
.windowheightnav .windogrid .lrsection .parknavbar .innernavbar ul li {
    text-align: center;
    position: relative;
    margin-right: 21px;
    margin: 0 21px 0 0;
}
.windowheightnav .windogrid .lrsection .parknavbar .innernavbar ul li::after {
    content: "";
    width: 1px;
    height: 100%;
    background: #606060;
    position: absolute;
    top: 0;
    right: -11px;
    opacity: 0.5;
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
}
.windowheightnav .windogrid .lrsection .parknavbar .innernavbar ul li:nth-last-child(1)::after {
    width: 0;
}
.innernavbar ul li {
    display: flex;
    align-items: center;
}
.windowheightnav .windogrid .lrsection .parknavbar .innernavbar ul li a {
    width: 100%;
    display: inline-block;
    line-height: 20px;
    font-size: 12px;
    color: #606060;
    text-transform: uppercase;
    opacity: 0.7;
    -webkit-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}
.windowheightnav .windogrid .lrsection .parknavbar .innernavbar ul li a:hover {
    color: #0c4ca3;
    opacity: 1;
}
.windowheightnav .windogrid .lrsection .rightdiscription {
    width: 100%;
    height: 100vh;
    float: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: auto;
}
.windowheightnav .windogrid .lrsection .rightdiscription .medianavwin {
    width: 100%;
    float: left;
    height: auto;
}
.windowheightnav .windogrid .lrsection .rightdiscription > div {
    height: 408px;
    position: relative;
}
.windowheightnav .windogrid .lrsection .rightdiscription .medianavwin address {
    width: 100%;
    float: left;
    font-weight: 400;
    font-size: 13px;
    color: #9d9b98;
    font-style: normal;
    line-height: 1.4;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.windowheightnav .windogrid .lrsection .rightdiscription .medianavwin span {
    width: 97%;
    letter-spacing: 1px;
    float: left;
    border-bottom: 1px solid #606060;
    padding-top: 15px;
    padding-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}
.windowheightnav .windogrid .lrsection .rightdiscription .medianavwin span::after {
    content: "";
    width: 1px;
    height: 14px;
    background: #0c4ca3;
    position: absolute;
    left: 50%;
    top: 5px;
    opacity: 0.6;
    bottom: 0;
    margin: auto;
}
.windowheightnav .windogrid .lrsection .rightdiscription .medianavwin span a {
    width: auto;
    float: left;
    font-size: 0.79rem;
    color: #0c4ca3;
    display: block;
}
.windowheightnav .windogrid .lrsection .rightdiscription .medianavwin span a b {
    font-weight: 400;
    display: inline-block;
}
.windowheightnav .windogrid .lrsection .rightdiscription .medianavwin span a:hover {
    color: #000;
}
.windowheightnav .windogrid .lrsection .rightdiscription .medianavwin ul {
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: 23px;
}
.windowheightnav .windogrid .lrsection .rightdiscription .medianavwin ul li {
    width: auto;
    float: left;
}
.windowheightnav .windogrid .lrsection .rightdiscription .medianavwin ul li a {
    width: 100%;
    float: left;
    font-family: Optima;
    font-size: 0.89rem;
    color: #606060;
    margin-right: 24px;
}
.windowheightnav .windogrid .lrsection .rightdiscription .medianavwin ul li a i {
    font-size: 20px;
    color: #a0a0a0;
}
.windowheightnav .windogrid .lrsection .rightdiscription .medianavwin ul li a:hover i {
    color: #000;
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
} /* new css */
.sub-title svg {
    width: 15px;
    margin-left: 15px;
    animation: rotateStar 3s linear infinite;
}
@keyframes rotateStar {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.experience {
    position: relative;
}
.experience img {
    border-radius: 20px;
}
.experience-text {
    width: 600px;
    margin: 0;
    position: absolute;
    left: 30px;
    bottom: 30px;
    padding: 50px;
    background: #fff;
    border-radius: 15px;
}
.bottom-thumb p {
    margin: 20px 0;
}
.leadership-thum {
    display: flex;
    align-items: center;
}
.leadership-img {
    width: 40%;
    margin: 0;
}
.leadership-text {
    width: 60%;
    padding: 50px;
}
.leadership-img img {
    border-radius: 20px;
}
.leadership-text h4 {
    font-size: 35px;
    font-family: "Space Grotesk", Sans-serif;
    letter-spacing: 0;
    font-weight: 400;
    margin-bottom: 20px;
}
.leadershi-slider {
    margin-top: 50px;
}
.vision-thumb {
    margin-top: 50px;
}
.vision-text {
    background: #f7f3ed;
    /*border: 1px solid;*/
    border-radius: 20px;
    padding: 25px;
    min-height: 440px;
}
.vision-img img {
    border-radius: 20px;
    min-height: 440px;
    object-fit: cover;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.vision-text h4 {
    font-size: 30px;
    font-family: "Space Grotesk", Sans-serif;
    letter-spacing: 0;
    font-weight: 400;
    margin-bottom: 20px;
    border-bottom: 1px solid #000;
    padding-bottom: 15px;
    text-transform: uppercase;
    color: #2d2d2d;
}
.mt-20 {
    margin-top: 20px;
}
.mb-20 {
    margin-bottom: 20px;
}
.vision-text p {
    display: flex;
}
.vision-text i,
.vision-text li {
    padding-right: 15px;
}
.vision-text li {
    display: flex;
}
.expertise-thumb img {
    border-radius: 20px;
}
.expertise-details {
    padding-left: 50px;
}
.expertise-details ul {
    padding-left: 0;
}
.expertise-details ul li {
    margin-top: 11px;
}
.award-title {
    font-size: 20px;
    padding: 15px;
    text-align: center;
}
.award-slider .leadership-img img {
    height: 520px !important;
    object-fit: cover;
    object-position: top;
}
.award-thumb {
    margin-top: 30px;
}
.timeline-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}
.awards-right {
    padding-left: 30px;
}
.award-slider {
    margin-top: 70px;
} /* Vertical center line */
.timeline-wrapper::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #0d2b4e;
    transform: translateX(-50%);
    z-index: 0;
}
.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    animation: fadeUp 0.6s ease both;
}
.timeline-item:nth-child(1) {
    animation-delay: 0.1s;
}
.timeline-item:nth-child(2) {
    animation-delay: 0.25s;
}
.timeline-item:nth-child(3) {
    animation-delay: 0.4s;
}
.timeline-item:nth-child(4) {
    animation-delay: 0.55s;
}
.timeline-item:nth-child(5) {
    animation-delay: 0.7s;
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} /* Left-side card */
.card-left {
    grid-column: 1;
    justify-self: end;
    padding-right: 40px;
} /* Right-side card */
.card-right {
    grid-column: 3;
    justify-self: start;
    padding-left: 40px;
} /* Empty placeholder for opposite side */
.empty {
    grid-column: 1;
}
.empty-right {
    grid-column: 3;
} /* The center dot + icon column */
.center-node {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.node-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid #0d2b4e;
    background: #d6e4f0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}
.node-icon svg {
    width: 22px;
    height: 22px;
    stroke: #0d2b4e;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.timeline-item:hover .node-icon {
    background: #0d2b4e;
    transform: scale(1.1);
}
.timeline-item:hover .node-icon svg {
    stroke: white;
} /* Horizontal connector line */
.connector {
    height: 2px;
    background: #0d2b4e;
    flex-shrink: 0;
}
.connector-left {
    width: 40px;
}
.connector-right {
    width: 40px;
} /* Card */
.card {
    background: #fff;
    border-radius: 18px;
    padding: 24px 28px;
    max-width: 340px;
    box-shadow: 0 4px 24px rgba(13, 43, 78, 0.1);
    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
}
.card:hover {
    box-shadow: 0 8px 36px rgba(13, 43, 78, 0.16);
    transform: translateY(-3px);
}
.card h3 {
    font-size: 1.25rem;
    font-weight: 400;
    color: #0d2b4e;
    margin-bottom: 10px;
    line-height: 1.3;
}
.card p {
    color: var(--text-light);
    line-height: 1.6;
} /* Year label */
.year-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d2b4e;
    letter-spacing: -0.02em;
    white-space: nowrap;
} /* For left items: year goes right, card goes left */
.item-left .card-left {
    grid-column: 1;
}
.item-left .year-label {
    grid-column: 3;
    padding-right: 321px;
} /* For right items: year goes left, card goes right */
.item-right .year-label {
    grid-column: 1;
    text-align: right;
    padding-left: 321px;
}
.item-right .card-right {
    grid-column: 3;
} /* ─── Responsive ─── */
@media (max-width: 640px) {
    .timeline-wrapper::before {
        left: 26px;
    }
    .timeline-item {
        grid-template-columns: 52px 1fr;
        grid-template-rows: auto auto;
        column-gap: 0;
        margin-bottom: 40px;
    }
    .center-node {
        grid-column: 1;
        grid-row: 1;
        flex-direction: row;
        justify-content: flex-start;
    }
    .connector-left,
    .connector-right {
        display: none;
    } /* All cards go to the right on mobile */
    .card-left,
    .card-right,
    .item-left .card-left,
    .item-right .card-right {
        grid-column: 2;
        grid-row: 1;
        padding: 0 0 0 16px;
        justify-self: start;
    } /* Year label goes below card on mobile */
    .year-label,
    .item-left .year-label,
    .item-right .year-label {
        grid-column: 2;
        grid-row: 2;
        padding: 6px 0 0 16px;
        text-align: left;
        font-size: 1.1rem;
    }
    .empty,
    .empty-right {
        display: none;
    }
    .card {
        max-width: 100%;
    }
}
.bg-pattern {
    position: relative;
}
.bg-pattern:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f7f3edf5;
}
.bg-pattern .container {
    position: relative;
    z-index: 5;
}
.about-banner {
    background: url("https://www.urbanaxis.in/assets/images/banners/about-us-new1.jpeg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
}
.luvnest-banner {
    background: url("https://www.urbanaxis.in/assets/images/banners/Luvenst-new.jpeg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
}
.urban-banner {
    background: url("https://www.urbanaxis.in/assets/images/urban/gallery/8.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.la-place-banner {
    background: url("https://www.urbanaxis.in/assets/images/la-place/La-Place-HB.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.rohtas-house-banner {
    background: url("https://www.urbanaxis.in/assets/images/rohtas-house/Rohtas-House-HB.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.rohtas-maple-banner {
    background: url("https://www.urbanaxis.in/assets/images/rohtas-maple/Rohtas-Maple-Header-Banner.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.press-release-banner {
    /*background: url("https://www.urbanaxis.in/assets/images/urban/gallery/8.png");*/
    background: url("https://www.urbanaxis.in/assets/images/banners/press.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.video1-banner {
    /*background: url("https://www.urbanaxis.in/assets/images/urban/gallery/8.png");*/
    background: url("https://www.urbanaxis.in/assets/images/banners/video.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.blog-banner {
    /*background: url("https://www.urbanaxis.in/assets/images/urban/gallery/8.png");*/
    background: url("https://www.urbanaxis.in/assets/images/banners/blog.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.videos-banner {
    /*background: url("https://www.urbanaxis.in/assets/images/urban/gallery/8.png");*/
    background: url("https://www.urbanaxis.in/assets/images/banners/videos-new1.jpeg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.rohtas-plaza-banner {
    background: url("https://www.urbanaxis.in/assets/images/rohtas-plaza/Rohtas-Plaza-HB.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.empress-walk {
    background: url("https://www.urbanaxis.in/assets/images/empress-walk/Empress-Walk-HB.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.rohtas-plaza-banner {
    background: url("https://www.urbanaxis.in/assets/images/rohtas-plaza/Rohtas-Plaza-HB.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.teekaries-chamber {
    background: url("https://www.urbanaxis.in/assets/images/teekaries-chamber/Teekaries-Chamber-HB.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.pandit-house-banner {
    background: url("https://www.urbanaxis.in/assets/images/pandit-house/Pandit-House-HB.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.landmark-arcade-banner {
    background: url("https://www.urbanaxis.in/assets/images/landmark-arcade/LANDMARK-ARCADE-HB.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.presidential-arcade-banner {
    background: url("https://www.urbanaxis.in/assets/images/presidential-arcade/PRESIDENTIAL-ARCADE-HB.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.icon-banner {
    background: url("https://www.urbanaxis.in/assets/images/icon-apartment/ICON-APARTMEN-HB1.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.presidential-banner {
    background: url("https://www.urbanaxis.in/assets/images/presidential-tower-apartment/Prestdential-Tower-Header-Banner.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.vintage-banner {
    background: url("https://www.urbanaxis.in/assets/images/vintage-apartment/Rohtas-Vintage-HB1.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
}
.hampton-banner {
    background: url("https://www.urbanaxis.in/assets/images/hampton-court-apartment/Hempton-Urban-Axis-Header-banner.jpeg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.rohtas-enclave-banner {
    background: url("https://www.urbanaxis.in/assets/images/rohtas-enclave/Rohta-Enclave-HB.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.court-banner {
    background: url("https://www.urbanaxis.in/assets/images/court-apartment/Court-Apartment-Banner.jpeg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.rohtas-apt-banner {
    background: url("https://www.urbanaxis.in/assets/images/rohtas-apartment/Banner-For-Rohta-Apartments-Urban-Axis.jpg.jpeg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.golflink-banner {
    background: url("https://www.urbanaxis.in/assets/images/golflink-apartment/Golf-Link-HB1.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.pashupati-banner {
    background: url("https://www.urbanaxis.in/assets/images/pashupati-apartment/PASHUPATI-APARTMENT-HB1.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.term-condition-banner {
    background: url("https://www.urbanaxis.in/assets/images/term-cond.jpeg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.privacy-policy-banner {
    background: url("https://www.urbanaxis.in/assets/images/privacy-new.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.term-condition-content-banner {
    background: url("https://www.urbanaxis.in/assets/images/term-cond.jpeg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.joy-banner {
    background: url("https://www.urbanaxis.in/assets/images/joy/joy.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.contact-banner {
    background: url("https://www.urbanaxis.in/assets/images/banners/contact-us-new1.jpeg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.contact-banner:after,
.inner-banner:after {
    content: "";
    position: absolute;
    left: 0;
    background: #0000004d;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.breadcume ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}
.breadcume ul li {
    margin-right: 20px;
    margin-left: 0;
}
.breadcume ul li a {
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
}
.breadcume ul li a:after {
    content: "";
    position: absolute;
    left: -13px;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 100%;
    top: 43%;
}
.breadcume ul li:first-child a:after {
    display: none;
}
.banner-titile {
    text-transform: uppercase;
    font-size: 80px;
    color: #fff;
    margin-top: 20px;
    letter-spacing: -0.04em;
}
.contact-caption {
    position: relative;
    height: 100vh;
    z-index: 99;
}
.banner-content {
    width: 100%;
    border-top: 1px solid #ffffff4d;
    padding-top: 30px;
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
}
.luvest-thumb {
    padding-left: 50px;
}
.location-thumb {
    background: #0c4ca3;
    padding: 30px;
    color: #fff;
}
.location-points {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.location-points p {
    font-size: 15px;
}
.location-icon {
    width: 20px;
    height: 20px;
    line-height: 20px;
    margin: 0;
}
.location-icon img {
    width: 100%;
}
.location-points p {
    margin: 0 0px 0 10px;
}
.joy-amenities .amenities-icon img {
    width: 80px;
}
.amenities-icon img {
    width: 70px;
    margin: auto;
    text-align: center;
    transition: 0.85s;
    transform: scale(0.9);
}
.amenities-thumb {
    text-align: center;
    margin-top: 50px;
}
.amenities-thumb p {
    margin: 30px 0 0;
    line-height: 25px;
    font-size: 17px;
    color: #414040;
}
.amenities-thumb:hover .amenities-icon img {
    transform: scale(1);
}
.key_grid_main {
    justify-content: center;
}
.brdbttom {
    position: relative;
    padding: 50px 0 0;
}
.brdbttom:after {
    content: "";
    width: 100%;
    position: absolute;
    left: 15px;
    height: 1px;
    background: #000;
    opacity: 0.3;
}
.floorplan-thumb {
    margin: 0 5px;
}
a.btn-download {
    letter-spacing: 0.5px;
    border: 1px solid #edc716;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 8px;
    margin-top: 50px;
    color: #edc716;
    transition: 0.8s;
}
a.btn-download:hover {
    background: #edc716;
    color: #000;
}
.structural-thumb {
    border-radius: 10px;
    border: 1px solid #0c4ca3;
    padding: 25px;
    transition: 0.85s;
    height: calc(172px + 30px);
}
.structural-icon img {
    width: 90px;
    margin: auto;
    text-align: center;
    transition: 0.85s;
    transform: scale(0.9);
}
.structural-thumb:hover .structural-icon img {
    transform: scale(1);
}
.structural-thumb {
    text-align: center;
    margin-top: 30px;
}
.structural-thumb p {
    margin: 30px 0 0;
    line-height: 25px;
    font-size: 17px;
    color: #414040;
}
.structural-thumb:hover {
    /* background: #0c4ca3; */
    border-color: var(--dark-red);
}
/* .structural-thumb:hover p {
    color: #fff;
} */
.partn_logo {
    background: #fff;
    border-radius: 10px;
    padding: 10px 25px;
    box-shadow: 0px 1px 24.5px -6px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin: 20px 8px;
}
.partn_logo:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.partn_logo img {
    width: 100%;
}
.overview-img img {
    height: 100vh;
    object-fit: cover;
    border-radius: 15px;
}
.accordion-button::after,
.accordion-button:not(.collapsed)::after {
    display: none;
}
.accordion {
    background: transparent;
}
.accordion .accordion-item h4 {
    /**background: url(https://www.urbanaxis.in/assets/images/right-arrow-faq.svg) no-repeat calc(100% - 10px) center;**/
    background: url(https://www.urbanaxis.in/assets/images/right-arrow-faq-black.svg) no-repeat calc(100% - 10px) center;
    background-size: 30px;
    cursor: pointer;
    font-size: 20px;
    color: #000;
    font-weight: 600;
    margin: 0;
    padding: 25px;
}
.accordion .accordion-item h4.collapsed {
    background-image: url(https://www.urbanaxis.in/assets/images/left-arrow-faq.svg);
}
.accordion-head {
    width: 100%;
    padding: 20px 0;
}
.accordion-header {
    position: relative;
}
.accordion-header:after {
    content: "";
    left: 0;
    width: 0;
    bottom: -1px;
    position: absolute;
    z-index: 55;
    height: 1px;
    transition: 0.5s ease-in-out;
    background: #0c4ca3;
}
.accordion-header:hover:after {
    width: 100%;
    color: #0c4ca3;
} /*.accordion .accordion-item:hover h4 {color:#0c4ca3}*/
.accordion .accordion-button[aria-expanded="true"] {
    color: #0c4ca3;
    background-color: #ffffff;
}
.accordion-item {
    border: 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125) !important;
    background: transparent !important;
    border-radius: 0 !important;
}
.regis-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    border: 1px solid #545353;
    display: inline-block;
    margin-right: 30px;
    text-align: center;
    line-height: 60px;
    font-size: 30px;
    color: #545353;
    margin-left: 0;
}
.regis-add {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 50px 0 0px;
}
.add-detais {
    margin: 0;
}
.add-detais p {
    margin: 0;
}
.add-detais a {
    color: #606060;
    font-size: 18px;
}
.add-detais strong {
    font-size: 24px;
    font-family: "Space Grotesk", Sans-serif;
    letter-spacing: 0;
    font-weight: 400;
}
.contact-box {
    background: #fff;
    border-radius: 20px;
    padding: 70px;
}
.form-control {
    border: 0;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
    border-radius: 0;
    font-size: 16px;
    color: #000;
}
.form-group {
    margin-bottom: 30px;
}
.contact-box h3 {
    font-size: 35px;
    font-family: "Space Grotesk", Sans-serif;
    letter-spacing: 0;
    font-weight: 400;
    margin-bottom: 50px;
}
.form-btn {
    font-size: 15px;
    background: #0c4ca3;
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    border: 0;
    outline: none;
}
.year-labels {
    display: none;
}
.ft-logo {
    margin-top: 16px;
} /*.invest-thumb{border:1px solid #ccc;padding:30px;border-radius:15px;margin-top:30px;text-align:center;min-height: 355px;}.invest-icon {width:60px;height:60px;background:#f6f6f6;padding: 6px;border-radius: 8px;box-shadow: 0 0 15px #00000029;margin-bottom: 20px;}.invest-icon img{width:100%;}.invest-thumb h4{font-size:22px;margin:25px 0 10px;color:#000;}.invest-thumb p{margin-bottom:0;}*/
.invest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(150, 98, 30, 0.18);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    margin-top: 30px;
}
.invest-thumb {
    background: #fdfcf9;
    padding: 2.5rem;
}
.invest-thumb:hover {
    background: #f7f3ed;
}
.invest-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border-radius: 13px;
    margin-left: 0;
    background: rgba(201, 168, 76, 0.1);
}
.invest-grid,
.invest-icon {
    border: 1px solid rgba(150, 98, 30, 0.18);
}
.invest-icon img {
    width: 100%;
}
.invest-thumb h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1208;
    margin-bottom: 0.8rem;
    letter-spacing: 0.02em;
}
.invest-thumb p {
    color: #7a7260;
    line-height: 1.7;
    margin-bottom: 0;
}
.promise-thum {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: #faf9f7;
    border: 1px solid #e5e0d8;
    border-radius: 4px;
    margin-top: 15px;
}
.ua-promise-dot {
    width: 6px;
    height: 6px;
    background: #0c4ca3;
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
    margin: 0;
}
.ua-promise-text {
    margin: 0;
}
.nri-thumb {
    text-align: right;
    margin-top: 30px;
}
.ready-section {
    padding: 60px 0;
}
.ready-left h4 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 40px;
    color: #393838;
    margin: 20px 0;
}
.shedule-thumb {
    display: flex;
    justify-content: right;
    align-items: center;
    height: 100%;
    margin-right: 0;
}
.who-invest {
    background: #fff;
    padding: 30px;
    border: 1px solid rgb(10 22 40 / 15%);
    transition: 0.3s;
    border-radius: 15px;
    margin-top: 30px;
}
.who-invest h5 {
    margin-bottom: 15px;
    color: #0c4ca3;
    font-size: 20px;
}
.who-invest:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(10, 22, 40, 0.08);
    border: 1px solid rgb(51 103 175);
}
@media (min-width: 1680px) and (max-width: 1920px) {
    .abt-image img {
        border-radius: 20px;
        height: calc(55vh + 30px);
    }
    .overview-img img {
        height: calc(72vh + 30px);
    }
}
@media (min-width: 1024px) and (max-width: 1280px) {
    .about-number .number-box {
        padding: 40px 20px;
    }
    .about-number .number-box span {
        font-size: 45px;
    }
    .abt-image img {
        height: calc(90vh + 30px);
    }
    .vision-img img,
    .vision-text {
        min-height: 483px;
    }
    .chairman-wrapper .card-content {
        padding: 34px 60px;
    }
    .card-content {
        padding: 25px 40px;
    }
}
@media (min-width: 1300px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1280px;
    }
}
@media (max-width: 991px) {
    .navbar-toggler:focus {
        box-shadow: none;
    }
    button.navbar-toggler {
        width: 50px;
        padding: 0px;
        border-radius: 0;
        margin-left: auto;
        margin-right: 0;
        float: right;
        height: 72px;
        border: 0;
        outline: 0;
    }
    .navbar .navbar-toggler-icon {
        background-image: url("https://www.urbanaxis.in/assets/images/humberger-new.svg");
        width: 30px;
    }
    .navbar .navbar-toggler-icon.cross {
        background-image: url(https://www.urbanaxis.in/assets/images/closes-new.svg) !important;
        width: 40px;
        background-position: center !important;
    }
    .navbar-expand-lg .navbar-nav {
        padding: 20px 0px 30px;
    }
    .navbar-nav .nav-link.active {
        color: #edc716;
    }
    .navbar-expand-lg .nav-link {
        padding: 10px 0 10px;
    }
    .nav-item {
        margin: 0;
    }
    .header-bg2 {
        display: inline-block;
    }

    .header-bg2:hover .hover-logo {
        display: none;
    }
    .hover-logo {
        display: none !important;
    }
    .white-logo {
        display: block !important;
    }
    .navbar-brand {
        width: 80px;
        display: inline-block;
    }
    .navbar-expand-lg .nav-link {
        padding: 10px 0px 10px;
    }
    .navigation_black .navbar-expand-lg a.getin-touch {
        color: #edc716;
    }
    .navigation_black .navbar-expand-lg .nav-link {
        color: #000;
    }
    .dt-get {
        display: none;
    }
    .mb-get {
        display: block;
        width: 125px;
        position: absolute;
        right: 85px;
        top: 21px;
        text-align: center;
    }
    .navigation_black .white-logo {
        display: none !important;
    }
    .navigation_black .black-logo {
        display: block !important;
    }
    .dropdown-item.active,
    .dropdown-item:active {
        background-color: #0c4ca3;
    } /* .dropdown-menu.show {    display: block !important;  }*/
    .navbar-brand {
        width: 130px;
    }
    .main-nav {
        padding-bottom: 35px;
        width: 100%;
        box-shadow: 0px 5px 5px 2px #00000012;
    }
    a.hd-btn {
        display: none;
    }
    .right-text p {
        display: none;
    }
    .homebanner-caption h2 {
        font-size: 30px;
        line-height: 40px;
    }
    .homebanner-caption .left-part {
        width: 80%;
        margin: 0 auto;
        bottom: 45%;
        line-height: 80px;
        text-align: center;
    }
    .right-text {
        width: 100%;
        position: absolute;
        right: 0;
        bottom: 100px;
        left: 0;
        text-align: center;
    }
    .abt-image img {
        height: auto;
    }
    .abt-image {
        padding-right: 0;
    }
    .heading {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 30px;
    }
    .heading br {
        display: none;
    }
    .projects-wrapper {
        margin-top: 0;
    }
    .revers-sec {
        flex-direction: column-reverse !important;
    }
    .project-box img {
        border-radius: 0;
    }
    .projects-section .mb-5 {
        margin-bottom: 0rem !important;
    }
    .project-box {
        flex-direction: column;
        top: 0px;
    }
    .project-left,
    .project-right {
        width: 100%;
    }
    .card-content {
        padding: 50px;
    }
    .card-content h3 {
        font-size: 30px;
    }
    .pad100 {
        padding: 60px 0;
    }
    .footer-contact {
        margin-top: 30px;
    }
    .bottom-footer {
        margin-top: 80px;
        padding: 25px;
    }
    .news-section {
        display: none;
    }
    .investments-header {
        display: inline-block;
        margin-bottom: 30px;
    }
    .sub-title {
        margin-bottom: 20px;
    }
    .investments-heading-col .heading {
        margin: 0;
    }
    .ft-inner {
        margin-top: 30px;
    }
    .ft-inner p br {
        display: none;
    }
    .inv-card-location {
        font-size: 14px;
        color: #fff;
    }
    .inv-card-explore {
        color: #fff;
        font-size: 13px;
    }
    .about-banner,
    .joy-banner,
    .luvnest-banner,
    .urban-banner,
    .rohtas-maple-banner,
    .empress-walk,
    .videos-banner,
    .la-place-banner,
    .rohtas-house-banner,
    .press-release-banner,
    .rohtas-plaza-banner,
    .pandit-house-banner,
    .teekaries-chamber,
    .presidential-arcade-banner,
    .landmark-arcade-banner,
    .vintage-banner,
    .rohtas-enclave-banner,
    .court-banner,
    .rohtas-apt-banner,
    .golflink-banner,
    .hampton-banner,
    .icon-banner,
    .pashupati-banner,
    .presidential-banner
    .term-condition-banner,
    .term-condition-content-banner,
    .privacy-policy-banner,
    .contact-banner {
        height: 450px;
        min-height: auto;
    }
    .luvest-thumb {
        padding-left: 0;
        margin-top: 20px;
    }
    /* .location-map {
        margin-top: 30px;
    } */
    .overview-img img {
        height: auto;
    }
    .contact-caption {
        height: 450px;
    }
    .banner-titile {
        font-size: 50px;
    }
    .experience-text {
        width: 100%;
        margin: 40px 0 0;
        position: relative;
        left: 0;
        bottom: 0;
        padding: 0;
    }
    .vision-text {
        min-height: auto;
    }
    .vision-text span {
        margin: 0;
    }
    .vision-text ul {
        margin: 0;
        padding-left: 0;
    }
    .awards-right {
        padding-left: 0;
    }
    .award-slider {
        margin-top: 30px;
    }
    .leadership-thum {
        display: inline-block;
    }
    .award-slider .leadership-img img {
        height: 100% !important;
    }
    .leadership-img {
        width: 100%;
        margin: 0 0 30px 0;
    }
    .leadership-text {
        width: 100%;
        padding: 0px;
    }
    .award-title {
        font-size: 16px;
        line-height: 25px;
    }
    .expertise-details {
        padding-left: 0px;
        margin-top: 40px;
    }
    .timeline-wrapper {
        max-width: 96%;
    }
    .card-left {
        padding-right: 25px;
    }
    .card p {
        font-size: 14px;
        margin: 0;
    }
    .item-left .year-label {
        padding-right: 270px;
        padding-left: 15px;
    }
    .item-right .year-label {
        padding-left: 270px;
        padding-right: 10px;
    }
    .location-map iframe {
        height: 0px;
    }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
	
    .main-nav.show {
        background: #fff;
    }

    .navbar-brand {
        width: 100px;
    }
    .nav-item .dropdown-menu .nav-link {
        color: #063f5a !important;
        opacity: 1 !important;
    }
    .banner {
        height: auto;
    }
    .hero-thumbnail,
    .homebanner-caption {
        max-height: 460px;
    }
	
	.logo-slider .product-showcase-carousel-controls{
		/**top: -35px !important;**/
	}
	.logo-slider .product-showcase-carousel-controls--left{
		left: -30px !important;
	}
	.logo-slider .product-showcase-carousel-controls--right{
		right: -30px !important;
	}
} /**@media (max-width: 767px) {**/
@media screen and (max-width: 767px) {
    button.navbar-toggler {
        height: 46.28px;
		background: #ffffff0f;
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		padding: 2px 8px;
		border-radius: 8px;
    }
    .main-nav.show {
        background: #fff;
    }
    .header-bg2{
		background: transparent !important;
		backdrop-filter: blur(0px);
		-webkit-backdrop-filter: blur(0px);
	}

    .header-bg2:hover .dropdown-menu li > .nav-link {
        background: #fff !important;
        padding-left: 10px;
        padding-right: 10px;
    }
    .header-bg2:hover .dropdown-menu li > .dropdown-menu li {
        border-top: 1px dashed #0000001a;
    }
    .navbar-brand {
        width: 120px;
		margin:0px 0px 0px 0px;
		background: #ffffff0f;
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		padding: 2px 14px;
		border-radius: 8px;
    }
    .nav-item .dropdown-menu .nav-link {
        color: #063f5a !important;
        opacity: 1 !important;
    }
    .ft-satr svg {
        display: none;
    }
    .hero-thumbnail,
    .homebanner-caption,
    .banner {
        height: 75vh;
        max-height: 250px;
    }
	.logo-slider .product-showcase-carousel-controls{
		/**top: -35px !important;**/
		/**top: 35% !important;**/
	}
	.logo-slider .product-showcase-carousel-controls--right {
		right: -3% !important;
	}
	.logo-slider .product-showcase-carousel-controls--left{
		/**right: 40px !important;**/
		left: -3% !important;
	}
    .year-label {
        display: none;
    }
    .year-labels {
        display: block;
        font-size: 1.5rem;
        font-weight: 700;
        color: rgb(13, 43, 78);
        letter-spacing: -0.02em;
        white-space: nowrap;
        margin: 0 0 8px;
    }
    .homebanner-caption .left-part {
        width: 80%;
        margin: 0 auto; /**bottom: 40%;**/
        bottom: 54px;
        line-height: 80px;
        text-align: center;
        left: 0;
        right: 0;
    }
    .homebanner-caption .left-part h2 {
        font-size: 1.5rem;
        line-height: 1.2em;
    }
    .right-text {
        width: 100%;
        position: absolute;
        right: 0;
        bottom: 15px;
        left: 0;
        text-align: center;
    }
    .homebanner-caption .right-text a.banner-btn {
        padding: 6px 20px;
    }
	.joy-amenities .brdbttom{display:none;}
    .bottom-footer {
        text-align: center;
    }
    .bottom-footer {
        margin-top: 30px;
    }
    .footer-contact {
        padding: 30px;
    }
    .footer-cnt {
        display: inline-block;
        width: 100%;
    }
    .footer-cnt .tel {
        margin-left: 0;
        color: #000;
        margin-bottom: 20px;
        display: inline-block;
    }
    .footer-emial {
        margin-right: 0;
        color: #000;
        text-align: left;
    }
    .footer-cnt .email {
        margin-right: 0;
        border-bottom: 1px solid #ccc;
        color: #000;
        width: 100%;
        display: inline-block;
        margin-bottom: 20px;
    }
    .ft-left {
        text-align: center;
    }
    .ft-agent {
        display: none;
    }
    .news-details h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .investments-section {
        padding: 70px 20px 60px;
    }
    .number-box {
        padding: 15px;
    }
    .card-content {
        padding: 20px 30px;
    } /*.right-radius {border-top-right-radius: 20px;   border-bottom-right-radius: 0;border-top-left-radius: 20px;}*/
    .project-box {
        /**        margin-top: 20px;        position: relative;        overflow: hidden;**/
    }
    .card-content h3 {
        font-size: 27px;
        line-height: 40px;
        margin-bottom: 12px;
    }
    .inv-card {
        position: relative;
        margin-top: 10px;
    }
    .inv-card-bg {
        position: relative;
        height: 300px;
    }
    .inv-card-explore {
        opacity: 1 !important;
        transition: inherit;
        transform: inherit;
    }
    .investments-cards {
        display: inline-block;
        height: auto;
    }
    .inv-card-location {
        font-size: 18px;
        color: #fff;
        margin: 0;
    }
    .digital {
        margin: auto;
        text-align: center;
    }
    .number-box span {
        font-size: 25px;
    }
    .number-box p {
        margin: 0;
        line-height: 25px;
    }
    .vision-img img {
        min-height: auto;
        border-top-right-radius: 0;
        border-top-left-radius: 0;
    }
    .vision-thumb {
        margin-top: 30px;
        display: flex;
        flex-direction: column-reverse;
        border-radius: 20px;
    }
    .vision-thumb {
        background: #fff;
    }
    .vision-thumb2 {
        display: block;
        flex-direction: inherit !important;
    }
    .copy-right p {
        text-align: center;
    }
    .ft-inner h6 {
        margin-bottom: 20px;
    }
    .location-map iframe {
        height: 220px;
    }
    .location-thumb {
        padding: 20px;
    }
    .structural-thumb p {
        margin: 15px 0 0;
    }
    .rb-growth-content {
        margin-left: 0 !important;
    }
    .rb-growth-wrapper {
        padding-left: 15px !important;
        padding-right: 15px;
    }
    .invest-grid {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 0 !important;
    }
    .nri-thumb {
        text-align: left;
        margin-top: 00px;
    }
    .shedule-thumb {
        display: inline-block;
    }
    .footer .col-lg-6:first-child {
        display: none;
    }

    .footer-contact {
        margin-top: 0;
    }
} /* ===== PREMIUM BLOG UI ===== */
.rb-blog-section {
    background: #f9f8f5;
} /* CARD */
.rb-blog-card {
    border-radius: 0px;
    overflow: hidden;
    position: relative;
    margin-top: 30px;
    transition: 0.4s;
} /* IMAGE */
.rb-blog-img {
    position: relative;
    width: 100%;
    aspect-ratio: 10/7;
    overflow: hidden;
}
.rb-blog-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: 0.6s;
} /* DARK OVERLAY */
.rb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.1));
    z-index: 1;
} /* CONTENT OVER IMAGE */
.rb-blog-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 25px;
    color: #fff;
    z-index: 2;
    width: 100%;
    transition: 0.4s;
}
.rb-blog-meta span {
    font-size: 13px;
    color: #edc716;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}
.rb-blog-meta h4 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 10px;
} /* READ MORE */
.rb-read {
    color: #fff;
    font-size: 14px;
    opacity: 0;
    transform: translateY(10px);
    display: inline-block;
    transition: 0.4s;
} /* HOVER EFFECT */
.rb-blog-card:hover img {
    transform: scale(1.1);
}
.rb-blog-card:hover .rb-read {
    opacity: 1;
    transform: translateY(0);
}
.rb-blog-card:hover .rb-blog-meta {
    transform: translateY(-10px);
} /* Videos Section  */ /* VIDEO SECTION */
.rb-video-section {
    background: #f9f8f5;
} /* CARD */
.rb-video-card {
    margin-top: 30px;
    transition: 0.4s;
} /* THUMB */
.rb-video-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 4/3;
    cursor: pointer;
} /* VIDEO */
.rb-video-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
} /* DARK OVERLAY */
.rb-video-thumb::after {
    pointer-events: none; /* 🔥 MAIN FIX */
} /* PLAY BUTTON */
.rb-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #edc716;
    color: #000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 2;
    transition: 0.4s;
} /* HOVER EFFECT */
.rb-video-card:hover video {
    transform: scale(1.1);
    transition: 0.5s;
}
.rb-video-card:hover .rb-play-btn {
    background: #fff;
}
.rb-video-card:hover .rb-video-thumb::after {
    background: rgba(0, 0, 0, 0.6);
} /* CONTENT */
.rb-video-content {
    padding: 15px 5px;
}
.rb-video-content h4 {
    font-size: 8px;
    line-height: 25px;
    color: #0c4ca3;
    margin: 0;
} /* MOBILE */
@media (max-width: 768px) {
	.rb-nri-hero {
        height: 60vh;
    }
    .rb-nri-hero h1 {
        font-size: 32px;
    }
    .rb-nri-hero p {
        font-size: 15px;
        line-height: 24px;
    }
    .rb-play-btn {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
} /* Press Section Styling - Matches Website Theme */
.press-room-section {
    padding: 100px 0;
    background: #f7f3ed; /* Your Theme Background */
} /* Subtitle and Heading */
.sub-title {
    color: #0c4ca3;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
} /* Category Filter Styling */
.filter-navigation {
    margin-bottom: 50px;
}
.filter-pill-box {
    display: inline-flex;
    background: #fff;
    padding: 6px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}
.filter-btn {
    border: none;
    background: transparent;
    padding: 10px 25px;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #606060;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.filter-btn.active {
    background: #0c4ca3;
    color: #ffffff;
} /* Card Design */
.press-inner-card {
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* border-bottom: 3px solid transparent; */
    transition: all 0.4s ease;
}
.main-box-news:hover {
    transform: translateY(-8px);
    border-bottom: 3px solid #edc716; /* Theme Yellow */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
	transition: all 0.4s ease;
}
.card-media {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border-bottom: 1px solid #f1f1f1;
}
.card-media img {
    max-height: 100%;
    max-width: 150px;
    object-fit: contain;
}
.card-details {
    padding: 25px;
}
.meta-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.category-tag {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 800;
    color: #0c4ca3;
    background: #d6e4f0;
    padding: 2px 10px;
    border-radius: 4px;
}
.post-date {
    font-size: 12px;
    color: #999;
}
.news-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: #393838;
    line-height: 1.5;
    margin-bottom: 20px;
}
.urban-link {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #393838;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding-bottom: 5px;
}
.urban-link:hover{
	 color: #edc716;
}
.urban-link::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 2px;
    background: #edc716;
    bottom: 0;
    left: 0;
    transition: 0.3s;
}
.urban-link:hover::after {
    width: 100%;
    background: #0c4ca3;
} /* Nri Page */ /* HERO SECTION */
.rb-nri-hero {
    position: relative;
    height: 60vh;
    background: url("assets/images/NRI.jpg") no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
} /* OVERLAY */
.rb-nri-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(12, 76, 163, 0.75), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
} /* TEXT */
.rb-nri-hero h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 2px;
}
.rb-nri-hero p {
    color: #fff;
    font-size: 18px;
    line-height: 20px;
    max-width: 800px;
    margin: auto;
    opacity: 0.9;
} /* MOBILE */
/* SECTION */
.rb-nri-split {
    background: #f9f8f5;
} /* IMAGE */
.rb-nri-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
} /* CONTENT */
.rb-nri-content {
    padding-left: 30px;
}
.rb-nri-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}
.rb-nri-content span {
    color: #0c4ca3;
}
.rb-nri-content p {
    font-size: 16px;
    line-height: 27px;
    color: #555;
    margin-bottom: 15px;
    font-family: "Vend Sans", Sans-serif;
} /* SUB HEADING */
.rb-nri-content h4 {
    margin-top: 25px;
    margin-bottom: 15px;
    color: #0c4ca3;
} /* LIST */
.rb-nri-content ul {
    padding-left: 0;
    list-style: none;
}
.rb-nri-content ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
} /* ICON BULLET */
.rb-nri-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #edc716;
    font-weight: bold;
} /* MOBILE */
@media (max-width: 768px) {
    .rb-nri-content {
        padding-left: 0;
        margin-top: 20px;
    }
    .rb-nri-content h2 {
        font-size: 24px;
    }
} /* SECTION */
.rb-growth-pro {
    background: #d6e4f0; /* 👈 updated background */
    color: #1a1a1a;
    padding: 100px 0;
}
.rb-growth-pro span {
    color: #0c4ca3; /* match theme */
} /* WRAPPER */
.rb-growth-wrapper {
    position: relative;
    padding-left: 30px;
} /* LINE (FIXED HEIGHT ISSUE) */ /* ITEM */
.rb-growth-item {
    position: relative;
    margin-bottom: 40px;
} /* DOT */
.rb-growth-dot {
    position: absolute;
    left: -2px;
    top: 8px;
    width: 14px;
    height: 14px;
    background: #0c4ca3;
    border-radius: 50%;
} /* CONTENT CARD */
.rb-growth-content {
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 12px;
    margin-left: 30px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #ccc;
} /* TEXT */
.rb-growth-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-family: "Space Grotesk", Sans-serif;
}
.rb-growth-content p {
    font-size: 14px;
    line-height: 24px;
    color: #555;
    font-family: "Vend Sans", Sans-serif; /* 👈 paragraph font */
} /* HOVER */
.rb-growth-item:hover .rb-growth-content {
    transform: translateX(8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
} /* SECTION */
.rb-invest-final {
    background: #f8f6f2;
} /* CARD */
.rb-invest-card2 {
    background: #fff;
    border-radius: 18px;
    padding: 30px 20px;
    margin-top: 30px;
    text-align: center;
    height: 100%;
    min-height: 200px;
    transition: 0.4s;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
} /* ICON */
.rb-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 15px;
    border-radius: 50%;
    background: #f1f4f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #edc717;
    transition: 0.4s;
} /* TEXT */
.rb-invest-card2 h4 {
    font-size: 16px;
    line-height: 24px;
    color: #222;
    margin: 0;
    font-family: "Vend Sans", Sans-serif;
} /* GRADIENT BORDER */
.rb-invest-card2::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1px;
    background: linear-gradient(120deg, #0c4ca3, #edc716);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.4s;
    font-family: "Vend Sans", Sans-serif;
} /* HOVER */
.rb-invest-card2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}
.rb-invest-card2:hover::before {
    opacity: 1;
}
.rb-invest-card2:hover .rb-icon {
    background: #0c4ca3;
    color: #fff;
} /* --- DESKTOP VIEW (992px and above) --- */
@media (min-width: 992px) {
    .dropdown-menu li {
        position: relative;
    }
    .dropdown-submenu > .dropdown-menu {
        top: 0 !important;
        left: 100% !important;
        margin-top: 0px !important;
        margin-left: 1px !important;
		padding-top: 0px;
		padding-bottom: 0px;
        display: none !important;
        position: absolute;
        opacity: 0;
        visibility: hidden;
        transition: 0.2s;
    }
    .dropdown-submenu:hover > .dropdown-menu {
        display: block !important;
        opacity: 1;
        visibility: visible;
    }
    .dropdown-submenu::after {
        content: "";
        position: absolute;
        top: 0;
        right: -20px;
        width: 25px;
        height: 100%;
    }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.whatsapp-float img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}

.location-thumb {
    background: var(--pestal-grey);
}

.urban-btn,
a.hd-btn {
    transition: all 0.5s ease-in-out;
}

a.card-btn {
    background: var(--primary-yellow);
    color: var(--black);
    transition: all 0.5s ease-in-out;
}

a.card-btn:hover,
.urban-btn:hover,
a.hd-btn:hover {
    /*background: var(--primary-red);*/
    background: #0c4ca3;
    color: var(--white);
}


.navbar-nav .nav-item {
    display: inline-block;
    opacity: 1;
    transition: 0.5s all ease;
}


.navbar-nav ul.dropdown-menu {
    visibility: hidden;
    opacity: 0;
    margin-left: 0;
    position: absolute;
    transition: opacity 0.5s, transform 0.5s, visibility 0.5s ease;
    pointer-events: none;
    top: calc(100% + 13px);
    will-change: transform, opacity;
    transform: translate3d(0px, 20px, 0px) scale(0.97);
}

.navbar-nav ul.dropdown-menu {
    width: 250px;
    border-radius: 10px;
    /* background-color: #ffffff; */
    background: rgb(86,109,127,0.5);
    padding: 20px 0 24px !important;
    box-shadow: 0px 3px 30px 0px #00000014;
    display: block;
}

.navbar-nav > .dropdown:hover > ul,
.navbar-nav .dropdown-submenu:hover > ul {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0px, 0px, 0px) scale(1);
}

.navbar-nav .dropdown-menu:before {
    content: "";
    display: block;
    height: 21px;
    width: 100%;
    background-color: transparent;
    position: absolute;
    top: -21px;
}

.header-bg2 .dropdown-menu .nav-link {
    opacity: 1;
    padding: 0 16px;
    color: var(--white);
}

.header-bg2 .dropdown-menu .dropdown-item:focus,
.header-bg2 .dropdown-menu .dropdown-item:hover{
    color: var(--primary-yellow);
    background: none;
}

.navbar-nav .dropdown-submenu > .dropdown-menu {
    display: block !important;
    left: 100%;
    top: -10px;
    max-height: 400px;
    overflow: auto;
}

.dropdown-menu {
    scrollbar-width: thin;
    scrollbar-color: #4A90E2 #f1f1f1;
  }
  
  /* Webkit specific (Chrome, Edge, Safari) */
  .navbar-nav .dropdown-submenu > .dropdown-menu::-webkit-scrollbar {
    width: 10px;
  }
  
  .navbar-nav .dropdown-submenu > .dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
  }
  
  .navbar-nav .dropdown-submenu > .dropdown-menu::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
  }
  
  .navbar-nav .dropdown-submenu > .dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #555;
  }

.ft-agent {
    display: block;
}

.ua-promise-dot {
    top: 8px;
    left: 0;
    width: 27px;
    height: 20px;
    background: url(https://www.urbanaxis.in/assets/images/red-check-mark.svg) no-repeat center / contain;
}

.structural-thumb {
    border-color: var(--primary-yellow);
}

.faq-accordion__items {
    display: grid;
    grid-template-columns: 1fr;
}

.faq-accordion__item {
    padding: 2rem;
    border-radius: 0.75rem !important;
    margin-bottom: 1.5rem;
    background: var(--pestal-grey) !important;
    color: var(--white) !important;
}

.faq-accordion__items .accordion-item h4.collapsed,
.faq-accordion__items .accordion-item h4:not(.collapsed),
.faq-accordion__items .accordion-button[aria-expanded="true"],
.faq-accordion__items .accordion-button:not(.collapsed) {
    background: none;
    color: var(--white) !important;
    box-shadow: none !important;
}

.faq-accordion__items .accordion-header:after {
    display: none !important;
}

.faq-accordion__icon {
    width: 2.75rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    display: flex;
    background: url(https://www.urbanaxis.in/assets/images/plus.svg) no-repeat center
		center/contain;
}

.faq-accordion__items .accordion-button:not(.collapsed) .faq-accordion__icon {
    background: url(https://www.urbanaxis.in/assets/images/minus.svg) no-repeat center
		center/contain;
}

.faq-accordion__question {
    width: calc(100% - 3rem);
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.5;
}

.faq-accordion__items .accordion-button {
    cursor: pointer !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
}

.faq-accordion__items .accordion-body {
    padding: 0 !important;
    margin-top: 1rem !important;
}

.faq-accordion__items .accordion-body p {
    margin-bottom: 0 !important;
}

.projects-wrapper .card-content p {
    color: var(--body-color);
}
.projects-wrapper .card-content h3 {
    color: var(--heading-color);
}

.sub-title {
    font-size: 13px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.56px;
    margin-bottom: 10px;
    display: block;
}

.director-name {
    font-size: 18px;
    margin-top: 10px;
}




.slick-dots li button,
.slick-dots li.slick-active {
    background: var(--black);
}

/*.number-box span {*/
/*    font-size: 50px;*/
/*}*/

/*.number-box:nth-child(1) span {*/
/*    color: var(--orange);*/
/*}*/

/*.number-box:nth-child(2) span {*/
/*    color: var(--primary-red);*/
/*}*/

/*.number-box:nth-child(3) span {*/
/*    color: var(--dark-red);*/
/*}*/

/*.number-box:nth-child(4) span {*/
/*    color: var(--black);*/
/*}*/

.award-cards-wrapper {
    gap: 32px 0;
}

.award-thumb {
    margin-top: 30px;
    box-shadow: 0 0.125rem 0.5rem 0 rgba(0, 0, 0, 0.2);
    border-radius: 0.75rem;
    position: relative;
    background: var(--white);
    /*border-bottom: 22px solid var(--primary-yellow);*/
    height: 100%;
    margin: 0;
}

.award-thumb img{
    height: 460px;
    object-fit: cover;
}

.award-title {
    height: calc(100% - 460px);
    padding: 32px;
}

.sub-title svg {
    width: 16px;
    height: 17px;
    margin-top: -5px;
}


/* Structural Overview Section */
.structural-overview .heading {
    margin-bottom: 36px;
}

.features-grid {
    display: grid;
    /* grid-template-columns: repeat(2, 1fr);
    border-left: 1px solid transparent; */
}

.card-block {
    width: 100%;
    border-radius: 12.5px;
    padding: 46px 36px;
    box-shadow: 0px 0px 32.731px rgba(0, 0, 0, 0.10);
    height: 100%;
    background-color: var(--white);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 20px;
    border-bottom: 1px solid #e5dcc8;
    position: relative;
    font-size: 18px;
    color: #222;
    font-weight: 400;
}

/* .feature-item:nth-child(odd) {
    border-right: 1px solid #e5dcc8;
}

.feature-item:last-child {
    border-bottom: none;
} */

.structural-overview h2 {
    margin-bottom: 24px;
}

.structural-overview .feature-item i {
    font-size: 24px;
    color: var(--primary-yellow);
    margin-right: 10px;
    position: absolute;
    width: 30px;
    text-align: center;
}

.check-icon {
    min-width: 28px;
    height: 28px;
    border: 2px solid var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-yellow);
    font-size: 18px;
    font-weight: 600;
}

.landmark-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-left: 46px;
    align-items: center;
}

.time-icon {
    font-size: 12px;
    color: var(--black);
    font-weight: 400;
    background: var(--primary-yellow);
    border-radius: 4px;
    padding: 2px 5px;
    align-items: center;
    display: flex;
    line-height: 16px;
}

/* Mobile Responsive */

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-item:nth-child(odd) {
        border-right: none;
    }

    .feature-item {
        font-size: 18px;
        padding: 24px 10px;
        align-items: flex-start;
    }

    .check-icon {
        min-width: 42px;
        height: 42px;
        font-size: 22px;
    }
}
/* Default */
.mobile-only {
    display: none;
}

.desktop-only {
    display: inline-block;
}

.row-eq .card-custom { 
    width: 100%;
    transition: all .3s ease-in-out;
  }
  
  .row-eq .card-custom:hover {
      transform: scale(1.05);
      background: #f4f1ec;
      color: #000;
  }

/* Mobile View */
@media (max-width: 767px) {
    .mobile-only {
        display: inline-block;
    }

    .desktop-only {
        display: none;
    }
}

@media all and (min-width: 992px) {
    .faq-accordion__items {
        gap: 32px !important;
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}












.inner-news-pg-uper .card-content h3 {
    font-size: 25px;
    color: #000;
    margin-bottom: 18px;
    font-weight: 400;
}
.inner-news-pg-uper .card-content {
    padding: 50px 52px;
}
.inner-news-pg-uper .card-content span{
    color: black;
}
.inner-news-pg-uper a.card-btn {
    background: transparent;
    color: var(--black);
    transition: all 0.5s ease-in-out;
    border: 2px solid #c6c1b9;
    padding: 12px 35px;
    font-size: 13px;
    border-radius: 17px;
    margin-top: 38px;
}
.inner-news-pg-uper .project-box img {
    width: 100%;
    height: 450px;
    border-radius: 20px;
}
.inner-news-pg-uper .project-right{
    position: relative;
    overflow: hidden;
}

.inner-news-pg-uper .tag-on-box{
    position: absolute;
    top: 0px;
    left: 0;
    z-index: 2;
}

.inner-news-pg-uper .tag-on-box span{
    display: inline-block;
    background: #cfb296;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    padding: 10px 30px 10px 25px;

    border-radius: 0 25px 25px 0;

    line-height: 1;
}
.new-for-news .urban-link{
    /* color: #EDC716;
    font-weight: 600; */
}
.urban-link::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 2px;
    background: #edc716 !important;
    bottom: 0;
    left: 0;
    transition: 0.3s;
}
.new-for-news .news-excerpt{
    font-size: 17px;
}
.post-date-news{
    color: #EDC716;
    font-size: 13px;
}
.new-for-news .card-media img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    border-radius: 5px;
}
.new-for-news .card-media{
    height: auto;
    padding: 0px;
}
.new-for-news{
        border-radius: 6px;
}
.news-page-box{
      padding: 0px 0px 75px;
    background: #f7f3ed;
}

.inner-news-box-sec .press-inner-card{
    /* box-shadow: 0px 9px 20px rgb(0 0 0 / 15%); */
}
.main-box-news{
    background: #fff;
    height: 100%;
	transition: all 0.4s ease;
	 border-bottom: 3px solid transparent;
}
.main-box-news .urban-link::after{
    background: #ffffff;
}
.btn-load-more{
        text-align: center;
    padding-top: 24px;
}
.load-more-btn{
        background: transparent;
    color: var(--black);
    transition: all 0.5s ease-in-out;
    border: 2px solid #c6c1b9;
    padding: 12px 35px;
    font-size: 13px;
    border-radius: 17px;
    margin-top: 38px;
}

.new_press_new .card-media {
    height: 200px;
    padding: 0px;
}
.new_press_new .card-details {
    padding: 0px;
    overflow: hidden;
    margin: 25px;
}

.press_image img{
	object-fit: contain
}
 .news-page-box.video-box .new-for-news .card-media {
    position: relative;
    width: 100%;
    height:auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    border-bottom: 1px solid #f1f1f1;
}

/*blog detail css 23-06-2026*/
.news-page-box .row>* {
    margin-top:1.5rem;
}
.blog_detail_outer h1{
    font-family: "Space Grotesk", sans-serif;
    font-size: 38px;
    color: #393838;
    padding: 20px 0;
    margin-bottom: 20px;
}
.blog_detail_outer {
    padding: 80px 0;
    max-width: 1100px;
    margin: auto;
}
.blog_detail_outer .blog-detail-time p{
    font-size: 14px;
    color: #606060;
    margin-bottom: 0;
    display: inline;
}
.blog_detail_outer .blog-detail-time i{
    padding-left: 16px;
}

.blog_detail_outer img{
    padding-bottom: 30px;
}
.blog_detail_outer h3, .detail-faq h3{
    font-size: 32px;
    color: #393838;
    padding: 10px 0 10px;
    margin-bottom: 15px;
}
.inner-news-box-sec h3{
   font-size: 32px;
    color: #393838;
    padding: 10px 0 10px;
    margin-bottom: 15px;
}
.news-detail-banner{
    background: url(https://www.urbanaxis.in/assets/images/bgimag.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
}
.news-detail-banner .contact-caption {
    height: 40vh;
}
.detail-faq .accordion .accordion-item h4{
    font-family: "Space Grotesk", sans-serif;
    font-size: 19px;
    color: #393838; 
}
.new-for-news .card-media img {
    /* height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
    position: absolute;
    inset: 0;
    max-width: 100%; */
	
	text-align: center;
    max-height: 100%;
    max-width: 250px;
    object-fit: contain;
}
.new-for-news .card-media{
    /* height: auto;
    padding: 0px;
    min-height: 270px; */
    position: relative;
    /* width: 100%; */
	height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-bottom: 1px solid #f1f1f1;
}

.blog_detail_outer ul {
    padding-left: 0;
}

.blog_detail_outer ul li {
    position: relative;
    padding-left: 25px;
    list-style: none;
}

.blog_detail_outer ul li:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    content: "\f00c";
    color: #393838;

}
.press-release .new-for-news .card-media img {
    object-fit: contain !important;
    width: auto;
    height: auto;
    text-align: center;
    margin: auto;
}
.press-release .new-for-news .card-media {
    /* min-height: 200px !important;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center; */
}
 
.press-release .press-inner-card.new_press_new {
    /* min-height: 575px;
    height: auto; */
}
.video-box .main-box-news .inner-news-box-sec .press-inner-card {
    min-height: 531px;
}

.news-page-box.blog-page-box .new-for-news .card-media img {
    text-align: center;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.news-page-box.blog-page-box .new-for-news .card-media {
   height:100%;
    max-height: 270px;
   padding: 0px; 
    border-bottom: 1px solid #f1f1f1;
    min-height: 270px;
}



@media screen and (max-width: 575px) {
  .blog-banner, .video1-banner {
    width: 100%;
    height: 100%;
    min-height: 465px;
}
.joy-banner {
    background: url(../images/joy-mobile.jpg);
    background-size: cover;
    background-position: center center;
  
}
.news-page-box.blog-page-box .new-for-news .card-media {
    height: 100%;
    max-height: 100%;
}
	.inner-news-pg-uper .card-content {
    padding: 30px;
}
	.news-pg-uper .project-left.press_image{
		width: 100%;
        display: flex;
        justify-content: center;
	}
	.news-pg-uper .project-left.press_image img {
           max-width: 204px;
        height: auto;
}
	.blog_detail_outer h1, .blog_detail_outer h3, .detail-faq h3 {
    font-size: 20px;
    padding: 20px 0;
    line-height: 28px;
}
}











