.container {
  margin: 0 auto;
  max-width: 100%;
  overflow: hidden;
}
/* body img {
  max-width: 100%;
} */
/* 
a {
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

a:hover {
  color: #F28123;
  text-decoration: none;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, 
h5, .h5,
h6, .h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #051922;
} */

/* h1:last-child, .h1:last-child,
h2:last-child, .h2:last-child,
h3:last-child, .h3:last-child,
h4:last-child, .h4:last-child,
h5:last-child, .h5:last-child,
h6:last-child, .h6:last-child {
  margin: 0;
} */
/* 
h1, .h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 4rem;
}

@media only screen and (max-width: 767.96px) {
  h1, .h1 {
    font-size: 3rem;
    line-height: 3.25rem;
  }
}

@media only screen and (max-width: 575.96px) {
  h1, .h1 {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }
}

h2, .h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 3.25rem;
}

@media only screen and (max-width: 767.96px) {
  h2, .h2 {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }
}

@media only screen and (max-width: 575.96px) {
  h2, .h2 {
    font-size: 2rem;
    line-height: 2.25rem;
  }
}

h3, .h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.25rem;
}

@media only screen and (max-width: 575.96px) {
  h3, .h3 {
    font-size: 1.75rem;
    line-height: 2rem;
  }
}

h4, .h4 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.75rem;
}

@media only screen and (max-width: 575.96px) {
  h4, .h4 {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5rem;
}

h6, .h6 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
} */

/* p {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.1px;
  line-height: 1.8;
  color: #051922;
  margin: 0 0 1.25rem 0;
} */

/* p:last-child {
  margin: 0;
} */

/* -----------------------------------------------------------------------------

# All Common Styles

----------------------------------------------------------------------------- */
/* .loader {
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1111;
  background: #fff;
  overflow-x: hidden;
}

.loader-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 50px;
  width: 50px;
}

.circle {
  width: 8vmax;
  height: 8vmax;
  border-right: 4px solid #000;
  border-radius: 50%;
  -webkit-animation: spinRight 800ms linear infinite;
  animation: spinRight 800ms linear infinite;
}

.circle:before {
  content: '';
  width: 6vmax;
  height: 6vmax;
  display: block;
  position: absolute;
  top: calc(50% - 3vmax);
  left: calc(50% - 3vmax);
  border-left: 3px solid #F28123;
  border-radius: 100%;
  -webkit-animation: spinLeft 800ms linear infinite;
  animation: spinLeft 800ms linear infinite;
}

.circle:after {
  content: '';
  width: 6vmax;
  height: 6vmax;
  display: block;
  position: absolute;
  top: calc(50% - 3vmax);
  left: calc(50% - 3vmax);
  border-left: 3px solid #F28123;
  border-radius: 100%;
  -webkit-animation: spinLeft 800ms linear infinite;
  animation: spinLeft 800ms linear infinite;
  width: 4vmax;
  height: 4vmax;
  top: calc(50% - 2vmax);
  left: calc(50% - 2vmax);
  border: 0;
  border-right: 2px solid #000;
  -webkit-animation: none;
  animation: none;
}

@-webkit-keyframes spinLeft {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(720deg);
    transform: rotate(720deg);
  }
}

@keyframes spinLeft {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(720deg);
    transform: rotate(720deg);
  }
}

@-webkit-keyframes spinRight {
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes spinRight {
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.mt-80 {
  margin-top: 80px;
}

@media only screen and (max-width: 767.96px) {
  .mt-80 {
    margin-top: 50px;
  }
}

.mb-80 {
  margin-bottom: 80px;
}

@media only screen and (max-width: 767.96px) {
  .mb-80 {
    margin-bottom: 50px;
  }
}

.mt-100 {
  margin-top: 100px;
}

@media only screen and (max-width: 767.96px) {
  .mt-100 {
    margin-top: 80px;
  }
}

.mb-100 {
  margin-bottom: 100px;
}

@media only screen and (max-width: 767.96px) {
  .mb-100 {
    margin-bottom: 80px;
  }
}

.mt-150 {
  margin-top: 150px;
}

@media only screen and (max-width: 767.96px) {
  .mt-150 {
    margin-top: 100px;
  }
}

.mb-150 {
  margin-bottom: 150px;
}

@media only screen and (max-width: 767.96px) {
  .mb-150 {
    margin-bottom: 100px;
  }
}

.pt-80 {
  padding-top: 80px;
}

@media only screen and (max-width: 767.96px) {
  .pt-80 {
    padding-top: 50px;
  }
}

.pb-80 {
  padding-bottom: 80px;
}

@media only screen and (max-width: 767.96px) {
  .pb-80 {
    padding-bottom: 50px;
  }
}

.pt-100 {
  padding-top: 100px;
}

@media only screen and (max-width: 767.96px) {
  .pt-100 {
    padding-top: 80px;
  }
}

.pb-100 {
  padding-bottom: 100px;
}

@media only screen and (max-width: 767.96px) {
  .pb-100 {
    padding-bottom: 80px;
  }
}

.pt-150 {
  padding-top: 150px;
}

@media only screen and (max-width: 767.96px) {
  .pt-150 {
    padding-top: 100px;
  }
}

.pb-150 {
  padding-bottom: 150px;
}

@media only screen and (max-width: 767.96px) {
  .pb-150 {
    padding-bottom: 100px;
  }
}

.gray-bg {
  background-color: #f5f5f5;
} */

/* .orange-text {
  color: #F28123;
}

.blue-bg {
  background-color: #162133;
}

a.boxed-btn {
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  background-color: #F28123;
  color: #fff;
  padding: 10px 20px;
}

a.bordered-btn {
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  color: #fff;
  border: 2px solid #F28123;
  padding: 7px 20px;
}

a.read-more-btn {
  display: inline-block;
  margin-top: 15px;
  color: #051922;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  font-weight: 700;
}

a.read-more-btn:hover {
  color: #F28123;
}

a.boxed-btn, a.bordered-btn, a.cart-btn {
  border-radius: 50px;
}

.section-title h3 {
  font-size: 40px;
  position: relative;
  padding-bottom: 15px;
  padding-top: 40px;
}

.section-title h3:after {
  position: absolute;
  content: '';
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: 50px;
  height: 2px;
  background-color: #F28123;
  margin: 0 auto;
}

.section-title p {
  font-size: 15px;
  width: 530px;
  margin: 0 auto;
  color: #555;
  margin-top: 10px;
  line-height: 1.8;
}

.section-title {
  margin-bottom: 20px;
}

.breadcrumb-bg {
  background-image: url(../img/breadcrumb-bg.jpg);
} */

/* .breadcrumb-text p {
  color: #F28123;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 7px;
}

.breadcrumb-text h1 {
  font-size: 50px;
  font-weight: 900;
  color: #fff;
  margin: 0;
  margin-top: 20px;
}

.breadcrumb-section {
  padding: 150px 0;
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 1;
  background-attachment: fixed;
  padding-top: 200px;
}

.breadcrumb-section:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #07212e;
  z-index: -1;
  opacity: 0.8;
} */

/* Why Choose Us Section */
.why-choose-us {
  padding: 30px 10px;
  text-align: center;
  background-color: #f9f9f9;
}

.why-title {
  margin-bottom: 40px;
  position: relative;
}

.why-title h2 {
  /* font-size: 32px; */
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.why-title .why-decorator {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.why-title .why-decorator span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #ff7f00;
}

.why-title .why-decorator span:nth-child(2) {
  width: auto;
  color: #ff7f00;
  font-size: 18px;
  font-weight: bold;
}

.why-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.why-card {
  max-width: 300px;
  text-align: center;
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.why-card img {
  width: 60px;
  height: auto;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 20px;
  font-weight: bold;
  color: #ff7f00;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 40px 20px;
  background-color: #fff7f2;
  background-image: url("/assets/images/texture.png"); /* Ensure the correct path */
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #333;
}

.hero p {
  font-size: 15px;
  color: #666;
  margin-bottom: 16px;
}

.hero button {
  padding: 10px 20px;
  background-color: #ff6600;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.hero button:hover {
  background-color: white;
  color: #e66e00;
}

/* Media Queries for Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .hero h1 {
    font-size: 29px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero button {
    padding: 12px 24px;
  }
}
@media screen and (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 14.5px;
  }
}
/* Footer */
/* Common styles */
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: orange;
  color: white;
}

.footer-content {
  text-align: center;
  width: 100%;
}

.socials,
.address {
  margin-bottom: 15px;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .socials,
  .address {
    margin-bottom: 10px;
  }

  .logo-container {
    margin-bottom: 20px;
  }
}

.footer {
  background-color: #ff6600;
  color: white;
  padding: 40px 30px;
}

.footer-container {
  background-color: white;
  border-radius: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

.footer-logo,
.footer-address,
.footer-sk-logo {
  flex: 1;
  text-align: center;
}

.footer-logo img {
  width: 200px;
  height: auto;
  /* padding-left: 20px; */
  margin-bottom: 10px;
}
.footer-sk-logo img {
  width: 100px;
  height: auto;
  margin-top: 10px;
}

.footer-logo p {
  font-size: 16px;
  font-weight: bold;
}

.footer-socials h3,
.footer-address h3 {
  margin-bottom: 10px;
  color: #ff6600;
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  /* text-align: center; */
}

.footer-socials .social-icons a {
  margin: 0 10px;
  color: #828282;
  text-decoration: none; /* Remove underline */
  color: inherit; /* Keep the default text color */
  /* margin: left; */
}

.footer-socials .social-icons img {
  width: 25px;
  height: auto;
  transition: transform 0.3s;
  margin: left;
}

.footer-socials .social-icons img:hover {
  transform: scale(1.2);
}

.footer-address p {
  font-size: 16px;
  line-height: 1.5;
  color: #828282;
  text-align: left;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  border-top: 1px solid white;
  padding-top: 10px;
}
.footer-socials {
  text-align: center;
}

.footer-socials h3 {
  margin-bottom: 10px;
  color: #ff6600;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  /* color: black; */
  color: #828282;
}

.social-item img {
  width: 20px; /* Adjust size of icons */
  height: auto;
}
/* Desktop-specific styles */
@media screen and (max-width: 768px) {
  .footer {
    padding: 25px 20px; /* Reduced padding for mobile view */
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-socials,
  .footer-address {
    text-align: center; /* Center align socials and address */
  }

  .footer-socials h3,
  .footer-address h3 {
    text-align: center; /* Center titles on mobile */
  }

  .footer-address p {
    text-align: center;
  }
}

/* Testimonials */
/* General Styling */
.testimonials-container {
  background-color: #f0f8ff; /* Light blue background */
  padding: 30px;
  text-align: center;
}

.testimonials-container h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #000;
}

.testimonials-list {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth; /* Smooth scrolling */
  gap: 20px; /* Reduced gap for smaller cards */
  padding: 10px;
}

.testimonial-card {
  display: flex;
  align-items: top; /* Align avatar and content vertically */
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 15px;
  min-width: 300px;
  max-width: 350px; /* Limit the card width */
  gap: 10px; /* Reduce gap between avatar and content */
  flex-shrink: 0;
}

.testimonial-avatar {
  background-color: #ccc;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.testimonial-content {
  text-align: left;
  flex: 1;
}

.testimonial-content h4 {
  font-size: 14px;
  font-weight: bold;
  color: #ff4500; /* Orange */
  margin: 0;
  padding-top: 7px;
}

.testimonial-content .location {
  font-size: 12px;
  color: #828282;
  margin: 3px 0;
}

.testimonial-content .feedback {
  font-size: 13px;
  color: #333;
  line-height: 1.5;
  font-style: italic;
  /* display: -webkit-box; 
  -webkit-line-clamp: 2;  */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Mobile View (Adjustments for Smaller Screens) */
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: row;
    align-items: flex-start;
    min-width: 250px;
    max-width: 280px;
    gap: 20px;
  }

  .testimonial-avatar {
    width: 40px;
    height: 40px;
  }

  .testimonial-content h4 {
    font-size: 13px;
  }

  .testimonial-content .location {
    font-size: 11px;
  }

  .testimonial-content .feedback {
    font-size: 12px;
  }
}
.testimonials-list {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 10px;

  /* Hide the scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonials-list::-webkit-scrollbar {
  display: none;
}

.testimonial-avatar img {
  width: 50px; /* Adjust the size of the avatar */
  height: 50px;
  border-radius: 50%; /* Make the image round */
  object-fit: cover; /* Ensures the image covers the space without distortion */
}

/* Sports */
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: #fceae7;
  color: #333;
}

.app {
  padding: 20px;
  text-align: center;
}

.title {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Grid Layout */
.grid-container {
  display: grid;
  grid-template-columns: repeat(4, minmax(200px, 1fr));
  gap: 15px;
  padding-left: 50px;
  padding-right: 50px;
}

.grid-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.2s;
}

.grid-item:hover {
  transform: scale(1.05);
  .item-title {
    color: #000;
  }
}

.item-image {
  width: 100%;
  border-radius: 5px;
}

.item-title {
  margin-top: 10px;
  font-size: 0.9rem;
  text-align: left;
  color : #828282
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.modal-image {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 15px;
}

.modal-title {
  font-weight: lighter;
  text-align: left;
}

.modal-button {
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #ff7f50;
  border: none;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.modal-button:hover {
  background-color: #ff5733;
}

/* Festivals section */
/* General styles */
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: #fceae7;
  color: #333;
}

.app {
  padding: 20px;
  text-align: center;
}

.title {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Categories Section */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.filter-button {
  padding: 10px 15px;
  margin: 5px;
  font-size: 1rem;
  cursor: pointer;
  background-color: white;
  color: #e66e00;
  /* border: none; */
  border: 1px solid #e66e00;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  /* border: #e66e00; */
}

.filter-button.active {
  background-color: #ff6b4a;
  color: white;
}

.filter-button:hover {
  background-color: #ff6b4a;
}

/* Grid Layout */
.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 0 10px;
}

.grid-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.2s;
}

.grid-item:hover {
  transform: scale(1.05);
}

.item-image {
  width: 100%;
  border-radius: 5px;
}

.item-title {
  margin-top: 10px;
  font-size: 16px;
  /* font-weight: bold; */
  text-align: left;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.modal-image {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 15px;
}

.modal-title {
  /* font-size: 1.2rem; */
  margin-bottom: 15px;
}

.modal-button {
  padding: 10px 20px;
  width: 100%;
  font-size: 1rem;
  background-color: #ff7f50;
  border: none;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.modal-button:hover {
  background-color: #ff5733;
}

/* Responsive Design */
@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-button {
    font-size: 0.9rem;
    padding: 8px 12px;
  }

  .title {
    font-size: 1.5rem;
  }

  .item-title {
    color: #000;
  }
}

@media (max-width: 480px) {
  .grid-container {
    grid-template-columns: 1fr;
  }

  .filter-button {
    font-size: 0.8rem;
    padding: 6px 10px;
  }

  .title {
    font-size: 1.2rem;
  }
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #fff;
}

.logo {
  font-size: 20px;
  font-weight: bold;
}

.menu {
  display: flex;
  gap: 20px;
}

.nav-item {
  text-decoration: none;
  color: black;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-item.active {
  color: orange;
}

.nav-item:hover {
  color: orange;
}
