.property-card{
    width:280px;
    border-radius:10px;
    overflow:hidden;
}

.property-image{
    position:relative;
    width:100%;
    height:200px;
}

.property-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    position:absolute;
    top:0;
    left:0;
    transition:opacity 0.4s ease;
}

.hover-img{
    opacity:0;
}

.property-image:hover .hover-img{
    opacity:1;
}

.property-image:hover .main-img{
    opacity:0;
}


.save-btn{
    background: white;
    border: 1px solid #ddd;
    padding: 8px 14px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #444;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Hover effect */
.save-btn:hover{
    background: #f8b900;
    color: white;
    border-color: #f8b900;
}

/* Saved state */
.save-btn.saved{
    background: #f8b900;
    color: white;
    border-color: #f8b900;
}

/* Heart animation */
.save-btn:active{
    transform: scale(0.95);
}


       body {
            margin: 0;
            font-family: Arial, sans-serif;
            color: #333;
            line-height: 1.6;
        }



        .product_featured_list {
            color: green;
            font-size: 12px;
            margin-bottom: 8px;
        }
        .bed-bath {
            display: flex;
            font-size: 14px;
            width: 200px;
            margin-bottom: 8px;
        }
        .price_container {
            font-size: 20px;
            font-weight: 700;
        }
        
        /* CTA Section */
.cta_section {
    background: linear-gradient(to right, #970404, #FFB900);
    padding: 70px 20px;
    color: #fff;
}

.cta_container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.cta_container h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta_container p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta_buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta_primary {
    background: #fff;
    color: #333;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.cta_primary:hover {
    background: #f0f0f0;
}

.cta_secondary {
    background: transparent;
    border: 2px solid #fff;
    padding: 12px 26px;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.cta_secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 900px) {

 .nav-links a {
        display: block;
        width: 100%;
        padding: 0;
        border-radius: 8px;
        font-size: 18px;
    }
    
    .signup-btn {
        padding: 0;
        margin: 0;
        background: transparent;   }
        
    .dropbtn {
        padding: 0;
        margin: 0;
        background: red; 
        text-align: left;
        display: block;
        width: 100%;
        padding: 0;
        border-radius: 8px;
    }
    
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

}


.testimonials-section {
margin: auto;
text-align: center;
padding: 40px 100px;
}


.testimonials-section h2 {
font-size: 2.4rem;
margin-bottom: 10px;
font-weight: 600;
color: #000;
}


.testimonials-section p.subtitle {
color: #555;
margin-bottom: 40px;
font-size: 1rem;
}


.testimonials-wrapper {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
}


.testimonial-card {
background: #fff;
padding: 25px;
border-radius: 18px;
border-top: 5px solid  #ffb900;
box-shadow: 0 8px 20px rgba(0,0,0,0.08);
transition: 0.3s;
}


.testimonial-card:hover {
transform: translateY(-5px);
box-shadow: 0 12px 25px rgba(0,0,0,0.12);
border-top-color: var(--secondary-color);
}


.testimonial-text {
color: #444;
font-size: 0.95rem;
line-height: 1.6;
margin-bottom: 20px;
}


.testimonial-profile {
display: flex;
align-items: center;
gap: 15px;
}


.testimonial-profile img {
width: 55px;
height: 55px;
border-radius: 50%;
object-fit: cover;
}

.profile-info{
    justify-content: center;
}
.profile-info h4 {
margin: 0;
font-size: 1rem;
font-weight: 600;
color: #222;
text-align: center;
}


.profile-info span {
font-size: 0.85rem;
color: #777;
}

.dropdown {
    float: left;
}

.dropdown .dropbtn {
    font-size: 14px;
    border: none;
    outline: none;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
    cursor: pointer;
}

.dropdown .dropbtn:hover {
    color:  #ffb900;
    transition: .3s ease;
}


.dropdown-content a {
    float: none;
    color: black;
    padding: 8px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #f4f4f4;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #f9f9f9;
  width:100%; /* large dropdown */
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
   padding: 24px 150px;
  left: 0;
  top: 40px;
  z-index: 1000;
   flex-direction: row;
}

/* Mega Dropdown columns */


.dropdown-column {
  flex: 0.5;
}

.dropdown-column h4 {
  margin-bottom: 10px;
  color: #333;
}

.dropdown-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-column ul li {
  margin-bottom: 0;
  padding-left: 0;
  left: 0;
}

.dropdown-column ul li a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
   left: 0;
   padding-left: 0;
   margin-left: 0;
}



/* THIS IS THE IMPORTANT PART */
.nav-item.dropdown:hover .dropdown-content,
.dropdown-content:hover {
  display: flex;
}



@media (max-width: 900px) {
    
    .nav-item.dropdown {
  position: relative; /* anchors dropdown absolutely */
}
    /* Parent dropdown should be relative */
.nav-item.dropdown {
    position: relative;
}

/* Dropdown content floats over */
.dropdown-content {
    position: absolute;  /* IMPORTANT */
    top: 100%;           /* place it below parent */
    left: 0;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    display: none;
    padding: 24px;
    z-index: 1000;
    background: #fff;    /* ensure visible */
}

/* Active state controlled by JS */
.dropdown.active .dropdown-content {
    display: block;
}

  .dropdown .dropbtn {
    font-size: 18px;
  }

  .action-column {
    background: transparent;
    color: #000;
    padding: 0;
    border-radius: 8px;
  }

  .dropdown-column li a {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  /* DO NOT hide dropdown-content unconditionally */
  .dropdown-content {
    padding: 16px 20px; /* smaller padding for mobile */
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  /* Ensure active state works */
  .dropdown-content.active {
    display: flex !important;
  }

  .mega-dropdown {
    flex-direction: column;
    gap: 20px;
  }

  .testimonials-section {
    margin: auto;
    text-align: center;
    padding: 40px 24px;
  }
}



/* Section container */
.how-it-works {
    position: relative;
    padding: 80px 20px;
    color: #fff;
    text-align: center;
    background: url('pictures/lycs-architecture-kUdbEEMcRwE-unsplash.jpg') center/cover no-repeat;
    overflow: hidden;
}

/* Black overlay */
.how-it-works::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 0;
}

/* Keep content above overlay */
.how-it-works > * {
    position: relative;
    z-index: 1;
}

/* Headings */
.how-it-works h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.why-title {
    margin-top: 60px;
}

/* Grid */
.glass-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* Glass cards */
.glass-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 30px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Step number */
.step {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #FFB900;
    margin-bottom: 10px;
}

/* Card title */
.glass-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

/* Card text */
.glass-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #eaeaea;
}

/* Mobile tuning */
@media (max-width: 768px) {
    .how-it-works {
        padding: 60px 15px;
    }

    .how-it-works h2 {
        font-size: 1.8rem;
    }

    .glass-card {
        padding: 25px;
    }
}


.services-section {
    padding: 80px 20px;
    text-align: center;
    background: #f9fafc;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #555;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: auto;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    border: 1px solid #eee;
    transition: 0.3s ease;
}

.service-card span {
    font-size: 2.2rem;
}

.service-card h4 {
    margin-top: 15px;
    font-size: 1.05rem;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.service-card .bx {
    font-size: 40px;
    color: #FFB900;
}

.blog-featured {
    padding: 60px 100px;
    background: #333;
    overflow: hidden;
    color: #fff;
    position: relative;
}



.blog-layout {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

/* Featured card */
.blog-featured-card {
    position: relative;
    background: url('pictures/blog-feature.jpg') center/cover no-repeat;
    height: 420px;
    border-radius: 24px;
    overflow: hidden;
}

.blog-featured-card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.blog-featured-card .content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
}

.tag {
    background: #FFB900;
    color: #000;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
}

.blog-featured-card h3 {
    font-size: 1.9rem;
    margin: 18px 0 10px;
}

.blog-featured h2 {
    color: #fff;
    font-size: 2.4rem;
margin-bottom: 10px;
font-weight: 600;
}

.blog-featured-card p {
    max-width: 500px;
    line-height: 1.6;
    color: #eaeaea;
}

.blog-featured-card a {
    display: inline-block;
    margin-top: 15px;
    color: #FFB900;
    font-weight: 600;
    text-decoration: none;
}

/* Side cards */
.blog-side {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.blog-mini {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 25px;
}

.blog-mini h4 {
    margin-bottom: 10px;
}

.blog-mini a {
    color: #FFB900;
    font-weight: 600;
    text-decoration: none;
}

/* Mobile */
@media (max-width: 900px) {
    
      .logo img{
    width:30px;
    height:20px;
    padding-top:2px;
}
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-featured {
    padding: 60px 24px;
    background: linear-gradient(135deg, #0f2027, #203a43);
    color: #fff;
}

    .blog-featured-card {
        height: 320px;
    }
}

/* ===== ABOUT SECTION ===== */
.about_section {
  padding: 40px 20px;
  font-family: "Segoe UI", Roboto, sans-serif;
}

.about_container {
  max-width: 1200px;
  margin: 0 auto;
}

.about_row {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* ===== IMAGE COLUMN ===== */
.about_col {
  flex: 1;
  min-width: 300px;
}

.about_col .img_container {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  height: 420px;
}

.about_col .img_container img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about_col .img_container:hover img {
  transform: scale(1.05);
}

/* ===== TEXT CONTENT ===== */
.about_col .text_container {
  background: #ffffff;
  padding: 24px 0;
}

.about_col .text_container h4 {
  font-size: 26px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
  line-height: 1.3;
}

.about_col .text_container .sub_desc {
  font-size: 15px;
  font-weight: 600;
  color: #16a34a;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.about_col .text_container p {
  font-size: 14px;
  line-height: 1.9;
  color: #4b5563;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about_row {
    gap: 40px;
  }

.about_col   .text_container {
    padding: 35px 20px;
    box-shadow: 0 ;
  }

 .about_col .text_container h4 {
    font-size: 26px;
  }
}

@media (max-width: 600px) {
 .about_section {
    padding: 60px 24px;
  }

.about_col  .text_container h4 {
    font-size: 22px;
  }

.about_col  .text_container p {
    font-size: 15px;
  }
  
  .logo img{
    width:30px;
    height:30px;
    padding-top:2px;
}
}

.logo img{
    width:100px;
    height:50px;
    padding-top:2px;
}

.nav-links  {
    gap: 24px;
}


.action-column {
  background: transparent;
  color: #000;
  padding: 0;
  border-radius: 8px;
  max-width: 260px;
}

.action-column h4 {
  margin-bottom: 10px;
  color: #111;
}

.action-column p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
  color: #111;
}

.action-column img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 5px;
}

.action-btn {
  display: inline-block;
  background: #FFB900; /* gold */
  color: #000000;
  padding: 10px 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.action-btn:hover {
  background: #b8923e;
  transform: translateY(-1px);
}

.property-column {
  max-width: 260px;
}

.property-column p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 14px;
  color: #555;
}

.property-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.property-links li {
  margin-bottom: 8px;
}

.property-links a {
  color: #7b1e3a; /* maroon */
  text-decoration: none;
  font-weight: 500;
}

.property-links a:hover {
  text-decoration: underline;
}


    .gallery .main-img{width:100%;height:380px;object-fit:cover;border-radius:6px}
.thumbs{display:flex;gap:8px;margin-top:10px}
.thumb-small{width:80px;height:70px;object-fit:cover;border-radius:6px}
.small{font-size:13px}
.muted{color:#777}
.stats-grid{display:flex;gap:12px}
.stat-card{flex:1;background:#fff;padding:14px;border-radius:8px;text-align:center}

.thumb{width:110px;height:80px;object-fit:cover}
.prop-actions{margin-left:auto;display:flex;gap:8px;align-items:center}




.card-footer {
  display: flex;
  gap: 8px;
  margin-top: 12px;

}


.card-icons {
  position: absolute;
  top: 10px;
  right: 10px;
}

.like-btn {
  background: rgba(255,255,255,0.9);
  border: none;
  padding: 6px 8px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: transform 0.2s;
}
.like-btn:hover {
  transform: scale(1.2);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  gap: 5px;
  flex-wrap: wrap;
}

.pagination button {
  padding: 6px 12px;
  border: 1px solid silver;
  border-radius: 4px;
  background-color: white;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pagination button:hover {
  background-color: #222;
  color: white;
}

.pagination button.active {
  background-color:  #ffb900;
  color: white;
}

.pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.bed-count-table {
  border-color: rgb(237, 236, 236);
}

.table_title {
  font-size: var(--font_size7);
}

.properties, .locations-list a {
  text-decoration: none;
  color: #333;
}

.property-type-list li {
  list-style: none;
}


.btn-small {
  padding: 6px 10px;
  font-size: 13px;
  border-radius: 4px;
  text-decoration: none;
  color: #fff;
}

.btn-call { background: #222; }
.btn-whatsapp { background: #25D366; }


.icon-bed::before {
  content: "🛏️"; /* or use svg / font icon */
  margin-right: 4px;
}
.icon-bath::before {
  content: "🛁";
  margin-right: 4px;
}


.right_container {
  width: 35%;
  background: var(--bg);
  padding: 32px;
  border-radius: 8px;
  line-height: 1.5;
  height: 100%;
}

.filter-bar{display:flex;align-items:center;gap:16px;flex-wrap:wrap;padding:12px 0;align-items: center;}

.filters-form select,.filters-form input{padding:8px;border-radius:8px;border:1px solid #e6e6e6; margin-top: 12px; margin-right: 8px;}
        .main { display: flex; gap: 24px; justify-content:space-between; padding:60px 100px;}
        .container{width:100%; margin-top: 40px;}
        .property-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
        .property-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.08); transition: transform 0.2s; position: relative; }
         .property-card a{ text-decoration: none; color:#000;}
        .property-card:hover { transform: translateY(-4px); }
        .card-image img { width: 100%; height: 200px; object-fit: cover; }
        .card-body { padding: 15px; }
        .card-title { font-size: 18px; }
        .card-location { font-size: 14px; color: #555; margin-bottom: 8px; }
        .agent_info { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
        .agent_info img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
        .card-meta { display: flex; gap: 12px; font-size: 13px; color: #555; margin-bottom: 8px; }
        .card-price { font-weight: 600; color: #000; font-size: 16px; }
        .badge-featured { position: absolute; top: 8px; left: -24px; background: #FFB900; color: #fff; font-size: 14px; font-weight: bold; padding: 6px 32px; transform: rotate(-40deg); box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
        .header {
    background: #222;
    color: #fff;
    font-size: 14px;
    margin: 0;
    padding:0;
}

        .footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 70px 20px 30px;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
}

.footer-logo span {
    color:  #ffb900;
}

.footer-brand p {
    margin: 15px 0;
    line-height: 1.7;
    color: #94a3b8;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
    text-decoration: none;
}

.footer-socials a:hover {
    background:  #ffb900;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #ffb900;
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact i {
    color: #ffb900;
    font-size: 18px;
}

.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid #1e293b;
    padding-top: 20px;
    text-align: center;
    color: #94a3b8;
}

.footer-contact a {
    color: #cbd5e1;
    text-decoration: none;
}

.footer-contact a:hover {
    color:  #ffb900;
}

.property-hero {
    position: relative;
    background: #222;
    color: #fff;
    padding: 80px 5%;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    padding-top: 40px;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-content h1 span {
    color: #FFB900;
}

.hero-content p {
    font-size: 1.05rem;
    color: #e5e7eb;
    max-width: 500px;
    margin-bottom: 25px;
}

.hero-badge {
    display: inline-block;
    background: #f97316;
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.hero-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.hero-features span {
    background: rgba(255,255,255,0.1);
    padding: 6px 12px;
    border-radius: 20px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.hero-btn {
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.hero-btn.primary {
    background: #FFB900;
    color: #020617;
}

.hero-btn.primary:hover {
    background: #0ea5e9;
}

.hero-btn.outline {
    border: 2px solid #FFB900;
    color: #FFB900;
}

.hero-btn.outline:hover {
    background: #FFB900;
    color: #020617;
}

/* Image Side */
.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.price-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #22c55e;
    color: #022c22;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
}

/* Decorative Shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.shape1 {
    width: 180px;
    height: 180px;
    background: #FFB900;
    top: -60px;
    left: -60px;
}

.shape2 {
    width: 250px;
    height: 250px;
    background: #f97316;
    bottom: -100px;
    right: -100px;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image {
        margin-top: 30px;
    }
}


/* Responsive */
@media (max-width: 900px) {

 .nav-links a,
    .dropbtn {
        display: block;
        width: 100%;
        padding: 0;
        border-radius: 8px;
    }
    
    .signup-btn {
        padding: 0;
        margin: 0;
        background: transparent;   }
        
    .dropbtn {
        padding: 0;
        margin: 0;
        background: transparent; 
    }
    
}
        /* Responsive */
@media (max-width: 900px) {
    .container{max-width:100%;padding:0 24px; margin-top: 40px;}
    .right_container{
        display:none;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
     .about_col .text_container h4 {
    font-size: 24px;
    color: #000;
}
     .hamburger {
        display: block;
    }


    .navbar {
        padding: 8px 20px;
    }

    /* Hide the nav by default */
    .nav-links {
          display: none;   /* IMPORTANT */  
       
    }

    /* When hamburger is clicked */
    .nav-links.show {
        display: block;
    }

    .nav-links li,
    .dropdown {
        width: 100%;
        text-align: left;
        padding: 10px 20px;
    }

    /* Dropdown inside mobile */
    .dropdown-content {
        position: static;
        box-shadow: none;
    }

    /* Show hamburger button */
    .hamburger {
        display: block;
    }
    
}

        @media (max-width: 900px) {
            .main{padding: 0} 
            .card-meta { flex-direction: column; gap: 4px; } .card-image img { height: 180px; } .card-title { font-size: 16px; } .card-price { font-size: 14px; } 
            
            
        }
        
        .card-cta {
    margin-top: 10px;
    display: block;
   gap: 10px;
    width: 100%;
    border-left: 1px solid silver;
    padding-left: 20px;
}

.btn {
    padding: 4px 8px ;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    transition: transform 0.2s, background 0.2s;
}

.btn-primary {
    background-color: #FFB900;
}

.btn-secondary {
    BACKGROUND:#FFB900;
    color: #fff;
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

#compare-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #f7f7f7;
    border-top: 1px solid #ccc;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
}
#compare-bar {
    display: none;
}
.card-price{
font-size:18px;
color:#16a34a;
font-weight:700;
}
.card-cta{
display:flex;
flex-direction:column;
gap:6px;
}
