* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}
/* .amita-regular {
    font-family: "Amita", serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .amita-bold {
    font-family: "Amita", serif;
    font-weight: 700;
    font-style: normal;
  } */

/* .roboto-<uniquifier> {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    font-variation-settings:
    "wdth" 100;
  } */
body {
  position: relative;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 2px solid #888;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
}
.nav .right {
  display: flex;
  /* padding: 10px; */
}
.nav .right ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  /* padding: 10px; */
}
.nav .right ul li {
  list-style: none;
  margin: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  position: relative;
  font-family: 14px;
}
.nav .right ul li img {
  height: 15px;
}
.red-dot {
  position: absolute;
  top: 0;
  left: 12px;
  height: 5px;
  width: 5px;
  background-color: #f00;
  border-radius: 50%;
}
.right button {
  background: #3274d0;
  color: white;
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  font-size: 17px;
}
.Page-1 {
  margin-top: 80px;
  padding: 20px 30px;
  min-height: 100dvh;
  background: #fff;
}
/* Search Container */
.search-container {
  /* background: #f5f9ff; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

/* Search Title */

.highlight {
  color: #007bff;
}

/* Search Bar */
.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

/* Location Input */
.location-input {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 8px;
}

.location-icon {
  width: 18px;
  margin-right: 5px;
}

.location-field {
  border: none;
  outline: none;
  font-size: 14px;
  width: 80px;
}

/* Search Input */
.search-input {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 8px;
  width: 250px;
}

.search-field {
  border: none;
  outline: none;
  font-size: 14px;
  flex: 1;
}

.voice-icon {
  width: 18px;
  margin: 0 8px;
  cursor: pointer;
}

.search-button {
  background: #ff5a1f;
  border: none;
  padding: 8px;
  border-radius: 5px;
  cursor: pointer;
}

.search-icon {
  width: 18px;
}

/* Download App Button */
.download-app {
  margin-left: auto;
}

.download-button {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  position: absolute;
  top: 40%;
  right: 20px;
}

.app-icon {
  width: 18px;
  margin-right: 5px;
}

.jd-logo {
  width: 18px;
  margin-left: 5px;
}

/* page 1 */
.carousel {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  margin-top: 20px;
}
.carousel-item {
  min-width: 200px;
  height: 300px;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  scroll-snap-align: start;
  flex: 1;
  position: relative;
  color: white;
  /* background: red; */
  transition: 500ms ease-in-out;
  overflow: hidden;
}
.carousel-item img {
  height: 200px;
  width: auto;
  transition: 500ms ease-in-out;
  position: absolute;
  right: 0;
  bottom: 0;
}
.carousel-item.item1 {
  flex: 3;
  color: black;
  padding: 0;
}
.carousel-item:hover .img1 {
  transform: scale(1.1);
}
.loan-card {
  background: #fdf6eb;
  padding: 20px;
  /* margin: -10px; */
  height: 100%;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.jio-logo {
  background: gold;
  color: #000;
  padding: 5px 10px;
  border-radius: 50%;
  font-weight: bold;
}

.apply-btn {
  background: goldenrod;
  border: none;
  padding: 10px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}
.it1 {
  background: #397bd1;
}
.it2 {
  background: #32539c;
}
.blue {
  background-color: #2f68c7;
  color: white;
}
.purple {
  background-color: #6769c9;
  color: white;
}

.green {
  background-color: #4da980;
  color: white;
}
.carousel-item i {
  background: #2f68c7;
  rotate: -90deg;
  position: absolute;
  left: 0px;
  font-size: 20px;
  padding: 4px;
  bottom: 20px;
  &:hover {
    background: green;
  }
}
/* side nav btns  */
.side-buttons {
  position: fixed;
  right: -90px;
  top: 40%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
  width: fit-content;
  display: flex;
  gap: 90px;
}

.btn {
  display: block;
  width: 120px;
  padding: 10px;
  text-align: center;
  color: white;
  font-weight: bold;
  text-decoration: none;
  transform: rotate(-90deg);
  transform-origin: left center;
  border-radius: 10px 10px 0 0;
}

.advertise {
  background-color: #e76f26;
}

.listing {
  background-color: #2f68c7;
}
/* category  */
.category-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 20px;
  margin: 30px 0;
}
.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  text-align: center;
  border-radius: 10px;
  padding: 10px;
  /* box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1); */
  border: 1px solid #ccc;
  transition: transform 0.2s ease-in-out;
  /* background: red; */
}

.category-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  /* background: rebeccapurple; */
}

.category-item p {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.category-item:hover {
  transform: scale(1.05);
}
/* grids  */
.categories-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  width: 100%;
  margin: 30px 0;
  /* background: blue; */
}
.category-box {
  width: 49%;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #ccc;
}
h2 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.category-items {
  display: flex;
  gap: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-item-1 {
  text-align: center;
  width: 30%;
  /* background: red; */
}

.category-item-1 img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}

.category-item-1 p {
  font-size: 16px;
  margin-top: 5px;
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-button {
  width: 120px;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  color: white;
  cursor: pointer;
  border-radius: 10px 0 0 10px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.advertise {
  background-color: #e57c3a;
}

.free-listing {
  background-color: #2e73d6;
}
/* section 3 */
/* Container */
.container {
  /* width: 80%; */
  margin: auto;
  font-family: Arial, sans-serif;
}

/* Sections */
.section {
  background: #fff;
  padding: 20px;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
  /* margin-bottom: 20px; */
  border: #ddd 1px solid;
  display: flex;
  align-items: center;
  height: 300px;
  gap: 20px;
}
.section .left {
  display: flex;
  flex-direction: column;
}
.bills-recharge {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.travel-bookings {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
/* Section Titles */
.section-title {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: bold;
}

/* Logos */
.logo {
  margin-left: 10px;
  height: 20px;
}

/* Section Description */
.section-description {
  color: #666;
  margin-bottom: 10px;
}

/* Explore Link */
.explore-link {
  color: #007bff;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 15px;
}

/* Icons Container */
.icons-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Icon Box */
.icon-box {
  text-align: center;
  width: 120px;
  /* height: 150px; */
  border-radius: 10px;
  border: 1px solid #ddd;
}

/* Icon Image */
.icon-image {
  width: 100px;
  height: 100px;
  /* padding: 10px; */
  /* background: #f9f9f9; */
  border-radius: 10px;
}

/* Icon Text */
.icon-text {
  font-weight: bold;
  /* margin-top: 5px; */
  margin: 10px;
}

/* Icon Subtext */
.icon-subtext {
  font-size: 12px;
  color: green;
}

/* Container */
.top-cities-container {
  /* width: 90%; */
  margin: auto;
  margin: 30px 0;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
  border: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
}

/* Title */
.top-cities-title {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  /* wid */
}

/* "New" Badge */
.new-badge {
  background: #ff4d4d;
  color: #fff;
  font-size: 12px;
  padding: 3px 8px;
  margin-left: 10px;
  border-radius: 5px;
  font-weight: bold;
}

/* Grid Layout */
.cities-grid {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* City Card */
.city-card {
  display: flex;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  width: 250px;
  transition: transform 0.3s ease-in-out;
  flex: 1;
}

.city-card:hover {
  transform: scale(1.05);
}

/* City Image */
.city-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

/* City Info */
.city-info {
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* City Name */
.city-name {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}

/* Explore Link */
.explore-link {
  font-size: 14px;
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.explore-link:hover {
  text-decoration: underline;
}

/* Popular Searches Container */
.popular-searches-container {
  /* width: 90%; */
  margin: auto;
  /* padding: 20px; */
  background: #fff;
  
}

/* Title */
.popular-searches-title {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Search Cards Wrapper */
.search-cards-wrapper {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 10px;
}

/* Search Card */
.search-card {
  flex: 0 0 auto;
  width: 250px;
  border-radius: 8px;
  overflow: hidden;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
  border: 1px solid #ddd;
  transition: transform 0.3s ease-in-out;
}

.search-card:hover .search-image {
  transform: scale(1.05);
}
.Page-2 {
  margin-top: 80px;
  /* background: #ddd; */
  padding: 20px 30px;
  min-height: 100dvh;
}
/* Search Image */
.search-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: 500ms ease-in-out;
}

/* Search Info */
.search-info {
  background: #2d7af4;
  color: #fff;
  padding: 15px;
  text-align: center;
  height: 130px;
}

/* Search Title */
.search-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Search Button */
.search-button {
  background: #fff;
  color: #2d7af4;
  font-size: 14px;
  font-weight: bold;
  padding: 8px 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.search-button:hover {
  background: #f8f9fa;
}

.sunny-day-essentials {
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  /* box-shadow: 0 2px 10pxrgba(0, 0, 0, 0.1); */
  margin: 20px 0;
  border: 1px solid #ccc;
}

.section-title {
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.seasonal-badge {
  background: #e74c3c;
  color: white;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  margin-left: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  margin: 5px 0 15px;
}

.essentials-wrapper {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 10px;
  overflow-x: scroll;
  min-width: 100%;
}

.essential-card {
  background: #f9f9f9;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #ccc;   
  display: flex;
  width: 450px;
}
.essential-card div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: left;
}
.essential-image {
  width: 150px;
  height: 100px;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.essential-title {
  font-size: 16px;
  font-weight: bold;
  margin: 8px 0;
}

.explore-link {
  font-size: 14px;
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}
.services-container {
  padding: 40px 20px;
  margin: 20px;
  background: #fff;
  border-top: 2px solid #ddd;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
  /* font-family: Arial, sans-serif; */
}

.services-container h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
}

.services-container p {
  line-height: 1.6;
  font-size: 14px;
  margin: 10px 0;
  color: #555;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.service {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  /* background: #f8f8f8; */
  padding: 15px;
  border-radius: 8px;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
  transition: transform 0.2s ease-in-out;
}

.service:hover {
  transform: translateY(-5px);
}

.service img {
  width: 30px;
  height: 30px;
}

.service h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #333;
}

.service p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .services-list {
    grid-template-columns: 1fr;
  }
}
.categories-section h2,
.trending-section h2,
.explore-section h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #333;
}

.categories-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.categories-tabs button {
  padding: 10px 15px;
  border: none;
  background: #f5f5f5;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.categories-tabs button:hover {
  background: #ddd;
}

.category-links,
.trending-links,
.explore-links,
.cities-links {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}
.cities-links {
  font-size: 14px;
  color: #333;
  /* text-align: center; */
  line-height: 1.8;
}

.cities-links a {
  text-decoration: none;
  color: #007bff;
  padding: 0 8px;
}

.cities-links a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .categories-tabs {
    flex-direction: column;
  }

  .sidebar-buttons {
    right: 10px;
  }
}
.footer {
  border-top: 1px solid #ccc;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: auto;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
}

.footer-column h3 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #333;
  font-weight: bold;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  color: #007bff;
}

.footer-bottom {
  text-align: left;
  padding: 15px 0;
  border-top: 1px solid #ddd;
  font-size: 14px;
  color: #555;
}

.footer-bottom a {
  color: #007bff;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-column {
    text-align: center;
  }
}
.scrolltotop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ccc;
  color: white;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  /* display: none; */
  scroll-behavior: smooth;
}
* {
  scroll-behavior: smooth;
}
/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  /* background-color: #f8f9fa; */
}

.section-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Activity Card Container */
.activity-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 60px;
}
.activity-container h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 15px;
  width: 100%;
}

/* Individual Activity Card */
.activity-card {
  background: #fff;
  border-radius: 10px;
  /* box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1); */
border: 1px solid #ccc;
  overflow: hidden;
  width: 32%;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.activity-card.txt {
  padding: 20px;
  text-align: center;
  color: #007bff;
}
.activity-card:hover .card-img {
  transform: scale(1.05);
  /* box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2); */

}
.card-img{
    transition: 300ms ease-in-out;
    margin: 10px 0;
    overflow: hidden;
}
/* Card Header */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  font-weight: bold;
}

.card-header h3 {
  font-size: 16px;
  margin: 0;
}

.whatsapp {
  text-decoration: none;
  background: #fff;
  color: black;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
}

.whatsapp i {
  margin-right: 5px;
  color: #0f0;
  font-size: 18px;
}

/* Location */
.location {
  padding: 0 15px;
  font-size: 14px;
  color: #555;
}

/* Image */
.card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Card Footer */
.card-footer {
  padding: 15px;
}

.user {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.profile-pic {
  background: #ddd;
  color: #333;
  font-weight: bold;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-right: 10px;
}

.user-info h4 {
  margin: 0;
  font-size: 14px;
}

.user-info p {
  margin: 0;
  font-size: 12px;
  color: #777;
}

/* Rating Stars */
.rating {
  color: #ffa500;
  font-size: 14px;
}

/* Review Text */
.review {
  font-size: 14px;
  color: #333;
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .activity-container {
    flex-direction: column;
    align-items: center;
  }
}
