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

/* ===== BODY ===== */
body {
    font-family: Arial, sans-serif;
    background: #f4f6f9;
    color: #333;
}


/* ===== HEADER ===== */
header {
    text-align: center;
    padding: 20px;
    background: brown;
    color: #fff;
}

header h1 {
    font-size: 24px;
}

/* ===== NAVBAR ===== */
nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px;
    background: brown;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

nav a {
    text-decoration: none;
    color: #fff;
    background: linear-gradient(45deg, rgb(218, 78, 78), rgb(213, 71, 71));
    padding: 12px 22px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s;
}

nav a:hover {
    background: linear-gradient(45deg, #facc15, #fbbf24);
    color: #000;
}

/* ===== MARQUEE ===== */
.marquee {
    width: 100%;
    overflow: hidden;
    background: brown;
    color: #fff;
    padding: 10px 0;
}

.promo-text {
    color: yellow;
    font-weight: bold;
}

.marquee p {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: scrollText 20s linear infinite;
    font-size: 18px;
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.marquee p:hover {
    animation-play-state: paused;
}

/* ===== PROPERTY CARD ===== */
.property-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px auto;
    max-width: 1000px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.property-image,
.property-details {
    flex: 1 1 300px;
}

.property-image img {
    width: 100%;
    border-radius: 10px;
}

.inquire-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 10px;
    background: brown;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
}

.inquire-btn:hover {
    background: brown;
}

/* ===== PROMO TEXT ===== */
#prmwbsaving {
    color: yellow;
    font-size: medium;
}

/* ===== GALLERY ===== */
#Gallery {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    background: #fff;
    border-radius: 12px;
}

/* ===== CONTACT ===== */
.details-container {
    max-width: 800px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

button {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background: brown;
    color: #fff;
    border: none;
    border-radius: 8px;
}

/* ===== FLOAT BUTTON ===== */
.home-float {
    position: fixed;
    top: 100px;
    left: 20px;
    background: brown;
    color: #fff;
    padding: 12px;
    border-radius: 50%;
}

/* ===== CAROUSEL ===== */
.carousel-container {
    width: 3in;
    height: 3in;
    margin-top: 3%;
    margin-left: auto;
    margin-bottom: 5%;
    margin-right: auto;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 3%;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}

.toggle-switch {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
}

.dot.active {
    background: brown;
}

/* ===== PROMO PAGE FIX (REMOVED BAD <style> TAG ISSUE) ===== */
.container {
    max-width: 800px;
    margin: auto;
    background: #fff;
    padding: 20px;
}

.home-btn {
    display: inline-block;
    margin-bottom: 15px;
    text-decoration: none;
    background: brown;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
}

.main-img {
    width: 60%;
    border-radius: 10px;
}

.gallery {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    margin-top: 10px;
}

.gallery img {
    height: 70px;
    border-radius: 5px;
}

/* ===== HOME SECTION (SCOPED DESIGN SAFE) ===== */
.home-section {
    font-family: 'Poppins', sans-serif;
    padding: 40px 20px;
}

.home-section .section {
    max-width: 900px;
    margin: auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.home-section h1 {
    font-size: 36px;
    font-weight: 700;
    color: brown;
    margin-bottom: 15px;
}

.home-section .subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.home-section .features {
    text-align: left;
    margin: 30px 0;
}

.home-section .features p {
    font-size: 16px;
    margin: 10px 0;
    padding-left: 10px;
    border-left: 4px solid brown;
}

.home-section .closing {
    margin-top: 30px;
    font-size: 17px;
    font-weight: 500;
    color: brown;
}

/* ===== FOOTER (FINAL FIX) ===== */

/* ===== FOOTER CLEAN DESIGN ===== */
.footer-dark {
    background: #0f172a;
    color: #fff;
    width: 100%;
}

/* TEXT */
.footer-dark h4,
.footer-dark h5 {
    margin-bottom: 10px;
}

.footer-dark p {
    font-size: 14px;
    line-height: 1.6;
}

/* LINKS */
.footer-dark .nav-link {
    color: #ccc;
    transition: 0.3s;
}

.footer-dark .nav-link:hover {
    color: #facc15;
}

/* SOCIAL BUTTON */
.social-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    background: brown;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}

.social-btn:hover {
    background: brown;
}

/* COPYRIGHT LINE */
.footer-dark .border-top {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .footer-dark {
        text-align: center;
    }
    
}
/* ===== FOOTER (FIXED) ===== */

/* ======DEVELOPER CSS======= */
.dev-btn {
    display: inline-block;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;

    /* Gradient color */
    background: linear-gradient(135deg, brown, #10b981);

    /* Shadow effect */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);

    transition: all 0.3s ease;
}

/* Hover effect */
.dev-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #0f172a, #059669);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

/* Active click effect */
.dev-btn:active {
    transform: scale(0.98);
}

.profile-img {
    width: 180px;
    border-radius: 12px;
    display: block;
    margin: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.gallery img {
    width: 100%;
    border-radius: 10px;
    transition: 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}
/* ========DEVELOPER CSS======= */

/* ===== HERO SECTION ===== */
.home-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

/* CARD STYLE */
/* .hero-card {
    background: #ffffff;
    max-width: 700px;
    width: 100%;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
} */

/* TITLE */
/* .hero-card h1 {
    font-size: 25px;
    margin-bottom: 8px;
    color: #1e3a8a;
} */

/* BUTTON */
.cta-btn {
    display: inline-block;
    padding: 5px 10px;
    background: burlywood;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    transition: 0.3s;
}

.cta-btn:hover {
    background: brown;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
    .hero-card {
        padding: 5px;
    }

    .hero-card h1 {
        font-size: 10px;
    }

  /* =========  fix============ */

  /* ===== HEADER ===== */
  header {
      text-align: center;
      padding: 5px;
      background: brown;
      color: #fff;
  }

  header h1 {
      font-size: 15px;
  }

  /* ===== NAVBAR ===== */
  nav {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 2px;
      padding: 3px;
      background: brown;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  nav a {
      text-decoration: none;
      color: #fff;
      background: linear-gradient(45deg, brown, brown);
      padding: 2px 4px;
      border-radius: 15px;
      font-size: 12px;
      font-weight: bold;
      transition: 0.3s;
  }


}
