body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #fff;
  }
  
  /* Info Bar */
  .info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-bottom: 1px solid #eee;
  }
  
  /* Left Group: Search + Property Info */
  .left-group {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  
  .search-link {
    color: #6c2bd9;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
  }
  
  .property-info .price-specs {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  
  .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
  }
  
  .spec {
    font-size: 0.95rem;
    color: #333;
  }
  
  /* Right Icons */
  .right {
    display: flex;
    gap: 1rem;
  }
  
  .action {
    color: #6c2bd9;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
  }
  
  /* Tabs */
  .tabs {
    border-bottom: 1px solid #eee;
    padding: 0.5rem 2rem;
  }
  
  .tabs ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
  }
  
  .tabs li a {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    font-size: 0.95rem;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid transparent;
  }
  
  .tabs li a.active {
    color: #6c2bd9;
    border-bottom: 2px solid #6c2bd9;
  }
  /* Mobile Toggle Button */
    .mobile-toggle {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: #6c2bd9;
      padding: 0.5rem 2rem;
    }

    @media (max-width: 768px) {
      .info-bar,
      .tabs {
        display: none;
      }

      .info-bar.show,
      .tabs.show {
        display: flex;
        flex-direction: column;
      }

      .tabs ul {
        flex-direction: column;
        gap: 1rem;
      }

      .mobile-toggle {
        display: block;
      }
    }
    
  /* section 1 3 photos*/
  /* Gallery Section */
.gallery-section {
    padding: 2rem;
  }
  
  .gallery-grid {
    display: flex;
    gap: 1rem;
  }
  
  .main-image {
    position: relative;
    flex: 2;
  }
  
  .main-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
  }
  
  .side-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
  }
  
  .side-image {
    position: relative;
  }
  
  .side-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
  }
  
  /* Tags */
  .tags {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 0.5rem;
    z-index: 2;
  }
  
  .verified, .superagent {
    background-color: #28a745;
    color: white;
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-weight: bold;
  }
  
  .superagent {
    background-color: #6c2bd9;
  }
  
  /* Watermark */
  .watermark {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: bold;
    z-index: 2;
  }

@media (max-width: 768px) {
  .gallery-grid {
    flex-direction: column;
  }

  .main-image,
  .side-images {
    flex: unset;
    width: 100%;
  }

  .side-images {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .side-image {
    flex: 1 1 48%;
  }

  .side-image img,
  .main-image img {
    border-radius: 6px;
    object-fit: cover;
    width: 100%;
    height: auto;
  }

  .tags {
    top: 8px;
    left: 8px;
    flex-wrap: wrap;
  }

  .watermark {
    bottom: 8px;
    left: 8px;
    font-size: 0.8rem;
  }
}




  
   /* section 2 info*/
   /* Property Details Section */
.property-details {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    margin-top: 50px;
    background-color: #fff;
  }
  
  .details-left {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fdfdfd;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    padding: 1.5rem 1.8rem;
    gap: 0.8rem;
  }
  
  /* Price and Monthly */
  .details-left .price {
    font-size: 1.7rem;
    font-weight: 700;
    color: #111;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  
  .cost-btn {
    background-color: #6c2bd9;
    color: #fff;
    border: none;
    padding: 0.35rem 0.7rem;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
  }
  
  .monthly {
    font-size: 0.95rem;
    color: #444;
    margin-top: -0.4rem;
  }
  
  .monthly span {
    color: #6c2bd9;
    font-weight: 600;
  }
  
  /* Specs Row */
  .specs-row {
    display: flex;
    gap: 1.2rem;
    font-size: 0.9rem;
    color: #555;
    margin-top: -0.2rem;
  }
  
  /* Location & Features */
  .location {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 0.6rem;
    color: #222;
    letter-spacing: 0.5px;
  }
  
  .features {
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
    margin-top: 0.3rem;
  }
  
  /* Bullet List */
  .bullets {
    list-style: none;
    padding-left: 0;
    margin-top: 0.6rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem 1.5rem;
  }
  
  .bullets li {
    font-size: 0.9rem;
    color: #555;
    position: relative;
    padding-left: 1rem;
  }
  
  .bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #6c2bd9;
    font-weight: bold;
  }
  
  /* Right Side */
  .details-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background-color: #fdfdfd;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    justify-content: space-between;
    min-height: 100%;
  }
  
  .contact-buttons {
    display: flex;
    gap: 1rem;
  }
  
  .call-btn, .whatsapp-btn {
    flex: 1;
    padding: 0.6rem;
    font-size: 0.95rem;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
  
  .call-btn {
    background-color: #d9534f;
    color: #fff;
  }
  
  .whatsapp-btn {
    background-color: #28a745;
    color: #fff;
  }
  
  .agent-box {
    display: flex;
    gap: 1rem;
    align-items: center;
  }
  
  .agent-pic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .agent-info p {
    margin: 0.2rem 0;
    font-size: 0.85rem;
    color: #555;
  }
  
  .mortgage-box {
    background-color: #f9f9f9;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
  }
  
  .monthly-rate {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0.5rem 0;
  }
  
  .preapprove-btn {
    background-color: transparent;
    border: 2px solid #6c2bd9;
    color: #6c2bd9;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 0.5rem;
  }
  
  .mortgage-logo {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #d9534f;
    font-weight: bold;
  }
  @media (max-width: 768px) {
  .property-details {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
    margin-top: 30px;
  }

  .details-left,
  .details-right {
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
  }

  .details-left .price {
    font-size: 1.4rem;
    flex-wrap: wrap;
  }

  .monthly {
    font-size: 0.9rem;
  }

  .specs-row {
    flex-wrap: wrap;
    gap: 0.8rem;
    font-size: 0.85rem;
  }

  .bullets {
    grid-template-columns: 1fr;
    gap: 0.3rem 1rem;
  }

  .contact-buttons {
    flex-direction: column;
  }

  .call-btn,
  .whatsapp-btn {
    width: 100%;
    font-size: 0.9rem;
  }

  .agent-box {
    flex-direction: row;
    align-items: flex-start;
  }

  .agent-pic {
    width: 50px;
    height: 50px;
  }

  .agent-info p {
    font-size: 0.8rem;
  }

  .monthly-rate {
    font-size: 1.1rem;
  }

  .preapprove-btn {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }

  .mortgage-logo {
    font-size: 0.85rem;
  }
}


  /* show full details modale*/
  .modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
  }
  
  .modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 700px; /* Increased width */
    max-height: 80vh;  /* Limits height to viewport */
    overflow-y: auto;  /* Enables internal scroll */
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    position: relative;
  }
  
  .modal-content h2 {
    margin-top: 0;
    font-size: 1.2rem;
    color: #333;
  }
  
  .modal-content ul {
    padding-left: 1rem;
    margin-top: 1rem;
  }
  
  .modal-content ul li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #555;
  }
  
  .close {
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 1.5rem;
    color: #aaa;
    cursor: pointer;
  }
  
  .close:hover {
    color: #000;
  }

  .details-btn {
    background-color: #6c2bd9;
    color: #fff;
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  
  .details-btn:hover {
    background-color: #5a23b8;
    transform: translateY(-1px);
  }
  

  /* amenities*/
  .amenities-section {
    padding: 2rem;
    background-color: #fff;
  }
  
  .amenities-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
  }
  
  .amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem 1.5rem;
    list-style: none;
    padding-left: 0;
  }
  
  .amenities-grid li {
    font-size: 0.95rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  @media (max-width: 768px) {
  .amenities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem 1rem;
  }
}

@media (max-width: 480px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .amenities-section {
    padding: 1.2rem;
  }

  .amenities-section h3 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }

  .amenities-grid li {
    font-size: 0.9rem;
    gap: 0.4rem;
  }
}

  /* map*/
  .location-section {
    position: relative;
    height: 300px;
    background-image: url('../assets/map.png'); /* Use a blurred map image */
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin: 2rem;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  }
  
  .location-overlay {
    background-color: rgba(255, 255, 255, 0.75);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align content to the left */
    padding-left: 2rem; /* Add left spacing */
  }
  
  .location-text {
    text-align: left;
    max-width: 400px;
  }
  
  .location-text h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #333;
  }
  
  .location-text p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.8rem;
  }
  
  .map-link {
    font-weight: bold;
    color: #6c2bd9;
    text-decoration: none;
    font-size: 0.95rem;
    background-color: #f0f0ff;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    transition: background-color 0.2s ease;
  }
  
  .map-link:hover {
    background-color: #e0e0ff;
  }
  
  @media (max-width: 768px) {
  .location-section {
    height: auto;
    margin: 1rem;
    border-radius: 8px;
  }

  .location-overlay {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem;
  }

  .location-text {
    max-width: 100%;
    text-align: left;
  }

  .location-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
  }

  .location-text p {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
  }

  .map-link {
    font-size: 0.9rem;
    padding: 0.35rem 0.7rem;
  }
}

  /* below 2 card */
  .insights-section {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .insight-card {
    width: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }
  
  .insight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
  }
  
  .card-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    filter: brightness(0.95);
  }
  
  .card-content {
    padding: 1rem 1.2rem;
  }
  
  .card-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
    color: #222;
  }
  
  .card-content .label {
    font-size: 0.9rem;
    color: #6c2bd9;
    font-weight: 600;
    margin-bottom: 0.6rem;
  }
  
  .card-content .rating,
  .card-content .type,
  .card-content .price-range {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.4rem;
  }
  
  @media (max-width: 768px) {
  .insights-section {
    padding: 1rem;
    gap: 1.2rem;
    justify-content: flex-start;
  }

  .insight-card {
    width: 100%;
    max-width: 100%;
  }

  .card-image {
    height: 160px;
  }

  .card-content {
    padding: 0.8rem 1rem;
  }

  .card-content h4 {
    font-size: 1.1rem;
  }

  .card-content .label,
  .card-content .rating,
  .card-content .type,
  .card-content .price-range {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .card-image {
    height: 140px;
  }

  .card-content h4 {
    font-size: 1rem;
  }

  .card-content .label,
  .card-content .rating,
  .card-content .type,
  .card-content .price-range {
    font-size: 0.8rem;
  }
}


  /* price insights*/
  .price-insights {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    margin: 1.5rem auto;
    max-width: 900px;
  }
  
  .price-insights h3 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    color: #333;
  }
  
  .price-insights .subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.8rem;
  }
  
  #priceChart {
    width: 100%;
    height: 350px !important; /* Reduced height */
  }

@media (max-width: 768px) {
  .price-insights {
    padding: 1rem;
    margin: 1rem;
    border-radius: 8px;
  }

  .price-insights h3 {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
  }

  .price-insights .subtitle {
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
  }

  #priceChart {
    height: 280px !important;
  }
}

@media (max-width: 480px) {
  .price-insights h3 {
    font-size: 1rem;
  }

  .price-insights .subtitle {
    font-size: 0.8rem;
  }

  #priceChart {
    height: 240px !important;
  }
}


  /* payment info*/
  .regulatory-section {
    padding: 2rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    margin: 2rem auto;
    max-width: 900px;
  }
  
  .regulatory-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
  }
  
  .regulatory-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .regulatory-details {
    flex: 1;
    min-width: 250px;
  }
  
  .regulatory-details p {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    color: #444;
  }
  
  .regulatory-details .permit {
    color: #2a5bd7;
    text-decoration: underline;
    cursor: pointer;
  }
  
  .regulatory-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 180px;
  }
  
  .regulatory-qr img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  .qr-label {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #555;
  }
  @media (max-width: 768px) {
  .regulatory-section {
    padding: 1.2rem;
    margin: 1.2rem;
    border-radius: 10px;
  }

  .regulatory-section h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .regulatory-grid {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .regulatory-details {
    min-width: unset;
    width: 100%;
  }

  .regulatory-details p {
    font-size: 0.9rem;
  }

  .regulatory-qr {
    width: 100%;
    align-items: flex-start;
  }

  .regulatory-qr img {
    width: 120px;
    height: 120px;
  }

  .qr-label {
    font-size: 0.85rem;
    margin-top: 0.4rem;
  }
}

@media (max-width: 480px) {
  .regulatory-section h3 {
    font-size: 1rem;
  }

  .regulatory-details p {
    font-size: 0.85rem;
  }

  .regulatory-qr img {
    width: 100px;
    height: 100px;
  }

  .qr-label {
    font-size: 0.8rem;
  }
}


  /* recommendation cards*/
  .recommended-section {
    padding: 2rem;
  }
  
  .recommendation-heading {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
  }
  
  .carousel-container {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .card-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  
  .card-carousel::-webkit-scrollbar {
    display: none;
  }
  
  .property-card {
    min-width: 260px;
    max-width: 260px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-right: 1rem;
    transition: transform 0.2s ease;
  }
  
  .property-card:hover {
    transform: translateY(-4px);
  }
  
  .property-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
  }
  
  .property-details {
    padding: 0.75rem 1rem;
  }
  
  .property-type {
    font-size: 0.85rem;
    color: #6c2bd9;
    margin-bottom: 0.3rem;
  }
  
  .property-details h4 {
    font-size: 1.2rem;
    margin: 0.2rem 0;
    color: #222;
  }
  
  .location {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 0.5rem;
  }
  
  .property-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #777;
  }
  
  .prev-btn, .next-btn {
    background-color: #fff;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: background-color 0.2s ease;
  }
  
  .prev-btn:hover, .next-btn:hover {
    background-color: #f0f0f0;
  }
  
  @media (max-width: 768px) {
  .recommended-section {
    padding: 1rem;
  }

  .recommendation-heading {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }

  .carousel-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .card-carousel {
    gap: 0.8rem;
    padding-bottom: 0.5rem;
  }

  .property-card {
    min-width: 220px;
    max-width: 220px;
    margin-right: 0.8rem;
  }

  .property-card img {
    height: 120px;
  }

  .property-details {
    padding: 0.6rem 0.8rem;
  }

  .property-details h4 {
    font-size: 1.05rem;
  }

  .property-type,
  .location {
    font-size: 0.8rem;
  }

  .property-info {
    font-size: 0.7rem;
    gap: 0.4rem;
  }

  .prev-btn,
  .next-btn {
    font-size: 1.3rem;
    padding: 0.4rem;
  }
}

@media (max-width: 480px) {
  .property-card {
    min-width: 100%;
    max-width: 100%;
  }

  .property-card img {
    height: 100px;
  }

  .property-details h4 {
    font-size: 1rem;
  }

  .property-type,
  .location,
  .property-info {
    font-size: 0.75rem;
  }
}



  /* last cards */
  .explore-listings-section {
    padding: 2rem;
    background-color: #f7f8fa;
  }
  
  .explore-listings-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center;
  }
  
  .features-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .feature-btn {
    background-color: #fff;
    border-radius: 10px;
    padding: 1rem 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 180px;
    cursor: pointer;
  }
  
  .feature-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  }
  
  .feature-btn .icon {
    font-size: 1.8rem;
    color: #6c2bd9;
  }
  
  .feature-btn p {
    margin: 0;
    font-weight: bold;
    font-size: 1rem;
  }
  
  .feature-btn span {
    font-size: 0.85rem;
    color: #555;
    display: block;
    margin-top: 0.2rem;
  }
  
  @media (max-width: 768px) {
  .explore-listings-section {
    padding: 1.2rem;
  }

  .explore-listings-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .features-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .feature-btn {
    width: 100%;
    max-width: 320px;
    padding: 0.8rem 1rem;
    gap: 0.6rem;
  }

  .feature-btn .icon {
    font-size: 1.6rem;
  }

  .feature-btn p {
    font-size: 0.95rem;
  }

  .feature-btn span {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .feature-btn {
    max-width: 100%;
    padding: 0.7rem 0.9rem;
  }

  .feature-btn .icon {
    font-size: 1.4rem;
  }

  .feature-btn p {
    font-size: 0.9rem;
  }

  .feature-btn span {
    font-size: 0.75rem;
  }
}



  /* footer*/
  .footer-section {
    background-color: #f7f8fa;
    padding: 2rem;
    font-family: sans-serif;
    color: #333;
  }
  
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
/*    gap: 2rem;

*/

    margin-bottom: 2rem;
  }
  
  .footer-brand img {
    width: 140px;
  }
  
  .footer-links {
    display: flex;
/*    gap: 2rem;
*/
  }
  
  .link-group h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #222;
  }
  
  .link-group a {
    display: block;
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 0.3rem;
    text-decoration: none;
  }
  
  .footer-apps a img {
    height: 40px;
    margin-right: 0.5rem;
  }
  
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ddd;
    padding-top: 1rem;
  }
  
  .legal-links a {
    margin-right: 1rem;
    font-size: 0.85rem;
    color: #555;
    text-decoration: none;
  }
  
  .footer-meta {
    display: flex;
    align-items: center;
 /*   gap: 1rem;
 */
  }
  
  .language {
    font-size: 0.85rem;
    color: #444;
  }
  
  .social-icons a {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    color: #6c2bd9;
    text-decoration: none;
  }
  
  @media (max-width: 768px) {
  .footer-section {
    padding: 1.2rem;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .link-group h4 {
    font-size: 0.95rem;
  }

  .link-group a {
    font-size: 0.8rem;
  }

  .footer-apps a img {
    height: 36px;
    margin-right: 0.4rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding-top: 1rem;
  }

  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .legal-links a {
    font-size: 0.8rem;
    margin-right: 0;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .language {
    font-size: 0.8rem;
  }

  .social-icons a {
    font-size: 1.1rem;
    margin-right: 0.4rem;
  }
}

@media (max-width: 480px) {
  .footer-brand img {
    width: 120px;
  }

  .link-group h4 {
    font-size: 0.9rem;
  }

  .link-group a {
    font-size: 0.75rem;
  }

  .footer-apps a img {
    height: 32px;
  }

  .language {
    font-size: 0.75rem;
  }

  .social-icons a {
    font-size: 1rem;
  }
}