/* Root Variables */
:root {
    --slate-900: #161616;
    --slate-800: #334155;
    --slate-700: #475569;
    --slate-600: #64748b;
    --slate-500: #94a3b8;
    --slate-400: #cbd5e1;
    --slate-300: #e2e8f0;
    --slate-200: #f1f5f9;
    --slate-100: #f8fafc;
    --slate-50: #f8fafc;
    --yellow-400: #facc15;
    --yellow-500: #eab308;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --white: #ffffff;
    --black: #000000;
    --primary-color:#133050;
    --secondry-color: #FBAA33;
    --primary-bgcolor: linear-gradient(360deg, #133050 0%, #133050 100%);
    --secondry-bgcolor: linear-gradient(180deg, #FBAA33 0%, #FBAA33 100%);
    --primary-btn: linear-gradient(180deg, #133050 0%, #133050 100%);
    --secondry-btn: linear-gradient(180deg, #FBAA33 0%, #FBAA33 100%);
    --theme-color-white: #fff;
    --theme-color-dark: rgba(0, 0, 0, 1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-y:auto !important; 
    overflow-x:hidden !important;
    line-height: 1;
    padding: 0 !important;
    margin: 0;
    font-family: "Roboto", sans-serif;
}
p{
    line-height:normal;
}
ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}
.pos_rel{
    position: relative;
}
html,
body,
.wrapper{
	height: 100%;
}
img{
	border: none;
	max-width: 100%;
	outline: none;
}
a,
.btn,
button{
	box-shadow: none !important;
	cursor: pointer;
	-moz-transition: all 0.35s ease-in-out;
	-ms-transition: all 0.35s ease-in-out;
	-o-transition: all 0.35s ease-in-out;
	outline: medium none !important;
	text-decoration: none;
	transition: all 0.35s ease-in-out;
	-webkit-transition: all 0.35s ease-in-out;
}
a img,
iframe{
	border: none;
}
html,body,div,span,applet,object,iframe,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,
video{
	border: 0;
	font-size: 100%;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,
section{
	display: block;
}
section,.section_padd{
    padding: 90px 0px;
}
ol,
ul{
	list-style: none;
}

/* Common Styling */
.section-title .title {
    font-size: 38px;
    line-height: 30px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--primary-color);
}
.section-title .sub-title {
    background-color: #E7EAEE;
    border-radius: 50px;
    padding: 5px 20px;
    line-height: 28.5px;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 15px;
}
.section-title p {
    font-size: 16px;
    color: var(--theme-color-dark);
    line-height: 26px;
    margin: 0 auto;
}
.btn_box{
    margin-top: 15px;
}
.theme-btn.bg-transparent {
    color: #fff;
}
.theme-btn {
    background-color: var(--secondry-color);
    border: 1px solid var(--secondry-color);
    line-height: 20px;
    border-radius: 0px;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    padding: 15px 25px;
    justify-content: center;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 1;
    overflow: hidden;
    position: relative;
    color: var(--theme-color-dark);
}
.theme-btn:hover, 
.theme-btn:focus {
    color: var(--theme-color-white);
    border-color: var(--theme-color-white);
}
.theme-btn:after {
    top: 50%;
    left: 50%;
    content: "";
    width: 100%;
    height: 0%;
    z-index: -1;
    position: absolute;
    transition: all 0.6s ease;
    transform: translate(-50%, -50%) rotate(-45deg);
    background: var(--theme-color-dark);
}
.theme-btn:hover:after, .theme-btn:focus:after {
    height: 380%;
}
.pad_top70{
    padding-top: 70px;
}
.pad_bot70{
    padding-bottom: 70px;
}
.btn_transparent{
    background: transparent !important;
}
.primarybgcolor{
    background: var(--primary-bgcolor);
}
.secondrybgcolor{
    background: var(--secondry-bgcolor);
}
.primarycolor{
    color: var(--primary-color) !important;
}
.secondrycolor{
    color: var(--secondry-color) !important;
}
.primaryborder{
    border-color: var(--primary-color) !important;
}
.secondryborder{
    border-color: var(--secondry-color) !important;
}
/* For container style */
@media (min-width: 1280px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        min-width: 1230px;
    }
}
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1400px;
    }
}
.navis li a.dropdown-toggle::after{
	display: none;
}
/* TopBar Section */
header.main-header {
    position: fixed;
    left: 0px;
    z-index: 9999;
    background: transparent;
    width: 100%;
}
header.main-header.scrolled {
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    opacity: 100%;
}
.h-one-hs {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.navbrs {
    background: transparent;
    min-height: unset !important;
    margin-bottom: 0;
    padding: 8px 0;
}
.top-icons-agileits-w3layouts li {
    list-style: none;
    display: inline-block;
    padding: 0 15px 0 0;
}
.top-icons-agileits-w3layouts .nav-link {
    font-size: 13px !important;
    color: var(--theme-color-white);
}
.navbrs a i {
    color: var(--theme-color-white);
    background: none !important;
    font-size: 15px;
    position: relative;
    top: 2px;
}
.top-icons-agileits-w3layouts a:hover,
.navbrs a:hover i{
    color: var(--secondry-color);
}
/* TopHeader Navigation */
.navs {
    background-color: transparent;
    margin: 0px auto 0;
    position: relative;
}
.iconarea a {
    padding: 5px 0px 5px 0px;
    display: inline-block;
    height: auto !important;
}
.iconarea .navbar-brand img {
    width: 190px;
}
.menu-bar .navbar-nav {
    margin: 0px;
    background-color: transparent;
    border: 0;
}
.navis li {
    padding: 5px;
}
.navis li a {
    color: var(--theme-color-white);
    padding: 0px 0px;
    font-size: 15px;
    line-height: 16px;
}
.navis li a:hover,
.top-icons-agileits-w3layouts a:focus {
    color: var(--secondry-color);
}
.navis li .nav-link.active, 
.navis li .nav-link.show{
    color: var(--secondry-color);
}
.navis li a.dropdown-item {
    color: var(--theme-color-dark);
    padding: 3px 10px;
}
.navis li a.dropdown-item:active,
.navis li a.dropdown-item:hover {
    background: var(--secondry-color);
}
.menu-bar .header_btn a {
    text-align: center !important;
    background: var(--secondry-color);
    border-radius: 5px;
    border: 1px solid;
    padding: 10px 25px !important;
    line-height: 14px;
    position: relative;
    overflow: hidden;
    color: var(--theme-color-dark);
}
.menu-bar .header_btn a:hover{
    background: var(--theme-color-dark);
    color: var(--theme-color-white);
}
.main-header.scrolled .navbar {
    width: 100%;
    border-radius: 0;
    background: var(--primary-bgcolor);
    /* border-bottom: 1px solid var(--secondry-color); */
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}
.main-header.scrolled .navs{
    border-radius: 0;
    border: none;
    margin: 0px auto;
}
.main-header.scrolled .navbar.disi{
    display: none;
}
.main-header.scrolled .menu-bar .header_btn a{
    display: block;
}
.bg_props {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* TopBanner Section */
.banner {
    position: relative;
    padding: 300px 0 190px;
    background-attachment: fixed;
    background-color: #133050;
    background-position: left;
}
.banner.img1{
    background-image: url(../images/topbanner_bg.jpg);
}
 .banner::before{
    content: "";
    background: linear-gradient(180deg, #133050 0%, rgba(0, 0, 0, 0.5) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 111;
} 
.banner-content{
    position: relative;
    z-index: 222;
}
.banner-content h1 {
    font-size: 52px;
    color: var(--theme-color-white);
    margin-bottom: 15px;
    line-height: 74px;
}
.banner-content h1 span{
    font-weight: 500;
}
.banner-content p {
    font-size: 16px;
    color: var(--theme-color-white);
    font-weight: 400;
    line-height: 28px;
    margin: 0;
}
.banner-content #offer_box {
    background: #d5dce6;
    padding: 17px 10px 17px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    margin: 20px 0 20px auto;
    position: relative;
    border: 1px solid #ccc;
    max-width: 410px;
}
.banner .borderbox {
    border-style: solid;
    border-radius: 5px;
    padding: 11px 30px;
}
#auto-response {
    display: block;
    margin: 15px 0;
    color: var(--theme-color-white);
    opacity: 1;
    width: 100%;
}
#auto-response p {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    margin: 0;
    color: var(--primary-color);
}
.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 60px;
    width: 50px;
    height: 50px;
    background-color: var(--secondry-color);
    border: 1px solid #999;
    color: var(--theme-color-dark);
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    z-index: 999;
    cursor: pointer;
    font-size: 30px;
    -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
}
/* WhatsaAPP Widget */
.whatsapp-btn {
    position: fixed;
    bottom: 60px;
    left: 25px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    animation: breathe 2s ease-in-out infinite;
}
.whatsapp-btn i {
    color: #fff;
    font-size: 26px;
    animation: beat 2s ease-in-out infinite;
    text-decoration: none;
}
@keyframes breathe {
    0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
      box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}
/*Estilos de animacion del icono latiendo*/
@keyframes beat {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1);
    }
}
.bgcolor_gray{
    background-color: #F2F2F2;
}
.bgcolor_grayish{
    background-color: #e7eaee;
}
/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease-in-out;
}

/* Popup Box */
.popup-box {
  position: relative;
  width: 80%;
  max-width: 900px;
  background: #fff;
  border: 4px solid #FBAA34;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

/* Popup Image */
.popup-img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 26px;
  font-weight: bold;
  color: #FBAA34;
  background: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.popup-close:hover {
  background: #FBAA34;
  color: #fff;
}

/* Fade-in Animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Mobile tweaks */
@media (max-width: 480px) {
  #popupBox {
    max-width: 100%;
    border-width: 2px;
  }

  #popupClose {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}
/* Project Highlights */
.whychoose_sec .highlight-card {
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #E7EAEE;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.01);
    border: 1px solid #b8c1cb57;
}
.whychoose_sec .highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.whychoose_sec .highlight-card h4 {
    font-weight: 700;
    font-size: 21px;
    color: var(--slate-900);
    margin-bottom: 1rem;
}
.whychoose_sec .highlight-card p {
    font-size: 15px;
    color: var(--slate-900);
    text-align: center;
    margin: 0;
}
.inner-title .section-badge {
    color: var(--slate-900);
    font-size: 18px;
}
.inner-title .section-title .title{
    color: #161616;
}
.inner-title .section-description {
    font-size: 18px;
    color: #161616CC;
    line-height: 25px;
}
/* Featured Project */
.project-info {
    margin-top: 30px;
}
.feature-item {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
    color: var(--slate-900);
}
.feature-dot {
    width: 16px;
    height: 16px;
}
.btn-link {
    text-decoration: none !important;
    font-size: 1rem;
    font-weight: 600;
    color: var(--slate-900);
    display: inline-flex;
    align-items: center;
}
.btn-link:hover {
    color: var(--slate-700);
}
.project-item {
    border: 1px solid #b8c1cb !important;
    transition: all 0.3s ease;
}
.project-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}
.project-thumb {
    width: 96px;
    height: 96px;
    object-fit: cover;
    flex-shrink: 0;
}
.project-item h5 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}
.project-item a {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.project-item a:hover {
    color: var(--slate-700);
}

/* Apartments Section */
.apartment-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    max-width: 700px;
    margin: auto;
}
.apartment-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.apartment-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}
.apartment-info {
    position: absolute;
    bottom: 32px;
    left: 32px;
    color: #fff;
    z-index: 2;
}
.apartment-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.apartment-info p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}
#apartmentCarousel .carousel-indicators {
    bottom: -43px; /* default is ~10px from bottom, adjust as needed */
}

#apartmentCarousel .carousel-indicators [data-bs-target] {
    background-color: #999; /* Make dots visible on dark overlays */
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 1;
}
#apartmentCarousel .carousel-indicators .active{
    background-color: #222;
}
#apartmentCarousel .carousel-item {
  transition: transform 0.6s ease-in-out;
}
.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 35px 0 20px;
}
.amenity-item {
    background-color: #E7EAEE;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--Neutral-neutral-10, #1616161A);
}
.amenity-text {
    font-size: 15px;
    color: var(--primary-color);
    display: inline-block;
    line-height: 14px;
}
.amenity-tag {
    background-color: #D0D6DC;
    color: #133050CC;
    padding: 4px 5px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
}
.cta-card {
    background-color: var(--primary-color);
    padding: 15px;
    border-radius: 16px;
    color: var(--white);
}
.cta-image {
    width: 96px;
    height: 96px;
    border-radius: 8px;
    object-fit: cover;
}
.cta-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.cta-card p {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 0;
}
.btn-contact-now {
    background-color: var(--secondry-color);
    color: var(--theme-color-dark);
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-contact-now:hover {
    background-color: var(--yellow-500);
    color: var(--slate-900);
}
/* Pricing */
.pricing-card {
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 40px;
    border: 1px solid #1616161A;
}
.pricing-list {
    margin-top: 32px;
}
.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
    margin-bottom: 25px;
    color: var(--primary-color);
}
.pricing-card .hr {
    border-bottom: 1px solid var(--primary-color);
}
.pricing-item:last-child {
    margin-bottom: 5px;
}
.pricing-item span:first-child {
    font-weight: 400;
}
.pricing-item span:last-child {
    font-weight: 700;
}

/* Contact Section */
.contact-accordion {
    border-radius: 16px;
}
.contact-accordion h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--slate-900);
}
.contact-accordion p {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}
.accordion-icon {
    font-size: 1.5rem;
    color: var(--slate-900);
}
.contact-card {
    border-radius: 16px;
}
.contact-card h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
}
.contact-card p {
    font-size: 20px;
    color: var(--gray-600);
}
.contact-card a {
    font-size: 18px;
    font-weight: 600;
    color: var(--slate-900);
    text-decoration: underline;
}
.contact-card a:hover {
    color: var(--slate-700);
}
.contact-form-card {
    background-color: var(--gray-100);
    padding: 25px;
    border-radius: 16px;
}
.contact-form-card .section-title .title {
    font-size: 30px;
}
.contact-form-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--slate-900);
}
.contact-form-card p {
    font-size: 1.125rem;
    color: var(--gray-600);
}
.contact-form-card .form-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 8px;
}
.contact-form-card .form-control {
    background-color: var(--white);
    border: 1px solid var(--gray-300);
    padding: 16px;
    font-size: 1.125rem;
    border-radius: 0;
}
.contact-form-card .form-control::placeholder {
    color: rgba(0, 0, 0, 0.3);
}
.contact-form-card .form-control:focus {
    background-color: var(--white);
    border-color: var(--slate-900);
    box-shadow: none;
}
.contact-form-card .form-check-label {
    font-size: 1rem;
    color: var(--slate-900);
}
.contact-form-card .form-check-input:checked {
    background-color: var(--slate-900);
    border-color: var(--slate-900);
}

/* CTA Section */
.cta-bottom {
    margin-bottom: -70px;
}
.cta-bottom .cta-card {
    padding: 30px 35px;
}
.cta-bottom .cta-image {
    width: 128px;
    height: 128px;
    border-radius: 8px;
    object-fit: cover;
}
.cta-bottom h3 {
    font-size: 32px;
    font-weight: 700;
    color: #161616CC;
    margin-bottom: 10px;
}
.cta-bottom p {
    font-size: 17px;
    color: #161616CC;
    margin: 0;
    line-height: 24px;
}

/* Footer */
.footer {
    background: var(--primary-bgcolor);
    color: var(--white);
    padding: 140px 0 35px;
}
.footer-logo {
    width: 148px;
    height: 100px;
    object-fit: cover;
}
.footer-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 682px;
    margin: 0 auto 30px;
}
.social-links {
    display: flex;
    gap: 13px;
    justify-content: center;
    margin-bottom: 50px;
}
.social-link {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.8;
}
.footer hr {
    border-color: rgba(255, 255, 255, 0.5);
}
.footer a {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
}
.footer a:hover {
    color: var(--yellow-400);
}
.innerPageBanner {
    padding: 200px 0 120px;
}
.innerPageContent .post-item {
    border: 1px solid #D0D6DC;
    border-radius: 8px;
    margin: 0 0 25px;
    padding: 20px 18px;
    background: #F2F2F2;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.innerPageContent .post-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
    background: #fff;
    
}
.img-box img{
    border-radius: 8px;
    width: 100%;
    height: 307px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.innerPageContent .post-item:hover .img-box img{
    transform: scale(1.02);
}
.project-tags {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 30px 0 13px 0;
}
.status-tag {
    background-color: rgba(22, 22, 22, 0.1);
    font-weight: 600;
    font-size: 11.11px;
    padding: 5px 10px;
    border-radius: 8px;
    color: var(--slate-900);
}
.developer-tag {
    text-align: right;
    font-weight: 700;
    font-size: 11.11px;
    color: var(--slate-900);
    line-height: 15px;
}
.developer-name {
    font-weight: 700;
    text-transform: uppercase;
}
.project-title {
    font-weight: 700;
    font-size: 24px;
    color: var(--slate-900);
    margin-bottom: 10px;
    line-height: 1.2;
}
.project-description {
    font-weight: 400;
    font-size: 16px;
    color: rgba(22, 22, 22, 0.8);
    margin-bottom: 13px;
    line-height: 22px;
}
.view-project-btn {
    background: transparent;
    border: none;
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 13.5px;
    text-decoration: none;
}
.view-project-btn:hover {
    color: var(--secondry-color);
}
.view-project-btn .arrow-icon {
    width: 14px;
    height: 14px;
}
.innerPageContent.projectdetailspage .feature-item {
    font-weight: 400;
    font-size: 15px;
}
.innerPageContent .proj_sidebar {
    border: 1px solid #D0D6DC;
    border-radius: 16px;
    margin: 0 0 25px;
    padding: 30px 25px;
    background: #E7EAEE;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: sticky;
    top: 90px; /* adjust this depending on your header height */
    z-index: 10;
}
.innerPageContent .proj_sidebar .project_desc_item .title {
    font-weight: 700;
    font-size: 18px;
    color: var(--slate-900);
    margin-bottom: 10px;
    display: block;
    line-height: 22px;
}
.innerPageContent .proj_sidebar .project_desc_item p{
    color: #161616CC;
    font-size: 16px;
}
.innerPageContent .proj_sidebar hr{
    margin: 25px 0;
}

/* ProjectDetailsPage Gallery Popup */
/*----------  iso-gallery  ----------*/
.innerPageContent.projectdetailspage .img_iso {
    position: relative;
    cursor: pointer;
}
.innerPageContent.projectdetailspage .iso-container .isotope-item {
    margin-bottom: 20px;
}
.innerPageContent.projectdetailspage .img_iso img{
    width: 100%;
}
.innerPageContent.projectdetailspage .img_iso .content_box {
    position: absolute;
    bottom: 3px;
    left: 0;
    right: 0;
    background-color: rgba(30, 32, 32, 0.7);
    overflow: hidden;
    width: 100%;
    height: 99%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    color: var(--theme-color-white);
    border-radius: 8px 8px;
}
.innerPageContent.projectdetailspage .img_iso .content_box .text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 20px;
}
.innerPageContent.projectdetailspage .img_iso .content_box .gallerytitle {
    font-size: 15px;
    line-height: 20px;
}
.innerPageContent.projectdetailspage .img_iso .content_box .gallerytitle span{
    display: block;
}
.innerPageContent.projectdetailspage .img_iso .content_box .arrowicon {
    width: 55px;
    height: 55px;
    border-radius: 45px;
    border: 1px solid var(--theme-color-white);
    text-align: center;
    line-height: 55px;
    font-size: 18px;
    transition: all 0.3s ease;
    margin: 15px auto 15px;
}

/* On hover, the overlay text will "zoom" in display */
.innerPageContent.projectdetailspage .img_iso:hover .content_box {
    transform: scale(1);
}

/* GalleryDetail Page modal/lightbox popup */
.hidden_gal {
    display: none !important;
    visibility: hidden !important;
}
.popup-data img{
	max-width:100%; 
	height:auto;
}
.popup-data-content{
	max-width:370px;
	margin: 25px auto 10px;
	color: rgba(255,255,255,.75)
}
#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {
    border: none;
    color: #fff;
    padding: 7px 12px;
    font-size: 24px;
    border-radius: 50%;
    line-height: 1.1;
    background: var(--primary-color);
}
#cboxCurrent {
    color: #999;
}

/* GalleryPage Start */
.innerPageContent.gallerypage .filter-button-group button.btn {
    border: 1px solid var(--Neutral-neutral, #161616);
    margin: 0 5px;
    border-radius: 5px;
    font-weight: 500;
    padding: 12px 30px;
}
.innerPageContent.gallerypage .filter-button-group button.btn.active{
    background-color: var(--primary-color);
    color: var(--white);
}
.innerPageContent.gallerypage .filter-button-group button.btn:hover{
    background-color: var(--primary-color);
    color: var(--white);
}

/* --- Apartment Tabs --- */
.innerPageContent.apartmentpage .nav-tabs {
    border-bottom: 1px solid #e7e9ed;
    gap: .75rem;
}
.innerPageContent.apartmentpage .nav-tabs .nav-link {
    border: 0;
    color: #6b7280;
    padding: .5rem .25rem;
    font-weight: 500;
}
.innerPageContent.apartmentpage .nav-tabs .nav-link.active {
    color: #111827;
    background: transparent;
    border-bottom: 2px solid #111827;
}

/* --- Left images --- */
.innerPageContent.apartmentpage .apartment-img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: .375rem;
    border: 1px solid #e7e9ed;
    background: #f8f9fb;
}
.innerPageContent.apartmentpage .thumb-img {
    width: 100%;
    height: 142px;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: transform .15s ease, border-color .15s ease;
    background: #f8f9fb;
}
.innerPageContent.apartmentpage .thumb-img:hover { transform: translateY(-1px); }
.innerPageContent.apartmentpage .thumb-img.active { border-color: #111827; }

/* --- Right details (card-like) --- */
.innerPageContent.apartmentpage .details-card {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px 15px 15px;
    background: #fff;
}
.innerPageContent.apartmentpage .kv-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #f1f3f6;
}
.innerPageContent.apartmentpage .kv-row:last-child { border-bottom: 0; }
.innerPageContent.apartmentpage .kv-row .k { color: #6b7280; }
.innerPageContent.apartmentpage .kv-row .v { font-weight: 600; color: #111827; }
.innerPageContent.apartmentpage .btn-book {
    background: #0f1f33;
    border-color: #0f1f33;
}
.innerPageContent.apartmentpage .btn-book:hover { background: #0b1726; border-color: #0b1726; }
.innerPageContent.apartmentpage .share-row {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: #6b7280;
    font-size: .95rem;
}
.innerPageContent.apartmentpage .share-row .bi {
    font-size: 1.05rem;
    cursor: pointer;
    color: #111827;
}
.innerPageContent.apartmentpage .amenities ul {
    margin: 0;
    list-style: disc;
    padding: 0 0 0 15px;
}
.innerPageContent.apartmentpage .amenities h5 {
    border-bottom: 1px solid #ccc;
    padding: 15px 0 10px;
}
.innerPageContent.apartmentpage .amenities ul li {
    padding: 12px 0 0;
}

/* Amenities Page */
.innerPageContent.amentiespage .highlight-card{
    margin-top: 15px;
    height: auto;
}
.innerPageContent.amentiespage .highlight-card h4 {
    font-weight: 600;
    font-size: 18px;
}
.innerPageContent.amentiespage .section-title .title {
    font-size: 32px;
    line-height: 34px;
    margin-bottom: 12px;
}

/* Optional custom arrows */
.owl-prev-icon, .owl-next-icon {
  font-size: 30px;
  color: #333;
}
.owl-carousel.owl-theme .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    margin-top: -10px;
}
.owl-carousel.owl-theme .owl-nav.disabled{
    display: none;
}
.owl-carousel.owl-theme .owl-nav button {
  pointer-events: all;
  border: none !important;
  transition: 0.3s;
  margin: 0 10px;
  padding: 0 !important;
  background: transparent !important;
}
.owl-carousel.owl-theme .owl-nav button span {
    color: var(--primary-color);
    font-size: 20px;
    line-height: 1;
    background-color: var(--white);
    padding: 4px 12px;
}
.owl-carousel.owl-theme .owl-nav button span:hover {
  background-color: var(--primary-color) !important;
  color: #fff;
}
.owl-carousel.owl-theme .owl-dots {
    margin: 10px 0 0;
}
.owl-carousel.owl-theme .owl-dots .owl-dot span{
    margin: 0 3px;
    background: #999;
}
.owl-carousel.owl-theme .owl-dots .owl-dot.active span{
    background: var(--primary-color);
}
@media (min-width: 768px) {
  #amenitiesCarousel .carousel-inner .carousel-item .col-md-6 {
    flex: 0 0 50%; /* tablet: 2 per slide */
    max-width: 50%;
  }
}
@media (min-width: 992px) {
  #amenitiesCarousel .carousel-inner .carousel-item .col-lg-3 {
    flex: 0 0 25%; /* desktop: 4 per slide */
    max-width: 25%;
  }
}

/* AboutPage Starts */
.innerPageContent.aboutpage .aboutprojects .post-item {
    margin: 0 0 15px;
    padding: 10px 7px;
}
.innerPageContent.aboutpage .aboutprojects .post-item .project-description {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 18px;
}
.innerPageContent.aboutpage .aboutprojects .project-title {
    font-size: 16px;
    font-weight: 700;
}
.innerPageContent.aboutpage .aboutprojects .img-box img {
    height: 110px;
    object-fit: cover;
}
.innerPageContent.aboutpage .team-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.innerPageContent.aboutpage .team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}
.innerPageContent.aboutpage .team-info {
    background: var(--primary-color);
    color: #fff;
    padding: 12px 15px;
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 95%;
    opacity: 0.95;
    border-radius: 8px;
    margin: 0 10px;
}
.innerPageContent.aboutpage .team-info h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}
.innerPageContent.aboutpage .team-info p {
    margin: 5px 0 0;
    font-size: 14px;
    opacity: 0.9;
}
.innerPageContent.aboutpage .team-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ContactUs Page */
.innerPageContent.contactpage .contact-form-card {
    background-color: var(--gray-100);
    padding: 25px 25px;
    border-radius: 15px;
    border: 1px solid #ddd;
}
.innerPageContent.contactpage .highlight-card {
    height: auto;
    align-items: start;
}
.innerPageContent.contactpage .highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.innerPageContent.contactpage .highlight-card h4 {
    font-weight: 700;
    font-size: 18px;
    color: var(--slate-900);
}
.innerPageContent.contactpage .highlight-card p {
    font-size: 16px;
    color: var(--slate-900);
    margin: 0px 0 10px;
    text-align: left;
    line-height: 22px;
    font-weight: 500;
}
.innerPageContent.contactpage .highlight-icon i {
    color: var(--slate-900);
}
.innerPageContent.contactpage .contact-card a img{
    max-height: 810px;
    object-fit: cover;
}
.innerPageContent.office_hours .pricing-card {
    border: 1px solid #ccc;
}

/* PricingPlan Page */
.innerPageContent.pricingpage .pricing-table {
    background: #f2f2f2;
    border-radius: 20px;
    box-shadow: 1px 1px 8px 1px rgba(0,0,0,0.2);
    border: 1px solid #eee;
}
.innerPageContent.pricingpage .table-header {
    background-color: #f8f9fa;
    font-weight: 600;
    color: var(--primary-color);
}
.innerPageContent.pricingpage th {
    padding: 25px 15px;
    line-height: 15px;
}
.innerPageContent.pricingpage th, 
.innerPageContent.pricingpage tr, 
.innerPageContent.pricingpage td {
    color: var(--primary-color);
}
.innerPageContent.pricingpage td {
    color: var(--primary-color);
    font-size: 14px;
}
.innerPageContent.pricingpage .table-row-label {
    color: #0a8dd0;
    font-weight: 600;
    width: 181px;
    padding: 25px 10px;
}
.innerPageContent.pricingpage .download-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
}
.innerPageContent.pricingpage .download-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}
.innerPageContent.pricingpage .step-card {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e9ecef;
    height: 100%;
    transition: all 0.3s ease;
}
.innerPageContent.pricingpage.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.innerPageContent.pricingpage .step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #133050;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
}
.innerPageContent.pricingpage .step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #133050;
    margin-bottom: 1rem;
}
.innerPageContent.pricingpage .step-description {
    color: rgba(22,22,22,0.8);
}
.innerPageContent.pricingpage .financing-section {
    background-color: #f8f9fa;
    border-radius: 16px;
    border: 1px solid #c9c9c9;
    padding: 18px 20px;
}
.innerPageContent.pricingpage .financing-badge {
    background-color: var(--secondry-color);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 26px;
    padding: 12px 15px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 15px;
}
.innerPageContent.pricingpage.contact-label {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
}
.innerPageContent.pricingpage .financing-section p {
    font-size: 17px;
    color: #161616CC;
    line-height: 24px;
}
.innerPageContent.pricingpage.whychoose_sec .highlight-card p {
    font-size: 16px;
    line-height: 20px;
}
.innerPageContent.pricingpage.hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/topbanner_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 150PX 0;
}
.innerPageContent.pricingpage .hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.innerPageContent.pricingpage .hero-subtitle {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 28px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.5rem;
    } 
    .table-row-label {
        width: 150px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        background-attachment: scroll;
    }
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Additional utility classes */
.rounded-4 {
    border-radius: 16px !important;
}

.text-nowrap {
    white-space: nowrap;
}

.opacity-75 {
    opacity: 0.75 !important;
}

.opacity-50 {
    opacity: 0.5 !important;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.btn:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(30, 41, 59, 0.25);
}

/* Loading animations */
.highlight-card,
.project-item,
.pricing-card,
.contact-card {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects */
.btn {
    transition: all 0.3s ease;
}
.btn:hover {
    transform: translateY(-1px);
}
.project-item:hover .project-thumb {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}
.social-link:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3.5rem;
    }    
    .section-title {
        font-size: 2.25rem;
    }
    .innerPageContent.gallerypage .filter-button-group button.btn {
        margin: 0 0px;
        padding: 6px 20px;
    }
}

@media (max-width: 991.98px) {
    .custom-navbar .nav-link {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }    
    .dropdown-arrow {
        display: none;
    }    
    .hero-title {
        font-size: 3rem;
    }    
    .section-title {
        font-size: 2rem;
    }    
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }  
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }    
    .project-buttons {
        flex-direction: column;
        gap: 1rem;
    }    
    .contact-accordion h3 {
        font-size: 1.75rem;
    }    
    .contact-form-card h3 {
        font-size: 1.75rem;
    }    
    .cta-banner h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        height: 55vh;
        text-align: center;
        padding: 60px 0 50px;
    }    
    .hero-title {
        font-size: 2.5rem;
    }    
    .highlight-card {
        height: auto;
        padding: 30px 15px;
    }    
    .highlight-card h4 {
        font-size: 1.25rem;
    }    
    .apartment-card {
        height: 250px;
    }    
    .apartment-info {
        bottom: 20px;
        left: 20px;
    }    
    .apartment-info h4 {
        font-size: 1.25rem;
    }    
    .cta-card {
        padding: 20px;
        text-align: center;
    }    
    .pricing-card {
        padding: 10px;
    }  
     .contact-card {
        padding: 0 0 20px;
    }
    .contact-card p {
        font-size: 18px;
    } 
    .contact-form-card {
        padding: 20px 10px;
    }  
    .cta-banner {
        padding: 20px;
        text-align: center;
    }    
    .project-thumb {
        width: 80px;
        height: 80px;
    }    
    .project-item h5 {
        font-size: 1.25rem;
    }    
    .project-item a {
        font-size: 1rem;
    }
    .contact-form-card .section-title .title {
        font-size: 23px;
        line-height: 24px;
    }
    .inner-title .section-description {
        font-size: 15px;
        line-height: 20px;
    }
    .contact-form-card .form-control {
        padding: 10px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
    }    
    .section-title {
        font-size: 1.75rem;
    }    
    .contact-accordion h3 {
        font-size: 1.5rem;
    }    
    .contact-form-card h3 {
        font-size: 1.5rem;
    }    
    .cta-banner h3 {
        font-size: 1.5rem;
    }    
    .footer {
        padding: 80px 0 35px;
    }    
    .footer-description {
        font-size: 1rem;
    }
}

@media  screen and (max-width: 767px) {
    .main-header .container.menu-bar.navs {
        display: block;
        margin: 0px auto 0;
        border: 0;
        border-radius: 0;
        box-shadow: unset;
        padding: 0px 10px;
    }
    .main-header .navbar {
        border-bottom: 1px solid #ccc;
        padding: 5px 0px 0px;
    }
    .main-header .navbrs.h-one-hs {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .main-header .navis li {
        padding: 0;
    }
    .main-header .navis li a {
        color: var(--theme-color-white);
        padding: 10px 20px;
        font-size: 15px;
    }
    .main-header .navis li:first-child{
        padding-top: 5px;
    }
    .main-header .nav.navbar-nav.navis.align-items-center {
        text-align: left !important;
        display: block;
        padding: 0 15px;
    }
    .main-header .menu-bar .header_btn{
        padding-bottom: 15px !important;
    }
    .main-header .menu-bar .header_btn a{
        line-height: 14px;
    }
    .main-header .navbar-toggler {
        float: right;
        border: 1px solid #ddd;
        margin: 10px 0 0;
        padding: 6px 10px;
    }
    .main-header .navbar-toggler span.fa{
        color: var(--theme-color-white);
    }
    .main-header .navbrs  {
        padding: 8px 0;
    }
    .main-header .navbrs .container {
        justify-content: center;
        gap: 5px;
    }
    .menu-bar .navbar-nav {
        background-color: var(--primary-color);
    }
    .banner {
        padding: 140px 0 45px;
    }
    .banner-content h1 {
        font-size: 26px;
        line-height: 36px;
        margin-bottom: 10px;
    }
    .banner-content .breadcrumb-item {
        font-size: 15px !important;
    }
    .banner-content p {
        font-size: 16px;
        line-height: 24px;
    }
    .innerPageContent.apartmentpage .apartment-img{
        height: auto;
    }
    .innerPageContent.apartmentpage .thumb-img{
        height: auto;
    }
    .innerPageContent.apartmentpage .details-card{
        margin-top: 20px;
    }
    .top-icons-agileits-w3layouts li {
        padding: 0 10px 0 0;
    }
    .section-title .title,
    .innerPageContent.amentiespage .section-title .title {
        font-size: 28px;
        line-height: 28px;
        margin-bottom: 10px;
    }
    .cta-bottom .cta-card {
        padding: 20px 15px;
    }
    .cta-card h5 {
        font-size: 1.20rem;
    }
    .cta-bottom p {
        font-size: 15px;
        line-height: 20px;
    }
    .whychoose_sec .highlight-card h4 {
        font-size: 20px;
    }
    .whychoose_sec .highlight-card p {
        font-size: 15px;
    }
    .pricing-item {
        font-size: 13px;
        margin-bottom: 20px;
    }
    .pricing-item span:first-child {
        font-weight: 600;
    }
    .back-to-top {
        right: 10px;
        bottom: 30px;
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
    .whatsapp-btn {
        left: 10px;
        bottom: 25px;
        width: 50px;
        height: 50px;
    }
    .project-description {
        font-size: 16px;
        line-height: 1.3;
    }
    .project-title {
        font-size: 22px;
    }
    .innerPageContent .post-item {
        padding: 15px 15px;
        margin: 0 0 15px;

    }
    .innerPageContent.amentiespage .feature-item {
        font-size: 14px;
    }
    .innerPageContent.amentiespage .feature-item .feature-dot {
        width: 12px;
        height: 12px;
        margin-right: 10px !important;
    }
    .innerPageContent.amentiespage .highlight-card {
        margin-top: 10px;
    }
    .innerPageContent.aboutpage .team-card {
        margin-bottom: 15px;
    }
    .innerPageContent.contactpage .highlight-card {
        margin-bottom: 15px;
    }
    .innerPageContent.contactpage .contact-form-card {
        padding: 20px 15px;
    }
    .innerPageContent.gallerypage .filter-button-group button.btn {
        margin: 0 0px;
        padding: 5px 15px;
    }
    .innerPageContent.pricingpage .hero-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
        line-height: 22px;
    }
    .innerPageContent.pricingpage .hero-title {
        font-size: 30px;
        margin-bottom: 10px;
    }
}