 @font-face {
  font-family: 'CustomFont';
  src: url('../font/agright-regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
 *{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
 }
:root{
  --title-font:'CustomFont', serif;
  --para: 'Poppins', sans-serif;
}
.wp-button{
	margin-top:14px;
}
.float{
	position:fixed;
	width:50px;
	height:50px;
	bottom:30px;
	right:20px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
  text-decoration: none;
  
}
.float i{
  margin: 0px;
}

body,p{
    font-family: var(--para);
}
 nav{
font-size:16px;
}
.mobile-link{
  color: white !important;
}

#nav{
position:fixed;
top:0;
left:0;
width:100%;
z-index:999;
}

.navbar{
padding:20px 0;
background:transparent;
transition:all .4s ease;
}

.navbar.scrolled{
background:#fff;
backdrop-filter:blur(10px);
padding:12px 0;
box-shadow: 2px ;
}
/* Change link color when navbar is scrolled */
.navbar.scrolled .nav-link{
  color:#000;
}
.nav-link{
color:#fff;
}

.nav-link:hover{
color:#fff;
}

.navbar-nav .nav-link.active{
color:#bd8c2e !important;
}


.navbar-toggler-icon{
background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='black' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-toggler{
  background-color: #fff;
}
.offcanvas-body{
background:#000;
}
 nav{
font-size:16px;
}

#nav{
position:fixed;
top:0;
left:0;
width:100%;
z-index:999;
}

.navbar{
padding:20px 0;
/* background:transparent; */
transition:all .4s ease;
background-color: #fff;
}

.navbar.scrolled{
background:#fff;
backdrop-filter:blur(10px);
padding:12px 0;
box-shadow: 2px ;
}
/* Change link color when navbar is scrolled */
.navbar.scrolled .nav-link{
  color:#000;
}
.nav-link{
color:#fff;
}

.nav-link:hover{
color:#fff;
}

.navbar-nav .nav-link.active{
color:#1f5e8c !important;
}


.navbar-toggler-icon{
background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='black' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.offcanvas-body{
background:#000;
}

.map-container {
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


.logo-row {
    position: relative;
}

.logo-img {
    max-height: 80px;
    object-fit: contain;
}
.banner {
  background: url("../images/desktop-banner.webp");
  background-size: cover;
  width: 100%;
  min-height: 100vh;
  position: relative;
background-position:center;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.banner .container {
  width: 80%;
  display: flex;
  justify-content: flex-end;
  padding-bottom: 100px;
}

/* text styling */
.banner .heading {
  font-family: var(--title-font);
  font-weight: 400;
  letter-spacing: 0.5px;
  font-size: 32px;
  color: #1f5e8c; 
  line-height: 1.8;
  /* box-shadow: 2px; */
  text-shadow: 2px 2px 5px #ffffff;
}

.sub-heading {
  font-size: 17px;
  margin-top: 10px;
  font-weight:500;
}
.borderLine {
  position: relative;
}

.borderLine:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px; 
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background-color: #999;
}
/* ================ 2nd=================== */
.property-card {
  position: relative;
  overflow: hidden;
   height: 400px;
 
}

.property-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
 
}

.property-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0px 20px 20px;
}

.property-logo {
  text-align: start !important;
}

.property-logo img {
  max-width: 60px;
}

.property-overlay::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.2), rgba(0,0,0,0));
  z-index: 0;
}

.property-info {
  position: relative;
  z-index: 1;
  color: #fff;
}

/* Badge */
.property-badge {
 
  backdrop-filter: blur(5px);
 
  font-size: 12px;
  margin-bottom: 8px;
}

.property-text {
  font-size: 14px;
  margin-bottom: 10px;
  position: relative;
  font-family: var(--title-font);
}
.sm-text{
  font-size: 12px;
}

.property-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #dad9d9;
  transition: width 0.4s ease;
}

.property-card:hover .property-text::after {
  width: 100%; 
}

.property-btn {
  display: inline-block;
  padding: 5px 12px;
  background: #ccc;
  color: #000;
  font-size: 10px;
  text-decoration: none;
  font-weight: 600;
}
/* ============================= about div ============= */
.about-section {
  padding: 100px 0px 100px;
}

.about-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.about-content {
  background: #91c2e073;
  padding: 50px;
  width: 45%;
  position: absolute;
  z-index: 2;
}
.about-content span{
   font-family: var(--title-font);
   font-size: 20px;
  color: #04294a;
  font-weight: 600;
}
.about-content h2{
     font-family: var(--title-font);
   font-size: 35px;
  color: #04294a;
  font-weight: 600;
  line-height: 1.8;
}
.about-content p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.wrapper{
  overflow-x: hidden !important;
}
.read-btn {
  display: inline-block;
  background: #fff;
  color: #1b4f72;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
}

.about-image {
  width: 100%!important;
}

.about-image img {
  width: 100% !important;
  height: 350px;
  object-fit: cover;
}
@media(max-width:778px){
  .sub-heading {
    font-size: 12px;
  }
  .property-card {
  position: relative;
  overflow: hidden;
   height: 400px;
 
}
  /* text styling */
.banner .heading {
  font-family: var(--title-font);
  font-weight: 400;
  letter-spacing: 0.5px;
  font-size: 20px;
  color: #f6f8f9;  
  line-height: 1.8;
  text-shadow: none;
  
}
.banner .container{
  padding-bottom: 85% !important; 
}
  .category-section {
background: linear-gradient(to bottom, #ccf1fc 70%, #fff 30%);
  padding: 60px 0px 100px;
}
.text-container h2{
    font-size: 20px;
    text-align: center;
}
.text-container span{
    font-size: 16px;
    text-align: center !important;
}

.text-container{
    /* font-size: 40px; */
    padding: 0px;
}
  .about-content {
  background: #91c2e073;
  padding: 50px 20px;
  width: 100%;
  position: absolute;
  z-index: 2;
}
.about-content span{
   font-family: var(--title-font);
   font-size: 15px;
  color: #04294a;
  font-weight: 600;
}
.about-content h2{
     font-family: var(--title-font);
   font-size: 25px;
  color: #04294a;
  font-weight: 600;
}
.about-content p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-section {
  padding: 0px 0px 10px;
}

}
/* ============================ counter =============== */
.stats-section {
  /* background: #f5f5f5; */
  padding:0px 20px 50px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}


.stat-box h2 {
  font-size: 45px;
   font-family: var(--title-font);
  color: #1f5f8b;
  font-weight: 500;
}

.stat-box h2::after {
  content: "+";
  font-size: 28px;
}

.stat-box p {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  margin-top: 5px;
}

.border-left,.border-left2 {
  position: relative;
  padding-left: 20px; 
}


.border-left::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    white 0%,
    white 30%,
    #1f5f8b 30%,
    #1f5f8b 70%,
    white 70%,
    white 100%
  );
}

.border-left2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 30%,
    #1f5f8b 30%,
    #1f5f8b 70%,
    transparent 70%,
    transparent 100%
  );
}


@media (max-width: 768px) {
.banner {
  background: url("../images/Mobile-view/home.webp") center / cover no-repeat;
  background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
}
  .no-border-mobile{
    border-left: none !important;
  }

  .no-border-mobile::before {
    display: none !important;
  }
  

}
@media(min-width:992px){
 
   .no-border-desk {
    border-left: none !important;
  }
 .no-border-desk::before {
    display: none !important;
  }
  .banner{
    padding-top:100px ;
  }
.stat-box {
  flex: 1;
  min-width: 200px;
  padding: 20px;
}
}
@media (max-width: 768px) {
 .stats-section {
 margin-top: 50px;
}
.stat-box h2{
  font-size: 25px;
}
  .stat-box {
    flex: 0 0 50%;   /* 2 columns */
    max-width: 50%;
    padding: 20px 0;
  }

.ani-img{
  width: 100%;
  margin: 0 auto;
}
.blog-overlay{
 
  background: rgba(32, 94, 138, 0.9);
 
}
.text-container{
    width: 90%;
    margin: 0 auto;
    font-family: var(--title-font);
    text-align: justify;
}
}

/* =======================increse image======================== */

.blog-section{
  position: relative;
  margin: 100px 0px;
  padding-bottom: 200px;
}
@media (min-width: 992px){
  .category-section {
  background: linear-gradient(to bottom, #ccf1fc 70%, #fff 30%);
  padding: 60px 0 0px;
}
.ani-img{
  width: 80%;
  height: 300px !important;
  margin: 0 auto;
}
.text-container{
    width: 95%;
    margin: 0 auto;
    font-family: var(--title-font);
    text-align: center;
}
.blog-section2 {
    position: relative;
    margin: 0px 0px 100px;
    padding-bottom: 250px;
  }
.blog-overlay {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  background: rgba(32, 94, 138, 0.9);
  /* display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center; */
  padding: 50px 20px;
}
}
/* ========================== slider =============== */

 .testimonial-section-custom {
  padding: 0px 0px 100px 0px;
  font-family: 'Georgia', serif;
}

.testimonial-heading {
  text-align: center;
  font-size: 35px;
  color: #1c5d8f;
  margin-bottom: 40px;
  font-family: var(--title-font);
}

.testimonial-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.testimonial-left {
  width: 50%;
  background: #d7e6ef;
  padding: 60px 40px;
  position: relative;
  text-align: center;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  max-width: 420px;
  margin: 0 auto 25px;
}

.testimonial-name {
  margin: 10px 0 5px;
  font-weight: 500;
}

.testimonial-project {
  font-size: 13px;
  color: #555;
}

.testimonial-nav {
  margin-top: -10%;
  position: relative;
  display: flex;
  z-index: 99;
  justify-content: space-between;
}

.prev-btn, .next-btn {
  cursor: pointer;
  font-size: 22px;
  margin: -20px 15px;
  color: #1c5d8f;
}

.testimonial-right {
  width: 50%;
  position: relative;
}

.video-box {
  position: relative;
  height: 100%;
}

.video-box iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
}

@media(max-width: 768px) {
  .testimonial-left,
  .testimonial-right {
    width: 100%;
  }
  .testimonial-heading{
    font-size: 20px;
    font-family: var(--title-font);
  }
  .testimonial-text {
  font-size: 15px;
}
.testimonial-name{
  font-size: 16px;
}
.testimonial-section-custom{
  padding-bottom: 50px;
}
}
/* ======================== footer=================== */
.footer-section {
  background:  #0f3963;;
  padding: 60px 20px 20px 0px;
  font-family: 'Georgia', serif;
  color: white;
}

.footer-section .foot-logo {
  width: 160px;
  /* height: 100px; */
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: #2a7fb0;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 18px;
  text-decoration: none;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
  cursor: pointer;
}

.contact-info {
  list-style: none;
  padding: 0;
  font-family: var(--para);
}

.contact-info li {
  margin-bottom: 12px;
  line-height: 1.6;
}
.contact-info li i{
 color: #2a7fb0; 
 padding-right: 10px;
 font-size: 15px;
}

.footer-section h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #2a7fb0;
}
.footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  margin: 0 10px;
  transition: 0.3s;
}
.footer-links{
  font-size: 14px;
  font-family: var(--para);
}

.footer-link:hover {
  text-decoration: underline;
}

.divider {
  color: #ffffff;
  opacity: 0.7;
}
/* Add spacing */
#mobileProjectsMenu a {
  font-size: 14px;
  padding-left: 10px;
}

/* Optional divider look */
#mobileProjectsMenu {
  border-left: 2px solid #eee;
  margin-left: 10px;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
  
.dropdown-menu {
  transition: all 0.3s ease;
}
}

@media (max-width: 768px) {
  .footer-section {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

