.header-top {
    background-color: #f48222 !important;
    padding: 17px 0 46px;
    min-height: 90px;
}

/* ===== MENU ICON STYLE (Square Border) ===== */
.main-menu ul li a i {
  border: 2px solid #19115c;   /* Border color */
  border-radius: 6px;          /* Slightly rounded corners for a soft square look */
  padding: 6px;                /* Space inside the square */
  margin-right: 8px;           /* Space between icon and text */
  color: #19115c;              /* Icon color */
  font-size: 16px;
  transition: all 0.3s ease;   /* Smooth hover effect */
  vertical-align: middle;
}

/* ===== HOVER EFFECT ===== */
.main-menu ul li a:hover i {
  background-color: #19115c;   /* Fill with brand color */
  color: #fff;                 /* Icon turns white */
  transform: scale(1.1);       /* Slight zoom */
}
.service-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
  display: inline-block;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #333;
}

.service-text {
  color: #555;
  line-height: 1.6;
}


/* Event Buttons Horizontal Scroll */
.event-list-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.event-list {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
}
.event-btn {
  padding: 10px 20px;
  background: #f48222;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: 0.3s;
}
.event-btn:hover,
.event-btn.active {
  background: #d95e00;
}

/* Event Images */
.event-images {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

/* Hide non-active events by default */
.event-item {
  display: none;
}

.terms-card {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 40px 30px;
  transition: 0.3s ease;
}

.terms-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.terms-card h3 {
  color: #222;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.terms-card h5 {
  color: #007bff;
  font-weight: 500;
}

.terms-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-list li {
  position: relative;
  font-size: 16px;
  line-height: 1.8;
  padding-left: 32px;
  margin-bottom: 10px;
  color: #333;
}

.terms-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #007bff;
  font-weight: bold;
  font-size: 18px;
}

.thank-text {
  color: #555;
  letter-spacing: 0.3px;
}

/* Sticky Social Icons */
.sticky-social {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Specific colors */
.instagram {
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.whatsapp {
  background: #25D366;
}

 
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* dark overlay for text readability */
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #ffb400;
  display: block;
  margin-bottom: 10px;
}

.hero-text {
  color: #eee;
  max-width: 600px;
  margin: 15px auto 25px;
}

.vs-btn {
  background: #ffb400;
  color: #fff;
  padding: 10px 25px;
  margin: 5px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.vs-btn:hover {
  background: #fff;
  color: #000;
}

.vs-btn.style3 {
  background: transparent;
  border: 2px solid #fff;
}

.vs-btn.style3:hover {
  background: #fff;
  color: #000;
}
 


.widget-area {
    padding-top: 61px;
    padding-bottom: 3px;
}



/* Sticky Social Icons */
.sticky-social {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.sticky-icon {
  background-color: #19115c; /* brand color */
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.sticky-icon:hover {
  transform: scale(1.1);
  background-color: #2c22a5; /* slightly lighter shade on hover */
  color: #fff;
}

@media (max-width: 768px) {
  .sticky-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}


@media (max-width: 767px) {
  .footer-widget {
    width: 50%;
    float: left;
    box-sizing: border-box;
    padding: 10px;
  }
}
@media (max-width: 480px) {
  .footer-widget {
    width: 100%;
  }
}
