/* Basic Reset */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    background-color: #fff;
    color: #3c4043;
}

.container {
    max-width: 500px; /* Mobile width */
    margin: 0 auto;
    padding: 15px;
}

/* Header */
h1 { font-size: 22px; margin-bottom: 5px; font-weight: 500; }
.sub-text { color: #70757a; font-size: 14px; margin: 0; }
.status { color: #188038; font-weight: bold; font-size: 14px; }

/* Horizontal Gallery */
.gallery {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    margin: 20px 0;
    scrollbar-width: none; /* Hides scrollbar on Firefox */
}
.gallery::-webkit-scrollbar { display: none; } /* Hides scrollbar on Chrome/Safari */

.gallery img {
    width: 250px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.action-buttons {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    text-align: center;
  }
  
  .action {
    text-decoration: none;
    color: #1a73e8;
    font-size: 14px;
  }
  
  .circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 8px;
    background-color: white;
  }
  
  .circle:hover {
    background-color: #f1f3f4;
  }

  .action-buttons {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    text-align: center;
  }
  .info-section {
    margin-top: 20px;
    background: #f5f5f5;
    padding: 15px;
    border-radius: 10px;
  }
  
  .dropdown {
    cursor: pointer;
  }
  
  .dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding-left: 35px;
  }
  
  .dropdown.active .dropdown-content {
    max-height: 300px;
    margin-top: 10px;
  }
  
  .icon {
    font-size: 20px;
    margin-right: 10px;
  }
  
  .arrow {
    transition: transform 0.3s ease;
  }
  
  .dropdown.active .arrow {
    transform: rotate(180deg);
  }
  
  .info-item {
    display: flex;
    align-items: center;
    margin-top: 15px;
  }

  .slider {
    position: relative;
    max-width: 700px;
    margin: auto;
    overflow: hidden;
  }
  
  .slide {
    display: none;
  }
  
  .slide img {
    width: 100%;
    border-radius: 10px;
  }
  
  /* Arrows */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 10px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    transform: translateY(-50%);
  }
  
  .prev {
    left: 10px;
  }
  
  .next {
    right: 10px;
  }
  
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  }
  .social-icons a {
    font-size: 24px;
    margin: 10px;
    color: #090909;
  }

  .action-btn{
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    color:#25D366;
    text-align:center;
  }
  
  .circle{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:8px;
    font-size:24px;
  }
  
  .whatsapp{
    border:2px solid #f2f5f3;
    color:#25D366;
  }
  
  .whatsapp:active{
    background:#e6f9f0;
  }
  .address-section{
  color: #1a73e8;

  }
  .address{
    color: #1a73e8;
  }
  .material-symbols-outlined {
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24
  }