@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');


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

body{
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.599998;
    word-spacing:1px;
    scroll-behavior: smooth;
}

:root{
  --main-primary-color: #006599;
  --blue-secondary-color:#F4F9FF;
  --main-secondary-color: #000;
  --para-primary-color:#555;
  --para-font-size: 16px;
  --subheading-font-size: 24px;
  --title-font-size:32px;
  --background-gray: #F7F7F7;
  --card-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  --light-text: #6c757d;
  --dark-text: #343a40;
  --main-color: #006599;
  --bg-light: #f4f9fc;
  --text-dark: #1f2d3d;
  --text-muted: #5f6f81;
}


    
    /* ============================ 
          Header Start here
      ============================ */



.main-heading-container{
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-heading-container h1{
   font-size: 32px;
   padding: 30px 0;  
}

.p-sec{
  padding: 40px 0 50px ;
}

/* =========================================
   MAIN HEADER BASE
========================================= */


.main-header,
.secondary-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: all 0.3s ease;
}

.main-header {
  background: transparent;
}

.secondary-header {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.main-header-container {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}

/* =========================================
   LOGO
========================================= */

.logo img {
  transition: all 0.3s ease;
}

/* Main header logo */
.main-header .logo img {
  height: 58px;
  width: 110px;
  padding: 10px 0 0;
}

/* Secondary header logo */
.secondary-header .logo img {
  height: 58px;
  width: 112px;
}

/* =========================================
   NAVBAR BASE
========================================= */

.navbar ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

.navbar ul li {
  position: relative;
}

.navbar ul li a {
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 0.5px;
  transition: 0.3s;
  padding-bottom: 5px;
}

.mobile-only {
  display: none;
}

.main-header .navbar ul li a {
  color: #ffffff;
}

.main-header .navbar ul li a:hover,
.main-header .navbar ul li a.active {
  color: #ffffff;
}

.main-header .hamburger span {
  background: #ffffff;
}

.secondary-header .navbar ul li a {
  color: var(--para-primary-color);
}

.secondary-header .navbar ul li a:hover,
.secondary-header .navbar ul li a.active {
  color: var(--main-color);
}

.secondary-header .hamburger span {
  background: var(--para-primary-color);
}

.main-header.scrolled {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.main-header.scrolled .navbar ul li a {
  color: var(--para-primary-color);
}

.main-header.scrolled .navbar ul li a:hover,
.main-header.scrolled .navbar ul li a.active {
  color: var(--main-color);
}

.main-header.scrolled .hamburger span {
  background: var(--para-primary-color);
}

.menu-link {
  position: relative;
}

.menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

/* Secondary header underline */
.secondary-header .menu-link::after {
  background-color: var(--main-color);
}

/* Main header underline */
.main-header .menu-link::after {
  background-color: #ffffff;
}

/* Scrolled state */
.main-header.scrolled .menu-link::after {
  background-color: var(--main-color);
}

.menu-link:hover::after {
  transform: scaleX(1);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 10003;
}

.hamburger span {
  height: 3px;
  border-radius: 2px;
  transition: 0.3s;
}

/* Active (cross) */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ===============================
   MENU OVERLAY
================================= */

 .menu-overlay {
    display: none;
  }

.menu-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 0.4s ease-in-out;
  z-index: 1000;
}

/* Active state */
.menu-overlay.active {
  transform: translateY(0);
}

/* Background image overlay */
.menu-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("public/bg-menu1.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  opacity: 0.8;
  pointer-events: none;
}

/* Overlay menu links */
.overlay-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.overlay-content a {
  display: block;
  font-size: 24px;
  margin: 18px 0;
  text-decoration: none;
  color: #000;
  transition: 0.3s ease;
}

.overlay-content a:hover {
  color: #006599;
}

/* Prevent background scroll */
.no-scroll {
  overflow: hidden;
}




     
    /* ============================ 
          Header End here
      ============================ */

        
      /* ============================ 
          Breadcrumb
      ============================ */

          
        /* .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            margin: -1px;
            padding: 0;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }


        .customized-property-hero {
            /* background: linear-gradient(180deg, var(--gradient-end) 0%, #fff 100%); */
            /* background-color: var(--gradient-start); 
            width: 100%; 
            height: 20vh;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding: 20px 0  0 ;
        } */ 

        

        .page-title {
            font-size:32px;
            font-weight: 700;
            color: var(--main-primary-color);
            margin-bottom: 10px;
        } 

        .breadcrumbs-section{
          padding-top: 40px;
          width: 100%;
          display: flex;
          justify-content: center;
          align-items: center;
          background:
          linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
          url("public/bread-img-com.jpg");
          background-position: center;
          background-size: cover;
          background-attachment: fixed;
          background-repeat: no-repeat;
          height:55vh;
        }
        
        .breadcrumb {
          font-size: 16px;
          margin: 16px 0;
          text-align: center;
        }

        .breadcrumb-heading{
          font-size: 42px;
          color:#fff;
          margin-bottom: 10px;
        }

        .breadcrumb a {
          color:#fff;
          text-decoration: none;
        }

        .breadcrumb a:hover {
          text-decoration: underline;
        }

        .breadcrumb span {
          margin: 0 6px;
          color: #fff;
        }

        .breadcrumb .current {
          color:#fff;
        }



   /* ============================ 
          Footer Start here
      ============================ */
            
      .footer {
          color: var(--dark-text);
        overflow: hidden;
      }

      .footer-container {
        position: relative;
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        padding: 25px 160px 28px;
        box-sizing: border-box;
        border-bottom: 1px solid var(--main-primary-color);
      }

      .logo-col img{
        width: 150px;
        height: 90px;
      } 
      .footer-list{
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-end;
        gap: 50px;

      }
      .footer-col h4 {
        font-size: 18px;
        color: var(--main-color);
        margin-bottom: 8px;
      }

      .footer-col p,
      .footer-col li {
        font-size: 14px;
        margin-bottom: 3px;
      }

      .footer-col ul {
        list-style: none;
        padding: 0;
      }

      .footer-col ul li a {
        text-decoration: none;
            color: var(--dark-text);
      
      }

      .footer-col ul li a:hover {
        /* text-decoration: underline; */
        color: #006599;
      }

      .footer-list p:hover{
        color: #006599;
      }
      .contact-footer{
      width: 230px;
      }

      .bg-footer-img{
        position: absolute;
        position: center;
        z-index: -1;
        width: 100%;
        bottom:-8px;
        left: 0;
        opacity: 0.8;            
        filter: grayscale(100%);
      }

      .bg-footer-img img{
      width: 100%;
      opacity: 0.3;
        filter: grayscale(100%) blur(0.2px);
      }


      /* Bottom footer */
      .footer-bottom {
        padding: 20px 0;
      }

      .footer-bottom-container {
        padding: 0 160px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        font-size: 14px;
      }

      .footer-links a {
        text-decoration: none;
        color:var(--dark-text);
        font-size: 14px;
        margin: 0 5px;
      }

      .footer-links a:hover {
        /* text-decoration: underline; */
        color: #006599;
      }



        

      
       

        /* ============================ 
                Footer End here
            ============================ */


      /* ====== Reveal Animation ====== */
      .reveal {
          opacity: 0;                 /* hidden by default */
          transform: translateY(40px); /* slide up */
          transition: all 0.8s ease;   /* smooth animation */
      }

    
      .reveal.active {
          opacity: 1;
          transform: translateY(0);
      }



    /* ============================ 
           Home Page
       ============================ */

/* ====== Hero Section  Start====== */

  

.home-hero {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100vh;
  padding-left: 20px;
  transition: opacity 1s ease-in-out; 
  
}
.hero-home-sec{
  margin-top: -20px;
}

.bg-img-shape{
  display: inline-block;
    position: absolute;
    top:50px;
    left:0px;
    z-index: -1;
    width: 500px;
    height: 300px;
    
}

 .bg-img-shape img{
  width: 100%;
  height: 100%;
  
 }

.home-hero-content {
  max-width: 50%;
  padding-left: 40px;

}

.home-hero-content h1 {
  font-size: 38px;
  font-weight: bold;
}

.home-hero-content .highlight {
  color: #0078d4; 
}

.home-hero-content p {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
  color:var(--dark-text);
  padding-right: 50px;
 }

.home-hero-buttons{
  display: flex;
  gap: 20px;
}

.home-hero-buttons .btn-buy, 
.home-hero-buttons .btn-rent {
  padding: 10px 20px;
  font-size: 1rem;
  background-color: transparent;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn-buy {
  /* background-color: #0078d4; */
  border:2px solid #006599; /* Zillow blue */
  color: #006599;
}

.btn-buy:hover {
  background-color: #006599;
  color: white;
 }

.btn-rent {
  border:2px solid  #4caf50; /* Green for Rent */
  color:  #4caf50;
}

.btn-rent:hover {
  background-color:  #4caf50;
  color: white;
}

.home-hero-image{
   padding-top: 20px;
   width:55%;
   height: 500px;
   display: flex;
   align-items: center;
}

.home-hero-image img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 22px;
  border-bottom-left-radius: 22px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.home-hero-slider {
  position: relative;
}

.home-hero {
  display: none;
}

.home-hero.active {
  display: flex; /* keeps your layout */
}

    .home-hero-pagination {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 12px;
      z-index: 10;
    }

  .home-hero-pagination .dot {
    width: 10px;
    height: 10px;
    border: 1px solid #006599;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
  }

  .home-hero-pagination .dot.active {
    background:#006599;
  }
  .home-form {
  position: relative;
  z-index: 2;
}

.home-form-container {
  position: absolute;
  top: 140px;
  right: 20px;
  width: 350px;
  background: #ffffff;                 /* match contact form */
  padding: 30px 30px;                 /* same as contact form */
  border-radius: 20px;                 /* match contact form */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* same shadow as contact form */
  transform: translateX(60px);
  opacity: 0;
  animation: formSlideIn 0.9s ease forwards;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Slide-in / Slide-out Animations */
@keyframes formSlideIn {
  from { transform: translateX(60px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.home-form-hide {
  animation: formSlideOut 0.6s ease forwards;
}

@keyframes formSlideOut {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(80px); opacity: 0; }
}

/* Close Button */
.home-form-close {
  position: absolute;
  top: 18px;
  right: 20px;
  padding: 1px 8px;
  background: transparent;
  border: none;
  font-size: 28px;
  font-weight: 200;
  cursor: pointer;
  color: var(--dark-text);
  transition: 0.3s;
}

.home-form-close:hover {
  color: white;
  background: var(--main-color);
  border-radius: 5px;
}

/* Form Title and Labels */
.home-form-title {
  color:var(--main-color);   
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.home-form-group label {
  display: block;
  font-size: 16px;
  color: #555;              
  margin-bottom: 8px;
}

/* Input and Textarea Styling */
.home-form-input,
.home-form-textarea,
#phone {
  width: 100%;
  padding: 10px;               
  border-radius: 10px;         
  border: 1px solid #e2e8f0;  
  background-color: #f7fafc;   
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;            
  color: #333;                 
  transition: 0.3s;
}

.home-form-input:focus,
.home-form-textarea:focus,
#phone:focus {
  border-color: #4a90e2;       /* same focus color as contact form */
  outline: none;
  background-color: #f7fafc;
}

.home-form-textarea {
  resize: none;
  height: 80px;
  
}

/* Phone Input Wrapper (if using intl-tel-input) */
.phone-group,
#phone {
  background-color: #f7fafc;    /* match contact form */
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  padding-left: 12px;
  color: #333;
}

/* Form Button */
.home-form-button {
  width: 100%;
  padding: 12px;
  background-color: #006599;    /* primary color */
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.home-form-button:hover {
  background-color: #00497a;    /* slightly darker on hover */
}

/* Error and Success Messages */
.home-form-error {
  color: #f44336;
  font-size: 14px;
  margin-top: 10px;
  display: none;
}

.home-form-success {
  color: #4CAF50;
  font-size: 14px;
  margin-top: 10px;
  display: none;
}

/* Form Groups Spacing */
.home-form-group {
  margin-bottom: 15px;
}

.home-form-error {
    display: none;
    color: red;
    font-size: 12px;
    margin-top: 10px;
}

.home-form-success {
    display: none;
    color: green;
    font-size: 14px;
    margin-top: 10px;
}



/* ====== Hero Section  End ====== */


 /* ======  Feature Property Section Start====== */

/* SECTION */
.feature-property-sec {
padding: 40px 160px;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
overflow: hidden;  
}

.feature-prop-slider-container {
  padding-top: 35px;
    position: relative;
    width:100%;
    height: 50vh;   
 }

.feature-prop-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Base Card Style */
.feature-prop-card {
    position: absolute;
    top: 0;
    height: 100%;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    width: 0;
    opacity: 0;
    left: 100%;
}

/* Gradient Overlay */
.feature-prop-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    opacity: 0;
    transition: opacity 0.6s ease;
}

/* --- Positioning Logic --- */
.feature-prop-card.active {
    left: 0;
    width: 55%;
    opacity: 1;
    z-index: 10;
}

.feature-prop-card.next {
    left: 57%;
    width: 20%;
    opacity: 1;
    z-index: 9;
}

.feature-prop-card.next-2 {
    left: 79%;
    width: 20%;
    opacity: 1;
    z-index: 8;
}

.feature-prop-card.hidden {
    left: 100%;
    width: 0;
    opacity: 0;
}

/* --- Content Styling --- */
.feature-prop-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: white;
    z-index: 20;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    transition-delay: 0.2s;
    width: 80%;
}

.feature-prop-card.active .feature-prop-content {
    opacity: 1;
    transform: translateY(0);
}

.feature-prop-card.active::after {
    opacity: 1;
}

.feature-prop-card.next .feature-prop-content,
.feature-prop-card.next-2 .feature-prop-content {
    display: none;
}

.feature-prop-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-prop-description {
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.feature-prop-btn {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid white;
    color: white;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.feature-prop-btn:hover {
    background: white;
    color: black;
}

/* Navigation Buttons */
.feature-prop-buttons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
}

.feature-prop-buttons button {
    position: absolute;
    top: 50%;
    /* transform: translateY(-50%); */
    width: 50px;
    height: 50px;
    /* border-radius: 50%; */
    border: none;
    background-color: transparent;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.3s;
    pointer-events: auto;
    /* backdrop-filter: blur(5px); */
}

.feature-prop-buttons button:hover {
    background-color: white;
    color: black;
    border-radius: 50%; 
    /* transform: translateY(-50%) scale(1.1); */
}

/* Button positions (IDs unchanged) */
#prev {
    left: -60px;
    color: #006599;
}

#next {
    right: -60px;
    color: #006599;
}


 /* ======Feature Property Section  End====== */  

   /* ====== Key Feature Section  Start====== */

   .keyfeature-sec{
    width: 100%;
    padding: 40px 160px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #f9fafb;
   }

   .feature-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
     background: #ffffff;
    height: auto;
    justify-content: center;
     border-radius: 30px;
   
}

.feature-box {
    padding: 20px 10px;
    text-align: center;
    color:var(--main-secondary-color);
    display: flex;
    background: #ffffff;
    align-items: center;
    border-radius: 30px;
    justify-content: center;
    flex-direction: column;
    
}

.feature-img-icon-service{
  padding: 5px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content:space-between;
  color: #006599;
  background-color: white;
}

.feature-img-icon{
  width: 40px;
  height: 40px;
  padding: 5px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--blue-secondary-color);
}

.feature-img-icon img {
  width: 40px;
  padding-right: 2px;     
}

.feature-box:hover {
    background: #006599;
    transform: scale(1.1);
    border-radius: 22px;
    transition: 0.3s;
    color: white; /* darker shade on hover */
}

.feature-box:hover p{
  font-size: 16px;
 }

.feature-box:hover h3{
  color: white;
}
.feature-box:hover p{
  color: white;
}

.feature-box h3 {
    margin: 10px 0;
    font-size: 18px;
    font-weight: bold;
    color: var(--main-primary-color);
 }

.feature-box p {
    font-size: 16px;
    padding: 0 18px; 
    color: var(--dark-text);  
 }


  /* ====== Key Feature Section  End====== */




 /* ====== Why Choose us Section  Start====== */  


/* Section Wrapper */

.why-choose-us {
    padding: 20px 0 80px;
    /* background: #f5f5f7; */
    background: white;
 }

.why-choose-us-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center; 
    gap: 50px;
    padding: 0 160px;
    
 }

/* Left Image Block */
.why-choose-us-images-container {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;  
    padding: 0 30px;  
}

.why-choose-us-images {
    position: relative;
    width: 100%;
    }

  .why-choose-us-main-img{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
   }

.why-choose-us-main-img img {
    width:400px;
    height: 400px;
    border-radius: 20px;
    
}

.why-choose-us-small-img {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  bottom: 60px;
  padding-left: 25px; 
}

.why-choose-us-small-img img {
    width: 250px;
    border-radius: 20px;
    border: 8px solid white;
}

    .why-choose-us-content{
      width: 50%; 
    }

.why-choose-us-clients {
    position: absolute;
    bottom: -20px;
    left: 200px;
    background:  #bed8f9;
    color: #006599;
    padding: 23px 35px;
    border-radius: 50%;
    text-align: center;
    margin-left: 10px;
    z-index: 1;
}

.why-choose-us-clients h3 {
    margin: 0;
    font-size: 20px;
}

/* Right Content */
.why-choose-us-subtitle {
    color:var(--main-primary-color);
    font-weight: bold;
}

.why-choose-us-title {
    font-size: 24px;
    margin: 10px 0;
    font-weight: bold;
}

.why-choose-us-description {
    color: var(--dark-text);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
   
}

/* Features */
.why-choose-us-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-choose-us-feature {
    display: flex;
    gap: 15px;
    align-items: start;
}

.why-choose-us-feature p {
  color: var(--dark-text);
  font-size: 16px;
}

.why-choose-us-icon {
    padding: 10px; 
    background-color: #bed8f9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.why-choose-us-icon img {
  width:30px; height: auto;
}

  /* ====== Why Choose us Section End====== */ 


  /* ====== Our Partner  Section Start====== */ 
  
      

  /* ======   Our Partner Section End====== */ 

/* .ourservices-section {
  width: 100%;
  display: flex;
  align-items: center;
  background: #f9fafb;
  flex-direction: column;

}

.ourservices-container {
  width: 100%;
  padding: 10px;
}

.ourservices-header {
  text-align: left;
  padding:0 150px;
}

.ourservices-header h2 {
  font-size: 24px;
  color:var(--main-secondary-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.ourservices-header p {
  color: var(--para-primary-color);
  font-size: 16px;
  margin-bottom: 10px;
 
}

.ourservices-learn-more {
  color: var(--main-primary-color);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.ourservices-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding:30px 150px;
}


.ourservices-card {
  position: relative;
  padding: 30px 20px;
  border-radius: 22px;
  background: #ffffff;
  text-align: center;
  border: 1px solid #e5e7eb;
  overflow: hidden;        
  cursor: pointer;
  transition: 0.3s ease;
  isolation: isolate;      
}

.ourservices-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: -60%;
  width: 100%;
  height: 160%;
 
  border-radius: 50% 50% 0 0;
  transform: translateY(95%);
  transition: transform 0.35s ease-in-out;
  z-index: -1;
}

.ourservices-card:hover::before {
  transform: translateY(0);
}

.ourservices-icon span {
  font-size: 50px;
  display: block;
  margin-bottom: 15px;
  transition: 0.3s;
}


.ourservices-card h3 {
  margin-bottom: 10px;
  color: #222;
  font-size: 18px;
  transition: 0.3s;
}

.ourservices-card p {
  color: #444;
  font-size: 16px;
  transition: 0.3s;
}

.ourservices-card:hover h3,
.ourservices-card:hover p,
.ourservices-card:hover .ourservices-icon span {
  color: white;
} */

.services{
  background: #ffffff;
  padding: 20px 160px 40px;
 
}

.bg-container-style{
  width: 100%;
  padding: 60px 60px 60px;
  border-radius: 120px;
  position: relative;
  overflow: hidden;

 
  /* Soft gradient → color to white */
  background: linear-gradient(
    270deg,
    rgba(0, 101, 153, 0.08) 0%,
    rgba(0, 101, 153, 0.05) 35%,
    rgba(255, 255, 255, 1) 100%
  );
}

/* .services-container::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: rgba(0, 101, 153, 0.12);
  border-radius: 50%;
} */

.services-container {
  display: flex;
  gap: 50px;
  align-items: flex-end;
  margin-bottom: 5px;
}
.bg-container-style h2 {
  font-size: 38px;
  font-weight: 700;
}

.bg-container-style h2 span {
  color: #006599;
}

.services-left p {
  margin: 20px 0 30px;
  color: #555;
  max-width: 420px;
}

.services-image{
  height:300px;
  width: 550px;
  cursor: pointer;
}

.services-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.services-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 20px;
}

.service-card {
  border-radius: 35px;
  padding-right: 25px; 
  transition: all 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card.highlight {
  background: #006599;
  color: #fff;
  border-radius: 50px;
  padding: 45px 35px;
  height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 25px 60px rgba(0, 101, 153, 0.35);
  transform: translateY(-40px);
}

.service-card.highlight p {
  color: #e6f4ff;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  /* background: #fff; */
  /* background: rgba(0, 101, 153, 0.15); */
  background-color: #006599;
  /* background-color: #006599; */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-card.highlight .service-icon {
  background: rgba(255,255,255,0.25);
  
}

.service-icon svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.service-card.highlight svg {
  fill: #fff;
}

.service-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #666;
}

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




/* ====== Our Services Section End====== */




/* ============================ 
      Inventory Page
   ============================ */

    
/* =========================
   PAGE CONTAINER
========================= */
.properties-container {
  position: relative;
  display: flex;
  gap: 32px;
  padding: 40px 100px;
 
  background: #f5f9fc;
}


/* =========================
   LEFT FORM
========================= */
.properties-form {
  background-color: #fff;
  width: 28%;
  padding: 28px;
  height: 425px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  animation: formSlideIn 0.9s ease forwards;
}

.properties-form__title {
  font-size: 22px;
  margin-bottom: 20px;
  color: #006599;
}


.properties-form__box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Inputs, Textarea, Phone */
.properties-form input,
.properties-form textarea,
.properties-form #phone {
  width: 100%;
  padding: 10px;
  border-radius: 10px;               /* same as contact form */
  border: 1px solid #e2e8f0;        /* same border */
  background-color: #f7fafc;         /* same input bg */
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #333;
  transition: 0.3s;
  
}
.properties-form .input-group {
  margin-bottom: 0;
}

.iti__selected-flag {
  padding: 0 0 0 8px !important;
}
.iti {
    width: 100% !important;
  }

.properties-form input:focus,
.properties-form textarea:focus,
.properties-form #phone:focus {
  border-color: #4a90e2;             /* same focus color */
  outline: none;
}

.properties-form textarea {
  height: 90px;
  resize: none;
}

/* Phone input wrapper if needed */
.properties-form .input-group,
.properties-form #phone {
  background-color: #f7fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  padding-left: 12px;
  color: #333;
}

/* Button */
.properties-form button {
  padding: 12px;
  border-radius: 8px;
  border: none;
  background-color: #006599;         /* primary color */
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.properties-form button:hover {
  background-color: #00497a;         /* hover effect */
}


/* =========================
   RIGHT CONTENT
========================= */
.properties-content {
  width: 72%;
}

/* =========================
   TOP BAR
========================= */
.properties-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.properties-count {
  font-size: 15px;
  font-weight: 600;
  color:var(--dark-text);
}

/* =========================
   VIEW TOGGLE
========================= */
.properties-view-toggle {
  display: flex;
  gap: 6px;
 
  /* padding: 6px; */
  border-radius: 10px;
  /* box-shadow: 0 6px 20px rgba(0,0,0,0.08); */
}

.properties-view-toggle button {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.properties-view-toggle svg {
  width: 20px;
  height: 20px;
  fill: #6b7c8f;
  transition: 0.3s;
}

.properties-view-toggle button.active {
  background: #006599;
}

.properties-view-toggle button.active svg {
  fill: #ffffff;
}

.properties-view-toggle button.active:hover svg {
  fill: #fff;
  border-radius: 2px solid #006599;
}

/* =========================
   PROPERTY GRID / LIST
========================= */
.properties-cards {
  display: grid;
  gap: 22px;

}

.properties-cards.grid-view {
  grid-template-columns: repeat(3, 1fr);
}

.properties-cards.grid-view {
  
}

.properties-cards .amenities {
  display: none; 
  gap: 22px;
  margin-top: 12px;
  flex-wrap: wrap;
}


.properties-cards.list-view {
  grid-template-columns: 1fr;
}

  /* =========================
      PROPERTY CARD
    ========================= */

.properties-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e3edf4;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  animation: fadeUp 0.5s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.properties-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.1);
}

.properties-cards.list-view .properties-card {
  flex-direction: row;
  height: 200px;
  gap: 20px;
  
}


.properties-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.properties-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.properties-cards.list-view img {
  width: 300px;
  height: 100%;
  object-fit: cover;
  border-radius: 14px 0 0 14px;
}

.properties-card:hover img {
  transform: scale(1.05);
}

 .properties-card .propertycard-location {
  font-size: 14px;
  /* color: #6b7c8f; */
  color: var(--dark-text);
  display: flex;
  align-items: center;
  gap: 6px;
}

 .properties-card .propertycard-location .material-symbols-outlined{
 color:var(--dark-text);
 font-size: 15px;
}


.area-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 6px;
}

  .properties-card__info .area-container h3 {
    font-size: 16px;
    color: var(--dark-text);
    font-weight: 500;
  }

 .properties-card__info .area-container .sq-ft {
      color:var(--dark-text);
      font-size: 14px;
 }

.properties-card__info .area-container span {
  font-size: 16px;
  font-weight: 200;
  color: #000;
}

 .properties-cards.list-view .properties-card__info h3 {
  font-size: 20px;
 }

 .properties-cards.list-view  .propertycard-location {
  font-size: 16px;
  /* color: #6b7c8f; */
  color: var(--dark-text);
  display: flex;
  position: absolute;
  top:20px;
  right:20px;
  gap: 5px;
 
}

.area-container .list-view {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top:0;
}

 .properties-cards.list-view .propertycard-location .material-symbols-outlined{
 /* color:var(--dark-text); */
 font-size: 17px;
 height: 21px;

}


.properties-cards.list-view .area-container {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
 
  
}

  .properties-cards.list-view .area-container h3 {
    font-size: 16px;
    color: var(--dark-text);
    font-weight: 500;
    align-items:baseline;
    margin: 0;
  }

 .properties-cards.list-view .area-container .sq-ft {
      color:var(--dark-text);
      font-size: 14px;
 }

.properties-cards.list-view .area-container span {
  font-size: 16px;
  font-weight: 200;
  color: #000;
}



/* =========================
   CARD INFO
========================= */

.properties-card__info {
  padding: 16px;
}

.properties-card__info h3 {
  font-size: 18px;
  color:#006599;
  margin-bottom: 4px;
}

.properties-card__info p {
  font-size: 14px;
  color: #6b7c8f;
  margin-bottom: 10px;
}

.properties-card__info span {
  font-size: 24px;
  font-weight: 700;
  color: #006599;
}

.properties-cards.list-view .properties-card__info {
  padding: 15px 20px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.properties-cards.list-view .properties-card__info span {
  
  font-size: 18px;
}

.properties-card-link{
   text-decoration: none;
}

.properties-card__info .property-descrip,
.properties-card__info .decription-list .detail-btn {
  display: none;
}


.properties-cards.list-view .properties-card__info .property-descrip,
.properties-cards.list-view .properties-card__info .detail-btn {
  display: flex; 
}

.decription-list{
  width: 100%;
  
}

.properties-card__info .inventory-place {
  pointer-events: none;
  cursor: default;
}
.properties-card__info .inventory-place{
  position: absolute;
  right:10px;
 font-size: 12px;
 bottom: 50px;
  color: black;
  padding: 2px;
  border: 1px solid #006599;
  border-radius: 8px;
}

.properties-card__info .property-descrip {
  margin-top: 8px;
  line-height: 1.7;
  color: #6b7c8f;
}

.properties-card__info .decription-list p {
   font-size: 14px;
   color: #6b7c8f; /* softer text color */
   line-height: 1.4;
   width:100%;
   padding-right: 64px;
 }

 .properties-card__info .detail-btn {
  padding: 8px 10px;
     position: absolute;
    right: 22px;
    bottom: 20px;
  border: 1px solid #006599;
  border-radius: 8px;
  /* background: rgba(0,101,153,0.08); */
  background-color: transparent;
  color: #006599;
  /* font-weight: 600; */
  /* transition: all 0.3s ease; */
}

.properties-card__info  .detail-btn:hover {
  background: #006599;
  color: #fff;
  transform: translateX(4px);
}




/* --- Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Discover Property Section --- */
.discover-section {
    background: #f9fafb;   
}

.discover-container {
    max-width: 1260px;
    margin: auto;  
}

.discover-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #006599;
}

.discover-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-top: 20px;
    gap: 25px;
}





.discover-item {
    text-align: center;
    transition: 0.3s ease-in-out;
}

.discover-link {
    display: block;
    text-decoration: none;
}

 .discover-icon {
    width: 85px;
    height: 85px;
    padding: 18px;
    border: 2px solid #c7dbe3;
    border-radius: 12px;
    background: #ffffff;
    transition: 0.4s ease;

  }

.discover-item:hover .discover-icon {
    transform: translateY(-5px);
    border-color: var(--main-primary-color);
}

  .discover-name {
    margin-top: 12px;
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    color: #006599;
    transition: 0.3s;
    }

    .discover-item:hover .discover-name {
        color: var(--main-primary-color);
    }

    .discover-count {
        font-size: 15px;
        color: #6c7a80;
    }






/* ============================ 
      Contact Page
   ============================ */

/* ====== Contact Hero Section Start ====== */

.hero-contact-sec{
  width: 100%;
  height: 100vh;
  background: url("public/contact/contact-hero-sec.png") center / cover no-repeat;
  color: white;
  position: relative;
}

/* --- CARD SCROLLER BASE WRAPPER --- */
.cards-wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 20px 10px;
}

.cards-wrapper::-webkit-scrollbar {
  display: none;
}

/* --- HORIZONTAL SCROLL --- */
.card-scroller {
  display: flex;
  gap: 22px;
  padding: 20px 0;
}

/* --- CARD STYLE --- */
.card {
  width: 150px;
  background: #ffffff10;
  backdrop-filter: blur(10px);
  padding: 10px;
  border-radius: 18px;
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease, opacity .35s ease;
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

/* IMAGE */
.card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 10px;
}

/* CARD TEXT */
.card h4 {
  margin: 6px 0 4px;
  font-size: 18px;
  color: #fff;
}

.card p {
  color: #ddd;
  font-size: 14px;
}

/* --- Hover behavior --- */
.card-scroller:hover .card {
  opacity: 0.55;
  transform: scale(1);
}

.card-scroller:hover .card:hover {
  opacity: 1;
  transform: scale(1.18);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

/* ====== Contact Hero Section End ====== */


/* ====== Contact Form Section Start ====== */

.contact-section {
  background: #f7f9fc;
  display: flex;
  width: 100%;
  padding: 80px 250px 60px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 0;
}

.arrow-img-contactus{
  position: absolute;
  top: 15px;
  left: 0;
  z-index: -1;
}

.contactus-container {
  display: flex;
  width: 100%;
  gap: 50px;
  border-radius: 20px;
  overflow: hidden;
  flex-direction: row-reverse;
  margin: 15px 0;
}

.contact-icon{
  background-color: #EAF4FF;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-container {
  flex: 1;
  padding: 30px;
  background-color: #fff;
  border-radius: 20px;
}

.form-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.form-subtitle {
  color: #f57c00;
  font-size: 16px;
  margin-bottom: 10px;
}

.desc {
  color: #555;
  margin-bottom: 30px;
}

.row {
  display: flex;
  gap: 15px;
}

.input-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  width: 100%;
}

.input-group label{
  padding-bottom: 10px;
  font-size: 16px;
}

input::placeholder,
#message::placeholder {
  font-size: 14px;
}

input,
textarea {
  padding: 10px;
  outline: none;
  transition: 0.3s;
  background-color: #f7fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

input:focus,
textarea:focus {
  border-color: #4a90e2;
}

.btn {
  background: var(--main-primary-color);
  padding: 12px 20px;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #357abd;
}

.info-container {
  flex: 1;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  gap: 20px;
}

.image-box{
  width: 400px;
  height: 400px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.image-box img {
  width: 100%;
  height: 100%;
  border-radius: 22px;
}

.contact-card {
  width: 100%;
  margin-top: 15px;
  background: #fff;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  border-radius: 22px;
  padding: 15px 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 10px;
  border-radius: 18px;
  background-color: #f7fafc;
  border-bottom: 1px solid #eee;
  margin: 0 15px;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-location{
  width: 100%;
  margin-top: 20px;
}


  /* ====== Contact Form Section end   ====== */ 

  /* ====== Why Choose us Section  Start====== */ 
/* 
  .our-story-sec1 {
      width: 100%;
      height: auto;
      display: flex;
      gap: 50px;
      padding: 70px 0 30px;
      align-items: center;
      justify-content: center;
       
  } */

  /* LEFT COLUMN */
  /* .ourstory-left-container {
      max-width: 500px;
      padding: 40px;
  } */

  /* .blue-card {
      width: 200px;
      position: absolute;
      z-index: 2;
      background: linear-gradient(135deg, #629cff, #4e72ff);
      color: #fff;
      padding: 40px 25px;
      border-radius: 10px;
      margin: -20px -20px 0;
  }

  .blue-card h4 {
      opacity: 0.8;
      margin-bottom: 10px;
      font-weight: 400;
  }  */

  /* .blue-card h2 {
      font-size: 32px;
      line-height: 1.2;
      margin: 0;
  }

    .image-grid{
      width: 100%;
      height: 400px;
      position: relative;
    }

  .image-grid img {
      width: 100%;
      height:100%;
      object-fit: cover;
  } */


  
  /* .ourstory-right-container {
      max-width:550px;   
  }
  .aboutus-ourstory-content{
    border-radius: 1px solid blue;
  }
  .aboutus-ourstory-content h1{
     font-size: 34px;
     font-weight: 700;
  }
  .ourstory-right-container p {
      margin: 20px 0;
      color: var(--para-primary-color);
      font-size: 16px;
      line-height: 1.6;
      text-align: justify;
      width: 100%;
  } */

  /* .learn-btn {
      display: inline-block;
      padding: 12px 25px;
      background: #eef3ff;
      color: #2a62ff;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      transition: 0.3s;
  }

  .learn-btn:hover {
      background: #dbe5ff;
  } */

  /* RESPONSIVE */
  /* @media (max-width: 900px) {

      .our-story-sec1 {
          flex-direction: column;
          text-align: center;
      }

      .image-grid {
          grid-template-columns: repeat(3, 1fr);
      }

      .ourstory-left-container{
          align-items: center;
      }

  } */


  /* ============================ 
        About Us
    ============================ */
 
     /* ====== Aboutus hero Section Start  ====== */ 


/* HERO SECTION */
.abouthero {
  height: 90vh;
  background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1600&q=80");
  background-position: right;
  position: relative;
  display: flex;
  align-items: center;
}

/* DARK OVERLAY (like reference depth) */
.abouthero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

/* CONTAINER */
.abouthero-overlay {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* WHITE CONTENT BOX */
.abouthero-box {
  background: #ffffff;
  max-width: 520px;
  padding: 60px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.25);
  animation: heroSlideUp 1.1s ease forwards;
}

/* TEXT */
.abouthero-box h1 {
  font-size: 42px;
  color: var(--main-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.abouthero-box p {
  font-size: 16px;
  color: #555;
  margin-bottom: 35px;
  line-height: 1.7;
}

/* BUTTON */
.abouthero-btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--main-color);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 3px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.abouthero-btn:hover {
  background: #004f75;
  transform: translateY(-3px);
}

/* ANIMATION */
@keyframes heroSlideUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


 /* ====== Aboutus hero Section End  ====== */ 



        /* ====== Aboutus our story  Section Start  ====== */ 

.about-company-section {
   
  /* background-color: #f6f9fc; */
}

.about-company-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 50px 200px;
}

/* Left Section */
.about-company-left {
  position: relative;
  width: 50%;
  border-radius: 16px;
  overflow: hidden;
}

.about-company-left img{
  width: 100%;
  height: 500px;
}

.about-company-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.about-company-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  color: #fff;
   /* BLACK BOTTOM GRADIENT */
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95),
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.0)
  );

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.story-icon-container{
  position: relative;
  border-radius: 1px solid  red;
}

.icon-container{
  position: absolute;
   z-index:1;
   left:20px;
   padding: 10px;
   width: 100px;
   top: -80px;
   
 }

.icon-container img{
   width: 100%;
   height: 100px;
   border-radius: 50%;
}

.about-company-title {
  font-size: 22px;
  margin:20px 0 10px;
}

.about-company-text {
  font-size: 15px;
  line-height: 1.6;
}

/* Right Section */
.about-company-right {
  width: 50%;
  padding-top:80px;
  height: auto;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  gap: 80px;
}

.about-company-card {
  padding: 40px 20px 10px;
  border-radius: 16px;
  background-color: #e6f3f8;
}

.about-company-card h3 {
  color: #006599;
  margin-bottom: 10px;
  font-size: 20px;
}

.about-company-card p {
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}

/* Vision Card */
.about-company-vision {
  background-color: #006599;
}

.about-company-vision h3,
.about-company-vision p {
  color: #fff;
}




        
        /* ====== Aboutus our story  Section End  ====== */ 



       /* ====== Aboutus Workflow Section Start  ====== */ 

    /* .workflow-aboutus{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding:20px 120px;
        margin-bottom: 20px;
    }


    .workflow-image-container{
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }

  .workflow-image-container img {
      width: 90%;
      height:500px;
      transition: 0.5s ease;
  }

  .animation {
  view-timeline: --subject-reveal block;
  animation-timeline: --subject-reveal;
  animation-name: appear;
  animation-range-end: contain 50%;
  animation-fill-mode: both;
  animation-duration: 1ms; 
} */

/* @keyframes appear {
  from {
    opacity: 0;
    transform: scaleX(0);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
} */
.workflow {
  position: relative;
  padding: 80px 0 140px;
  background-color: #f7f7f7;
  overflow: hidden;
}

/* Blueprint background */
.workflow::before {
  content: "";
  position:absolute;
  inset: 0;
  background-image: url("public/footer/bg-work.png");
  background-repeat: no-repeat;
  background-position:bottom;
  width: 100%;
  opacity: 0.70;
  pointer-events: none;
}

.workflow-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 160px;
}

.workflow-header {
display: flex;
align-items: flex-start;
  gap: 60px;
  margin-bottom: 70px;
}
.workflow-header-left{
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.workflow-header-left h2 {
  font-size: 44px;
  line-height: 1.15;
  margin: 20px 0 0;
}

.workflow-header-left h2 span {
  color: var(--main-color);
}

.workflow-header-right p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  max-width: 420px;
}


/* .workflow-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 1px;
  background: #eee;
  margin-bottom: 16px;
} */



.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid: 10px;
  width: 100%;
 
}
.workflow-steps > .workflow-card:nth-child(2){
   transform: translateY(30px);
}
.workflow-steps > .workflow-card:nth-child(3){
   transform: translateY(60px);
}
.workflow-steps > .workflow-card:nth-child(4){
   transform: translateY(90px);
}

.workflow-card {
  width: 270px; 
  position: relative;
  background: #fff;
  padding: 20px 20px 0 20px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  
}

  .workflow-image{
    width: 100%;
    height: 140px;
    margin-bottom: 15px;
    cursor: pointer;
  }

.workflow-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}
.workflow-cardinfo{
  padding: 0 0 80px 0;
}

.workflow-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

  
.workflow-card h3 span {
  font-size: 18px;
  font-weight: 700;
  color: #006599;          /* gold tone like reference */
}


.workflow-card p {
  font-size: 14px;
  text-align: left;
  color: var(--dark-text);
}

.workflow-number {
position:absolute;
  bottom: 0px;
  right: 20px;
  font-size: 60px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.05);
}



 /* ====== Aboutus Workflow Section End  ====== */ 

      /* ====== Aboutus how we are different Start  ====== */ 

  .different-sec-wrapper {
  padding: 80px 160px;
   width: 100%;
  background: #f7f9fc;
  }

  .different-sec-container {
   width: 100%;
  
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
  }

  /* Left Content */
  .different-sec-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #006599;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .different-sec-title {
    font-size: 36px;
    margin: 15px 0;
    color: #0a0a0a;
  }

  .different-sec-description {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
  }

  .different-sec-btn {
    display: inline-block;
    padding: 14px 20px;
    color:#006599;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid #006599;
    font-weight: 600;
    transition: background 0.3s ease;
  }

  .different-sec-btn:hover {
    background: #006599;
    color: #fff;
  }

  /* Cards */
  .different-sec-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .different-sec-cards .different-sec-card:nth-child(1) {
    margin-top: 40px;
  }

  .different-sec-cards .different-sec-card:nth-child(4) {
    margin-bottom: 40px;
  }

  .different-sec-card {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
  }

  .different-sec-card h4 {
    margin: 0 0 5px;
    font-size: 18px;
  }

  .different-sec-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
  }

  .different-sec-icon {
    font-size: 32px;
  }
  .different-sec-icon img{
    width:200px;
    height:50px
  }

  /* Active Card */
  .different-sec-card-active {
    background: #006599;
    color: #fff;
  }

  .different-sec-card-active p {
    color: #e8f4fa;
  }

  /* Hover Effect */
  .different-sec-card:hover {
    transform: translateY(-6px);
  }

  /* Responsive */
  /* @media (max-width: 900px) {
    .different-sec-container {
      grid-template-columns: 1fr;
    }

    .different-sec-title {
      font-size: 30px;
    }
  } */




      /* ====== Aboutus how we are different End  ====== */ 
  
      
       /* ============================ 
          About us End here
      ============================ */


    /* ============================ 
        Inventory page
    ============================ */

     /* ====== Inventory Hero Section Start  ====== */ 

    .hero-inventory-sec{
      width: 100%;
      height: 100vh;
      overflow: hidden;
      text-align: center;
    }

    .hero-invertorycontent-container{ 
        display: inline-block;
        margin-top:70px;
    }

 

.inventory-hero-title {
  margin-bottom: 20px;
}


.inventory-hero-pagination {
  margin-bottom: 20px;
}

.inventory-hero-dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #ccc;
  display: inline-block;
  border-radius: 50%;
  cursor: pointer;
}

.inventory-hero-dot.active {
  background-color: #0a66dd;
  border: 4px solid #a8c7ff;
  height: 16px;
  width: 16px;
}

.inventory-hero-gallery {
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(7, 200px); 
  grid-template-rows: repeat(2, 260px);  
  column-gap: 15px;
  position: relative;
}

.inventory-hero-gallery::-webkit-scrollbar {
  display: none;
}

/* for top layer */
.inventory-hero-item:nth-child(1) {
  margin-top: 0px; 
}

.inventory-hero-item:nth-child(2) {
  margin-top: 70px;
  row-gap: 80px; /* a bit lower */
}

.inventory-hero-item:nth-child(3) {
  margin-top: 150px; /* slightly higher */
}


.inventory-hero-item:nth-child(4) {
  margin-top: 220px; /* aligned again */
}

.inventory-hero-item:nth-child(5) {
  margin-top: 150px;
}

.inventory-hero-item:nth-child(6) {
  margin-top: 80px; /* a bit lower */
} 

.inventory-hero-item:nth-child(7) {
  margin-top: 0px; /* slightly higher */
}
  
 /* for lower layer */


.inventory-hero-item:nth-child(8) {
  margin-top: 100px; /* aligned again */
}

.inventory-hero-item:nth-child(9) {
  margin-top: 170px;
}

.inventory-hero-item:nth-child(10 ) {
  margin-top: 250px; /* a bit lower */
} 

.inventory-hero-item:nth-child(11) {
  margin-top: 320px; /* slightly higher */
}

.inventory-hero-item:nth-child(12) {
  margin-top: 250px; /* aligned again */
}

.inventory-hero-item:nth-child(13) {
  margin-top: 180px;
}

.inventory-hero-item:nth-child(14 ) {
  margin-top: 100px; /* a bit lower */
} 


.inventory-hero-item {
  height: 350px;
  width: 200px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

.inventory-hero-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.inventory-hero-item:hover img {
  transform: scale(1.2);
}

 /* ====== Inventory Hero Section End  ====== */ 


.learning-img-box {
    position: relative;
    width: 300px;
    height: 300px;
    transition: opacity 1s; /* smooth change */
}

.learning-img {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    
    transition: opacity 1s;

}

/* When you hover the box → second image slowly appears */
.learning-img-box:hover .show-on-hover {
    opacity: 0.5;
}



.about-ourteam{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; 
 
}

.ourteam-grid-container{
display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns of equal width */
  gap: 20px ;
  padding: 20px 40px;
}

.experts{
  width:30%
 

}
.team-box{
  display: block;
  margin: 50px 0px;
}
.team-box-img {
  margin-bottom: 35px;
}

.team-box-img img{
  width:100%;
  height:100%;
}

.team-box-content h4 {
    margin-bottom: 10px;
    font-size: 34px;
    line-height: 41px;
}

.team-box-content .experts-designation {
    display: inline-block;
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 300;
    color: rgb(0, 0, 0);
    min-height: 54px;
}

.team-box-content .read-more {
    color: rgb(199, 163, 134);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    text-decoration: underline;
}

.team-box-content p {
     text-align: justify;
     color: var(--para-primary-color);
    }



/* .ourpartners-section {
  padding-top: 40px;
  width: 100%;
  background: #f9fafb;
}

.ourpartners-container {
  width: 95%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 20px 0 40px;
  

}

.ourpartners-text {
  max-width: 450px;
  
}

.ourpartners-text h3 {
  font-size: 24px;
  font-weight: 700;
  color:var(--main-secondary-color);
 padding-bottom: 10px;
}

.ourpartners-text p {
  color: #6b7280;
  width: 100%;
  font-size: 16px;
  padding: 20px 0;
}

.ourpartners-logo-wrapper {
  width: 50%;
  height: auto;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.ourpartners-logos {
  display: flex;
  gap: 50px;
  white-space: nowrap;
  animation: scrolllogos 18s linear infinite;
  padding: 30px 0;
}

.ourpartners-logos img {
  width: 150px;
  height: 90px;
  opacity: 0.8;
  transition: 0.3s;
}

.ourpartners-logos img:hover {
  opacity: 1;
  transform: scale(1.1);
} */


/* @keyframes scrolllogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
} */


 /* Our Partner CSS */
 /* -------- Section Background (Monochromatic tint of var(--main-primary-color)) -------- */

.our-partner-section {
  background: #e6f3f8; 
  width: 100%;
  padding: 50px 160px;
  background: #f7f9fc;
}

/* -------- Typography -------- */
.our-partner-title {
  font-size: 36px;
  font-weight: 700;
  color: black;
  text-align: left;
  margin-bottom: 20px;
}

.our-partner-subtitle {
  max-width: 700px;
  color: black;
  font-size: 17px;
  line-height: 28px;
  margin-bottom: 50px;
}



.partners-grid-container{
  width:100%;
  display: flex;
  justify-content: center;
  align-items: center;
  
}

/* UL Grid */
.our-partner-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    margin: 0;
    gap: 8px;
    align-items: center;
    background: #fff;
    justify-content: center;
}

/* Each item box */
.our-partner-item {
   max-width:180px;
   height: 110px;
   padding:  20px 40px;
   overflow: hidden;
    text-align: center;
    /* Borders like image */
    border-right: 2px solid rgba(0, 101, 153, 0.25);
    border-bottom: 1px solid rgba(0, 101, 153, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease; 
}

/* Logo styling */
.our-partner-item img {
    width: 100%;
    height: 100%; 
    transition: 0.3s ease;
   
}

/* Hover animation */
.our-partner-item:hover {  
    transform: translateY(-5px);
    box-shadow: 0 8px 14px rgba(0, 50, 80, 0.16);
}

.our-partner-item:hover img {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.06);
}

/* Responsive Layouts */
/* @media (max-width: 992px) { 
    .our-partner-item:nth-child(6n) {
        border-right: var(--border-size) var(--border-style) var(--border-color);
    }
    .our-partner-item:nth-child(3n) {
        border-right: none;
    }
}

@media (max-width: 576px) { 
    .our-partner-item:nth-child(3n) {
        border-right: var(--border-size) var(--border-style) var(--border-color);
    }
    .our-partner-item:nth-child(2n) {
        border-right: none;
    }
} */


/* -------- Hover Animation -------- */
.our-partner-card:hover {
  transform: translateY(-6px);
  background: #d8eef6;
  box-shadow: 0 10px 18px rgba(0, 40, 70, 0.18);
}

.our-partner-card:hover img {
  filter: grayscale(0);
  transform: scale(1.05);
}

/* -------- Responsive -------- */
/* @media (max-width: 900px) {
  .our-partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .our-partner-grid {
    grid-template-columns: 1fr;
  }
} */


.extra-partners {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.extra-partners.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.partner-view-con{
   display: flex;
   align-items:center;
   justify-content: center;
   margin: 30px 0;
  }

.partner-view-btn{
  color: #006599;
  border: none;
  background:none;
  font-size: 18px;
  cursor: pointer;
}  

/* 
.feature-property-sec{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  
} */

/* 
 .property-grid-feature {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px;
    margin-bottom: 20px;
 }

.gallery {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gallery img {
  width: 200px;
  border-radius: 8px;
}

.more-images {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
} */

/* .more-images.show {
  display: flex;
  gap: 10px;
  opacity: 1;
  transform: translateY(0);
}

.view-more-btn {
  margin-top: 20px;
  padding: 12px 30px;
  background-color: #006599;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}

.view-more-btn:hover {
  background-color: #004d73;
  transform: scale(1.05); 
}
*/


 /* ============================ 
      Inventory Detail Page 
   ============================ */
  
.interoy-detail-hero {
  position: relative;
  height: 75vh;
  min-height: 520px;
  width: 100%;
  overflow: hidden;
}

.interoy-detail-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.interoy-detail-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition:
  opacity 1.2s ease-in-out,
  transform 6s ease-in-out;
  z-index: 1;
}

.interoy-detail-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.interoy-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient( to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.25) 40%,
    rgba(0, 0, 0, 0.15) 65%,
    rgba(0, 0, 0, 0.35) 100%
     );
     z-index: 3;
     pointer-events: none;
}

/* .interoy-detail-slide:first-child {
  object-position: center top;
   transition:
    opacity 1.2s ease-in-out,
    transform 6s ease-in-out;
} */



/* .interoy-detail-hero {
  position: relative;
  height: 70vh;
  overflow: hidden;
 
}

.interoy-detail-slider {
  width: 100%;
  height: 100%;
  position: relative;
}


.interoy-detail-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center ;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  width: 100% ;
  transition: opacity 1.2s ease, transform 4s ease;
}

.interoy-detail-slide.active {
  opacity: 1;
  transform: scale(1);
}

.interoy-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.1)
  );
} */


.interoy-detail-hero-box {
  background: #ffffff;
  padding: 35px 48px 30px !important;
  width: 72%;
  margin: -100px auto -150px;
  position: relative;
  z-index: 5;
  border-left: 6px solid #006599;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
}

.interoy-detail-hero-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

.property-detail-overlay {
  display: none; 
}


.interoy-detail-hero-box .left-container {
  position: relative;
  z-index: 2;
  max-width: 60%;
}

.interoy-detail-hero-box .right-container {
  position: absolute;
  right: 0;
  bottom: -8px;
  z-index: 1;
}

.interoy-detail-hero-box .right-container img {
  width: 800px;
  padding-top: 20px; 
  height: 200px !important;     
  opacity: 0.27;
  pointer-events: none;     
}

.interoy-detail-hero-box .right-container .inquiry-button {
  pointer-events: auto;
  z-index: 3;
}

.interoy-detail-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #006599;
  margin-bottom: 10px;
}

.interoy-detail-title {
  font-size: 38px;
  font-weight: 700;
  color:#006599;
  margin-bottom: 10px;
}

.interoy-detail-address {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
}

.space-property{
   padding :0 10px;
   margin: 10px 0;
}


.interoy-detail-space {
  font-size: 16px;
  color: #333;
  padding: 10px 0;
  font-weight: bold;
 }


.interoy-detail-hero-box .right-container .inquiry-button  {
  position:absolute;
  padding: 10px 20px;
  font-size: 16px;
  border:1px solid #006599;
  color: var(--main-primary-color);
  background-color: transparent;
  border-radius: 5px;
  right:40px;
  bottom: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
 }  

.interoy-detail-hero-box .right-container .inquiry-button:hover {
  background-color: var(--main-primary-color);
  color: #fff;
  cursor: pointer;  
}

.interoy-detail-price {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: #006599;
}


.propertypopup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  display: none; 
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.propertypopup {
  background: #fff;
  padding: 30px;
  width: 420px;
  max-width: 90%;
  border-radius: 10px;
  position: relative;
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.25s ease;
}

.propertypopup-overlay.show .propertypopup {
  transform: scale(1);
  opacity: 1;
  }

  .propertypopup h2 {
    font-size: 24px;
    margin-bottom: 15px;
   }

.propertypopup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.propertypopup form {
  display: flex;
  flex-direction: column;
  gap: 12px;
} 

.propertypopup input,
.propertypopup textarea {
  padding: 10px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 14px;
}

 .propertypopup form button {
  color: #006599;
  border: 1px solid #006599;
  background: transparent;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;

 }

  .propertypopup form button:hover {
    background-color: var(--main-color);
    color: #fff;
  }


@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}


 .detail-container{
   color:black;
   position: relative;
  }

.interoy-detail-content {
  display: flex;
  margin-top: 0;
  padding:180px  90px 40px;
  gap: 60px;
 }


.interoy-detail-sidebar {
  width: 260px;
  position: sticky;
  top: 130px;
 }

.interoy-detail-sidebar ul {
  list-style: none;
  background: #ffffff;
  border-radius: 8px;
  padding: 20px 0;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.interoy-detail-sidebar li {
  padding: 10px 30px;
}

.interoy-detail-sidebar a {
  display: block;
  text-decoration: none;
  font-size: 15px;
  color: #334155;
  transition: color 0.25s ease, transform 0.25s ease;
}

.interoy-detail-sidebar a:hover {
  color: #006599;
  transform: translateX(6px);
}


.interoy-detail-sections {
  flex: 1;
}

.interoy-detail-sections section {
  /* background: #ffffff; */
  padding: 40px 45px;
  border-radius: 10px;
  margin-bottom: 50px;
  /* box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06); */
  transition: transform 0.3s ease;
}

.interoy-detail-sections section:hover {
  transform: translateY(-4px);
}

.interoy-detail-sections h2 {
  font-size: 24px;
  color: black;
  margin-bottom: 22px;
  position: relative;
}

.interoy-detail-sections h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 3px;
  background: #006599;
  border-radius: 2px;
}



.interoy-detail-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  text-align: left;
}

.interoy-detail-table thead {
  background: #f1f5f9;
  text-align: left;
}

.interoy-detail-table th {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

  .interoy-detail-table th,
  .interoy-detail-table td {
    padding: 16px;
    border-bottom: 1px solid #e2e8f0;
  }



.interoy-detail-table tbody.js-space-rows td a {
    display: inline-block;
    padding-bottom: 2px;
    color: var(--main-color);
    text-decoration: none; 
    transition: background-color 0.3s;
}

.interoy-detail-table tbody.js-space-rows td a:hover {
    border-bottom: 2px solid var(--main-color) ; 
    
}


  .interoy-detail-table tbody tr {
    transition: background 0.25s ease;
    text-align: left;
  }

  .interoy-detail-table tbody tr:hover {
    background: #f0f8fc;  
    }

  .input-group input {
    width: 100%;
    /* padding: 12px 12px 12px 80px; */
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 16px;
  }

   .iti--separate-dial-code .iti__selected-flag {
    background-color: #f7fafc !important;
    }
    
  .interoy-detail-sections ul {
    list-style: none;
    padding-left: 0;
  }

  .interoy-detail-sections ul li {
    padding-left: 22px;
    margin-bottom: 12px;
    position: relative;
    color: black;
  }

  .interoy-detail-sections ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    background: black;
    border-radius: 50%;
  }

    .high-amentity{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap :100px;
    }

  .amenities-style{
  padding-top:8px ;
  }

/* Map */
.map-container {
  width: 100%;
  height: 350px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #ddd;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Floor Plan */
.floor-image {
  position: relative;
  width: 250px;
  height: 250px;
  display: inline-block;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}

.floor-image img {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.download-icon {
  position: absolute;
    top: 10px;
    right: 10px;
    background: #006599;
    color: #fff;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
}

   /* ============================
        Privacy Policy Page
      ============================ */

/* Wrapper */
.tp-wrapper {
    width: 100%;
    display: flex;  
    flex-direction: column;
    padding: 0 160px;
    position: sticky;
    gap: 20px;
}

/* Header */
.tp-wrapper .tp-header {
  text-align: center;
  margin-bottom: 40px;
  animation: fadeDown 0.6s ease;
}

.tp-wrapper .tp-header h1 {
  color: var(--main-color);
  font-size: 36px;
  padding-top: 50px;
}

.tp-wrapper .tp-header p {
  color: var(--text-muted);
  padding-bottom: 20px;
}

/* Tabs */
.tp-wrapper .tp-tabs {
  position: relative;
  display: flex;
  padding-top: 50px;
  gap: 40px;
      max-width: 310px;
    margin: auto;
}

.button-tp-div{
  display: block;
  margin: auto;
}

.tp-wrapper .tp-tab {
  background: none;
  border: none;
  font-size: 16px;
  padding: 12px 0;
  cursor: pointer;
  color: var(--text-muted);
  transition: color 0.3s;
  padding-right: 20px;
}

.tp-wrapper .tp-tab.active {
  color: var(--main-color);
  font-weight: 600;
}

/* Indicator */
.tp-wrapper .tp-indicator {
  position: absolute;
  bottom: 0;
  width: 150px;
  height: 3px;
  background: var(--main-color);
  transition: transform 0.4s ease;
}

/* Sidebar */
.tp-wrapper .tp-sidebar {
  width: 260px;
  position: sticky;
  top: 20px;
}

.tp-wrapper .tp-sidebar ul {
  list-style: none;
  padding: 20px 0;
  margin: 0;
}

.tp-wrapper .tp-sidebar li {
  padding: 10px 30px;
}

.tp-wrapper .tp-sidebar a {
  display: block;
  text-decoration: none;
  font-size: 15px;
  color: #334155;
  transition: color 0.25s ease, transform 0.25s ease;
}

.tp-wrapper .tp-sidebar a:hover {
  color: #006599;
  transform: translateX(6px);
}

/* Card */
.tp-wrapper .tp-card {
  background: #fff;
  border-radius: 14px;
  padding: 40px 40px 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  animation: fadeUp 0.6s ease;
  margin-bottom: 20px;
}

/* Content */
.tp-wrapper .tp-content {
  display: none;
  animation: slideFade 0.4s ease;
}

.tp-wrapper .tp-content.active {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding-top: 20px;
}
.tp-wrapper .tp-card .privacy-block h4  {
    margin: 12px 0 5px;
    color: var(--text-muted);
    
}
/* Lists inside privacy content */
.tp-wrapper .tp-card .privacy-block ul {
    padding-left: 20px;
    margin-bottom: 20px;
    list-style-type: disc;
}

.tp-wrapper .tp-card .privacy-block ul li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Sections */
.tp-wrapper .terms-section h2,
.tp-wrapper .privacy-section h2 {
  color: var(--text-dark);
  margin-bottom: 20px;
}

.tp-wrapper .terms-block,
.tp-wrapper .privacy-block {
  margin-bottom: 25px;
}

.tp-wrapper .terms-block h3,
.tp-wrapper .privacy-block h3 {
  color: var(--main-color);
  margin-bottom: 8px;
}

.tp-wrapper .terms-block p,
.tp-wrapper .privacy-block p {
  color: var(--text-muted);
  line-height: 1.8;
}


  .floating-call-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #006599);
  color: #ffffff;
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  /* box-shadow: 0 10px 25px rgba(0, 101, 153, 0.45); */
  z-index: 999;
  animation: float 3s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Icon size */
.floating-call-btn i {
  font-size: 20px;
  padding-top: 10px;
}

/* Hover effect */
.floating-call-btn:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 15px 35px rgba(0, 101, 153, 0.65);
}

/* Pulse ring */
.floating-call-btn .pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  /* background: rgba(199, 204, 206, 0.4); */
  animation: pulse 2s infinite;
  z-index: -1;
}

/* Response Message Styling */
#formResponse {
  margin-top: 20px;
}

.form-alert {
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeIn 0.4s ease-in-out;
}

.form-alert.success {
  background-color: #e6f6ec;
  color: #1e7e34;
  border-left: 4px solid #28a745;
}

.form-alert.error {
  background-color: #fdecea;
  color: #b02a37;
  border-left: 4px solid #dc3545;
}

.form-alert i {
  font-size: 16px;
}

/* Smooth animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


 /* Responsivie Tablet */

 @media (max-width: 1024px) { 
  .p-sec {
    padding: 30px 90px 60px;
  }
  
  .logo img {
    height: 62px;
  }

   .main-heading-container{
    padding: 20px 0;
   }
  .footer-container {
  padding: 20px 90px;
  }
  
  .footer-bottom-container {
    gap:20px;
    padding: 0px  90px;
  }

  .footer-col p{
    width:270px;
    font-size: 16px;
  }
  .footer-col li {
    font-size: 16px;}

  .footer-list{
    gap: 30px;
  }

    .footer-list p{
    width:201px;
  }
  .contact-footer {
    width: 150px;
  }
      .footer-bottom-container{
        font-size: 16px;
      }

      .footer-links a {
        font-size: 16px;
      }
 .floating-call-btn{
      right: 30px;
    bottom: 30px;
    width: 80px;
    height: 80px;
 }

  /* ============================ 
           Home Page
     ============================ */

  /* home hero section */

  .home-hero {
   background-color:#fff;
   justify-content: center;
   padding-left:0;
   flex-direction: column-reverse;
   align-items: flex-start;
   row-gap: 20px;
   height: 90vh;
  }
  
  .bg-img-shape{
    display:none;   
  }
  .hero-home-sec{
    padding-bottom: 10px;
    margin-top: 50px;
  }

  .home-hero-image{ 
    width:100%;
    padding: 15px 80px 30px;
    height: 600px;
   
  }
 
  .home-hero-image img{ 
    width: 100%;
    border-radius: 50px;
    height:100% ;
  }

  .home-hero-content{
     max-width: 100%;
     text-align: left; 
     display: flex;
     flex-direction: column;
    padding: 70px 60px 0 90px;
    justify-content: center;
  }
  
  .home-hero-content p{
     font-size: 18px;
  }

  .pagination-container-home{
    position: absolute;
    left: 50%;
    bottom: 400px;       
  }

  .home-hero-pagination .dot {
    width: 12px;
    height: 12px;
    }

    .home-form-container {
      display: none;
     }


  /* key feature section  */

  .feature-property-sec {
    padding: 40px 90px 80px;
    background-color: #f4f3f7;
    
  }

  .feature-prop-slider-container {
    height: 40vh;
    padding: 20px 0;
    margin-top: 5px;
  }
  .feature-prop-description {
        font-size: 1.5rem;
  }

  .feature-prop-btn {
  font-size: 1rem;
  }

  .feature-prop-card.active { width: 100%; left: 0; }
  .feature-prop-card.next,
  .feature-prop-card.next-2 { display: none; }

 /* why-choose-us section */

 
 .why-choose-us-container {
   flex-direction: column;
   text-align: justify;
   padding: 0;;
    gap: 60px;
   }

  .why-choose-us-images-container {
      width: 100%;
    }

    .why-choose-us-main-img{
    padding-right: 60px;
    }

    .why-choose-us-main-img img {
      width: 350px;
      height: 350px;
      animation: formSlideIn 0.9s ease forwards;
    }

  .why-choose-us-small-img {
    bottom: 60px;
    padding-left: 10px;
   }

  .why-choose-us-small-img img {
      width: 240px;
        animation: slideInLeftToRight 0.9s ease forwards;
  }

@keyframes slideInLeftToRight {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

   .why-choose-us-content{
      width: 100%; 
    }

    .why-choose-us-subtitle{
      font-size: 22px;
    }
    
    .why-choose-us-title{
      font-size: 26px;
    }

    .why-choose-us-description{
          font-size: 18px;
    }

    .why-choose-us-feature h4{
          font-size: 20px;
    }

    .why-choose-us-feature p{
          font-size: 18px;
    }
    .feature-box {
      padding: 0;
      margin-bottom: 25px;
    }

   .feature-container {
    display: grid;
    padding:30px 35px 10px ;
    grid-template-columns: repeat(2, 2fr);
  }

       .feature-box h3 {
        font-size: 20px;
       }

  .feature-box p {
    text-align: justify;
    font-size: 18px;
    padding: 0 20px;
}
  
.our-partner-subtitle{
  font-size: 18px;
  padding-top: 10px;
  margin-bottom: 60px;

}
        .our-partner-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .our-partner-item {
      padding: 10px 20px;
    }

    .partner-view-con {
      margin-top :40px;
    }

    
    /* ============================ 
           About Us Page
       ============================ */

       .breadcrumbs-section{
         padding-top: 60px;
         height:30vh;
        }

        .breadcrumbs-section h1{
         font-size: 44px;
        }
        .breadcrumb a{
         font-size: 20px;
        }
        .breadcrumb .current{
         font-size: 20px;
        }

            .about-company-container {
              padding:  40px 0 0;
               flex-direction: column;
               gap: 20px;
            }
            
            .about-company-left img {
    width: 100%;
    height: 460px;}


.about-company-left {
  width:100%
}
.about-company-right {
  width: 100%;
}
.icon-container img {
    width: 90%;
    height: 90px;}
      

        .workflow-image-container img {
          width: 100%;
        }

        .services{
          padding: 100px 90px ;
         
          
        }

        .services-container {
          gap: 70px;
          display: flex;
          flex-direction: column;
          align-items: normal;
         
        }
        .bg-container-style {
          padding-top:50px 60px 60px ;
        }
        .bg-container-style h2 {
          font-size: 34px;
          padding-bottom: 25px;
        }
        .services-left{
            width: 100%;
            
        }
        
        .services-left p {
          text-align: left;
          font-size: 18px;
          width: 100%;
          display:inline;
        }
        
        .services-image{
          display: block;
          margin: auto;
          align-items: center;
          width: 490px;
          padding-top: 40px;
        }

        .services-image{
          height: 325px;
         
        }

        .service-icon {
          margin-bottom: 18px;
        }

        .service-card h4{
          font-size: 20px;
        }
        .service-card p{
          font-size: 18px;
          padding:0 10px;
          margin-bottom: 10px;
        }

        .workflow-container {
          padding: 0 80px;
        }

        .workflow-header{
          margin-bottom: 20px;
          gap:70px
        }

        .workflow-header-left h2 {
          font-size: 32px;
          line-height: 1.29;
          margin:  0;
        }
         
        .workflow-header-right p {
          font-size: 18px;
          line-height: 1.6;
          text-align: justify;
        }

        .workflow-steps{
          column-gap: 20px;
          grid-template-columns: repeat(2, 1fr);
          
        }
        .workflow-steps > .workflow-card:nth-child(2){
            transform: translateY(50px);
          }
          .workflow-steps > .workflow-card:nth-child(3){
            transform: translateY(40px);
          }
          .workflow-steps > .workflow-card:nth-child(4){
            transform: translateY(90px);
          }


       .workflow-container .workflow-steps .workflow-card {
          width: 300px;
          height: 415px;
        }
  .workflow-image {
    height: 160px;
    margin-bottom: 20px;
  } 
  .workflow-card h3 {
    font-size: 20px;  }
    .workflow-card h3 span {
      font-size: 20px;
    }
    
    .workflow-card p {
    font-size: 18px;
    }

    .different-sec-container {
      display: flex;
      flex-direction: column;
      margin: 40px 0 30px;
    }

    .different-sec-subtitle {
      font-size: 20px;
    }

    .different-sec-title{
        font-size:32px;
        margin: 20px 0;
    }

    .different-sec-description {
    font-size: 18px; }  

    .different-sec-btn {
      font-size: 18px;
    }

    .different-sec-card h4 {
      font-size: 20px;
    }

    .different-sec-card p {
      font-size: 18px;
    }

    /* ============================ 
           Inventory Page
       ============================ */
       
       .properties-container{   
          flex-direction: column-reverse;
          padding: 40px 80px;
          gap: 40px;
       }
         .properties-form 
          {
            width:100%;
          }   

            .properties-content {
              width:100%;
            }

            .properties-cards.grid-view {
                  grid-template-columns: repeat(2, 1fr);
                  column-gap:28px ;
                  row-gap: 30px;
 }

 .properties-cards.list-view img {
      width: 250px;
 }
 .properties-cards.list-view .properties-card__info {
    padding: 15px 20px 30px 0px;
 
  }  
  .properties-cards.list-view .properties-card__info .property-descrip{
 display: none; }

      /* ============================ 
          Inventory Page Detail
         ============================ */


   .interoy-detail-hero {
    height: 40vh;
    min-height: 480px;
  }
   .interoy-detail-slide {
    transform: scale(1.05);
  }

  /* .interoy-detail-slide {
    background-position: center;
    height: 100%;
  } */



  .interoy-detail-hero-box {
    width: 88%;
    padding: 28px 32px 20px !important;
    margin: -80px auto -120px;
  }



  .interoy-detail-hero-box .left-container {
    max-width: 70%;
  }

  .interoy-detail-title {
    font-size: 32px;
  }

  .interoy-detail-address {
    font-size: 14px;
  }

  .interoy-detail-space {
    font-size: 15px;
  }

  .interoy-detail-hero-box .right-container img {
    width: 520px;
    height: 160px !important;
    opacity: 0.22;
  }

  .interoy-detail-hero-box .right-container .inquiry-button {
    font-size: 15px;
    padding: 9px 18px;
    right: 24px;
    bottom: 24px;
  }

  

  .interoy-detail-content {
    padding: 160px 50px 40px;
    gap: 40px;
  }



  .interoy-detail-sidebar {
    width: 220px;
    top: 110px;
  }

  .interoy-detail-sidebar li {
    padding: 10px 22px;
  }

  .interoy-detail-sidebar a {
    font-size: 14px;
  }


  .interoy-detail-sections section {
    padding: 32px 34px;
    margin-bottom: 40px;
  }

  .interoy-detail-sections h2 {
    font-size: 22px;
  }


  .interoy-detail-sections .js-description{
    text-align: justify;
  }


  .interoy-detail-table th,
  .interoy-detail-table td {
    padding: 14px;
    font-size: 14px;
  }



  .high-amentity {
    gap: 60px;
    flex-wrap: wrap;
  }

  .map-container {
    height: 300px;
  }

  .floor-image {
    width: 220px;
    height: 220px;
  }

  .propertypopup {
    width: 380px;
    padding: 24px;
  }

  .propertypopup h2 {
    font-size: 22px;
  }

  
  /* ======================
     Contact Page
    ====================== */

   

  /* ===== HERO SECTION ===== */
  .hero-contact-sec {
    height: 100vh;
  }

  .cards-wrapper {
    padding: 15px 10px;
    bottom: 5px;
    right: 5px;
  }

  .card {
    width: 135px;
  }

  .card img {
    height: 120px;
  }

  /* ===== CONTACT SECTION ===== */
  .contact-section {
    padding: 60px 80px 50px;
  }

 .contactus-container {
    gap: 30px; 
    flex-direction: column;
  }

  .contactus-container .info-container {
   max-width: 100%;
   flex-direction: row;
  }

  .image-box {
    width: 427px;
    height: 300px;
  }

  /* ===== FORM ===== */
  .form-container {
    padding: 35px;
  }

  .form-title {
    font-size: 22px;
  }

  .form-subtitle {
    font-size: 15px;
  }

  .desc {
    font-size: 15px;
  }

  .row {
    flex-direction: row;
    gap: 20px;
  }

  .input-group {
    width: 100%;
  }

  /* ===== CONTACT INFO ===== */

    

      .info-container {
        max-width: 300px;
      }

      .contact-item h4 {
        font-size: 15px;
      }

      .contact-item p {
        font-size: 13px;
      }

      .contact-card {
        width: 50%;
        margin-top: 10px;
        row-gap: 20px;
      }

     /* ============================ 
    Privacy Policy Page 
   ============================ */
      
  /* Wrapper */
  .tp-wrapper {
    padding: 40px 80px;
    gap: 16px;
    position: relative; /* disable sticky behavior issues */
  }
  .tp-slide-layout{
    
     overflow-x: auto;
    white-space: nowrap;
    width: 100%;
  }
  
   
  .tp-slide-layout .tp-sidebar ul li a {
  font-size: 20px;
}

  /* Header */
  .tp-wrapper .tp-header h1 {
    font-size: 30px;
    padding-top: 40px;
  }

  .tp-wrapper .tp-header p {
    font-size: 18px;
  }

  /* Tabs */
  .tp-wrapper .tp-tabs {
    max-width: 100%;
    gap: 24px;
    padding-top: 30px;
    
  }

  .tp-wrapper .tp-tab {
    font-size: 22px;
    padding-right: 20px;
  }

  .tp-wrapper .tp-indicator {
    width: 200px;
  }

  /* Content layout */
  .tp-wrapper .tp-content.active {
    flex-direction: column;
    gap: 30px;
  }

  /* Sidebar */
  .tp-wrapper .tp-sidebar {
    width: 100%;
    position: relative;
    top: unset;
  }

 .tp-slide-layout ul {
  display: inline-flex;
  gap: 30px;
}

  .tp-wrapper .tp-sidebar li {
    padding: 0;
  }

  .tp-wrapper .tp-sidebar a {
    font-size: 14px;
  }

  /* Card */
  .tp-wrapper .tp-card {
    padding: 30px 30px 10px;
  }

  /* Typography */
  .tp-wrapper .terms-section h2,
  .tp-wrapper .privacy-section h2 {
    font-size: 22px;
  }

  .tp-wrapper .terms-block h3,
  .tp-wrapper .privacy-block h3 {
    font-size: 18px;
  }

  .tp-wrapper .terms-block p,
  .tp-wrapper .privacy-block p {
    font-size: 16px;
    line-height: 1.7;
  }



    }  

      /* RESPONSIVE */
      @media (max-width: 768px) {
        .p-sec {
        padding: 20px 50px 40px;
      }

      .navbar ul {
        display: none;
      }

      /* Show hamburger */
      .hamburger {
        display: flex;
        position: fixed;
        top: 25px;
        right: 30px;
      }

      .secondary-header .logo img {
    height: 57px;
    width: 90px;
}
 
    
   

.menu-overlay {
    display: flex;
  }

  .home-hero {
    background-color: #fff;
    justify-content: center;
    padding-left: 0;
    flex-direction: column-reverse;
    align-items: flex-start;
    row-gap: 20px;
    height: 90vh;
    gap:50px;
  }

  .bg-img-shape {
    display: none;
  }

  .hero-home-sec {
    padding-bottom: 40px;
    margin-top: 0;
  }
  .home-hero-slider {
    padding-bottom: 60px;
  }

  .home-hero-image { 
            width: 90%;
        padding: 60px 80px 30px;
        height: 550px;
        display: block;
        margin: auto;
  }

  .home-hero-image img { 
    width: 100%;
    height: 100%;
    border-radius: 50px;
  }

  .home-hero-content {
    max-width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    padding: 10px 60px 0 90px;
    justify-content: center;
  }

  .home-hero-content p {
    font-size: 18px;
  }

  .pagination-container-home .home-hero-pagination {
    bottom: -37px;
  }

  .home-form-container {
    display: none;
  }




  

  /* .footer-content {
     grid-template-columns: 1fr;
     text-align: center;
  }

  .footer-bottom-sec-row {
    flex-direction: column;
    gap: 10px;
    text-align: center;
   }
       .footer-list p {
        width:170px;
       } */

           

    /* home-hero section start
   .hero-home-sec{
    padding: 0 0 35px;
   }
     
   .home-hero{
    row-gap:30px;
    height: 80vh;
    }

    .home-hero-image {
      padding:10px 80px 0;
      height: 500px;
    }

   .home-hero-content{
   padding: 80px 30px 0 90px;
   }
   .home-hero-content h1{
        font-size: 28px;
   }
   .home-hero-content p {
        font-size: 18px;
        
    }

    .home-hero-buttons {
      font-size: 18px;
    }
    .home-hero-pagination {
      bottom: -110px;
    } */
        /* home hero section end */


    /* why-choose-us section */
/* 
    .why-choose-us-main-img{
      display:block;
      padding-left: 90px;
    }

   .why-choose-us-main-img img {
    width: 430px;
        height: 270px;
    animation: none;
    }

    .why-choose-us-small-img img {
      display: none; 
    }

    .why-choose-us-clients {
        left: 21px;
        padding: 28px 40px;
        bottom: 12px;
     }

    .why-choose-us-clients h3 {  
        font-size: 16px;
    }

    .why-choose-us-clients p {
      font-size: 14px;
    }

   .why-choose-us-container{
      gap:40px ;
      text-align: left;
    }

    .why-choose-us-title {
      font-size: 17px;
    }

    .why-choose-us-description {
      font-size: 15px;
      text-align: justify;
      line-height: 1.5;
    }

    .why-choose-us-feature p {
       font-size: 15px;
      text-align: justify;
      line-height: 1.5;
    }

    .why-choose-us-features h4{
      font-size: 17px;
    }

   .why-choose-us-content{
      width: 100%; 
        
        padding: 0 30px;
    } */
    
.about-company-container {
  display: flex;
}

     .about-company-container {
    flex-direction: column;
    padding: 30px 50px;
    gap: 30px;
  }

  .about-company-left,
  .about-company-right {
    width: 100%;
  }

  .about-company-left img {
    height: 400px;
  }

  .about-company-right {
    padding-top: 40px;
    gap: 50px;
  }

  .about-company-card {
    padding: 30px 15px 10px;
  }

  .about-company-title {
    font-size: 20px;
  }

  .about-company-text {
    font-size: 14px;
  }

  .icon-container {
    top: -60px;
    width: 80px;
    padding: 8px;
  }

  .icon-container img {
    height: 80px;
  }


 .services{
  padding: 20px 90px 100px;
 }

    .services-container {
    grid-template-columns: 1fr;
  }

  .services-right {
    grid-template-columns: 1fr;
  }

  .properties-cards.grid-view {
    grid-template-columns: repeat(2, 1fr);
}

/* ============================ 
     Inventory Detail Page 
   ============================ */
    .interoy-detail-hero {
    height: 30vh;
    min-height: 420px;
  }
    
  .interoy-detail-sidebar {
    display: none;
  }
  
  .interoy-detail-content {
    flex-direction: column;
    padding: 160px 60px 30px; 
  }

  .interoy-detail-hero-box .right-container .inquiry-button {
    bottom: 30px;
  }

  .high-amentity {
    flex-direction: column;
    align-items: flex-start;
  }

  /* ==========================
   Contact Page 
   ========================== */

 
  .hero-contact-sec {
    height: auto; 
  }

  .cards-wrapper {
    padding: 10px 5px;
    bottom: 5px;
    right: 5px;
    flex-wrap: wrap; 
    justify-content: center;
  }


  /* ===== CONTACT SECTION ===== */
  .contact-section {
    padding: 50px 80px 30px;
    display: flex;
    flex-direction: column; 
    gap: 20px;
  }

  .contactus-container {
    flex-direction: column-reverse; 
    gap: 20px;
  }

  /* Hide the image box */
  .image-box {
    display: none;
  }

  .info-container {
    max-width: 100%; 
    order: 1; 
  }

  .form-container {
    order: 2; /* show after info container */
    width: 100%;
    padding: 40px;
  }

  .form-title {
    font-size: 24px;
  }

  .form-subtitle
   {
    font-size: 20px;
  }

    .form-container  .desc {
      font-size: 18px;
    }

    .form-container .row {
    flex-direction: column; /* stack form fields */
    gap: 0px;
  }

  .contact-form .input-group label {
    padding-bottom: 10px;
    font-size: 18px;}

   .contact-form input{
    width: 100%;
    font-size: 16px;
  }



  /* Contact info card adjustments */
  .contact-card {
    width: 100%;
    display: flex;
    flex-direction: row; /* single row layout */
    flex-wrap: wrap; /* wrap if needed */
    gap: 15px;
    margin-top: 10px;
  }

  .contact-item h4 {
    font-size: 15px;
  }

  .contact-item p {
    font-size: 13px;
  }
.contact-item {
      width:100%;
    }



}

  @media (max-width: 486px) { 

    .p-sec{
        padding: 40px 40px 30px;;
    }
    
     .secondary-header .logo img {
    height: 48px;
    width: 99px;
}

    .floating-call-btn {
        right: 30px;
        bottom: 30px;
        width: 60px;
        height: 60px;}

    .menu-overlay::before {
  content: "";
  position:absolute;
  inset: 0;
  background-image: url("public/bg-menu1.png");
  background-repeat: no-repeat;
  background-position:bottom;
  width: 100%;
  opacity: 0.80;
  pointer-events: none;

}
.close-btn-menu {
  top: 20px;
  right: 30px;
  font-size: 50px;
  z-index: 10001; 
}
.menu-overlay a {
   font-size: 20px; 
  }

  
  

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    
  }

  /* Left container: logo + paragraph */
  .logo-col {
    width: 100%;
  }

  .logo-col img {
    width: 120px;
    height: auto;
    margin-bottom: 10px;
  }

  
  .footer-list {
    width: 100%;
        align-items: flex-start;
        gap: 20px;
        justify-content:flex-start;
        padding: 0 40px;
  }

  .footer-col {
    width: 100%;
    padding: 15px 0px 5px;
  }
      .footer-list p {
        width: 100%;}

        .footer-col p {
        width: 100%;
        }
  .contact-footer {
    width: 100%;
  }

  /* Bottom footer */
  .footer-bottom-container {
    padding: 0 20px;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .home-hero {
    background-color: #fff;
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: flex-start;
    row-gap: 16px;
    height: auto;
    padding: 0;
  }

  .bg-img-shape {
    display: none;
  }

  .hero-home-sec {
    padding-bottom: 10px;
    margin-top: 40px;
  }

  .home-hero-image { 
    width: 80%;
    padding: 10px 20px 20px;
    height: 360px;
  }

  .home-hero-image img { 
    width: 100%;
    height: 100%;
    border-radius: 24px;
    object-fit: cover;
  }

  .home-hero-content {
    max-width: 100%;
    padding: 40px 20px 0 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
      .pagination-container-home .home-hero-pagination {
        bottom: 469px;
    }

  .home-hero-content p {
    font-size: 16px;
    line-height: 1.5;
  }

  .pagination-container-home {
    position: static;
    margin: 10px auto 0;
    transform: none;
  }

  .home-hero-pagination .dot {
    width: 10px;
    height: 10px;
  }

  .home-form-container {
    display: none;
  }

  .feature-property-sec {
        padding: 40px 66px 50px;}

        .feature-prop-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15pxpx;
}

.feature-prop-content{
  left:20px;
}
    
        .feature-prop-description {
          padding:  0 ;
          font-size: 1rem;
          margin-bottom: 10px;
        }
           
            .feature-prop-btn{
              font-size: 0.8rem;
            }


  .main-heading-container {
    padding: 0;
  }

  .main-heading-container h1 {
    font-size: 28px;}

            
.about-company-container {
  display:none;
}

     .about-company-container {
    flex-direction: column;
    padding: 30px 0px;
    gap: 30px;
  }

        .why-choose-us-small-img img {
          display: none;
        }

            .why-choose-us-main-img img {
        width: 299px;
        height: 316px;}
        .why-choose-us-main-img {
        padding-right: 0px;
    }

    .why-choose-us-container {
        
        margin-bottom: 30px;
    }

    .feature-container {
        
        grid-template-columns: repeat(1, 2fr);
    }
    .our-partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .our-partner-item {
    max-width: 130px;
    height: 90px;}

  


  /* Breadcrumbs */
  .breadcrumbs-section {
    padding-top: 30px;
    height:30vh;
  }

  .breadcrumbs-section h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .breadcrumb a,
  .breadcrumb .current {
    font-size: 14px;
  }

  /* About section */
  

  /* Services */
  .services {
    padding: 40px 30px;
  }

  .services-container {
    gap: 30px;
    flex-direction: column;
  }

  .bg-container-style {
   padding :37px 30px 30px 20px;
   border-top-left-radius: 0;     
  border-bottom-left-radius: 0;

  }

  .bg-container-style h2 {
    font-size: 24px;
    padding-bottom: 15px;
  }

  .services-left {
    width: 100%;
  }

  .services-left p {
    font-size: 16px;
    text-align: left;
    width: 100%;
  }

  .services-image {
    width: 100%;
    height: auto;
    padding-top: 20px;
  }

  .services-image img {
    width: 80%;
    height: auto;
  }

  .service-icon {
    margin-bottom: 12px;
  }

  .service-card h4 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 16px;
    padding: 0;
    margin-bottom: 8px;
  }

  /* Workflow */
  .workflow-container {
    padding: 0 40px;
  }
  .workflow {
    
    padding: 60px 0;
  }
  .workflow-header {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
  }

  .workflow-header-left h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .workflow-header-right p {
    font-size: 16px;
    text-align: left;
  }

  .workflow-steps {
    grid-template-columns: 1fr;
    row-gap: 20px;
      width: 90%;          /* container is 90% of viewport width */
    margin: 0 auto;      /* center container horizontally */
    justify-items: center; 
  }

  .workflow-steps > .workflow-card:nth-child(2),
  .workflow-steps > .workflow-card:nth-child(3),
  .workflow-steps > .workflow-card:nth-child(4) {
    transform: none;
  }

  .workflow-card {
    width: 100%;
    height: auto;
  }

  .workflow-image {
    height: 140px;
    margin-bottom: 16px;
  }

  .workflow-card h3,
  .workflow-card h3 span {
    font-size: 18px;
  }

  .workflow-card p {
    font-size: 16px;
  }
      .workflow-container .workflow-steps .workflow-card {
        width: 320px;
        height: 358px;
    }

  /* Different Section */

  .different-sec-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0;
  }
  
  .different-sec-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 16px;
    margin: 20px 0;
  }

  
  
  .different-sec-cards {
    width: 100%;
             display: flex;
        flex-direction: column;
  }

  
  .different-sec-card h4 {
    font-size: 18px;
    margin-bottom: 6px;
  }
  .different-sec-icon {
    
    display: block;
    margin: auto;
}

  .different-sec-card p {
    font-size: 16px;
    line-height: 1.5;
  }

  .different-sec-subtitle {
    font-size: 14px;
  }

  .different-sec-title {
    font-size: 24px;
    margin: 10px 0;
  }

  .different-sec-description {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .different-sec-btn {
    font-size: 16px;
    padding: 10px 18px;
  }



  /* ======================
     HERO
  ====================== */

  .interoy-detail-hero {
    height: 30vh;
    min-height: 278px;
  }

  .interoy-detail-slide {
    object-position: center;
  }

  /* ======================
     HERO BOX
  ====================== */

  

  .interoy-detail-hero-box {
    display: flex;
    flex-direction: column;
    
  }
      .interoy-detail-hero-box {
        width: 85%;
        padding: 25px 25px 20px !important;}

  /* LEFT CONTENT FIRST */
  .interoy-detail-hero-box .left-container {
    max-width: 100%;
  }
   .left-container .interoy-detail-title {
        font-size: 26px;
        margin-bottom: 8px;
    }
 
    .left-container .interoy-detail-address{
      font-size: 14px;
    }



  /* RIGHT CONTENT BELOW */
  .interoy-detail-hero-box .right-container {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
   
  }
  .area-container {
    margin-bottom: 15px;
  }

  .space-property {
    display: none;
  }

  /* HERO IMAGE (soft + centered) */
  .interoy-detail-hero-box .right-container img {
    display: block;
    width: 100%;
    max-width: 280px;
    height: auto !important;
    opacity: 0.2;
    position: absolute;
    bottom: 0;
  }

  /* BUTTON – full width */
  .interoy-detail-hero-box .right-container .inquiry-button {
    position: static;
    width: 100%;
    text-align: center;
    font-size: 14px;
    padding: 12px;
  }

  /* ======================
     CONTENT
  ====================== */

  .interoy-detail-content {
    padding: 155px 40px 24px; 
  }

  /* ======================
     TABLE
  ====================== */

  .interoy-detail-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch; /* smooth iOS swipe */
  }

  .interoy-detail-table thead,
  .interoy-detail-table tbody,
  .interoy-detail-table tr {
    display: table;
    width: max-content;
    table-layout: fixed;
  }

  .interoy-detail-table th,
  .interoy-detail-table td {
    min-width: 140px; /* control column width */
    padding: 12px;
    font-size: 13px;
  }

  /* ======================
       DETAILS SECTIONS
     ====================== */

  .interoy-detail-sections section {
    padding: 20px 16px;
    margin-bottom: 30px;
  }

  .interoy-detail-sections h2 {
    font-size: 20px;
  }

  /* ======================
     AMENITIES
  ====================== */

  .high-amentity {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }

  /* ======================
     MAP
  ====================== */

  .map-container {
    height: 220px;
  }

  /* ============================
   Privacy Policy Page
   ============================ */

  /* Wrapper adjustments */
  .tp-wrapper {
    padding: 20px 40px;
    gap: 12px;
  }

  /* Header */
  .tp-wrapper .tp-header h1 {
    font-size: 24px;
    padding-top: 20px;
  }

  .tp-wrapper .tp-header p {
    font-size: 16px;
  }

  /* Tabs */
  .tp-wrapper .tp-tabs {
    gap: 16px;
    padding-top: 20px;
    overflow-x: auto;
  }

  .tp-wrapper .tp-tab {
    font-size: 18px;
    padding-right: 15px;
  }

  .tp-wrapper .tp-indicator {
    width: 120px;
  }

  /* Content layout */
  .tp-wrapper .tp-content.active {
    gap: 20px;
  }

  /* Sidebar */
  .tp-wrapper .tp-sidebar {
    width: 100%;
  }

  .tp-slide-layout ul {
    gap: 15px;
  }

    .tp-slide-layout .tp-sidebar ul li a {
       font-size: 16px;
    }
 
    .tp-wrapper .tp-card {
      padding: 20px 25px 0px;
      text-align: justify;
    }

  .tp-wrapper .terms-block, .tp-wrapper .privacy-block{
    margin-bottom: 16px;
  }

  /* Typography */
  .tp-wrapper .terms-section h2,
  .tp-wrapper .privacy-section h2 {
    font-size: 18px;
    margin-bottom: 18px;
  }

  .tp-wrapper .terms-block h3,
  .tp-wrapper .privacy-block h3 {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .tp-wrapper .terms-block p,
  .tp-wrapper .privacy-block p {
    font-size: 14px;
    line-height: 1.6;
  }

 /* inventory page  */
 .properties-cards.grid-view {
        grid-template-columns: repeat(1, 1fr);
 }
     .properties-cards.list-view{
      display: none;
     }

         .propertypopup {
        width: 300px;
        
    }

    .properties-container {
        
        padding: 40px 40px;}

 .properties-card__info {
    padding: 16px 16px 5px 16px;}
 
.arrow-img-contactus {
  display: none;
}

}