/* About section styling */
.about_area {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
}

/* Headings */
.small-heading {
 
    margin-bottom: 10px;

    font-size: 18px;
    color: #F18A21;
    font-weight: 500;
    font-family: "Yantramanav";
}

.main-heading {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.orange-text {
    color: #F68C1E;
}

/* Text content */
.about-content p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

/* Images */
.left-images img, .right-images img {
    width: 75%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.left-images img:hover, .right-images img:hover {
    transform: translateY(-5px);
}

/* Button styling */
.cta-button .btn {
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-width: 2px;
}

.cta-button .btn:hover {
    background-color: #333;
    color: white;
    border-color: #333;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .main-heading {
        font-size: 2rem;
    }
    
    .about-content {
        padding: 0 15px;
        margin: 30px 0;
    }
}

/* Mobile adjustments */
@media (max-width: 767.98px) {
    .about_area {
        padding: 50px 0;
    }
    
    .left-images, .right-images {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .main-heading {
        font-size: 1.8rem;
    }
    
    .left-images .image-top,
    .right-images .image-top {
        margin-bottom: 1rem !important;
    }
   
    
}

/* Small mobile adjustments */
@media (max-width: 575.98px) {
    .main-heading br {
        display: none;
    }
}



/* Popular Categories Section Styles */
.popular-categories {
    background-color: #ffffff;
  }
  
  /* Section title styling */
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .section-subtitle {
    color: #555;
    margin-bottom: 2rem;
  }
  
  .text-orange {
    color: #F68C1E;
  }
  
  /* Category cards */
  .category-card {
    height: 300px;
    border-radius: 25px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .category-card:hover {
    transform: translateY(-5px);
  }
  
  .category-card img {
    height: 100%;
    object-fit: cover;
  }
  
  /* Overlay to darken the image for better text visibility */
  .overlay {
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
    pointer-events: none;
  }
  
  .category-content {
    z-index: 1;
    width: 100%;
  }
  
  .category-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
  }
  
  .category-content p {
    font-size: 0.9rem;
    opacity: 0.9;
  }
  
  /* Responsive adjustments */
  @media (max-width: 767.98px) {
    .section-title {
      font-size: 2rem;
    }
    
    .category-card {
      height: 180px;
    }
    
    .category-content h3 {
      font-size: 1.3rem;
    }
    
    .category-content p {
      font-size: 0.8rem;
    }
  }
  
  @media (max-width: 575.98px) {
    .section-title {
      font-size: 1.8rem;
    }
    
    .category-card {
      height: 160px;
    }
    
    .category-content {
      padding: 0.75rem !important;
    }
    
    .category-content h3 {
      font-size: 1.2rem;
      margin-bottom: 0.25rem !important;
    }
    
    .category-content p {
      font-size: 0.75rem;
      line-height: 1.3;
    }
  }