/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Open Sans, "Open Sans", Arial, "Open Sans", "Open Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Open Sans",  sans-serif;
    --nav-font: "Open Sans",  sans-serif;
  }
  
  /* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
  :root { 
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #555555; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #013974;; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  }
  
  /* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
  :root {
    --nav-color: #222222;  /* The default color of the main navmenu links */
    --nav-hover-color: #013974; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #013974; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
  }
  
  /* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
  
  .light-background {
    --background-color: #f7fcfc;
    --surface-color: #ffffff;
  }
  
  .dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
  }
  
  .accent-background {
    --background-color: #013974;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #013974;
  }
  
  /* Smooth scroll */
  :root {
    scroll-behavior: smooth;
  }
  
  /*--------------------------------------------------------------
  # General Styling & Shared Classes
  --------------------------------------------------------------*/
  body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
  }
  
  a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
  }
  
  a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
  }

  /*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: var(--default-color);
    background-color: var(--background-color);
    transition: all 0.5s;
    z-index: 997;
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.header .topbar {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    height: 40px;
    padding: 0;
    transition: all 0.5s;
}

.header .branding {
    min-height: 60px;
    padding: 10px 0;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 50px;
    margin-right: 8px;
}

.header .cta-btn {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 20px;
    margin: 0 5px 0 30px;
    border-radius: 4px;
    transition: 0.3s;
}

.header .cta-btn:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.nav-link{
  color: var(--accent-color);
  transition: color 0.3s ease;
}

.nav-link.active{
  color: var(--accent-color);
}


.nav-link:hover{
  color: var(--nav-color);
}

/* Bootstrap specific adjustments for navbar on mobile */
@media (max-width: 1199px) {
    .navbar-toggler {
        border: none;
    }

    .navbar-toggler-icon {
        background-color: var(--contrast-color);
    }

    .navbar-nav {
        padding-left: 0;
    }

    .nav-link {
        font-size: 16px;
        font-weight: 500;
    }

    .cta-btn {
        margin-top: 15px;
    }
}

  /*--------------------------------------------------------------
# Properties Section
--------------------------------------------------------------*/
.sub-headingprop {
  font-size: 18px;
  color: #013974;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 5px;
}

.headingprop {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

  .properties .container-new {
    max-width: 1400px;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
  .properties{
    background-color: var(--surface-color);
  padding: 50px 30px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  position: relative;
  z-index: 1;
  }

  .properties h1 {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 50px;
}

.properties h2{
            margin-top: 40px;
            font-size: 30px;
            font-weight: 600;
            color: #444;
            border-bottom: 2px solid #ddd;
            padding-bottom: 10px;
            margin-bottom: 20px;
}

.properties h3{
    font-family: Open Sans;
    font-size: 30px;
    font-weight: 600;
    color: #444;
}

.properties .search-form {
    margin-bottom: 0px;
    text-align: right;
}

.properties .search-form input[type="text"] {
    padding: 10px;
    font-size: 16px;
    width: 300px;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-right: 10px;
}

.properties .search-form input[type="submit"] {
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: var(--accent-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.properties .search-form input[type="submit"]:hover {
    background-color: #0056b3;
}

.properties .property-card {
    display: flex;
    margin-bottom: 40px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.properties .property-card img {
    width: 400px;
    height: 300px;
    object-fit: cover;
}

.properties .property-details {
    padding: 20px;
    flex-grow: 1;
}

.properties .property-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.properties .property-amenities {
    margin-bottom: 10px;
    color: #777;
}

.properties .property-description {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.properties .amenity {
    display: inline-block;
    background-color: #e0e0e0;
    padding: 5px 10px;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
    color: #333;
    font-size: 14px;
}

.properties .property-price {
    font-size: 1.2em; /* Larger font size for visibility */
    color: #333; /* Color for the price text */
    margin: 10px 0; /* Spacing above and below the price */
}

.properties .category-buttons {
    text-align: left;
    margin-bottom: 40px;
}

.properties .category-button {
    display: inline-block;
    background-color: #013974;
    color: white;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
}

.properties .category-button:hover {
    background-color: #0056b3;
}

.properties .pagination {
    text-align: center;
    margin-top: 40px;
}

.properties .pagination a {
    text-decoration: none;
    color: #013974;
    padding: 10px;
    margin: 0 5px;
}

.properties .pagination span {
    padding: 10px;
    margin: 0 5px;
    color: #999;
}

.properties .property-buttons { margin-top: 20px; }
.properties .property-buttons a { text-decoration: none; padding: 10px 20px; color: white; border-radius: 5px; font-size: 16px; margin-right: 10px; display: inline-block; }
.read-more-button { background-color: #013974; }
.read-more-button:hover { background-color: #0056b3; }
.contact-button { background-color: #9c720f; }
.contact-button:hover { background-color: #218838; }


/*--------------------------------------------------------------
# Hero Section Alternate
--------------------------------------------------------------*/
.slide::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.slide .container {
  position: relative;
  z-index: 2;
}

.slide-heading{
  color: var(--background-color);
}

/*--------------------------------------------------------------
# Button
--------------------------------------------------------------*/
.cta-btn {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 4px;
    transition: 0.3s;
}

.cta-btn:hover {
    color: var(--contrast-color);
    background: var(--nav-color);
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.ctamain {
  height: 500px;
  background-image: url('../img/cta-img.webp'); /* Replace with your image URL */
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
}

.ctamain::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for better text contrast */
  z-index: 1;
}

.contentmain {
  position: relative;
  z-index: 2;
  color: white;
}

.ctatext {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.btnmain {
  text-decoration: none;
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 0.5rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 5px;
  transition: 0.3s;
}

.btnmain:hover {
  background: white;
  color: black;
}


@media (max-width: 768px) {
.ctatext {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}  
}

/* Footer Styling */
    .footer {
      position: relative;
      background-image: url("../img/banner-img-1.jpg");
      background-size: cover;
      background-attachment: fixed;
      background-position: center center;
      color: #fff;
      padding: 40px 20px;
      text-align: center;
      overflow: hidden;
      min-height: 300px;
      z-index: 0;
    }

    .footer::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 1;
    }

    .footer::after {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0,0,0,0.3));
      z-index: 2;
    }

    .footer > * {
      position: relative;
      z-index: 3;
    }


.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  padding: 20px;
  text-align: left;
}

.footer-column h3 {
  border-bottom: 3px solid #f4a261;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 15px;
  font-size: 20px;
  color: #fff;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin: 10px 0;
}

.footer-column ul li a {
  color: #ddd;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
  display: flex;
  align-items: center;
}

.footer-column ul li a i {
  margin-right: 10px;
  color: #f4a261;
}

.footer-column ul li a:hover {
  color: #f4a261;
  transform: translateX(5px);
}

.social-icons a {
  color: #ddd;
  margin: 10px;
  font-size: 20px;
  display: inline-block;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #f4a261;
  transform: scale(1.2);
}

.footer-credits {
  border-top: 1px solid #ddd;
  display: inline-block;
  padding: 15px;
  margin-top: 20px;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      text-align: center;
  }

  .footer-column {
      width: 100%;
      padding: 20px;
  }

  .footer-column ul {
      padding: 0;
  }

  .footer-column ul li {
      text-align: center;
  }

  .footer-column ul li a {
      justify-content: center;
  }

  .social-icons {
      text-align: center;
  }
}

/* Back to Top Styling */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f4a261, #e76f51);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: 0.3s;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 6;
}

.back-to-top:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #e76f51, #f4a261);
}

.back-to-top i {
  font-size: 22px;
}

/* Breadcrumb Section */
.breadcrumb-section {
  background: url('../img/banner-img-1.jpg') center/cover no-repeat;
  padding: 100px 20px;
  text-align: center;
  color: white;
  position: relative;
}

.breadcrumb-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.breadcrumb-container {
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: 52px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.breadcrumb-nav {
  font-size: 18px;
}

.breadcrumb-nav a {
  color: #f4a261;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.breadcrumb-nav a:hover {
  color: #e76f51;
}

.breadcrumb-nav span {
  color: white;
  margin: 0 5px;
}

.current-page {
  color: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
  .breadcrumb-section {
    padding: 60px 20px;
  }
  .page-title {
      font-size: 28px;
  }
  
  .breadcrumb-nav {
      font-size: 16px;
  }
}

.menu-column ul li a i {
  margin-right: 8px;
  color:#007BFF;
}

/* Vision & Mission Section */
.vision-mission {
  padding: 60px 20px;
  color: white;
  text-align: center;
}

.containermv {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: auto;
}

.block {
  background: rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 10px;
  width: 45%;
  min-width: 280px;
  margin: 10px;
  transition: 0.3s;
  text-align: center;
}

.block:hover {
  transform: translateY(-5px);
  background: rgba(60, 60, 60, 0.4);
}

.icon {
  font-size: 40px;
  margin-bottom: 10px;
  color: var(--accent-color) !important;
}

.h2mv {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0056b3; 
}

.pmv {
  font-size: 16px;
  line-height: 1.6;
  color:#242424
}

/* Responsive */
@media (max-width: 768px) {
  .container {
      flex-direction: column;
      text-align: center;
  }

  .block {
      width: 90%;
  }
}


.contact-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  background-color: #f9f9f9;
}

.contact-wrapper {
  display: flex;
  max-width: 1400px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}
.contact-form {
  flex: 1;
  padding: 20px;
}
.contact-form h2 {
  margin-bottom: 15px;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.contact-form button {
  background: #007BFF;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.map {
  flex: 1;
  padding: 20px;
}
iframe {
  width: 100%;
  height: 200px;
  border: 0;
}
.contact-details {
  text-align: left;
  margin-top: 20px;
}
.contact-details p {
  margin: 5px 0;
}
.contact-details i {
  margin-right: 8px;
  color: #007BFF;
}

.ftsec{
  margin: 50px;
}

@media (max-width: 992px) { /* Tablets and below */
  .row-cols-4 {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
  }
  .col {
      width: 50%; /* Two columns per row on tablets */
      display: flex;
      justify-content: center;
      margin-bottom: 15px;
  }
}



/* Icon Box */
   .icon-box {
      padding: 30px;
      text-align: center;
      background-color: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 10px;
      transition: all 0.3s ease-in-out;
      height: 100%;
    }
    .icon-box:hover {
      box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
      transform: translateY(-5px);
    }
    .icon-box .icon {
      font-size: 40px;
      color: #0d6efd;
      margin-bottom: 15px;
    }
    .icon-box h5 {
      font-weight: 600;
      margin-bottom: 10px;
      color: #333;
    }
    .icon-box p {
      font-size: 14px;
      color: #666;
    }


    /* Product New */

  .custom-services-row {
  margin-top: 20px;
}

/* Column container */
.custom-services-col {
  display: flex;
}

/* Card wrapper */
.custom-service-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  max-width: 350px;
}

/* Hover effect */
.custom-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

/* Image styling */
.custom-service-img {
  height: auto;
  width: 100%;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

/* Card content */
.custom-service-body {
  padding: 1rem;
  flex-grow: 1;
}

/* Title */
.custom-service-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

/* Description */
.custom-service-desc {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1rem;
}

/* Read more button */
.custom-service-btn {
  background-color: var(--accent-color);
  color: white;
  padding: 8px 16px;
  font-size: 0.9rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

/* Button hover effect */
.custom-service-btn:hover {
  background-color: #0056b3;
  color: white;
}

/*WhatsApp Float*/

    .float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	left:40px;
	background-color:#25d366;
	color:#ffffff;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:999;
}

.my-float{
	margin-top:16px;
	color: #fff;
}

