/* header section css */


#site-header-top
{
    display: none;
}

.header-menu
{
	padding-left: 150px;
	padding-right: 150px;
}


.contact-page-contents .contents
{

	margin-bottom: 5px;
}


.contact-form {
    margin-bottom: 30px;
}


.full-width-layout
{
	padding: 0px 30px !important;
}


.wide-width-layout
{
	padding: 0px 150px !important;

}



.wide-width-layout-1
{
	padding: 0px 50px !important;

}



.padding-btm1
{
	padding-bottom: 100px !important;
}

.sec_padding
{
	padding: 65px 15px;
}


.sec_padding-1
{
	padding: 65px 15px 0px;
}



.brown_bg
{
	background: #f5f1e8;
}

/* home page css */


.heading_3
{
    font-size: 22px;
    margin-bottom: 20px;
}

/* vertical tabs css */


/* SECTION */
.lansum-tabs-section {
  background:#fff;
  padding-bottom;
}

/* MAIN WRAP */
.lansum-tabs-wrap {
  display:flex;
  border:1px solid #000;
  width:100%;
}

/* LEFT COLUMN — CENTERED VERTICALLY */
.lansum-tabs-left {
  width:320px;
  border-right:1px solid #e5e5e5;
 padding-right: 0px;
 padding-left: 0px;


  /* ✅ THIS is the magic */
  display:flex;
 /* align-items:center;      vertical center */
}

/* TAB LIST */
.lansum-tabs {
  list-style:none;
  margin:0;
  padding:0;
  width:100%;
}

.lansum-tabs li {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:22px 24px;
  cursor:pointer;
  border-bottom:1px solid #000;
  font-size:14px;
  letter-spacing:1px;
  color:#222;
  transition:all .3s ease;
  background:#fff;
}

.lansum-tabs li:last-child {
  border-bottom:none;
}

/* ACTIVE + HOVER */
.lansum-tabs li:hover,
.lansum-tabs li.active {
  background:#6c98e1;
  color:#fff;
}

.lansum-tabs li .arrow {
  font-size:16px;
  opacity:0;
  transition:.3s;
}

.lansum-tabs li:hover .arrow,
.lansum-tabs li.active .arrow {
  opacity:1;
}

/* RIGHT — FULL WIDTH CONTENT */
.lansum-tabs-right {
  flex:1;
  padding:40px 50px;
  /*background:#fff;*/
}

/* TAB CONTENT */
.tab-content {
  display:none;
  width:100%;
}

.tab-content.active {
  display:block;
}

.tab-content h2 {
  font-size:36px;
  margin-bottom:15px;
}

.tab-content p {
  font-size:16px;
  color:#444;
  line-height:1.6;
}



/* hotel page css */


/* hotel page banner css */

   /* --- Custom Carousel Styling --- */
        .home-banner-carousel, 
        .home-banner-carousel .item {
            height: 75vh; /* Adjust height for desktop */
                }

        /* Overlay to make text pop and match reference image */
        .home-banner-carousel .item::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.1) 100%);
        }

        /* Image Slide Styling */
        .home-banner-carousel .item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Video Slide Styling */
        .video-container {
            width: 100%;
            height: 100%;
            overflow: hidden;
	
        }
        .video-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Caption Styling (Bottom Left) */
        .carousel-caption-custom {
            position: absolute;
            bottom: 80px;
            left: 5%;
            z-index: 20;
            color: #fff;
            text-align: left;
            text-shadow: none;
            max-width: 600px;
        }
        .carousel-caption-custom h2 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 300;
            letter-spacing: 2px;
            margin: 0;
            font-size: 28px;
            text-transform: uppercase;
        }
        .carousel-caption-custom h1 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            letter-spacing: 1px;
            margin: 5px 0 0 0;
            font-size: 34px;
            text-transform: uppercase;
        }

        /* Indicator Styling */
        .carousel-indicators {
            bottom: 30px;
        }
        .carousel-indicators li {
            border-color: #fff;
            width: 8px;
            height: 8px;
            margin: 1px 5px;
        }
        .carousel-indicators .active {
            background-color: #fff;
            width: 8px;
            height: 8px;
            margin: 1px 5px;
        }


/* partners page carousal */

     .slider-header {
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* Green Navigation Buttons */
    .slider-controls button {
        background-color: #5cb85c; /* Green color from reference */
        color: white;
        border: none;
        padding: 8px 12px;
        margin-left: 5px;
        border-radius: 4px;
        cursor: pointer;
        transition: background 0.3s;
    }
    .slider-controls button:hover {
        background-color: #449d44;
    }

    /* Image Styling */
    .team-card {
        padding: 0 10px; /* Space between images */
        outline: none;
    }
    .team-card img {
        width: 100%;
        height: auto;
        border-radius: 20px; /* Rounded corners like reference */
        display: block;
        border: 1px solid #eee;
        padding: 3px 15px;
    }

    /* Slick track spacing */
    .team-slider {
        margin: 0 -10px;
    }

    .padding-btm
    {
      padding-bottom: 30px;
    }





#contact-page
{
	padding-left: 15px;
	padding-right: 15px;
}


/* hotel page project carousal css */

      /* --- BANNER AREA --- */
        .custom-banner {
            position: relative;
            height: auto; /* Fixed height for the banner */
           
            overflow: hidden;
        }

        /* Ensure carousel items fill the height */
        .carousel-inner, .carousel-inner .item {
            height: 100%;
        }
        .carousel-inner .item img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* This makes images look professional */
        }

        /* --- 1. FIXED LOGO (Does NOT move) --- */
        .fixed-logo-box {
            /*position: absolute;*/
           /* top: 5px;*/
            left: 25px;
           /* z-index: 1000; /* Stays above the sliding items */*/
            background : #fff;
            padding: 25px 0px;
            border-radius: 5px;
           /* box-shadow: 0 4px 15px rgba(0,0,0,0.2);*/
        }
        .fixed-logo-box img { height: 80px; width: auto; }

        /* --- 2. DYNAMIC INFO BOX (Changes per slide) --- */
        .project-info-card {
            position: absolute;
            top: 25px;
            right: 25px;
            z-index: 500;
            background: rgba(69, 107, 149, 0.9); /* Reference Blue */
            color: #fff;
            padding: 18px 25px;
            border-radius: 5px;
            min-width: 180px;
        }
        .project-info-card ul { list-style: none; padding: 0; margin: 0; }
        .project-info-card ul li {
            font-size: 14px;
            margin-bottom: 6px;
            padding-left: 18px;
            position: relative;
        }
        .project-info-card ul li:before {
            content: "•";
            position: absolute;
            left: 0;
            color: #fff;
            font-size: 18px;
            line-height: 1;
        }

        /* --- 3. BOTTOM LEFT CAPTION (Changes per slide) --- */
        .banner-caption {
            position: absolute;
            bottom: 60px;
            left: 40px;
            z-index: 500;
            color: #fff;
            max-width: 650px;
        }
        .banner-caption h2 {
            font-size: 28px;
            font-weight: 300;
            line-height: 1.4;
            margin-bottom: 25px;
            text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
            color: #fff;
        }
        .btn-know-more {
            background-color: #337ab7;
            color: white;
            padding: 10px 25px;
            border: none;
            border-radius: 4px;
        }

        /* Dark overlay at bottom for text readability */
        .item:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50%;
           /* background: linear-gradient(transparent, rgba(0,0,0,0.8));*/
            z-index: 10;
        }

        /* --- 4. BOTTOM RIGHT CONTROLS --- */
        .nav-group {
            position: absolute;
            bottom: 80px;
            right: 40px;
            z-index: 1000;
            display: flex;
            align-items: center;
        }

        /* Resetting Bootstrap Indicators */
        .custom-indicators {
            position: static;
            width: auto;
            margin: 0 15px;
            padding: 0;
            display: inline-block;
        }
        .custom-indicators li {
            border: 1px solid #fff;
            background: transparent;
            margin: 0 4px;
            width: 10px;
            height: 10px;
        }
        .custom-indicators .active {
            background: #fff;
            width: 10px;
            height: 10px;
            margin: 0 4px;
        }

        /* Circular Arrows */
        .circle-arrow {
            display: inline-block;
            width: 42px;
            height: 42px;
            border: 1px solid rgba(255,255,255,0.8);
            border-radius: 50%;
            color: #fff;
            text-align: center;
            line-height: 40px;
            font-size: 20px;
            text-decoration: none !important;
        }
        .circle-arrow:hover { background: rgba(255,255,255,0.2); color: #fff; }



/* Residential filter css */


.grey-bg
{
	background: #f5f5f5 !important;
	padding-top: 30px;
	padding-bottom: 30px;

}

.white-bg
{
       padding-top: 30px;
	padding-bottom: 30px;
}
/* 1. Header & Filter Styling */
        .page-title { font-size: 32px; font-weight: 300; letter-spacing: 1px; margin-top: 0; text-transform: uppercase; }
        .filter-container { margin-bottom: 0px; border-bottom: 1px solid #eee; padding-bottom: 20px; }
        .custom-select {
            display: inline-block;
            width: auto;
            min-width: 180px;
            height: 40px;
            border-radius: 4px;
            border: 1px solid #ccc;
            padding: 5px 10px;
            margin-left: 10px;
            color: #666;
            appearance: none;
            -webkit-appearance: none;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="grey" viewBox="0 0 16 16"><path d="M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z"/></svg>') no-repeat right 10px center;
        }

        /* 2. Project Layout Styling */
        .project-item { margin-bottom: 35px; display: block; }
        
        /* Left Column: Image */
        .img-wrapper { position: relative; }
        .img-wrapper img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        /* The Green Badge */
        .status-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background-color: #4CAF50; /* Specific Green */
            color: white;
            padding: 6px 18px;
            border-radius: 25px;
            font-size: 13px;
            font-weight: 500;
            z-index: 5;
        }

        /* Right Column: Content */
        .content-wrapper { padding-left: 15px; }
        .project-name { 
            color: #24588d; 
            font-size: 26px; 
            font-weight: 700; 
            margin-top: 0; 
            margin-bottom: 15px; 
            text-transform: uppercase;
			margin-top: 25px;
			line-height: 1.5;
        }
        .location-tag { color: #000; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
        .location-tag i { color: #ff0000; margin-right: 5px; }
        
        .project-description { 
            font-size: 14px; 
            line-height: 1.7; 
            color: #666; 
            margin-bottom: 25px;
            text-align: justify;
        }

        .config-label { font-weight: bold; font-size: 14px; margin-bottom: 10px; display: block; }
        .config-list { list-style: none; padding-left: 0; }
        .config-list li { 
            position: relative; 
            padding-left: 15px; 
            font-size: 14px; 
            color: #333; 
            margin-bottom: 5px;
        }
        .config-list li::before {
            content: "•";
            color: #24588d;
            font-weight: bold;
            display: inline-block;
            width: 15px;
            margin-left: -15px;
        }

        /* Explore Button */
        .btn-explore {
            background-color: #24588d;
            color: #fff;
            padding: 10px 45px;
            border-radius: 5px;
            border: none;
            font-weight: 500;
            margin-top: 20px;
            transition: 0.3s ease;
        }
        .btn-explore:hover { background-color: #1a4269; color: #fff; text-decoration: none; }

        /* Filtering logic helpers */
        .hidden-item { display: none !important; }



/* MOBILE */
@media (max-width:767px){
  .lansum-tabs-wrap{
    flex-direction:column;
  }

  .lansum-tabs-left{
    width:100%;
    border-right:none;
    border-bottom:1px solid #e5e5e5;
    align-items:stretch;
  }

  .lansum-tabs-right{
    padding:25px;
  }
}




/* board of directors section css */


/* SECTION */
.mentor-section{
  padding:50px 0px 0px;
 /* background:#f5f5f5 !important;*/
}

.mentor-card{
  margin-bottom:40px;
}

/* CARD ROW */
.mentor-row{
  position:relative;
  min-height:360px;
}

/* LEFT IMAGE */
.mentor-left{
  position:relative;
}

.mentor-left:before{
  content:"";
  position:absolute;
  left:15px;
  top:-15px;
  width:90%;
  height:100%;
  background:#f0f0f0;
  clip-path: polygon(0 0, 80% 0, 100% 18%, 100% 100%, 0 100%);
  z-index:0;
}

.mentor-photo-wrap{
  position:relative;
  z-index:2;
  padding:20px 0 0 30px;
}

.mentor-photo{
  width:100%;
  border-radius:8px;
  display:block;
}

/* RIGHT CONTENT */
.mentor-right{
  padding-left:20px;
}

.mentor-title{
  font-size:28px;
  letter-spacing:1px;
  font-weight:300;
  margin:0 0 8px;
}

.mentor-subtitle{
  font-size:14px;
  color:#666;
  margin-bottom:14px;
}

.mentor-text{
  font-size:14px;
  line-height:1.7;
  color:#444;
  margin-bottom:18px;
}

.mentor-name{
  font-size:20px;
  color:#000;
  font-weight: 700;
  margin-bottom: 20px;
}

.mentor-role{
  font-size:15px;
  color:#e70404;
font-weight: 500;
  margin-bottom:14px;
}

.mentor-btn{
  border:1px solid #1e5bff;
  color:#1e5bff;
  background:#fff;
  padding:7px 16px;
  border-radius:6px;
  font-size:13px;
}

.mentor-btn:hover{
  background:#1e5bff;
  color:#fff;
}

/* RESPONSIVE */
@media (max-width: 767px){
  .mentor-row{
    display:block;
  }

  .mentor-left:before{
    left:0;
    width:100%;
  }

  .mentor-photo-wrap{
    padding:15px 0;
    text-align:center;
  }

  .mentor-photo{
    width:70%;
    margin:0 auto;
  }

  .mentor-right{
    padding-left:0;
    margin-top:15px;
  }

  .mentor-title{
    font-size:24px;
  }
}



.about_para
{
	padding-top: 30px;
}



/* residentials page client slider section */


.clients-section {
  padding:70px 0 30px;
  background:#fff;
}

.clients-wrapper {
  position:relative;
  display:flex;
  align-items:center;
}

/* Visible area */
.clients-viewport {
  overflow:hidden;
  width:100%;
}

/* Sliding track */
.clients-track {
  display:flex;
  gap:20px;
  transition:transform 0.4s ease;
}

/* Each card = 1/6 width */
.client-card {
  flex:0 0 calc(16.666% - 17px);
  height:90px;
  border:1px solid #eee;
  border-radius:6px;
  background:#fff;

  display:flex;
  align-items:center;
  justify-content:center;
  padding:15px;
}

.client-card img {
 /* max-height:40px;
  max-width:120px;*/
  object-fit:cover;
}

/* Arrows */
.clients-wrapper {
  position: relative;
  display: flex;
  align-items: center;   /* centers arrows vertically */
}

.clients-viewport {
  overflow: hidden;
  width: 100%;
}

.clients-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #fff;
  color: #000;
  cursor: pointer;
  z-index: 10;

  display: flex;
  align-items: center;
  justify-content: center;
}

.clients-arrow.left {
  left: -48px;
}

.clients-arrow.right {
  right: -48px;
}

.clients-arrow:hover {
  background: #6c98e1;
  color: #fff;
  border-color: #6c98e1;
}

/* Responsive */
@media (max-width:992px){
  .client-card { flex:0 0 calc(33.33% - 14px); } /* 3 per row */
}
@media (max-width:576px){
  .client-card { flex:0 0 100%; } /* 1 per row */
}



.body-img-radius
{
	border-radius: 20px;
}



.section-padding
{
	padding: 45px 15px 70px;
}


.section-heading h2
{
    font-size: 30px;
    color: #000;
    font-weight: 700;
    line-height: 1.5;

}

.white
{
    color: #fff !important;
}

.sec-padding
{
    padding: 70px 15px;
}
.header_logo
{
    width: 300px;
}

.navbar-nav {
    float: right !important;
}

#site-nav a {
    color: #000;
    font-weight: 600;
}


#site-nav a:hover {
    color: #b83032 !important;
}

#site-header
 {
    padding-bottom: 7px;
    padding-top: 7px;

}

#site-nav
{
    margin-top: 0px !important;
}
.contact-form input[type="text"], .contact-form textarea
{
    
    padding: 8px 10px 8px 35px;
    border-radius: 5px;
    font-size: 14px;
    
}

.contact-form p 
{
    display: inline-block;
    margin-bottom: 12px;
}


.contact-form input[type="text"]::placeholder, .contact-form textarea::placeholder
{
	color: #000;
}

.submit-btn
 {
    padding: 10px 20px;
    color: #000;
    background: #0ccef9;
    border-radius: 10px !important;
    border: 1px solid #0ccef9;
}

.submit-btn:hover
{
	border: 1px solid #5178d6;
        color: #fff;
}


.about-para p
{
	padding: 30px 0px;
}

.property .property-header
{
	border-bottom: 0px !important;
}


/* testimonial section css */

.testimonial-box
{
    padding: 25px 20px 25px 20px;
    border: 1px solid #f5f5f5;
    margin: 0px 15px;
    border-radius: 10px;
    z-index: 1;
   
}

.testimonial-box h3
{
    font-size: 18px;
    color:#000;
    font-weight: 600;
    line-height: 1.5;
    margin-top: 0px;
}
.testimonial-box p
{
    font-size: 15px;
    color: #000;
    line-height: 1.5;

}

.designation
{
    font-size: 16;
    font-weight: 600;
    color: #000;

}

.testimonial-box img
{
    width: 75px;
    height: auto;
    background: #fff;
    border-radius: 50%;
    margin-bottom: 20px;
   
    
}

.align-items-center {
  display: flex;
  align-items: center;
}


.slick-dots 
{
    bottom: -45px !important;

}
/* about section css */

#home_about_section
{
    padding: 80px 15px;

}

#home_about_section img
{
    border-radius: 20px;
    width: 100%;
height: 350px;
/*object-fit: cover;*/
}

#home_about_section h2
{
    font-size: 30px;
    color:#000;
    font-weight: 700;
}
.home-section-header h2::before, .home-section-header h2::after
{
    border: none !important;
}

/* project section css */


#complete-project-section
{
    background: #f5f5f5 !important;
    padding: 50px 0px 60px;
}

#complete-project-section h6
{
    font-size: 18px !important;
    font-weight: 700;
    color: #000 !important;
}

.upcoming-project-card
{


    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); 
    border-radius: 8px;
    padding: 20px !important;
    margin-bottom: 30px !important;

}


/* project page css */

.upcoming-project-card .card-body .card-title
{

    font-size: 24px;
    line-height: 1.5;
    color: #000;
}

/* why choose section css */

#home-features-section h6
{
    font-size: 22px;
    color: #000;
    font-weight: 700;
}

#home-features-section .feature p
{
    font-size: 16px;
    color: #000;
    line-height: 1.5;
}


.dev-text {
    display: inline-block;
    vertical-align: top;
    max-width: 250px; /* Optional: limits width */
    margin-left: 10px; /* Adjust as needed to align after colon */
  }


  /* input fields css */
  #advance-search-widget select, #advance-search-widget input
   {
    width: 100%;
    margin: 0 0 15px;
  }



  .contact-form p:before
  {
    top: 10px;
  }
  

  /* footer css */

  .quick-links
  {
    padding-left: 0px !important;
  }
  .quick-links li
  {
    list-style-type: none;
  }


#footer ul, 
#footer li
{
    color: #fff !important;
}

.social-icons .fa
{
    background: #fff;
}

.top-padding
{
	margin-top: 20px;
}

.achievement-box
{
	padding-top: 15px;
	padding-bottom: 30px;
}

  
@media only screen and (max-width: 768px)
{


#home_about_section img
{
    border-radius: 20px;
    width: 100%;
    height: auto;
/*height: 350px;*/
/*object-fit: cover;*/
}



.heading_3
{
    font-size: 18px;
    margin-bottom: 20px;
}	
	
	
.testimonial-box
{
    padding: 25px 0px 25px 0px;
    margin: 0px;
  
   
}


.trust-left p
{
    font-size: 24px !important;
}


	
.sec_padding-1
{
	padding: 40px 15px 0px;
}
  
  
  .sec_padding
  {
	  padding: 40px 15px;
  }
  
	.mentor-photo
	{
		width: 100%;
	}
	
	.trust-left h2 
	{
		font-size: 24px !important;
		letter-spacing: 0px !important;
	}

.trust-right p
 {
    font-size: 18px !important;
}

.achievement-box {
    padding-top: 10px;
    padding-bottom: 15px;
}

.wide-width-layout-1 {
    padding: 0px !important;
}

.trust-right p
{
	font-size: 16px;
}


.trust-left h2
{
	
	font-size: 24px;
}


#header.container 
{
  
max-width: 100%;
}



.top-space
{
	margin-top: 15px;
}


.top-padding
{
	margin-top: 15px;
}

.header-menu
{
	padding-left: 15px;
	padding-right: 15px;
}


.mentor-section 
{
    padding: 10px 0px 0px;

}

.lansum-tabs-wrap
{
	margin-left: 0px;
	margin-right: 0px;
}

#home-features-section .feature 
{
    margin-bottom: 10px;
}



#contact-page
{
	padding-top: 30px;
	padding-bottom: 30px;
	padding-left: 15px;
	padding-right: 15px;
}

#home_about_section
{
    padding: 30px 15px;

}


.about-box
{
	margin-top: 0px;
}

.grey-bg, .white-bg
{
	
	padding-top: 10px;
	padding-bottom: 10px;

}



.project-item
{
	margin-bottom: 20px;
}

.section-heading h2, .project-name
{
	font-size: 20px;
	line-height: 1.5;
}

.padding-btm1
{
	padding-bottom: 40px !important;
}


.custom-select
{
	min-width: 150px;
}

.wide-width-layout
{
	padding: 0px 15px !important;
}

/* hotel page css */


/* banner css */

.home-banner-carousel, .home-banner-carousel .item {
                height: auto;
            }
            .carousel-caption-custom h2 { font-size: 18px; }
            .carousel-caption-custom h1 { font-size: 22px; }
            .carousel-caption-custom { bottom: 60px; left: 20px; }




/* project carousal css */


.custom-banner { height: 450px; }
    .banner-caption h2 { font-size: 20px; }
    .project-info-card { padding: 10px 15px; top: 15px; right: 15px; }
    .fixed-logo-box { top: 15px; left: 15px; padding: 8px 15px; }
    .fixed-logo-box img { height: 30px; }

    .nav-group 
    {
    position: absolute;
    bottom: 10px;
    right: 70px;



}

  .banner-caption h2
  {
    font-size: 16px;
  }



.clients-section
{
	padding: 40px 0 30px;

}
.section-padding
{
padding: 0px 15px 40px;
}

.full-width-layout
{
	padding: 0px 15px !important;
}
    .align-items-center 
    {
     display: block;
    }
    .sec-padding 
    {
    padding: 30px 15px 30px;
}


    .property-single-meta ul
     {
        padding: 15px 0px 0px;
    }

    #complete-project-section
     {
    padding: 30px 15px;
}

.section-header h2 
{
        font-size: 20px;
    }

        #site-banner 
        {
         margin-bottom: 0px; 
    }
.upcoming-project-card .card-body .card-title
 {
    font-size: 18px;
    line-height: 1.5;
    color: #000;
}
        .section-header h2 
        {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .about-box
    {
        margin-top: 30px;
    }

    .about-box h2 
 
 {
margin-bottom:20px;
 }   

 #home_about_section h2 
 {
    font-size: 22px;
}




}


#property-single .common 
{
    /* padding: 30px; */
    background: #fff;
     margin-bottom: 0px;
}




/* Custom utility for Bootstrap 3 to center columns vertically */
.row-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center; /* This does the vertical centering */
}

/* Ensure columns don't float when flex is active */
.row-flex > [class*='col-'] {
    float: none;
}

/* On mobile, stack them normally */
@media (max-width: 991px) {
    .row-flex {
        display: block;
    }
}



@media only screen and (min-width: 900px) and (max-width: 1200px)
{
	#header.container {
    width: 1140px !important;
}
}



.mrg-top
{
	margin-top: 23px;
}



#copyright p
{
	color: #fff;
}


.project-details p
{
margin-bottom: 10px;
text-align: center;
font-size: 15px;
}



/* download pdf button css */

.btn-pdf {
    background-color: #d9534f; /* Bootstrap Danger Red */
    border-color: #d43f3a;
    color: white;
    transition: all 0.3s ease; /* Smooth transition */
    padding: 10px 20px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0px auto;
    width: 220px;
    display: block;
    margin-bottom: 45px;

  }

  .btn-pdf:hover, .btn-pdf:focus {
    color: white;
    background-color: #c9302c;
    transform: translateY(-3px); /* Lifts button up */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Adds shadow */
  }

  .btn-pdf:active {
    transform: translateY(-1px);
  }




/*Site Banner*/
#contact-banner {
 background: url(../images/contact-banner.jpeg) center no-repeat;
  padding: 200px 0 150px;
  position: relative;
  background-position: center center;
background-size: cover;
height: 75vh;

 /* margin-bottom: 70px;*/
}
#contact-banner:after {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: inline-block;
  background: rgba(0, 0, 0, 0.5);
}
#contact-banner h1 {
  color: #fff;
  margin: 0;
}
#contact-banner .breadcrumb {
  background: none;
  color: #fff;
}
#contact-banner .container {
  position: relative;
  z-index: 1;
}
#contact-banner a {
  color: #fff;
}
#contact-banner a:hover {
  color: #333;
}
#contact-banner li {
  color: #fff;
}
#contact-banner ol {
  margin-bottom: 0;
}


/* Desktop */
@media screen and (min-width: 1441px) {
  #header.container {
    width: 1600px !important;
  }
}

/* Laptop L - 1440px */
@media screen and (max-width: 1440px) and (min-width: 1025px) {
  #header.container {
    width: 1200px !important;
  }
}

/* Laptop - 1024px */
@media screen and (max-width: 1024px) and (min-width: 768px) {
  #header.container {
    width: 1000px !important;
  }
}




/* side by side content column */

.trust-section {
  background: #f5f1e8;
  padding: 100px 0px;
}

/* ✅ Vertical Center Alignment (Bootstrap 3 fix) */
.trust-row {
  display: table;
  width: 100%;
}

.trust-row > [class*='col-'] {
  display: table-cell;
  float: none;
  vertical-align: middle;
}

/* LEFT */
.trust-left {
  padding-right: 40px;
  position: relative;
}

.trust-left h2 {
  font-size: 32px;
  letter-spacing: 2px;
  color: #3a3a3a;
  margin-bottom: 10px;
  font-weight: 700;
}

.trust-left p {
  font-size: 30px;
  font-weight: 600;
  color: #3a3a3a;
  line-height: 1.4;
}

/* RIGHT */
.trust-right {
  padding-left: 40px;
}

.trust-right p {
  font-size: 20px;
  color: #000;
  line-height: 1.8;
  margin: 0;
}

/* ✅ Divider */
.trust-left:after {
  content: "";
  position: absolute;
  top: 15%;
  right: 0;
  width: 1px;
  height: 70%;
  background: #cfc8bb;
}


#hotel_page .img-wrapper img
{
	height: 500px !important;
	object-fit: cover;
}
/* 📱 Mobile Fix */
@media (max-width: 767px) {
	
	.mobile-column-reverse {
    display: flex;
    flex-direction: column-reverse;
  }

  .mobile-column-reverse > [class*="col-"] {
    width: 100%;
  }
  
  
  .trust-row {
    display: block;
  }

  .trust-row > [class*='col-'] {
    display: block;
  }

  .trust-left {
    margin-bottom: 20px;
    padding-right: 15px;
  }

  .trust-right {
    padding-left: 15px;
  }

  .trust-left:after {
    display: none;
  }
}

@media (max-width: 768px) 
{
	

#site-banner .title, #contact-banner .title
{
	font-size: 24px !important;
line-height: 1.5;
}
	
	
#hotel_page .img-wrapper img
{
	height: auto !important;
	margin-top: 15px;
}


.trust-section {
    background: #f5f1e8;
    padding: 30px 0px 40px;
}

#contact-banner 
{
	height: auto !important;
	padding: 100px 15px;
}

#contact-banner h1
{
	font-size: 24px;
}
}


#site-banner .title, #contact-banner .title
{
	font-size: 35px;
}



/* about banner text css */
#site-banner, #contact-banner {
    background: url(../images/Hotel-carousal-banner.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
    height: 75vh;
    padding: 0;
    margin: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#site-banner::before, #contact-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

#site-banner .banner-content, #contact-banner .banner-content {
    position: relative;
    z-index: 2;
}

#site-banner .title, #contact-banner .title
 {
    margin: 0;
    color: #ffffff;
    font-size: 34px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}


@media (max-width: 991px) {
    #site-banner, #contact-banner {
        height: 60vh !important;
    }

    #site-banner .title, #contact-banner .title {
        font-size: 28px;
        letter-spacing: 2px;
    }
}


@media (max-width: 575px) {
    #site-banner, #contact-banner {
        height: 50vh !important;
        padding: 0 15px;
    }

    #site-banner .title, #contact-banner .title {
        font-size: 22px;
        line-height: 1.4;
        letter-spacing: 1.5px;
    }
}


/* ==================================================
   WHY CHOOSE US SECTION
================================================== */

#home-features-section {
    width: 100%;
    max-width: 100%;
    padding: 20px 0;
    overflow: hidden;
    background: #ffffff;
}

#home-features-section *,
#home-features-section *::before,
#home-features-section *::after {
    box-sizing: border-box;
}


/* ==================================================
   SECTION HEADER
================================================== */

#home-features-section .home-section-header {
    width: 100%;
    margin: 0 0 55px;
    padding: 0 20px;
    text-align: center;
}

#home-features-section .home-section-header .container {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0;
}

#home-features-section .section-heading {
    margin-bottom: 20px;
}

#home-features-section .section-heading h2 {
    margin: 0;
    color: #111111;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    line-height: 1.2;
}

#home-features-section .home-section-header p {
    max-width: 950px;
    margin: 0 auto;
    color: #555555;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}


/* ==================================================
   FEATURES CONTAINER
================================================== */

#home-features-section .features-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 30px;
}


/* ==================================================
   FEATURES GRID
================================================== */

#home-features-section .features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    width: 100%;
    margin: 0;
    gap: 30px;
}

#home-features-section .feature-item {
    min-width: 0;
    height: 100%;
    margin: 0;
    padding: 0;
}

#home-features-section .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    min-height: 250px;
    margin: 0;
    padding: 30px 20px;
    text-align: center;
}


/* ==================================================
   FEATURE ICON
================================================== */

#home-features-section .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    margin: 0 auto 22px;
    flex-shrink: 0;
}

#home-features-section .feature-icon img {
    display: block;
    width: 80px;
    max-width: 100%;
    height: 80px;
    object-fit: contain;
}


/* ==================================================
   FEATURE CONTENT
================================================== */

/* =========================================================
   WHY CHOOSE US SECTION
========================================================= */

#home-features-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 20px 0 0;
    overflow: hidden;
    background: #ffffff;
}

#home-features-section,
#home-features-section *,
#home-features-section *::before,
#home-features-section *::after {
    box-sizing: border-box;
}


/* =========================================================
   SECTION HEADER
========================================================= */

#home-features-section .home-features-header {
    width: 100%;
    margin: 0 0 55px;
    padding: 0 20px;
}

#home-features-section .home-features-heading-container {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
}

#home-features-section .section-heading {
    width: 100%;
    margin: 0 0 20px;
    padding: 0;
}

#home-features-section .section-heading h2 {
    margin: 0;
    padding: 0;
    color: #111111;
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

#home-features-section .home-features-header p {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    padding: 0;
    color: #555555;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    text-align: center;
}


/* =========================================================
   FEATURES CONTAINER
========================================================= */

#home-features-section .home-features-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 30px;
}


/* =========================================================
   FEATURES GRID
========================================================= */

#home-features-section .home-features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    width: 100%;
    margin: 0;
    padding: 0;
    gap: 30px;
}


/* =========================================================
   FEATURE ITEM
========================================================= */

#home-features-section .home-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-width: 0;
    min-height: 245px;
    margin: 0;
    padding: 25px 15px;
    text-align: center;
}


/* =========================================================
   FEATURE ICON
========================================================= */

#home-features-section .home-feature-icon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    margin: 0 auto 22px;
    padding: 0;
}

#home-features-section .home-feature-icon img {
    display: block;
    width: 80px;
    max-width: 100%;
    height: 80px;
    margin: 0;
    object-fit: contain;
}


/* =========================================================
   FEATURE TEXT
========================================================= */

#home-features-section .home-feature-title {
    width: 100%;
    margin: 0 0 12px;
    padding: 0;
    color: #000000;
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
}

#home-features-section .home-feature-description {
    width: 100%;
    max-width: 190px;
    min-height: 54px;
    margin: 0 auto;
    padding: 0;
    color: #111111;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.55;
    text-align: center;
}


/* =========================================================
   BOTTOM IMAGE
========================================================= */

#home-features-section .home-features-bottom-image {
    width: 100%;
    max-width: 100%;
    margin: 35px 0 0;
    padding: 0;
    overflow: hidden;
    line-height: 0;
}

#home-features-section .home-features-bottom-image img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    object-fit: cover;
    object-position: center bottom;
}


/* =========================================================
   LARGE DESKTOP
   1600px AND ABOVE
========================================================= */

@media (min-width: 1600px) {

    #home-features-section .home-features-container {
        max-width: 1380px;
    }

    #home-features-section .home-features-grid {
        gap: 45px;
    }

    #home-features-section .home-feature-item {
        min-height: 260px;
    }
}


/* =========================================================
   LAPTOP
   992px TO 1199px
========================================================= */

@media (min-width: 992px) and (max-width: 1199px) {

    #home-features-section {
        padding-top: 70px;
    }

    #home-features-section .home-features-header {
        margin-bottom: 45px;
    }

    #home-features-section .home-features-container {
        padding-right: 25px;
        padding-left: 25px;
    }

    #home-features-section .home-features-grid {
        gap: 20px;
    }

    #home-features-section .home-feature-item {
        min-height: 225px;
        padding: 20px 10px;
    }

    #home-features-section .home-feature-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    #home-features-section .home-feature-icon img {
        width: 72px;
        height: 72px;
    }

    #home-features-section .home-feature-title {
        font-size: 21px;
    }

    #home-features-section .home-feature-description {
        font-size: 15px;
    }
}


/* =========================================================
   TABLET
   768px TO 991px
========================================================= */

@media (min-width: 768px) and (max-width: 991px) {

    #home-features-section {
        padding-top: 60px;
    }

    #home-features-section .home-features-header {
        margin-bottom: 40px;
    }

    #home-features-section .home-features-container {
        max-width: 760px;
        padding-right: 30px;
        padding-left: 30px;
    }

    #home-features-section .home-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 25px;
    }

    #home-features-section .home-feature-item {
        min-height: 225px;
        padding: 25px 15px;
    }

    #home-features-section .home-features-bottom-image {
        margin-top: 25px;
    }
}


/* =========================================================
   MOBILE AND FOLDABLE
   375px TO 767px
========================================================= */

@media (min-width: 375px) and (max-width: 767px) {
    
    .testimonial-box h3
    {
        font-size: 16px;
    }

    #home-features-section {
        padding-top: 0px;
    }

    #home-features-section .home-features-header {
        margin-bottom: 35px;
        padding-right: 18px;
        padding-left: 18px;
    }

    #home-features-section .section-heading {
        margin-bottom: 15px;
    }

    #home-features-section .section-heading h2 {
        font-size: 28px;
    }

    #home-features-section .home-features-header p {
        font-size: 14px;
        line-height: 1.7;
    }

    #home-features-section .home-features-container {
        padding-right: 15px;
        padding-left: 15px;
    }

    #home-features-section .home-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0px 12px;
    }

    #home-features-section .home-feature-item {
        min-height: 150px;
        padding: 0px 6px;
    }

    #home-features-section .home-feature-icon {
        width: 68px;
        height: 68px;
        margin-bottom: 16px;
    }

    #home-features-section .home-feature-icon img {
        width: 62px;
        height: 62px;
    }

    #home-features-section .home-feature-title {
        margin-bottom: 9px;
        font-size: 19px;
    }

    #home-features-section .home-feature-description {
        max-width: 135px;
        min-height: 44px;
        font-size: 13px;
        line-height: 1.45;
    }

    #home-features-section .home-features-bottom-image {
        margin-top: 20px;
    }
}


/* =========================================================
   GALAXY FOLD AND SMALL MOBILE
   321px TO 374px
========================================================= */

@media (min-width: 321px) and (max-width: 374px) {

    #home-features-section {
        padding-top: 0px;
    }

    #home-features-section .home-features-header {
        margin-bottom: 30px;
        padding-right: 14px;
        padding-left: 14px;
    }

    #home-features-section .section-heading h2 {
        font-size: 24px;
    }

    #home-features-section .home-features-header p {
        font-size: 13px;
        line-height: 1.65;
    }

    #home-features-section .home-features-container {
        padding-right: 10px;
        padding-left: 10px;
    }

    #home-features-section .home-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0px 8px;
    }

    #home-features-section .home-feature-item {
        min-height: 100px;
        padding: 0px 4px;
    }

    #home-features-section .home-feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 14px;
    }

    #home-features-section .home-feature-icon img {
        width: 55px;
        height: 55px;
    }

    #home-features-section .home-feature-title {
        margin-bottom: 8px;
        font-size: 17px;
    }

    #home-features-section .home-feature-description {
        max-width: 120px;
        min-height: 42px;
        font-size: 12px;
        line-height: 1.45;
    }

    #home-features-section .home-features-bottom-image {
        margin-top: 15px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   320px AND BELOW
========================================================= */

@media (max-width: 320px) {

    #home-features-section {
        padding-top: 40px;
    }

    #home-features-section .home-features-header {
        margin-bottom: 25px;
        padding-right: 15px;
        padding-left: 15px;
    }

    #home-features-section .section-heading h2 {
        font-size: 23px;
    }

    #home-features-section .home-features-header p {
        font-size: 13px;
        line-height: 1.6;
    }

    #home-features-section .home-features-container {
        padding-right: 20px;
        padding-left: 20px;
    }

    #home-features-section .home-features-grid {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    #home-features-section .home-feature-item {
        min-height: auto;
        padding: 18px 10px;
    }

    #home-features-section .home-feature-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 14px;
    }

    #home-features-section .home-feature-icon img {
        width: 58px;
        height: 58px;
    }

    #home-features-section .home-feature-title {
        font-size: 19px;
    }

    #home-features-section .home-feature-description {
        max-width: 200px;
        min-height: auto;
        font-size: 14px;
    }

    #home-features-section .home-features-bottom-image {
        margin-top: 15px;
    }
}


/*
===========================================
Commercial page css 
============================================ */


/* =====================================================
   COMMERCIAL PAGE HERO CAROUSEL
===================================================== */

.hero-carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.hero-carousel #heroCarousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.hero-carousel #heroCarousel .carousel-inner,
.hero-carousel #heroCarousel .carousel-inner > .item {
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-carousel #heroCarousel .carousel-inner > .item > img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
}


/* =====================================================
   CAROUSEL INDICATORS
===================================================== */

.hero-carousel #heroCarousel .carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 28px;
    left: 0;
    z-index: 15;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    width: 100%;
    margin: 0;
    padding: 0;

    list-style: none;
    text-align: center;
}


/* Normal indicator */

.hero-carousel #heroCarousel .carousel-indicators li {
    display: block;
    flex: 0 0 auto;

    width: 9px;
    height: 9px;
    margin: 0 !important;
    padding: 0;

    border: 1px solid #ffffff;
    border-radius: 50%;

    background-color: rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);

    cursor: pointer;
}


/* Active indicator */

.hero-carousel #heroCarousel .carousel-indicators li.active {
    width: 10px;
    height: 10px;
    margin: 0 !important;

    border-color: #ffffff;
    background-color: #ffffff;
}



/*
======================
Wide screens
====================
*/



@media (min-width: 1600px) {

    .hero-carousel #heroCarousel .carousel-indicators {
        bottom: 32px;
        gap: 11px;
    }

    .hero-carousel #heroCarousel .carousel-indicators li {
        width: 10px;
        height: 10px;
    }

    .hero-carousel #heroCarousel .carousel-indicators li.active {
        width: 11px;
        height: 11px;
    }
}


/*
======================
Normal desktop and laptop
====================
*/



@media (min-width: 1200px) and (max-width: 1599px) {

    .hero-carousel #heroCarousel .carousel-indicators {
        bottom: 25px;
    }
}


/*
======================
Small laptop
====================
*/



@media (min-width: 992px) and (max-width: 1199px) {

    .hero-carousel #heroCarousel .carousel-indicators {
        bottom: 20px;
        gap: 8px;
    }

    .hero-carousel #heroCarousel .carousel-indicators li {
        width: 8px;
        height: 8px;
    }

    .hero-carousel #heroCarousel .carousel-indicators li.active {
        width: 9px;
        height: 9px;
    }
}



/*
======================
Tablet
====================
*/

@media (min-width: 768px) and (max-width: 991px) {

    .hero-carousel #heroCarousel .carousel-indicators {
        bottom: 15px;
        gap: 7px;
    }

    .hero-carousel #heroCarousel .carousel-indicators li {
        width: 8px;
        height: 8px;
    }

    .hero-carousel #heroCarousel .carousel-indicators li.active {
        width: 9px;
        height: 9px;
    }
    
        .wide-width-layout
    {
    padding: 0px 45px !important;
}

.lansum-tabs-right {
    flex: 1;
    padding: 10px 20px 0px;
    /* background: #fff; */
}
}


/*
======================
Mobile
====================
*/

@media (max-width: 767px) {

    .hero-carousel #heroCarousel .carousel-indicators {
        bottom: 9px;
        gap: 6px;
    }

    .hero-carousel #heroCarousel .carousel-indicators li {
        width: 7px;
        height: 7px;
        border-width: 1px;
    }

    .hero-carousel #heroCarousel .carousel-indicators li.active {
        width: 8px;
        height: 8px;
    }
    
        .wide-width-layout
    {
    padding: 0px 15px !important;
}
}


/*
======================
Galaxy Fold and small mobile
====================
*/

@media (max-width: 374px) {

    .hero-carousel #heroCarousel .carousel-indicators {
        bottom: 6px;
        gap: 5px;
    }

    .hero-carousel #heroCarousel .carousel-indicators li {
        width: 6px;
        height: 6px;
    }

    .hero-carousel #heroCarousel .carousel-indicators li.active {
        width: 7px;
        height: 7px;
    }
}


/*======================
Mobile landscape
====================
*/


@media (max-width: 991px) and (orientation: landscape) {

    .hero-carousel #heroCarousel .carousel-indicators {
        bottom: 8px;
    }
    
      
    .wide-width-layout
    {
    padding: 0px 45px !important;
}
}



@media (min-width: 900px) and (max-width: 930px) and (orientation: portrait) 
{
    
    .lansum-tabs-right
    {
        padding: 0px 20px;
    }
    
    .wide-width-layout
    {
    padding: 0px 45px !important;
}
}

a:focus,
a:focus-visible,
a:active {
  outline: none !important;
  box-shadow: none !important;
}