html, body {
  overflow-x: hidden;
  font-family: "Clash Display", sans-serif;
}

.fa-solid, .fas {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}

.fa-regular, .far {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 400 !important;
}

.fa-brands, .fab {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
}

/* Book Your Event booging page css */
.input-style {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 2px solid #e5e7eb;
  outline: none;
  transition: 0.3s;
  font-size: 15px;
}

.input-style:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}


::-webkit-scrollbar {
  display: none;
}
.dropdown {
  transform: translateY(10px);
}

.group:hover .dropdown {
  transform: translateY(0);
}

ul li {
  transition: all 0.3s ease;
}


/* TESTIMONIAL SECTION CSS  */
@keyframes slideLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes slideRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.animate-left {
  display: flex;
  width: max-content;
  animation: slideLeft 20s linear infinite;
}

.animate-right {
  display: flex;
  width: max-content;
  animation: slideRight 20s linear infinite;
}


 /* EVENTS SECTION CSS */
.tab-btn {
  padding: 10px 22px;
  border-radius: 999px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.tab-btn:hover {
  background: #ee850d;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.tab-btn.active {
  background: linear-gradient(135deg, #fa8415, #f38d07);
  color: black;
  box-shadow: 0 8px 20px rgba(243, 140, 5, 0.5);
}

.tab-btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
}

.tab-btn:active::after {
  width: 200px;
  height: 200px;
}

@media (max-width: 640px) {
  .tab-btn {
    font-size: 12px;
    padding: 8px 16px;
  }
}


.tab-btn {
  padding: 10px 22px;
  border-radius: 999px;
  background: white;
  border: 1px solid #e5e5e5;
  transition: 0.3s;
}
.tab-btn:hover {
  background: #f38527;
}
.tab-btn.active {
  background: #f38527;
}

.menu-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.menu-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.menu-card:hover img {
  transform: scale(1.1);
}

.menu-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  opacity: 0;
  transition: 0.4s;
}

.menu-card:hover::after {
  opacity: 1;
}

.card-title {
  position: absolute;
  top: 15px;
  left: 15px;
  color: white;
  font-weight: 800;
  font-size: 22px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s;
}

.menu-card:hover .card-title {
  opacity: 1;
  transform: translateY(0);
}





/* footer SOCIAL ICON  css */
.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1f2937;
  border-radius: 50%;
  transition: 0.3s;
}

.social-icon:hover {
  background: #fa8415;
  color: black;
  transform: translateY(-4px);
}

.footer-link {
  transition: 0.3s;
}

.footer-link:hover {
  color: #fa8415;
  padding-left: 6px;
}


/* Our Services PAGE STYLES */


.service-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card .icon-box {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fa8415, #f38d07);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.service-card:hover .icon-box {
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 10px 30px rgba(53, 43, 6, 0.5);
}

.service-card:hover h3 {
  color: #f59e0b;
}

.service-card .learn-more {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.3s ease;
}

.service-card:hover .learn-more {
  opacity: 1;
  transform: translateX(0);
}

/* TESTIMONIAL CARDS */
.testimonial-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-card:hover img {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(250, 204, 21, 0.4);
}

.testimonial-card img {
  transition: all 0.4s ease;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 80px;
  color: #facc15;
  opacity: 0.2;
  font-family: 'Playball', cursive;
  line-height: 1;
}

/* SECTION HEADING ANIMATION */
.section-heading {
  position: relative;
  display: inline-block;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #fa8415, #f38d07);
  transition: width 0.5s ease;
}

.section-heading:hover::after {
  width: 80%;
}

/* FLOATING ANIMATION FOR ICONS */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.floating-icon {
  animation: float 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.4); }
  50% { box-shadow: 0 0 20px 10px rgba(250, 204, 21, 0); }
}

.pulse-icon {
  animation: pulse-glow 2s ease-in-out infinite;
}

/* STAGGERED REVEAL ANIMATION */
.service-card-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* BUTTONS */
.btn-yellow {
  background: linear-gradient(135deg, #facc15, #f59e0b);
  transition: all 0.3s ease;
}

.btn-yellow:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(250, 204, 21, 0.5);
}

.btn-yellow:active {
  transform: translateY(0);
}

/* COUNTER ANIMATION */
.counter {
  font-family: 'Playball', cursive;
  font-size: 3rem;
  font-weight: 700;
  color: #f59e0b;
}

/* HERO SECTION IMPROVEMENTS */
.hero-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.hero-btn:hover::before {
  left: 100%;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(250, 204, 21, 0.5);
}

/* FEATURE CARDS */
.feature-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(360deg);
  background: linear-gradient(135deg, #facc15, #f59e0b);
}

.feature-card:hover .feature-icon i {
  color: white;
}

.feature-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fef3c7;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.feature-icon i {
  font-size: 28px;
  color: #f59e0b;
  transition: all 0.4s ease;
}

/* TEAM SECTION IMPROVEMENTS */
.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: all 0.5s ease;
}

.team-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;
}

.team-card:hover::before {
  opacity: 1;
}

.team-card img {
  transition: all 0.5s ease;
}

.team-card:hover img {
  transform: scale(1.1);
}

.team-card .team-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  transform: translateY(100%);
  transition: all 0.4s ease;
  z-index: 2;
}

.team-card:hover .team-info {
  transform: translateY(0);
}

.team-card .social-links {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateX(100%);
  transition: all 0.4s ease;
  z-index: 2;
}

.team-card:hover .social-links {
  transform: translateX(0);
}

.team-card .social-links a {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f59e0b;
  transition: all 0.3s ease;
}

.team-card .social-links a:hover {
  background: #f59e0b;
  color: white;
}

/* MENU CARD IMPROVEMENTS */
.menu-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.menu-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;
}

.menu-card:hover::before {
  opacity: 1;
}

.menu-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.menu-card:hover img {
  transform: scale(1.15);
}

.menu-card .card-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: 800;
  font-size: 24px;
  opacity: 0;
  transition: all 0.4s ease;
  text-align: center;
  width: 100%;
  z-index: 2;
}

.menu-card:hover .card-title {
  opacity: 1;
  top: 45%;
}

/* ABOUT SECTION IMPROVEMENTS */
.about-image-container {
  position: relative;
}

.about-image-container::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 4px solid #f59e0b;
  border-radius: 20px;
  z-index: -1;
}

.about-features li {
  transition: all 0.3s ease;
}

.about-features li:hover {
  transform: translateX(10px);
  color: #f59e0b;
}

.about-features li:hover span {
  color: #f59e0b;
}

/* SECTION DIVIDER */
.section-divider {
  height: 100px;
  background: linear-gradient(to bottom, white, #f5f1eb);
}

/* NEWSLETTER SECTION */
.newsletter-section {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.newsletter-input {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
  background: rgba(255, 255, 255, 0.3);
  border-color: white;
  outline: none;
}

/* CTA BUTTON */
.cta-button {
  position: relative;
  overflow: hidden;
}

.cta-button::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.5s ease;
}

.cta-button:active::after {
  transform: scale(1);
  opacity: 0;
}

/* LOADING ANIMATION */
@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-spinner {
  animation: spin 1s linear infinite;
}

/* HOVER UNDERLINE */
.hover-underline {
  position: relative;
}

.hover-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #f59e0b;
  transition: width 0.3s ease;
}

.hover-underline:hover::after {
  width: 100%;
}

/* FAQ SECTION STYLES */
.faq-item {
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
  transition: all 0.3s ease;
}

.faq-question:hover i {
  color: #f59e0b;
}

.faq-answer {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* CONTACT FORM STYLES */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

.contact-form button {
  position: relative;
  overflow: hidden;
}

.contact-form button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.contact-form button:hover::before {
  left: 100%;
}

/* MAP CONTAINER */
.map-container {
  position: relative;
  transition: all 0.3s ease;
}

.map-container:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}



/* evnt  */





