 :root {
     --gold: #D4AF37;
     --dark-gold: #B8941F;
 }

 body {
     font-family: 'Poppins', sans-serif;
     scroll-behavior: smooth;
 }

 .gold-gradient {
     background: linear-gradient(135deg, #D4AF37 0%, #F7EF8A 100%);
 }

 .gold-text-gradient {
     background: linear-gradient(135deg, #D4AF37 0%, #F7EF8A 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .gold-border {
     border-color: #D4AF37;
 }

 .gold-shadow {
     box-shadow: 0 4px 14px 0 rgba(212, 175, 55, 0.39);
 }

 .property-card:hover {
     transform: translateY(-10px);
     transition: transform 0.3s ease;
 }

 .category-icon:hover {
     transform: scale(1.1);
     transition: transform 0.3s ease;
 }

 .hero-bg {
     background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
 }

 @media (max-width: 768px) {
     .hero-bg {
         background-attachment: scroll;
     }
 }

 input:focus,
 textarea:focus {
     border-color: #D4AF37 !important;
     box-shadow: 0 0 0 1px #D4AF37;
 }

 .gold-hover:hover {
     background-color: #D4AF37;
     color: black;
     transition: all 0.3s ease;
 }

 .social-icon:hover {
     color: #D4AF37;
     transform: scale(1.2);
     transition: all 0.3s ease;
 }

 body,
 html {
     overflow-x: hidden;
 }

.whatsapp-wrapper {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
  }

  .whatsapp-float {
    position: relative;
    width: 70px;
    height: 70px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
    animation: pulse 2s infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.9);
  }

  .whatsapp-float img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 38px;
    height: 38px;
    transform: translate(-50%, -50%);
    display: block;
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
      transform: scale(1.05);
      box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
  }

  /* Tooltip styling */
  .whatsapp-tooltip {
    position: absolute;
    bottom: 90px;
    right: 0;
    background-color: #25d366;
    color: #fff;
    font-size: 15px;
    padding: 8px 14px;
    border-radius: 25px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .whatsapp-tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    border-width: 8px;
    border-style: solid;
    border-color: #25d366 transparent transparent transparent;
  }

  .whatsapp-wrapper:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

       .whatsapp-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: #25D366;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
}

.whatsapp-wrapper:hover .whatsapp-tooltip {
    opacity: 1;
}

.whatsapp-float {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(232, 164, 37, 0.4); /* 🌟 Golden glow */
}

/* 🔹 Device sizes */
@media (min-width: 1024px) {
    .slider-container { max-width: 1920px; height: 500px; margin-top: 70px; }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .slider-container { max-width: 1280px; height: 700px; }
}
@media (max-width: 767px) {
    .slider-container { max-width: 768px; height: 600px; margin-top: 70px; }
}

/* 🔹 Slides */
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}
.slide.active {
    opacity: 1;
    z-index: 1;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 🔹 Navigation arrows (clean, no circle) */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #e8a425;
    font-size: 40px;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 10;
}
.nav-btn:hover {
    color: #000;
    transform: translateY(-50%) scale(1.1);
}
.prev { left: 25px; }
.next { right: 25px; }

/* 🔹 Dots */
.dots-container {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    padding: 10px 18px;
    border-radius: 30px;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}
.dot.active {
    background: #e8a425;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(232, 164, 37, 0.7);
}

/* 🔹 Slide counter */
.slide-counter {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(10, 10, 10, 0.7);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 10;
}
/* ===================== MODALS ===================== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  align-items: center;
  justify-content: center;
  z-index: 60;
  background: rgba(0, 0, 0, 0.6);
  padding: 1rem;
}

.modal-content {
  background: white;
  padding: 1.6rem;
  border-radius: 0.75rem;
  width: 95%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* ===================== BUTTONS ===================== */
.btn-primary {
  background: #e8a425;
  color: #000;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  border: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #cc8a1e;
}

.btn-primary:disabled {
  background: #bbbbbb;
  cursor: not-allowed;
}

.btn-social {
  border-radius: 8px;
  padding: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  width: 100%;
}

.btn-google {
  background: #fff;
  border: 1px solid #ddd;
}

.btn-facebook {
  background: #1877f2;
  color: white;
}

/* ===================== SPINNER ===================== */
.loading-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin-left: 8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===================== INPUT ERRORS ===================== */
.error-message {
  color: #d53030;
  font-size: 0.85rem;
  min-height: 1.05rem;
}

/* ===================== VERIFICATION MESSAGE ===================== */
.verification-banner {
  display: none;
  position: fixed;
  top: 4rem;
  left: 50%;
  transform: translateX(-50%);
  background: #fff7e0;
  color: #7a4b00;
  padding: 0.7rem 1rem;
  border-radius: 6px;
  z-index: 70;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.resend-verification {
  text-decoration: underline;
  cursor: pointer;
  margin-left: 0.5rem;
  color: #065f46;
}

/* ===================== MOBILE ===================== */
@media (max-width: 480px) {
  .modal-content {
    padding: 1.2rem;
    max-width: 360px;
  }

  input,
  button {
    font-size: 15px;
  }
}
/* team member */
  .team-member-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .team-member-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .profile-img {
            width: 180px;
            height: 180px;
            object-fit: cover;
            border: 4px solid #e8a425;
        }
        .social-icon {
            transition: all 0.3s ease;
        }
        .social-icon:hover {
            transform: scale(1.2);
            color: #e8a425;
        }
        .section-title {
            position: relative;
            display: inline-block;
            margin-bottom: 3rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #e8a425;
        }
        /* ===================== PLOT SIZE CONVERTOR ===================== */
                .converter-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            min-height: calc(100vh - 200px);
        }
        
        .converter-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            overflow: hidden;
        }
        
        .converter-header {
            background: #e8a425;
            color: white;
            padding: 1.5rem;
            text-align: center;
        }
        
        .input-group {
            margin-bottom: 1.5rem;
        }
        
        .input-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: #333;
        }
        
        .input-field {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        .input-field:focus {
            border-color: #e8a425;
            box-shadow: 0 0 0 2px rgba(232, 164, 37, 0.2);
            outline: none;
        }
        
        .btn-convert {
            background: #e8a425;
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .btn-convert:hover:not(.btn-loading) {
            background: #d1941f;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .result-section {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 1.5rem;
            margin-top: 1.5rem;
        }
        
        .result-title {
            font-weight: 600;
            margin-bottom: 1rem;
            color: #333;
            border-bottom: 1px solid #e9ecef;
            padding-bottom: 0.5rem;
        }
        
        .result-item {
            display: flex;
            justify-content: space-between;
            padding: 0.5rem 0;
            border-bottom: 1px solid #e9ecef;
        }
        
        .result-item:last-child {
            border-bottom: none;
        }
        
        .unit-label {
            font-weight: 500;
        }
        
        .unit-value {
            font-weight: 600;
            color: #e8a425;
        }
        
        .history-section {
            margin-top: 2rem;
        }
        
        .history-item {
            background: #f8f9fa;
            border-radius: 6px;
            padding: 1rem;
            margin-bottom: 0.75rem;
            border-left: 4px solid #e8a425;
        }
        
        .history-value {
            font-weight: 600;
        }
        
        .history-date {
            font-size: 0.875rem;
            color: #6c757d;
        }
        
        .info-box {
            background: #e7f3ff;
            border-radius: 8px;
            padding: 1.5rem;
            margin-top: 2rem;
        }
        
        .info-title {
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: #0d6efd;
        }
        
        .info-text {
            color: #495057;
            line-height: 1.6;
        }
        
        .login-prompt {
            background: #fff3cd;
            border: 1px solid #ffeaa7;
            border-radius: 6px;
            padding: 1rem;
            margin-top: 1.5rem;
            text-align: center;
        }
        
        .login-prompt a {
            color: #e8a425;
            font-weight: 600;
            text-decoration: none;
        }
        
        .login-prompt a:hover {
            text-decoration: underline;
        }

        /* Custom Notification Styles */
        .notification {
            position: fixed;
            top: 100px;
            right: 20px;
            padding: 16px 20px;
            border-radius: 8px;
            color: white;
            font-weight: 500;
            z-index: 10000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transform: translateX(400px);
            transition: transform 0.3s ease-in-out;
            max-width: 350px;
        }

        .notification.show {
            transform: translateX(0);
        }

        .notification.success {
            background: linear-gradient(135deg, #10b981, #059669);
            border-left: 4px solid #047857;
        }

        .notification.error {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            border-left: 4px solid #b91c1c;
        }

        .notification.warning {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            border-left: 4px solid #b45309;
        }

        .loading-spinner {
            border: 2px solid #f3f3f3;
            border-top: 2px solid #e8a425;
            border-radius: 50%;
            width: 16px;
            height: 16px;
            animation: spin 1s linear infinite;
            display: none;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .btn-loading {
            opacity: 0.7;
            cursor: not-allowed;
        }

        /* AdSense Container */
        .adsense-container {
            width: 100%;
            margin: 2rem 0;
            text-align: center;
            background: #f8f9fa;
            border-radius: 8px;
            padding: 1rem;
            border: 1px dashed #dee2e6;
        }

        .adsense-placeholder {
            color: #6c757d;
            font-style: italic;
        }

        /* Modal Center Fix */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background-color: white;
            margin: auto;
            padding: 2rem;
            border-radius: 8px;
            width: 90%;
            max-width: 500px;
            position: relative;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
           .blog-card {
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
        }
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border-color: #e8a425;
        }
        .article-img {
            height: 220px;
            object-fit: cover;
            width: 100%;
        }
        .read-btn {
            background: #e8a425;
            color: white;
            padding: 8px 20px;
            border-radius: 5px;
            display: inline-block;
            transition: background 0.3s;
        }
        .read-btn:hover {
            background: #d1941f;
        }
        .category-tag {
            background: #f3f4f6;
            color: #4b5563;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            display: inline-block;
        }
        /* blog  */
        .blog-card {
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
        }
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border-color: #e8a425;
        }
        .article-img {
            height: 220px;
            object-fit: cover;
            width: 100%;
        }
        .read-btn {
            background: #e8a425;
            color: white;
            padding: 8px 20px;
            border-radius: 5px;
            display: inline-block;
            transition: background 0.3s;
        }
        .read-btn:hover {
            background: #d1941f;
        }
        .category-tag {
            background: #f3f4f6;
            color: #4b5563;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            display: inline-block;
            cursor: pointer;
            transition: all 0.3s;
        }
        .category-tag.active {
            background: #e8a425;
            color: white;
        }
        .category-tag:hover {
            background: #e8a425;
            color: white;
        }
        .search-box {
            position: relative;
        }
        .search-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
        }
        .no-results {
            display: none;
            text-align: center;
            padding: 40px;
            grid-column: 1 / -1;
        }
        .article-content {
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }