/* ================= ROOT VARIABLES ================= */
:root {

    /* 🎨 COLORS */
    --primary: #5a0000;
    /* Maroon */
    --primary-dark: #3b0000;
    --gold: #d4af37;
    --gold-light: #f5d76e;
    --black: #000000;
    --white: #ffffff;
    --gray: #f5f5f5;
    --text-dark: #222;
    --text-light: #777;

    /* 🌈 GRADIENTS */
    --gradient-gold: linear-gradient(45deg, #d4af37, #f5d76e);
    --gradient-dark: linear-gradient(180deg, #5a0000, #000000);

    /* 🔤 FONTS */
    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;

    /* 📏 SPACING */
    --section-padding: 80px;
    --container-width: 1200px;

    /* 🔘 BORDER RADIUS */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 20px;
    --radius-full: 50px;

    /* 🌫 SHADOWS */
    --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.25);

    /* ⚡ TRANSITIONS */
    --transition: all 0.3s ease;

}


/* ===== RESET SMALL ISSUES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #5a0000;
    color: #fff;
    font-size: 14px;
}

.top-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

.top-left span {
    margin-right: 15px;
}

.top-bar i {
    color: #d4af37;
    margin-right: 5px;
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: transparent;
    transition: 0.3s ease;
}

/* ===== NAVBAR ===== */
.navbar {
    padding: 12px 0;
}

/* LOGO */
.logo {
    height: 110px;
    margin-right: 10px;

}

.brand-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
}

/* NAV LINKS */
.nav-link {
    color: var(--primary);
    margin-left: 20px;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

/* UNDERLINE */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: #d4af37;
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #d4af37;
}

.nav-link.active {
    color: #d4af37;
}

.nav-link.active::after {
    width: 100%;
}

/* ===== SCROLL EFFECT ===== */
.header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
}

/* ===== TOGGLER ===== */
.navbar-toggler {
    border: none;
    font-size: 26px;
    color: #d4af37;
}

/* ===== MOBILE ===== */
@media (max-width: 991px) {

    .top-flex {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .navbar-collapse {
        background: #5a0000;
        padding: 15px;
        border-radius: 8px;
        margin-top: 10px;
    }

    .nav-link.active {
        color: #d4af37 !important;
    }


    .nav-link {
        color: #fff;
        margin: 10px 0;
        text-align: center;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover {
        background: #d4af37;
        color: black;
        border-radius: 20px;
        padding: 8px;
    }

    .brand-text {
        font-size: 18px;
    }

    .logo {
        height: 80px;
    }
}


/* ================= HERO ================= */


.hero-slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

/* OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(3, 3, 3, 0.7), rgba(24, 24, 24, 0.6));
}

/* CONTENT */
.hero-content {
  position: relative;
  color: #fff;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: #d4af37;
  line-height: 1.2;
}

.hero-content p {
  margin: 15px 0;
  font-size: 18px;
}

/* BUTTON */
.btn-gold {
  background: linear-gradient(45deg, #d4af37, #f5d76e);
  color: #000;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  transition: 0.3s;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* ARROWS */
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

/* MOBILE */
@media (max-width: 768px) {

  .hero-slide {
    height: 85vh;
    text-align: center;
  }

  .hero-content {
    margin: auto;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 14px;
  }
}

/* ================= TICKER ================= */
.ticker {
  background: linear-gradient(90deg, #5a0000, #000);
  overflow: hidden;
  width: 100%;
}

/* CONTAINER */
.ticker-container {
  width: 100%;
  overflow: hidden;
}

/* TRACK */
.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerMove 20s linear infinite;
}

/* ITEM */
.ticker-item {
  white-space: nowrap;
  font-size: 15px;
  color: #d4af37;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding-right: 40px;
}

/* ANIMATION (NO GAP PERFECT LOOP) */
@keyframes tickerMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* HOVER PAUSE */
.ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ab {
    margin: 40px;
}

/* ================= SECTION SYSTEM ================= */
.section {
  padding: 80px 0;
}

.section-sm {
  padding: 60px 0;
}

.section-lg {
  padding: 100px 0;
}

/* REMOVE EXTRA SPACE FROM FIRST SECTION */
.hero + .section {
  padding-top: 60px;
}

/* TITLE SYSTEM */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 34px;
  font-weight: 700;
  color: #5a0000;
}

.section-header p {
  color: #777;
  margin-top: 10px;
}

/* ================= SERVICES ================= */
.services {
  background: #f9f9f9;
}

/* CARD */
.service-card-img {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: 0.4s;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* IMAGE */
.service-card-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: 0.4s;
}

/* TITLE */
.service-card-img h6 {
  padding: 15px;
  font-weight: 600;
  color: #333;
}

/* HOVER EFFECT */
.service-card-img:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card-img:hover img {
  transform: scale(1.08);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  .service-card-img img {
    height: 150px;
  }

}

/* ================= PARALLAX ================= */
.parallax-section {
  position: relative;
  height: 400px;

  background: url('./img/h2.avif') center/cover no-repeat;
  background-attachment: fixed;

  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
}

/* OVERLAY */
.parallax-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(90,0,0,0.7));
  top: 0;
  left: 0;
}

/* CONTENT */
.parallax-content {
  position: relative;
  max-width: 700px;
  margin: auto;
}

.parallax-content h2 {
  font-size: 36px;
  color: #d4af37;
  font-weight: 700;
}

.parallax-content p {
  margin: 15px 0;
  font-size: 16px;
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

  .parallax-section {
    background-attachment: scroll; /* important */
    height: 300px;
  }

  .parallax-content h2 {
    font-size: 24px;
  }

}

/* ================= GALLERY ================= */
.gallery {
  background: #fff;
}

/* ITEM */
.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

/* IMAGE */
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.4s;
}

/* HOVER ZOOM */
.gallery-item:hover img {
  transform: scale(1.1);
}

/* OVERLAY EFFECT */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: 0.3s;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .gallery-item img {
    height: 160px;
  }

}

/* ================= ENQUIRY PREMIUM ================= */
.enquiry-premium {
  position: relative;
  padding: 100px 0;

  background: url('./img/bg.avif') center/cover no-repeat;
  color: #fff;
}

/* DARK OVERLAY */
.enquiry-premium .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(90,0,0,0.7));
}

/* CONTENT */
.enquiry-content {
  position: relative;
}

.enquiry-content h2 {
  font-size: 36px;
  color: #d4af37;
  font-weight: 700;
}

.enquiry-content p {
  margin: 15px 0;
  color: #eee;
}

/* FEATURES */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.features span {
  background: rgba(255,255,255,0.1);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
}

/* FORM (GLASS EFFECT 🔥) */
.enquiry-form {
  position: relative;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* TITLE */
.enquiry-form h4 {
  margin-bottom: 20px;
  color: #d4af37;
}

/* INPUTS */
.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 8px;
  border: none;
  outline: none;
}

/* BUTTON */
.btn-gold {
  background: linear-gradient(45deg, #d4af37, #f5d76e);
  color: #000;
  border-radius: 30px;
  padding: 12px;
  transition: 0.3s;
}

.btn-gold:hover {
  transform: translateY(-3px);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .enquiry-premium {
    padding: 60px 0;
    text-align: center;
  }

  .features {
    justify-content: center;
  }

  .enquiry-content h2 {
    font-size: 26px;
  }

}

/* ================= TESTIMONIALS ================= */
.testimonials {
  background: linear-gradient(180deg, #fff, #f9f9f9);
  overflow: hidden;
}

/* ROW */
.testimonial-row {
  overflow: hidden;
  margin: 20px 0;
}

/* TRACK */
.testimonial-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollLeft 25s linear infinite;
}

/* REVERSE */
.testimonial-row.reverse .testimonial-track {
  animation: scrollRight 25s linear infinite;
}

/* CARD */
.testimonial-card {
  min-width: 280px;
  max-width: 300px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

/* TEXT */
.testimonial-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.testimonial-card h6 {
  color: #d4af37;
  font-weight: 600;
}

/* HOVER */
.testimonial-card:hover {
  transform: translateY(-8px);
}

/* ANIMATION */
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* MOBILE */
@media (max-width: 768px) {

  .testimonial-card {
    min-width: 240px;
  }

}

/* ================= CONTACT ================= */
.contact {
  background: linear-gradient(180deg, #fff, #f9f9f9);
}

/* CONTACT BOX */
.contact-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  height: 100%;
}

/* HEADINGS */
.contact-box h4 {
  color: #5a0000;
  margin-bottom: 10px;
}

/* TEXT */
.contact-box p {
  color: #555;
  font-size: 14px;
}

/* LINE */
.contact-box hr {
  margin: 15px 0;
}

/* MAP */
.map-box {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* BUTTON */
.btn-gold {
  background: linear-gradient(45deg, #d4af37, #f5d76e);
  color: #000;
  border-radius: 30px;
  padding: 10px 20px;
  transition: 0.3s;
}

.btn-gold:hover {
  transform: translateY(-3px);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .contact-box {
    text-align: center;
  }

  .map-box {
    min-height: 250px;
  }

}

/* ================= FAQ ================= */
.faq {
  background: linear-gradient(180deg, #fff, #f9f9f9);
}

/* BOX */
.faq-box {
  max-width: 800px;
  margin: auto;
}

/* ITEM */
.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: 0.3s;
}

/* QUESTION */
.faq-question {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h6 {
  margin: 0;
  font-weight: 600;
}

/* ICON */
.faq-question .icon {
  font-size: 20px;
  color: #d4af37;
  transition: 0.3s;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: 0.4s ease;
}

.faq-answer p {
  padding: 10px 0 15px;
  color: #555;
  font-size: 14px;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}

/* HOVER */
.faq-item:hover {
  transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 768px) {
  .faq-question {
    padding: 15px;
  }
}

/* ================= FOOTER ================= */
.footer {
  background: linear-gradient(180deg, #5a0000, #000);
  color: #fff;
  padding-top: 60px;
}

/* LOGO */
.footer-logo {
  height: 110px;
  margin-bottom: 15px;
}

/* BOX */
.footer-box p {
  font-size: 14px;
  color: #ddd;
}

/* HEADINGS */
.footer-box h5 {
  color: #d4af37;
  margin-bottom: 15px;
}

/* LINKS */
.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 8px;
}

.footer-box ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #d4af37;
  padding-left: 5px;
}

/* CONTACT TEXT */
.footer-box p {
  margin-bottom: 10px;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
  background: rgba(0,0,0,0.4);
}

.footer-bottom a {
  color: #d4af37;
  text-decoration: none;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .footer {
    text-align: center;
  }

  .footer-box {
    margin-bottom: 20px;
  }

}

/* ================= WHATSAPP FLOAT ================= */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;

  display: flex;
  align-items: center;
  gap: 10px;

  text-decoration: none;
}

/* ICON */
.wa-icon {
  width: 55px;
  height: 55px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  animation: pulse 2s infinite;
}

/* TEXT */
.wa-text {
  background: #25D366;
  color: #fff;
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 14px;
  opacity: 0;
  transform: translateX(10px);
  transition: 0.3s;
}

/* SHOW TEXT ON HOVER */
.wa-float:hover .wa-text {
  opacity: 1;
  transform: translateX(0);
}

/* PULSE ANIMATION */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37,211,102,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0);
  }
}

@media (max-width: 768px) {

  .wa-text {
    display: none; /* hide text on mobile */
  }

  .wa-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

}

/* ================= SCROLL TOP ================= */
#scrollTopBtn {
  position: fixed;
  bottom: 90px; /* above WhatsApp */
  right: 20px;
  z-index: 999;

  width: 45px;
  height: 45px;

  background: linear-gradient(45deg, #d4af37, #f5d76e);
  color: #000;

  border: none;
  border-radius: 50%;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.3);

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);

  transition: 0.3s;
}

/* SHOW BUTTON */
#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* HOVER */
#scrollTopBtn:hover {
  transform: translateY(-5px);
}

/* ================= PAGE HEADER ================= */
.page-header {
  position: relative;
  height: 350px;

  background: url('./img/bg.avif') center/cover no-repeat;
  background-attachment: fixed;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  color: #fff;
}

/* OVERLAY */
.page-header .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(90,0,0,0.7));
}

/* CONTENT */
.header-content {
  position: relative;
}

.header-content h1 {
  font-size: 42px;
  font-weight: 700;
  color: #d4af37;
}

.header-content p {
  margin-top: 10px;
  font-size: 16px;
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

  .page-header {
    height: 250px;
    background-attachment: scroll; /* important fix */
  }

  .header-content h1 {
    font-size: 26px;
  }

}

/* ================= ABOUT DETAILS ================= */
.about-details {
  background: #fff;
}

/* IMAGE */
.about-img-box img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* CONTENT */
.about-content h2 {
  color: #5a0000;
  font-weight: 700;
}

.about-content h5 {
  color: #d4af37;
  margin-bottom: 15px;
}

.about-content p {
  color: #555;
  line-height: 1.7;
}

/* FEATURES */
.about-features {
  margin-top: 20px;
}

.feature {
  margin-bottom: 10px;
  font-size: 15px;
  color: #333;
}

/* COUNTERS */
.counter-box {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  transition: 0.3s;
}

.counter-box h3 {
  color: #d4af37;
  font-weight: 700;
}

.counter-box p {
  font-size: 14px;
}

/* HOVER */
.counter-box:hover {
  transform: translateY(-5px);
}

/* MOBILE */
@media (max-width: 768px) {

  .about-content {
    text-align: center;
  }

}

/* ================= MISSION & VISION ================= */
.mission-vision {
  background: linear-gradient(180deg, #fff, #f9f9f9);
}

/* CARD */
.mv-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
  height: 100%;
}

/* IMAGE */
.mv-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* CONTENT */
.mv-content {
  padding: 20px;
  text-align: center;
}

.mv-content h3 {
  color: #5a0000;
  font-weight: 700;
  margin-bottom: 10px;
}

.mv-content p {
  font-size: 14px;
  color: #555;
}

/* HOVER EFFECT */
.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* MOBILE */
@media (max-width: 768px) {

  .mv-img img {
    height: 180px;
  }

}

/* ================= TRANSLATE ================= */
.translate-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* BUTTON */
.lang-btn {
  background: linear-gradient(45deg, #d4af37, #f5d76e);
  color: #000;
  border: none;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

/* HOVER */
.lang-btn:hover {
  transform: translateY(-3px);
}

/* HIDE DEFAULT GOOGLE UI */
#google_translate_element {
  display: none;
}

/* MOBILE */
@media (max-width: 768px) {

  .translate-box {
    justify-content: center;
    margin-top: 10px;
  }

  .lang-btn {
    padding: 6px 14px;
    font-size: 13px;
  }

}

/* ================= TRANSLATE SECTION ================= */
.translate-wrapper{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:20px;
}

/* BUTTON GROUP */
.translate-buttons{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;

    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);

    padding:12px 18px;
    border-radius:60px;

    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

/* BUTTON */
.translate-buttons button{
    border:none;
    outline:none;

    padding:10px 24px;
    border-radius:30px;

    background:linear-gradient(45deg,#d4af37,#f5d76e);
    color:#000;

    font-size:14px;
    font-weight:600;
    letter-spacing:.5px;

    cursor:pointer;
    transition:0.3s ease;
}

/* HOVER */
.translate-buttons button:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(0,0,0,0.2);
}

/* ACTIVE EFFECT */
.translate-buttons button:active{
    transform:scale(0.96);
}

/* HIDE GOOGLE DEFAULT */
.goog-te-banner-frame.skiptranslate{
    display:none !important;
}

.goog-logo-link,
.goog-te-gadget{
    display:none !important;
}

body{
    top:0 !important;
}

/* HIDE DROPDOWN */
#google_translate_element{
    display:none;
}

/* ================= MOBILE ================= */
@media(max-width:768px){

    .translate-buttons{
        gap:10px;
        padding:10px 15px;
    }

    .translate-buttons button{
        padding:8px 18px;
        font-size:13px;
    }

}

.goog-te-banner-frame.skiptranslate{
    display:none !important;
}

.goog-logo-link,
.goog-te-gadget{
    display:none !important;
}

body{
    top:0 !important;
}

#google_translate_element{
    display:none;
}

/* ================= ONLINE CLASS ================= */
.online-class-box{
    position:relative;

    background:linear-gradient(135deg,#5a0000,#000);
    color:#fff;

    padding:35px 30px;
    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,0.25);

    text-align:center;
}

/* LIVE BADGE */
.live-badge{
    position:absolute;
    top:15px;
    right:15px;

    background:#ff0000;
    color:#fff;

    padding:5px 12px;
    border-radius:30px;

    font-size:12px;
    font-weight:600;

    animation:pulseLive 1.5s infinite;
}

/* TITLE */
.online-class-box h4{
    color:#d4af37;
    font-size:30px;
    font-weight:700;

    margin-bottom:15px;
}

/* TEXT */
.online-class-box p{
    color:#ddd;
    margin-bottom:20px;
}

/* TIME */
.class-time{
    background:rgba(255,255,255,0.1);

    display:inline-block;

    padding:10px 20px;
    border-radius:30px;

    margin-bottom:25px;

    font-size:15px;
}

/* BUTTON */
.join-btn{
    display:inline-block;

    background:linear-gradient(45deg,#d4af37,#f5d76e);
    color:#000;

    padding:12px 30px;
    border-radius:30px;

    text-decoration:none;
    font-weight:600;

    transition:0.3s;
}

.join-btn:hover{
    transform:translateY(-4px);
    color:#000;
}

/* LIVE ANIMATION */
@keyframes pulseLive{

    0%{
        box-shadow:0 0 0 0 rgba(255,0,0,0.7);
    }

    70%{
        box-shadow:0 0 0 12px rgba(255,0,0,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(255,0,0,0);
    }

}

/* ================= MOBILE ================= */
@media(max-width:768px){

    .online-class-box{
        padding:30px 20px;
    }

    .online-class-box h4{
        font-size:24px;
    }

}