* {
    user-select: none;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none;     /* IE10+/Edge */
  }

body {
    margin: none;
    background-color: #fefcfd;
    font-family: 'Italiana', serif;

}

h1, h2, h3 {
    color: black;
    font-family: 'Italiana', serif;
}



/* ===== LUXURY NAVBAR CSS ===== */
/* Reset and Base Styles */
.navbar {
    /* background-color: rgba(255, 255, 255, 0.288); */
    border-radius: 12px;
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 999;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0.6rem 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
    
    background: rgba(38, 62, 110, 0.674); /* Frosted white */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); /* Safari */
  
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* Subtle depth */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Inner border */
    outline: 1px solid rgba(255, 255, 255, 0.1); /* Outer glow effect */
  }
  
  
  navglow
  .navbar-glow {
    position: fixed;
    pointer-events: none;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 60%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: opacity 0.2s ease;
    opacity: 0;
  }
  
  
  .navbar-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 15px;
  }
  
  /* Enhanced Logo Styles */
  .navbar-logo {
    text-decoration: none;
  
  }
  
  .navbar-logo img {
    height: 45px;
    max-height: 75px;
    width: auto;
    transition: transform 0.3s ease;
    border-radius: 5px;
  }
  
  .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }
  
  .logo-primary {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #000;
  }
  
  .logo-subtitle {
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #777;
    margin-top: 2px;
  }
  
  /* Navigation Menu */
  .navbar-menu {
    display: flex;
    gap: 1.2rem;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
  }
  
  .navbar-item {
    position: relative;
    font-weight: 200px;
  
  }
  
  .navbar-links {
    font-family: 'Inter', sans-serif;
    font-weight:900;
    text-decoration: none;
    color: #ffffff;
    padding: 0.5rem 0.8rem;
    position: relative;
    transition: color 0.3s ease;
    letter-spacing: 1px;
  }
  
  .navbar-links:hover {
    color: rgb(0, 0, 0);
  }
  
  .navbar-links::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #000;
    transition: width 0.3s ease;
  }
  
  .navbar-links:hover::after {
    width: 50%;
  }
  
  /* Enhanced Contact Dropdown */
  .contact-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
  }
  
  .contact-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
  }
  
  .contact-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
  }
  
  .contact-dropdown:hover .contact-dropdown-menu,
  .contact-dropdown:focus-within .contact-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
  }
  
  .contact-option {
    display: flex;
    padding: 0.6rem 1.2rem;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
  }
  
  .contact-option:hover {
    background: #f5f5f5;
  }
  
  /* Mobile Menu Toggle */
  .navbar-toggle {
    display: none;
    margin-right: 20px;
    color: white;
    flex-direction: column;
    justify-content: space-around;
    height: 24px;
    width: 30px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
  
  }
  
  .bar {
    height: 2px;
    width: 100%;
    background-color: #000;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  
  /* Scrolled State */
  .navbar.scrolled {
    /* background-color: rgba(43, 43, 43, 0.93);  */
    top: 0 !important;
    border-radius: 0;
    width: 100%;
    max-width: 100%;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
    padding: 0.6rem 0;
    backdrop-filter: blur(10px);
    /* -webkit-backdrop-filter: blur(10px);  */
    padding-left: 10px;
    padding-right: 20px;
  
  
    background:rgba(106, 27, 26, 0.6) ; /* Frosted white */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); /* Safari */
  
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* Subtle depth */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Inner border */
    outline: 1px solid rgba(255, 255, 255, 0.1); /* Outer glow effect */
    
  }
  
  /* Mobile Responsive Styles */
  @media (max-width: 768px) {
    .navbar {
      padding: 0.6rem 1rem;
      top: 10px;
      /* margin-right: 4px; */
      width: 95%;
      justify-content: space-between; /* Add this */
    }
  
    .navbar-toggle .bar {
      background-color: #fdfdfd; /* Black for mobile */
      
    }
    
    .navbar-container {
      position: relative; /* Add this */
    }
  
    .navbar-menu {
      position: absolute;
      top: 100%;
      right: 0; /* Change from left:0 to right:0 */
      width: auto; /* Change from full width */
      min-width: 200px; /* Add minimum width */
      flex-direction: column;
      background: rgba(0, 0, 0, 0.98);
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.4s ease;
      margin: 10px 0;
      padding: 0;
    }
  
    .navbar-menu.active {
      max-height: 500px;
      padding: 1rem 0;
    }
    
    .navbar-item {
      width: 100%;
      text-align: center;
    }
    
    .navbar-links {
      color: white;
      padding: 1rem 1.5rem;
      width: 100%;
      display: block;
    }
    
    .navbar-links::after {
      background-color: white;
    }
    
    .navbar-toggle {
      display: flex;
    }
    
    .contact-dropdown-menu {
      position: static;
      transform: none;
      background: transparent;
      box-shadow: none;
      max-height: 0;
      overflow: hidden;
      padding: 0;
      opacity: 1;
      visibility: visible;
    }
    
    .navbar-menu.active .contact-dropdown-menu {
      max-height: 150px;
      padding: 0.5rem 0;
    }
    
    .contact-option {
      padding: 0.8rem 2rem;
      color: white;
      justify-content: center;
    }
    
    .contact-option:hover {
      background: rgba(255, 255, 255, 0.1);
    }
    
    .logo-primary {
      font-size: 1.3rem;
    }
    
    .logo-subtitle {
      font-size: 0.5rem;
      letter-spacing: 2px;
    }
  }
  
  .bttn {
    background: rgba(255, 255, 255, 0.15);  /* soft frosted white */
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 10px;
    padding: 10px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  
    box-shadow:
      inset 0 0 0.5px rgba(255, 255, 255, 0.3),
      0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
  }
  
  /* Hover: from light to dark */
  .bttn:hover {
    background: rgba(0, 0, 0, 0.2);  /* darker glass */
    color: white;
    box-shadow:
      inset 0 0 1px rgba(255, 255, 255, 0.4),
      0 6px 18px rgba(0, 0, 0, 0.15);
  }
  
  
  /* Toggle Animation */
  .navbar-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .navbar-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .navbar-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  /* Jiggle Animation */
  @keyframes jiggle {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    75% { transform: translateX(3px); }
  }
  
  .navbar.jiggle {
    animation: jiggle 0.3s ease;
  }

  .welcome {

    margin-top: 3%;
    padding: 5%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  @media (max-width: 768px) {
    .welcome {
      padding: 20px;
    }
  }
  
  .Vision {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center; /* Vertically center items */
    gap: 2%;
    padding: 2%;
    width: 80%;
  }
  
  .Vision video {
    width: 50%;

  }
  
  .reales-hero {
    position: relative;
    width: 80%;
    height: 60vh;
    overflow: hidden;
    margin: 0 auto; /* 🔥 This centers it horizontally */
    margin-top: 8%;
    border-radius: 30px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.451); 
  }
  
  
  .reales-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 110%;
    min-height: 110%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    opacity: 50%;
    
  }
  
  .reales-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(6px);
    background-color: rgba(0, 0, 0, 0.3); /* Optional darker blur */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
  }
  
  .reales-hero-text {
    text-align: center;
    color: white;
    padding: 2rem;
    width: 100%;
    height: 100%;
    padding: 3%;
  
    background: rgba(255, 255, 255, 0.15); /* Frosted white */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); /* Safari */
  
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* Subtle depth */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Inner border */
    outline: 1px solid rgba(255, 255, 255, 0.1); /* Outer glow effect */
  
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .reales-hero-text h1{
    font-weight: lighter;
    margin: 0.3rem 0;
  }

  @media (max-width: 768px) {
  }
  
 .Vision img {
    width: 40%;
    border-radius: 20px;
    margin-right: 20px;
 }

 .background{
    background-color: #ffe5bc;
    margin-top: 2%;
    margin: 2%;
    border-radius: 70px;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.2);

 }


.ali{
    display: flex;
    flex-direction: row;
    justify-content: center;

    width: 100vw;
}


/* footer */


/* footer */
.premium-real-estate-footer {
    font-family: 'Montserrat', sans-serif;
    /* color: #1a2a4a; */
    background: #5b5b5b;
    margin-top: 10%;
  }
  
  .footer-top {
    padding: 60px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px;
  }
  
  .footer-brand {
    flex: 0 0 25%;
  }
  
  .footer_logo{
    width: 200px;
    height: auto;
  }
  
  
  .footer-logo {
    height: 50px;
    margin-bottom: 15px;
  }
  
  .footer-tagline {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 25px;
    font-weight: 300;
  }
  
  .social-icons {
    display: flex;
    gap: 15px;
  }
  
  .social-icon {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .social-icon:hover {
    background: var(--saffron);
    color: #fff;
  }
  
  .footer-links {
    flex: 0 0 45%;
    display: flex;
    justify-content: space-between;
  }
  
  .links-column {
    flex: 0 0 30%;
  }
  
  .links-heading {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
  }
  
  .links-heading:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--saffron);
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 12px;
  }
  
  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    transition: all 0.3s ease;
  }
  
  .footer-links a:hover {
    padding: 3%;
    border-radius:8px;
    padding-left: 10px;
    padding-right: 10px;
    font-weight:bolder;
    background-color: rgb(255, 255, 255);
    color: rgb(125, 107, 5);
  }
  
  .footer-contact {
    flex: 0 0 25%;
  }
  
  .contact-heading {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
  }
  
  .contact-heading:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--saffron);
  }
  
  .contact-info p {
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 300;
    color: #ffffff;
  }
  
  .contact-info i {
    margin-right: 10px;
    color: var(--saffron);
    width: 20px;
    text-align: center;
  }

  .contact-info a {
    margin-right: 10px;
    color: white;
    width: 20px;
    text-align: center;
    text-decoration-line: none;
    margin-right: 10px;
  }
  
  
  .footer-cta {
    background: var(--saffron);
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
  }
  
  .footer-cta:hover {
    background: #1a2a4a;
    color: #fff;
  }
  
  .footer-bottom {
    padding: 25px 0;
    background: rgba(234, 234, 234, 0.05);
    color: white ;
  }
  
  .copyright {
    flex: 0 0 60%;
    font-size: 12px;
    color: rgb(255, 255, 255)!important;
  }
  
  .legal-links {
    flex: 0 0 40%;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    color: white !important;
  }
  
  .legal-links a {
    color: rgba(0, 0, 0, 0.6);
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .legal-links a:hover {
    color: var(--saffron);
  }
  
  @media (max-width: 992px) {
    .footer-brand, .footer-links, .footer-contact {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
  
    .footer-links {
        justify-content: space-around;
    }
  
    .copyright, .legal-links {
        flex: 0 0 100%;
        text-align: center;
        justify-content: center;
    }
  
    .legal-links {
        margin-top: 15px;
    }
  }
  
  
  
  .clickable {
    transition: transform 0.2s ease;
  }
  
  .clickable:active {
    transform: scale(0.96);
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  input:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.2);
  }
  .realestate-premium__card {
    transition: all 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .realestate-premium__card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  }
  
  /* Subtle pulse animation for call-to-action elements */
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
  }
  
  .hero-btn, .button {
    animation: pulse 3s infinite;
  }
  
  
/* contact form */

.contactpro {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 40px;
    flex-wrap: wrap;
  }
  
  /* === Image Container === */
  .contact_cont {
    flex: 1;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .contact_cont img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    border-radius: 12px;
  }
  
  /* === Contact Form Section === */
  .contact-section {
    flex: 1;
    background: rgba(105, 105, 105, 0.314);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), inset 0 1px 1px rgba(255,255,255,0.3);
    border-radius: 16px;
    padding: 40px 30px;
    width: 100%;
    max-width: 480px;
    margin: 40px auto;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    color: #2E2E3A;
  }
  
  /* === Headings === */
  .contact-heading {
    font-family: 'Italiana', serif;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 10px;
  }
  
  .contact-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 25px;
    line-height: 1.5;
  }
  
  /* === Form === */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 96%;
  }
  
  .contact-form input,
  .contact-form textarea {
    font-family: 'Outfit', sans-serif;
    border-radius: 3px;
    border: none;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    outline: none;
    width: 100%;
    transition: box-shadow 0.3s ease;
    padding: 10px;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    background: #ffffff;
    box-shadow: 0 0 0 2px #b4daff;
  }
  
  .contact-form textarea {
    min-height: 120px;
    resize: vertical;
  }
  
  /* === Button === */
  /* .contact-form button {
    background: linear-gradient(135deg, #ffffff, #f3f3f3);
    border: none;
    color: #1a1a1a;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    max-width: 260px;
    margin: 20px auto 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  }
  
  .contact-form button:hover {
    transform: translateY(-2px);
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  } */


  .contact-form button {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f3f3f3);
    border: none;
    color: #003d16;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    max-width: 260px;
    margin: 20px auto 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
  }
  
  .contact-form button::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -40px; /* Start fully outside */
    width: 0;
    height: 0;
    background: #25D366;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: width 0.6s ease, height 0.6s ease, right 0.6s ease;
    z-index: -1;
  }
  
  .contact-form button:hover::before {
    width: 800px;
    height: 800px;
    right: -400px; /* Keeps expansion centered while starting outside */
  }
  
  .contact-form button:hover {
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  }
  
  
  /* === Mobile Responsive === */
  @media (max-width: 768px) {
    .contactpro {
      flex-direction: column;
      padding: 20px;
    }
  
    .contact_cont img {
      max-width: 80%;
    }
  
    .contact-section {
      width: 100%;
      padding: 30px 20px;
      margin: 30px 0;
    }
  
    .contact-heading {
      font-size: 1.6rem;
    }
  
    .contact-subtitle {
      font-size: 0.9rem;
    }
  
    .contact-form input,
    .contact-form textarea {
      padding: 12px 14px;
      margin: 10px;
    }
  
    .contact-form button {
      padding: 14px;
      max-width: 100%;
    }
  }

  .map{
    width: 90vh;
  }

  /* focus */

  .property-cards {
    position: relative;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 30px;
    margin-top: 30px;
    
  }
  
  .property-cards h1 {
    
    text-align: center;
  }
  
  .property-cards p {
    /* color:#0d1b2a ; */
    text-align: center;
    margin: 0 10px 20px;
  }
  .property-cardsp {
    /* color: #f5e9d0 !important; */
    text-align: center;
    margin: 0 10px 20px;
  }
  
  .realestate-premium__scroll-container {
    position: relative;
    overflow: hidden;
    padding: 2rem 1rem;
  
  }
  
  .realestate-premium__card-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 25px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    /* margin: 0 -1rem; */
    /* padding: 0 1rem; */
    border-radius: 20px;
  
  }
  
  /* Hide scrollbar */
  .realestate-premium__card-track::-webkit-scrollbar {
    display: none;
    padding: 20px;
  }
  .realestate-premium__card-track {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  
  .realestate-premium__card {
    scroll-snap-align: start;
    background:#ffffff;;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 300px;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
  }
  
  .realestate-premium__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  }
  
  .realestate-premium__image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
  }
  
  .realestate-premium__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 2;
  }
  
  .realestate-premium__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
  }
  
  .realestate-premium__image-wrapper:hover .realestate-premium__image {
    opacity: 0;
  }
  
  .realestate-premium__image-wrapper:hover .realestate-premium__video {
    opacity: 1;
  }
  
  .realestate-premium__overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    z-index: 3;
  }
  
  .realestate-premium__card-content {
   
    margin-top: 20px;
   
  }
  
  .realestate-premium__subtitle {
    margin-top: 80px;
    font-weight: 800;
    color: #0d1b2a ;
    font-size: large;
  }
  
  .realestate-premium__description {
    font-size: 0.9rem;
    /* color:#0d1b2a ; */
  }
  
  .card-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 1rem;
  }
  
  .card-btnn {
    border: none;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.574); /* Glass effect */
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 100px;
    position: relative;
    overflow: hidden;
    z-index: 1;
  
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  /* Light Reflection Swipe */
  .card-btnn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      120deg,
      transparent 0%,
      rgba(255, 255, 255, 0.4) 50%,
      transparent 100%
    );
    transform: rotate(25deg);
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
    z-index: 2;
  }
  
  .card-btnn:hover::before {
    top: 0;
    left: 0;
    opacity: 1;
    animation: swipeLight 1.2s ease forwards;
  }
  
  /* Hover background color stays dark & luxurious */
  .card-btnn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #000;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
  }
  
  @keyframes swipeLight {
    0% {
      transform: translateX(-100%) rotate(25deg);
    }
    100% {
      transform: translateX(100%) rotate(25deg);
    }
  }

  .scroll-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 10;
    opacity: 0.8;
    transition: opacity 0.3s;
    border: none;
  }
  
  .scroll-nav:hover {
    opacity: 1;
  }
  
  .scroll-left {
    left: 0;
  }
  
  .scroll-right {
    right: 0;
  }
  
  .scroll-nav i {
    font-size: 20px;
    color: #1a2a4a;
  }
  
  @media (max-width: 768px) {
    .scroll-nav {
      width: 30px;
      height: 30px;
    }
    .realestate-premium__card {
      min-width: 280px;
    }
  }
  