.elementor-7 .elementor-element.elementor-element-c97e510{--display:flex;}.elementor-7 .elementor-element.elementor-element-5c1b502{--display:flex;}.elementor-7 .elementor-element.elementor-element-671a128{--display:flex;}.elementor-7 .elementor-element.elementor-element-e540749{--display:flex;}.elementor-7 .elementor-element.elementor-element-b9c0ee0{--display:flex;}.elementor-7 .elementor-element.elementor-element-babcac5{--display:flex;}.elementor-7 .elementor-element.elementor-element-9555707{--display:flex;}body.elementor-page-7:not(.elementor-motion-effects-element-type-background), body.elementor-page-7 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-902c734 */.hero-wrap {
  position: relative;
  height: 100vh;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* SLIDER */
.hero-wrap .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-wrap .slide.active {
  opacity: 1;
}

/* OVERLAY */
.hero-wrap .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
}

/* CONTENT */
.hero-wrap .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  padding: 20px;
}

.hero-wrap h1 {
  font-size: 70px;
  font-weight: 800;
  letter-spacing: 2px;
}

.hero-wrap p {
  font-family: 'Montserrat';
  font-size: 16px;
}

/* BUTTON */
.hero-wrap .btn {
  display: inline-block;
  padding: 14px 30px;
  background: #e50914;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 15px;
  transition: 0.3s;
}

.hero-wrap .btn:hover {
  background: #ff1a1a;
}

/* BOTTOM SECTION */
.hero-wrap .hero-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-top: 60px;
  text-align: center;
  flex-wrap: wrap;
}

.hero-wrap .bottom-item {
  max-width: 220px;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* ICON */
.hero-wrap .icon {
  width: 45px;
  height: 45px;
  background: #e50914;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 16px;
  transition: 0.3s;
}

/* TEXT */
.hero-wrap .bottom-item h3 {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.hero-wrap .bottom-item p {
  font-size: 14px;
  opacity: 0.8;
}

/* DIVIDER */
.hero-wrap .divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.3);
}

/* HOVER + MOBILE TAP */
.hero-wrap .bottom-item:hover h3,
.hero-wrap .bottom-item:active h3,
.hero-wrap .bottom-item:focus h3 {
  color: #e50914;
}

.hero-wrap .bottom-item:hover,
.hero-wrap .bottom-item:active,
.hero-wrap .bottom-item:focus {
  transform: translateY(-5px);
}

.hero-wrap .bottom-item:hover .icon,
.hero-wrap .bottom-item:active .icon,
.hero-wrap .bottom-item:focus .icon {
  background: #fff;
  color: #e50914;
}

/* SIDE BUTTONS */
.hero-wrap .side-buttons {
  position: fixed;
  right: 0;
  top: 40%;
  z-index: 999;
}

.hero-wrap .side-buttons a {
  display: block;
  background: #e50914;
  color: #fff;
  padding: 15px;
  margin: 5px 0;
  text-decoration: none;
}

/* ANIMATIONS */
.hero-wrap .animate-top {
  animation: slideDown 1s ease forwards;
}

.hero-wrap .animate-bottom {
  animation: slideUp 1s ease forwards;
  animation-delay: 0.5s;
}

.hero-wrap .animate-fade {
  animation: fadeIn 1.2s ease forwards;
  animation-delay: 0.3s;
}

@keyframes slideDown {
  from {transform: translateY(-60px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}

@keyframes slideUp {
  from {transform: translateY(60px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}

@keyframes fadeIn {
  to {opacity: 1;}
}

/* RESPONSIVE */
@media(max-width:768px){
  .hero-wrap h1 {
    font-size: 40px;
  }

  .hero-wrap .hero-bottom {
    flex-direction: column;
    gap: 25px;
  }

  .hero-wrap .divider {
    display: none;
  }

  .hero-wrap .side-buttons {
    bottom: 20px;
    top: auto;
    right: 10px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7ff8edf *//* SCROLL FIX (IMPORTANT) */
#about {
  scroll-margin-top: 100px;
}

/* SECTION */
.about-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10%;
  background: #fff;
  color: #111;
  font-family: 'Poppins', sans-serif;
  gap: 60px;
}

/* LEFT */
.about-left {
  flex: 1;
}

.about-left h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
}

.about-left .tagline {
  display: inline-block;
  margin: 10px 0 20px;
  color: #e50914;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
}

.about-left p {
  font-family: 'Montserrat';
  font-size: 14px;
  margin-bottom: 15px;
  color: #555;
  line-height: 1.6;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: #e50914;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background: #c40810;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(229,9,20,0.3);
}

/* RIGHT */
.about-right {
  flex: 1;
  position: relative;
}

.about-right img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* TIMING BOX */
.timing {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: 8px;
}

/* TIMING TEXT */
.timing div {
  margin-bottom: 15px;
}

.timing strong {
  font-size: 13px;
  color: #111;
}

.timing p {
  font-size: 13px;
  color: #666;
}

/* RESPONSIVE */
@media(max-width:768px){

  .about-wrap {
    flex-direction: column;
    padding: 50px 20px;
    gap: 30px;
  }

  .about-left h2 {
    font-size: 26px;
  }

  .timing {
    position: relative;
    left: 0;
    top: auto;
    transform: none;
    margin-top: 20px;
    width: 100%;
  }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d9c7c93 */.menu-choice {
  text-align: center;
  padding: 80px 10%;
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

/* MAIN HEADING */
.menu-choice h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #111;
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  opacity: 0;
  animation: headingReveal 1s ease forwards;
}

/* RED UNDERLINE ACCENT */
.menu-choice h2::after {
  content: "";
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #e50914, #ff3b3b);
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  border-radius: 2px;
  animation: lineGrow 1s ease forwards;
  animation-delay: 0.5s;
}

/* ANIMATION */
@keyframes headingReveal {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes lineGrow {
  from {
    width: 0;
  }
  to {
    width: 70px;
  }
}

/* SUBTITLE (PREMIUM STYLE) */
.menu-choice .sub {
  display: block;
  margin-top: 12px;
  color: #e50914;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  position: relative;
  text-transform: uppercase;
  opacity: 0;
  animation: subReveal 1s ease forwards;
  animation-delay: 0.4s;
}

/* DECORATIVE SIDE LINES */
.menu-choice .sub::before,
.menu-choice .sub::after {
  content: "";
  width: 25px;
  height: 2px;
  background: #e50914;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.menu-choice .sub::before {
  left: -35px;
}

.menu-choice .sub::after {
  right: -35px;
}

/* ANIMATION */
@keyframes subReveal {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ITEMS */
.menu-items {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.item {
  max-width: 250px;
  text-align: center;
}

/* IMAGE */
.item img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  transition: 0.4s;
}

/* HOVER IMAGE */
.item:hover img {
  transform: scale(1.05);
}

/* RED LINE (ANIMATED + PREMIUM) */
.line {
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #e50914, #ff3b3b);
  margin: 12px auto;
  border-radius: 3px;
  transition: 0.4s ease;
}

/* TITLE */
.item h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
}

/* HOVER EFFECT (MAIN MAGIC 🔥) */
.item:hover .line {
  width: 50px;
}

.item:hover h3 {
  color: #e50914;
  transform: translateY(-3px);
}

/* PRICE */
.item p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-style: italic;
}

/* RESPONSIVE */
@media(max-width:768px){
  .menu-items {
    gap: 30px;
  }

  .item img {
    width: 180px;
    height: 180px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-996211f */.menu-section {
  display: flex;
  background: #f5f5f5;
}

/* LEFT IMAGE */
.menu-left {
  width: 40%;
}

.menu-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT SIDE */
.menu-right {
  width: 60%;
  display: flex;
  gap: 40px;
  padding: 60px;
  font-family: 'Poppins', sans-serif;
}

/* COLUMN */
.menu-col {
  flex: 1;
}

/* HEADING */
.menu-col h2 {
  font-size: 22px;
  font-weight: 800;
}

.menu-col .sub {
  display: block;
  color: #e50914;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* ITEM */
.menu-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dotted #999;
  padding: 12px 0;
}

/* TEXT */
.menu-item h3 {
  font-size: 16px;
  font-weight: 600;
}

.menu-item p {
  font-size: 12px;
  color: #666;
}

/* PRICE */
.price {
  color: #e50914;
  font-weight: 700;
}

/* RESPONSIVE */
@media(max-width:768px){

  .menu-section {
    flex-direction: column;
  }

  .menu-left {
    width: 100%;
    height: 250px;
  }

  .menu-right {
    width: 100%;
    flex-direction: column;
    padding: 30px;
  }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-66ac3f9 */.testimonial-section {
  position: relative;
  height: 500px;
  color: #fff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

/* BACKGROUND */
.testimonial-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1528605248644-14dd04022da1') center/cover;
}

/* OVERLAY */
.testimonial-section .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

/* CONTENT */
.testimonial-content {
  position: relative;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}

/* HEADING */
.testimonial-content h2 {
  font-size: 30px;
  font-weight: 800;
}

.testimonial-content .sub {
  display: block;
  color: #e50914;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* BOX */
.testimonial-box {
  width: 420px;
  margin: auto;
  background: rgba(20,20,20,0.85);
  padding: 30px;
  border-radius: 10px;
}

/* TESTIMONIAL */
.testimonial {
  display: none;
}

.testimonial.active {
  display: block;
  animation: fadeIn 1s ease;
}

/* IMAGE */
.testimonial img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #e50914;
  margin-bottom: 12px;
}

/* TEXT */
.quote {
  font-size: 18px;
  font-weight: 600;
}

.desc {
  font-size: 13px;
  margin: 10px 0;
  color: #ccc;
}

.name {
  color: #e50914;
  font-weight: 600;
}

/* DOTS */
.dots {
  margin-top: 15px;
}

.dot {
  height: 8px;
  width: 8px;
  background: #999;
  display: inline-block;
  margin: 5px;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #e50914;
}

/* ANIMATION */
@keyframes fadeIn {
  from {opacity:0;}
  to {opacity:1;}
}

/* RESPONSIVE */
@media(max-width:768px){
  .testimonial-box {
    width: 90%;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2ffb0f1 *//* SCROLL FIX (IMPORTANT) */
#gallery {
  scroll-margin-top: 100px;
}

/* SECTION */
.gallery-section {
  background: #000;
  padding: 80px 0;
  text-align: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

/* HEADING */
.gallery-section h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 2px;
}

.gallery-section .sub {
  color: #e50914;
  font-size: 12px;
  font-weight: 700;
  display: block;
  margin-bottom: 40px;
}

/* SLIDER */
.gallery-slider {
  width: 100%;
  overflow: hidden;
}

/* TRACK */
.gallery-track {
  display: flex;
  gap: 20px;
  animation: scrollGallery 25s linear infinite;
}

/* PAUSE ON HOVER 🔥 */
.gallery-slider:hover .gallery-track {
  animation-play-state: paused;
}

/* ITEM */
.gallery-item {
  min-width: 250px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  border: 2px solid transparent;
  transition: 0.4s;
}

/* IMAGE */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

/* HOVER EFFECT 🔥 */
.gallery-item:hover img {
  transform: scale(1.15);
}

/* BORDER ANIMATION 🔥 */
.gallery-item:hover {
  border: 2px solid #e50914;
  box-shadow: 0 0 15px rgba(229,9,20,0.6);
}

/* SCROLL ANIMATION */
@keyframes scrollGallery {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* RESPONSIVE */
@media(max-width:768px){
  .gallery-item {
    min-width: 200px;
    height: 160px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f1e1527 *//* SCROLL FIX (IMPORTANT) */
#contact {
  scroll-margin-top: 100px;
}
/* SECTION */
.contact-wrap {
  position: relative;
  padding: 120px 20px;
  text-align: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

/* BG */
.contact-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1513104890138-7c749659a591') center/cover;
  top: 0;
  left: 0;
}

/* OVERLAY */
.contact-wrap .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  top: 0;
  left: 0;
}

/* CONTENT */
.contact-content {
  position: relative;
  z-index: 2;
}

/* HEADING */
.contact-content h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 2px;
}

.contact-content .sub {
  color: #e50914;
  font-size: 12px;
  font-weight: 700;
  display: block;
  margin-bottom: 30px;
}

/* FORM WRAPPER */
.contact-form {
  max-width: 600px;
  margin: auto;
}

/* CF7 RESET */
.contact-form form {
  width: 100%;
}

/* INPUTS */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border: none;
  outline: none;
  background: #fff;
  font-family: 'Montserrat';
  font-size: 14px;
  border-radius: 4px;
}

/* TEXTAREA */
.contact-form textarea {
  height: 120px;
}

/* BUTTON */
.contact-form input[type="submit"] {
  background: #e50914;
  color: #fff;
  padding: 12px 25px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.contact-form input[type="submit"]:hover {
  background: #c40810;
}

/* REMOVE CF7 DEFAULT */
.wpcf7 form .wpcf7-response-output {
  border: none;
  color: #fff;
  margin-top: 10px;
}

/* SCROLL BUTTON */
#scrollTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #e50914;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 18px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  z-index: 9999;
  transition: 0.3s;
}

#scrollTopBtn:hover {
  background: #fff;
  color: #e50914;
  transform: translateY(-5px);
}

/* MOBILE */
@media(max-width:768px){
  #scrollTopBtn {
    bottom: 20px;
    right: 15px;
  }
}/* End custom CSS */