/* Header CSS - Aarsan Realistic | WhatsApp Animation + Header Center */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f8f9fa;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ========== HEADER ========== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  gap: 2rem;
}

/* ========== LOGO ========== */
.logo-area {
  flex-shrink: 0;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 50px;
  width: auto;
  object-fit: contain;
}

/* ========== RIGHT SECTION ========== */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* ========== WHATSAPP BUTTON WITH PULSE ANIMATION ========== */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #25D366;
  border: 2px solid #25D366;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  animation: none;
}

/* .whatsapp-btn:hover .whatsapp-icon-svg {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
} */

/* Pulse Animation for WhatsApp */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ========== ENQUIRE BUTTON ========== */
.enquire-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #010d8f;
  color: white;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.enquire-btn:hover {
  background: #000a6e;
  transform: translateY(-2px);
}

/* ========== HAMBURGER MENU ========== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger-line {
  width: 25px;
  height: 2.5px;
  background: #010d8f;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ========== MAIN NAVIGATION ========== */
.main-nav {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
}

.nav-container {
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0.6rem 0;
}

.nav-links li a {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1a2a3a;
  transition: all 0.3s ease;
  border-radius: 40px;
}

.nav-links li a:hover {
  color: #010d8f;
  background: rgba(1, 13, 143, 0.08);
}

.nav-links li a.active {
  color: white;
  background: #010d8f;
}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 992px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .nav-links li a {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .header-inner {
    padding: 0.8rem 0;
    justify-content: space-between;
  }
  
  .logo-image {
    height: 40px;
  }
  
  /* Center the nav-right section */
  .nav-right {
    gap: 0.8rem;
  }
  
  /* Mobile pe sirf icon dikhega */
  .whatsapp-btn span {
    display: none;
  }
  
  .whatsapp-btn {
    padding: 0.6rem 1rem;
  }
  
  .enquire-btn span {
    display: none;
  }
  
  .enquire-btn {
    padding: 0.6rem 1rem;
  }
  
  /* Hamburger visible */
  .hamburger {
    display: flex;
  }
  
  /* Mobile Navigation */
  .main-nav {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 100%;
    background: solid white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
    z-index: 999;
  }
  
  .main-nav.active {
    left: 0;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
  }
  
  .nav-links li a {
    padding: 0.8rem 1.5rem;
    width: 200px;
    text-align: center;
  }
}

/* Small Mobile - Header Center Fix */
@media (max-width: 550px) {
  .container {
    padding: 0 1rem;
  }
  
  .logo-image {
    height: 35px;
  }
  
  .main-nav.active {
    top: 65px;
  }
  
  /* Header ko center align karne ke liye */
  .header-inner {
    justify-content: space-between;
    width: 100%;
  }
  
  .logo-area {
    flex: 1;
  }
  
  .nav-right {
    flex: 1;
    justify-content: flex-end;
  }
  
  .whatsapp-btn,
  .enquire-btn {
    padding: 0.5rem 0.8rem;
  }
  
  .whatsapp-icon-svg {
    width: 16px;
    height: 16px;
  }
  
  .nav-links li a {
    padding: 0.6rem 1.2rem;
    width: 180px;
    font-size: 0.85rem;
  }
}

/* Extra Small - Additional Center Fix */
@media (max-width: 400px) {
  .header-inner {
    gap: 0.8rem;
  }
  
  .whatsapp-btn,
  .enquire-btn {
    padding: 0.45rem 0.7rem;
  }
  
  .logo-image {
    height: 32px;
  }
}

/* Desktop Hover Effect */
@media (min-width: 769px) {
  .nav-links li a {
    position: relative;
  }
  
  .nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background: #010d8f;
    transition: width 0.3s ease;
    border-radius: 10px;
  }
  
  .nav-links li a:hover::after {
    width: 50%;
  }
  
  .nav-links li a.active::after {
    display: none;
  }
}


/* ========== DROPDOWN MENU ========== */
.dropdown {
    position: relative;
}

.dropdown > a i {
    font-size: 11px;
    margin-left: 6px;
    transition: transform 0.3s;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 180px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 8px 20px;
    font-size: 0.85rem;
    color: #1a2a3a;
    background: transparent;
    border-radius: 0;
    text-align: left;
}

.dropdown-menu li a:hover {
    background: rgba(1, 13, 143, 0.08);
    color: #010d8f;
    transform: none;
}

/* Mobile Dropdown */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 20px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
}










/* ========== HERO SECTION - NO GAP ========== */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  min-height: calc(100vh - 80px);
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(1, 13, 143, 0.2) 0%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

.hero-tag {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: rgba(1, 13, 143, 0.5);
  backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-text h1 {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 800;
  color: #ffffff;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #010d8f;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #000a6e;
  transform: translateY(-3px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.scroll-indicator {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  color: #ffffff;
  font-size: 11px;
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  opacity: 0.7;
}

.scroll-indicator i {
  font-size: 12px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .hero-text h1 { font-size: 50px; }
}

@media (max-width: 992px) {
  .container { padding: 0 1.5rem; }
  .nav-links li a { padding: 0.4rem 1rem; font-size: 0.85rem; }
  .hero-text h1 { font-size: 44px; }
  .hero-text p { font-size: 16px; }
  .hero-tag { font-size: 12px; }
}

@media (max-width: 768px) {
  body { padding-top: 0; }
  .header-inner { padding: 0.8rem 0; }
  .logo-image { height: 40px; }
  
  .whatsapp-btn span { display: none; }
  .whatsapp-btn { padding: 0.6rem 1rem; }
  .enquire-btn span { display: none; }
  .enquire-btn { padding: 0.6rem 1rem; }
  
  .hamburger { display: flex; }
  
  @media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
    z-index: 999;
  }
  
  .main-nav.active {
    left: 0;
    background: #ffffff;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background: #ffffff;
  }
  
  .nav-links li a {
    padding: 0.8rem 1.5rem;
    width: 200px;
    text-align: center;
    color: #1a2a3a;
    background: transparent;
  }
  
  .nav-links li a:hover {
    background: rgba(1, 13, 143, 0.08);
  }
}
  
  .hero {
    height: calc(90vh - 70px);
    min-height: calc(90vh - 70px);
    margin-top: 70px;
  }
  .hero-text h1 { font-size: 38px; }
  .hero-text p { font-size: 15px; }
  .hero-container { padding: 0 20px; }
}

@media (max-width: 576px) {
  .hero {
    height: calc(85vh - 70px);
    min-height: calc(85vh - 70px);
  }
  .hero-text h1 { font-size: 32px; }
  .hero-text p { font-size: 14px; }
  .hero-tag { font-size: 10px; padding: 6px 14px; }
  .btn-primary, .btn-secondary { padding: 10px 20px; font-size: 13px; }
}

@media (max-width: 425px) {
  .hero-text h1 { font-size: 28px; }
  .hero-buttons { gap: 12px; flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 200px; justify-content: center; }
}

@media (max-width: 375px) {
  .hero-text h1 { font-size: 24px; }
  .btn-primary, .btn-secondary { width: 180px; }
}

@media (min-width: 769px) {
  .nav-links li a { position: relative; }
  .nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
    border-radius: 10px;
  }
  .nav-links li a:hover::after { width: 50%; }
  .nav-links li a.active::after { display: none; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--primary-blue); border-radius: 10px; }












/* Overview Section - Aarsan Realistic | Clean Professional */

.overview {
  padding: 80px 0;
  background: linear-gradient(145deg, #ffffff 0%, #edf5fe 100%);
  position: relative;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== SECTION HEADER ========== */
.overview-header {
  text-align: center;
  margin-bottom: 50px;
}

.overview-tag {
  display: inline-block;
  background: rgba(1, 13, 143, 0.1);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: #010d8f;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.overview-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 16px;
}

.title-accent {
  color: #010d8f;
}

.overview-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #010d8f, #2a3eff, transparent);
  margin: 0 auto 20px;
  border-radius: 3px;
}

.overview-subtitle {
  font-size: 0.95rem;
  color: #6c7a8a;
  max-width: 600px;
  margin: 0 auto;
}

/* ========== HIGHLIGHTS GRID ========== */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.overview-item {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all 0.3s ease;
  border: 1px solid #eef2f6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.overview-item:hover {
  transform: translateY(-6px);
  border-color: rgba(1, 13, 143, 0.2);
  box-shadow: 0 15px 35px rgba(1, 13, 143, 0.08);
}

.overview-icon {
  font-size: 2.2rem;
  min-width: 50px;
}

.overview-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 8px;
}

.overview-content p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #6c7a8a;
}

/* ========== STATS ROW - SAME CARD STYLE ========== */
.overview-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.stat-card {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all 0.3s ease;
  border: 1px solid #eef2f6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(1, 13, 143, 0.2);
  box-shadow: 0 15px 35px rgba(1, 13, 143, 0.08);
}

.stat-icon {
  font-size: 2rem;
  min-width: 50px;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #010d8f;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8rem;
  color: #6c7a8a;
  font-weight: 500;
  margin-top: 4px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .overview {
    padding: 60px 0;
  }
  
  .overview-title {
    font-size: 1.8rem;
  }
  
  .overview-grid {
    gap: 20px;
  }
  
  .overview-item {
    padding: 25px 20px;
  }
  
  .overview-icon {
    font-size: 1.8rem;
    min-width: 40px;
  }
  
  .overview-stats {
    gap: 20px;
  }
  
  .stat-card {
    padding: 20px 15px;
  }
  
  .stat-icon {
    font-size: 1.6rem;
    min-width: 40px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 900px) {
  .overview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .overview-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .overview {
    padding: 50px 0;
  }
  
  .overview-title {
    font-size: 1.6rem;
  }
  
  .overview-tag {
    font-size: 10px;
  }
  
  .overview-subtitle {
    font-size: 0.85rem;
  }
  
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .overview-item {
    padding: 20px;
  }
  
  .overview-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .stat-card {
    padding: 18px 20px;
  }
  
  .stat-number {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .overview {
    padding: 40px 0;
  }
  
  .overview-title {
    font-size: 1.4rem;
  }
  
  .overview-icon {
    font-size: 1.6rem;
    min-width: 35px;
  }
  
  .overview-content h3 {
    font-size: 1rem;
  }
  
  .overview-content p {
    font-size: 0.75rem;
  }
  
  .stat-icon {
    font-size: 1.4rem;
    min-width: 35px;
  }
  
  .stat-number {
    font-size: 1.3rem;
  }
  
  .stat-label {
    font-size: 0.7rem;
  }
}














/* Properties Section - Aarsan Realistic | Clean Professional */

.properties {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== SECTION HEADER ========== */
.properties-header {
  text-align: center;
  margin-bottom: 50px;
}

.properties-tag {
  display: inline-block;
  background: rgba(1, 13, 143, 0.1);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: #010d8f;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.properties-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 16px;
}

.title-accent {
  color: #010d8f;
}

.properties-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #010d8f, #2a3eff, transparent);
  margin: 0 auto 20px;
  border-radius: 3px;
}

.properties-subtitle {
  font-size: 0.95rem;
  color: #6c7a8a;
  max-width: 600px;
  margin: 0 auto;
}

/* ========== PROPERTIES GRID ========== */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.property-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #eef2f6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  position: relative;
}

.property-card:hover {
  transform: translateY(-8px);
  border-color: rgba(1, 13, 143, 0.2);
  box-shadow: 0 20px 35px rgba(1, 13, 143, 0.08);
}

/* Property Badge */
.property-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #010d8f;
  color: white;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 600;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Property Image */
.property-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.property-card:hover .property-image img {
  transform: scale(1.05);
}

/* Property Details */
.property-details {
  padding: 20px;
}

.property-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 8px;
}

.property-builder {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #010d8f;
  margin-bottom: 12px;
}

.property-builder i {
  font-size: 12px;
}

.property-info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.info-tag, .info-location {
  font-size: 0.7rem;
  color: #6c7a8a;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.property-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid #eef2f6;
  border-bottom: 1px solid #eef2f6;
  margin-bottom: 12px;
}

.property-specs span {
  font-size: 0.7rem;
  color: #6c7a8a;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.property-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 15px;
}

.price {
  font-size: 1.2rem;
  font-weight: 800;
  color: #010d8f;
}

.price-label {
  font-size: 0.7rem;
  color: #6c7a8a;
}

.property-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #010d8f;
  padding: 8px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.75rem;
  border: 1px solid #010d8f;
  transition: all 0.3s ease;
}

.property-btn:hover {
  background: #010d8f;
  color: white;
}

/* ========== VIEW MORE BUTTON ========== */
.view-more {
  text-align: center;
}

.view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #010d8f;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid #010d8f;
  transition: all 0.3s ease;
}

.view-more-btn:hover {
  background: #010d8f;
  color: white;
  transform: translateX(5px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .properties-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .properties-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .properties-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .properties {
    padding: 60px 0;
  }
  
  .properties-title {
    font-size: 1.6rem;
  }
  
  .properties-tag {
    font-size: 10px;
  }
  
  .properties-subtitle {
    font-size: 0.85rem;
  }
  
  .properties-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .property-image {
    height: 180px;
  }
  
  .property-name {
    font-size: 1rem;
  }
  
  .price {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .properties {
    padding: 40px 0;
  }
  
  .properties-title {
    font-size: 1.4rem;
  }
  
  .property-details {
    padding: 15px;
  }
  
  .property-specs {
    flex-wrap: wrap;
  }
  
  .view-more-btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }
}















/* Trustindex Widget Wrapper - Extra spacing */
.trustindex-widget-wrapper {
  border-radius: 24px;
  overflow: hidden;
}

/* Quick Contact Bar - Same as before */
.quick-contact-bar {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  background: #ffffff;
  padding: 12px 20px;
  border-radius: 60px;
  border: 1px solid #eef2f6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  background: #f8fafc;
  color: #1a2a3a;
  flex: 1;
  justify-content: center;
}

.contact-item i {
  font-size: 16px;
  color: #010d8f;
}

.contact-item:hover {
  background: #010d8f;
  color: white;
  transform: translateY(-2px);
}

.contact-item:hover i {
  color: white;
}

.contact-item.whatsapp:hover {
  background: #25D366;
}

.contact-item.direction:hover {
  background: #010d8f;
}

/* Responsive */
@media (max-width: 768px) {
  .quick-contact-bar {
    flex-wrap: wrap;
    border-radius: 30px;
    padding: 15px;
    gap: 10px;
  }
  
  .contact-item {
    flex: 1;
    min-width: calc(50% - 10px);
    padding: 8px 12px;
    font-size: 0.75rem;
  }
  
  .map-wrapper iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .contact-item span {
    display: none;
  }
  
  .contact-item {
    min-width: auto;
    padding: 10px;
  }
  
  .contact-item i {
    font-size: 18px;
    margin: 0;
  }
  
  .map-wrapper iframe {
    height: 220px;
  }
}




















/* About Us Section - Aarsan Realistic | Width Reduced */

.about {
  padding: 80px 0;
  background: #ffffff;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Wrapper with reduced width */
.about-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* ========== HEADER ========== */
.about-header {
  text-align: center;
  margin-bottom: 50px;
}

.about-badge {
  display: inline-block;
  background: rgba(1, 13, 143, 0.1);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: #010d8f;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.about-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 16px;
}

.text-highlight {
  color: #010d8f;
}

.about-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #010d8f, #2a3eff, transparent);
  margin: 0 auto;
  border-radius: 3px;
}

/* ========== CONTENT - CENTERED ========== */
.about-content-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-story h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 20px;
}

.about-story p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #6c7a8a;
  margin-bottom: 15px;
}

/* Founder Quote */
.founder-quote {
  background: #f8fafc;
  padding: 25px 30px;
  border-radius: 16px;
  margin: 30px 0 40px;
  border-left: 3px solid #010d8f;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.founder-quote i {
  color: #010d8f;
  font-size: 24px;
  margin-bottom: 10px;
  opacity: 0.5;
}

.founder-quote p {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 10px;
  text-align: left;
}

.founder-quote span {
  font-size: 0.8rem;
  color: #010d8f;
  font-weight: 500;
}

/* ========== DRIVERS SECTION ========== */
.drivers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 20px;
}

.driver {
  text-align: center;
  padding: 20px;
  background: #f8fafc;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.driver:hover {
  transform: translateY(-5px);
  background: #ffffff;
  border: 1px solid rgba(1, 13, 143, 0.1);
}

.driver i {
  font-size: 28px;
  color: #010d8f;
  margin-bottom: 12px;
}

.driver h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 8px;
}

.driver p {
  font-size: 0.75rem;
  color: #6c7a8a;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .about-title {
    font-size: 1.8rem;
  }
  
  .about-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .drivers {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .about-content-inner {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 60px 0;
  }
  
  .about-title {
    font-size: 1.6rem;
  }
  
  .about-badge {
    font-size: 10px;
  }
  
  .about-story h3 {
    font-size: 1.3rem;
  }
  
  .about-story p {
    font-size: 0.9rem;
  }
  
  .founder-quote {
    padding: 20px;
  }
  
  .founder-quote p {
    font-size: 0.9rem;
  }
  
  .drivers {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .driver {
    padding: 15px;
  }
  
  .driver i {
    font-size: 24px;
  }
}

@media (max-width: 550px) {
  .drivers {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .about-title {
    font-size: 1.4rem;
  }
}





















/* ========== CONTACT SECTION - AARSAN REALISTIC ========== */

.contact {
  padding: 80px 0;
  background: linear-gradient(145deg, #ffffff 0%, #f5f7ff 100%);
  position: relative;
}

/* Section Header */
.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-badge {
  display: inline-block;
  background: rgba(1, 13, 143, 0.1);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: #010d8f;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.contact-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 16px;
}

.contact-title .text-highlight {
  color: #010d8f;
  position: relative;
}

.contact-title .text-highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(1, 13, 143, 0.15);
  border-radius: 10px;
  z-index: -1;
}

.contact-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #010d8f, #2a3eff, transparent);
  margin: 0 auto 20px;
  border-radius: 3px;
}

.contact-subtitle {
  font-size: 0.95rem;
  color: #6c7a8a;
  max-width: 600px;
  margin: 0 auto;
}

/* Form Wrapper */
.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 45px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #eef2f6;
  transition: all 0.3s ease;
}

.contact-form-wrapper:hover {
  box-shadow: 0 20px 40px rgba(1, 13, 143, 0.06);
}

/* Form Styles */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.input-group {
  width: 100%;
}

.full-width {
  margin: 10px 0;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #eef2f6;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  background: #ffffff;
  color: #1a2a3a;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  outline: none;
  border-color: #010d8f;
  box-shadow: 0 0 0 3px rgba(1, 13, 143, 0.06);
}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color: #a0a8b6;
}

.input-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23010d8f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}

.input-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  background: #010d8f;
  color: white;
  padding: 14px 24px;
  border: none;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.submit-btn:hover {
  background: #000a6e;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(1, 13, 143, 0.2);
}

.submit-btn:active {
  transform: translateY(0);
}

.form-feedback {
  text-align: center;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ========== RESPONSIVE - SAME AS YOUR THEME ========== */

@media (max-width: 992px) {
  .contact-title {
    font-size: 1.8rem;
  }
  
  .contact-form-wrapper {
    padding: 35px;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 60px 0;
  }
  
  .contact-title {
    font-size: 1.6rem;
  }
  
  .contact-badge {
    font-size: 10px;
  }
  
  .contact-subtitle {
    font-size: 0.85rem;
  }
  
  .contact-form-wrapper {
    padding: 25px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 15px;
  }
  
  .input-group input,
  .input-group select,
  .input-group textarea {
    padding: 12px 16px;
    font-size: 0.85rem;
  }
  
  .submit-btn {
    padding: 12px 18px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .contact {
    padding: 40px 0;
  }
  
  .contact-title {
    font-size: 1.4rem;
  }
  
  .contact-form-wrapper {
    padding: 20px;
  }
  
  .input-group input,
  .input-group select,
  .input-group textarea {
    padding: 10px 14px;
    font-size: 0.85rem;
    border-radius: 12px;
  }
  
  .submit-btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  
  .contact-title .text-highlight::after {
    height: 4px;
    bottom: 3px;
  }
}














/* ========== FOOTER SECTION - COMPLETE ========== */

.footer {
  background: #000323;
  padding: 50px 0 20px;
  margin-top: 0;
  font-family: 'Source Sans Pro', sans-serif;
}

.footer-container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Desktop: 4 Columns Grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-bottom: 35px;
}

/* Mobile Layout - Hidden by default */
.footer-mobile {
  display: none;
}

/* Column Styles */
.footer-col h3, .mobile-col h3 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  position: relative;
}

.footer-col h3::after, .mobile-col h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background: rgb(255, 255, 255);
  border-radius: 2px;
}

/* About Column */
.about-text {
  font-size: 14px;
  line-height: 1.6;
  font-weight: bolder;
  color: #bdbfc2;
  margin-bottom: 0;
}

/* Services & Quick Links */
.footer-col ul, .mobile-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li, .mobile-col li {
  margin-bottom: 10px;
}

.footer-col a, .mobile-col a {
  color: #bdbfc2;
  font-weight: bolder;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.25s;
  display: inline-block;
}

.footer-col a:hover, .mobile-col a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* Reach Us Column */
.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: bolder;
  color: #bdbfc2;
}

.contact-detail i {
  width: 20px;
  font-size: 14px;
  color: #ffffff;
}

.contact-detail a {
  color: #bdbfc2;
  text-decoration: none;
  font-weight: bolder;
  transition: all 0.25s;
}

.contact-detail a:hover {
  color: #ffffff;
}

/* Bottom Border */
.footer-border {
  height: .5px;
  background: rgb(255, 255, 255);
  margin: 0 0 20px;
}

/* Copyright */
.footer-copyright {
  text-align: center;
  padding-top: 5px;
}

.footer-copyright p {
  font-size: 15px;
  color: rgb(255, 255, 255);
  letter-spacing: 1px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .footer-container {
    max-width: 90%;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 15px;
  }
  
  .footer-container {
    max-width: 100%;
    padding: 0 16px;
  }
  
  /* Hide Desktop Grid */
  .footer-grid {
    display: none;
  }
  
  /* Show Mobile Layout */
  .footer-mobile {
    display: block;
  }
  
  /* Mobile Row 2: Services + Quick Links (2 Columns) */
  .mobile-row-2 {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .mobile-col.half {
    flex: 1;
    width: 50%;
  }
  
  /* Mobile Columns */
  .mobile-col {
    margin-bottom: 30px;
  }
  
  .mobile-col:last-child {
    margin-bottom: 0;
  }
  
  /* Center alignment */
  .mobile-col {
    text-align: center;
  }
  
  .mobile-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .contact-detail {
    justify-content: center;
  }
  
  .mobile-col ul {
    display: inline-block;
    text-align: center;
  }
  
  .mobile-col li {
    text-align: center;
  }
}

@media (max-width: 550px) {
  .footer-container {
    padding: 0 12px;
  }
  
  .mobile-row-2 {
    gap: 15px;
  }
  
  .about-text {
    font-size: 13px;
  }
  
  .mobile-col a,
  .contact-detail {
    font-size: 13px;
  }
}
