 @import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Inder&family=Instrument+Serif:ital@0;1&display=swap");
      @import url("https://fonts.cdnfonts.com/css/homizio");

      /* ================= BASE (UNCHANGED) ================= */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        scroll-behavior: smooth;
      }
      :root {
        --primary-font: "Homizio", sans-serif;
        --secondary-font: "Inder", sans-serif;
        --primary-color: #0f0f0f;
        --secondary-color: #ffffff;
        --red-color: #ce2017;
        --gray-color: #b2b2b2;
      }
body {
  background: #000;
  max-width: 100%;
}

h1 {
  font-family: var(--primary-font);
  font-size: 5rem;
  color: var(--secondary-color);
  font-weight: 700;
}
h2 {
  font-size: 3.2rem;
  font-family: var(--primary-font);
}
h3{
  font-family: var(--primary-font);
  font-size: 3.2rem;
}
h4{
  font-size: 2.5rem;
  font-family: var(--primary-font);
}

p {
  font-family: var(--secondary-font);
  color: white;
}
li{
  font-family: var(--secondary-font);
  font-size: 20px;
  
}
a{
  text-decoration: none;
}
.topic {
  width: 100%;
  height: 80vh;
  background-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.4) 40%,
      rgba(121, 0, 0, 0.85) 100%
    ),
    url("./assets/imgs/bg-ren2.png");

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: center;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-head {
  font-size: 60px;
  font-weight: 700;
}

/* secction-2 */
.re-sec-section {
  width: 100%;
  height: 100vh;
  color: #fff;
  display: flex;
  padding: 40px;
  margin-top: 50px;
}
.re-text-box h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #c81616;
}
.re-text-box ul {
  padding-left: 40px;
  font-size: 22px;
  line-height: 1.7;
}
.re-text-box2 h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 30px;
  color: #c81616;
}
.re-text-box2 ul {
  padding-left: 40px;
  font-size: 20px;
  line-height: 1.7;
}
.re-text-box2 p {
  font-size: 28px;
  margin-top: 30px;
}

/* section-3 */
.re-sec-section1 {
  width: 100%;
  height: 100vh;
  color: #fff;
  display: flex;
  padding: 40px 40px 10px 40px;
  margin-top: 40px;
}
.re-coverage-text {
  padding-right: 30px;
}
.re-coverage-text h3 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 30px;
  padding-right: 20px;
  color: #c81616;
  text-transform: uppercase;
}
.re-coverage-text ul {
  padding-left: 80px;
  font-size: 22px;
  line-height: 1.8;
}

/* section 3 */

.re-sec-section2 {
  width: 100%;
  height: 100vh;
  color: #fff;
  display: flex;
  padding: 80px;
  margin-top: 50px;
}
.image-box-sec2 img {
  border-radius: 20px;
  justify-content: center;
  width: 530px;
  height: 480px;
}
.re-top-sec2 {
  padding-left: 80px;
}
.re-text-box-sec2 h2 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #c81616;
  text-transform: uppercase;
}
.re-text-box-sec2 ul {
  padding-left: 40px;
  font-size: 22px;
  line-height: 1.7;
}
.re-text-box2-sec2 h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 30px;
  color: #c81616;
  text-transform: uppercase;
}
.re-text-box2-sec2 ul {
  padding-left: 40px;
  font-size: 22px;
  line-height: 1.7;
}

/* -------------section 4 ------------------ */

/* SECTION LAYOUT */
.re-sec-section1 {
  display: flex;
  gap: 40px;
  padding: 30px 5%;
  align-items: center;
}

/* TEXT ANIMATION */
.animate-section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.animate-section.show {
  opacity: 1;
  transform: translateY(0);
}

/* TEXT */
.re-coverage-text-sec3 h3 span {
  font-size: 48px;
  font-weight: 700;
  color: #c81616;
  text-transform: uppercase;
}
.re-coverage-text-sec3 h4 {
  font-size: 36px;
  font-weight: 700;
  margin-top: 20px;
  color: #c81616;
  text-transform: uppercase;
}

.re-coverage-text-sec3 ul {
  margin-top: 15px;
  padding-left: 40px;
  font-size: 22px;
  line-height: 1.7;
}

/* SLIDER */
.slider {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.slides {
  display: flex;
  animation: slide 20s infinite;
}

.slides img {
  width: 100%;
  flex-shrink: 0;
  border-radius: 12px;
}

/* SLIDE ANIMATION */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-100%);
  }
  45% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(-200%);
  }
  70% {
    transform: translateX(-200%);
  }
  75% {
    transform: translateX(-300%);
  }
  95% {
    transform: translateX(-300%);
  }
  100% {
    transform: translateX(0);
  }
}

/* RESPONSIVE */

/* =========================
   TABLET VIEW (max-width: 992px)
========================= */
@media (max-width: 992px) {
  .topic {
    height: 50vh;
    text-align: center;
  }

  .top-head {
    font-size: 42px;
  }

  /* SECTION 2 */
  .re-sec-section {
    flex-direction: column;
    height: auto;
    padding: 30px;
    gap: 30px;
  }

  .re-text-box h2,
  .re-text-box2 h2 {
    font-size: 32px;
  }

  .re-text-box ul,
  .re-text-box2 ul {
    font-size: 20px;
    padding-left: 30px;
  }

  .re-text-box2 p {
    font-size: 22px;
  }

  /* SECTION 3 */
  .re-sec-section1 {
    flex-direction: column;
    height: auto;
    padding: 30px;
    gap: 30px;
  }

  .re-coverage-text h3 {
    font-size: 32px;
  }

  .re-coverage-text ul {
    font-size: 20px;
    padding-left: 40px;
    line-height: 2;
  }

  /* SECTION 4 */
  .re-sec-section2 {
    flex-direction: column;
    height: auto;
    padding: 30px;
    gap: 30px;
  }

  .re-top-sec2 {
    padding-left: 0;
  }

  .re-text-box-sec2 h2,
  .re-text-box2-sec2 h2 {
    font-size: 32px;
  }

  .re-text-box-sec2 ul,
  .re-text-box2-sec2 ul {
    font-size: 20px;
    padding-left: 30px;
  }

  .image-box img,
  .image-box1 img,
  .image-box-sec2 img {
    width: 100%;
    height: auto;
  }
}

/* =========================
   MOBILE VIEW (max-width: 576px)
========================= */
@media (max-width: 576px) {
  .topic {
    height: 40vh;
  }

  .top-head {
    font-size: 32px;
  }

  /* ALL SECTIONS */
  .re-sec-section,
  .re-sec-section1,
  .re-sec-section2 {
    padding: 20px;
  }

  h2 span,
  h3 span {
    font-size: 26px;
  }

  .re-text-box ul,
  .re-text-box2 ul,
  .re-coverage-text ul,
  .re-text-box-sec2 ul,
  .re-text-box2-sec2 ul {
    font-size: 18px;
    padding-left: 25px;
    line-height: 1.8;
  }

  .re-text-box2 p {
    font-size: 18px;
  }

  .re-coverage-text h3 {
    font-size: 26px;
  }

  .image-box,
  .image-box1,
  .image-box-sec2 {
    text-align: center;
  }

  .image-box img,
  .image-box1 img,
  .image-box-sec2 img {
    max-width: 100%;
    border-radius: 15px;
  }
}

@media (max-width: 992px) {
  .re-sec-section1 {
    flex-direction: column;
    text-align: center;
  }

  .slider {
    width: 100%;
  }

  .re-coverage-text-sec3 h3 span {
    font-size: 22px;
  }
}
/* FLOATING LAYOUT */
.floating-container {
  width: 100%;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  z-index: 999;
}

/* EVENT BOX */
.event-box {
  position: relative;
  background: #000000;
  padding: 15px;
  width: 450px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  margin-left: 40px;
  border: 2px solid var(--red-color);
  color: var(--secondary-color);
}
.float-event-close {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 16px;
  cursor: pointer;
}
.event-box h2 {
  font-weight: bold;
  font-size: 22px;
}

.event-box h3 {
  font-family: var(--secondary-font);
  font-weight: 600;
  font-size: 16px;
}

.event-details {
  font-size: 14px;
  margin-top: 5px;
  display: flex;
  gap: 8px;
}
.floating-btn-con {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.event-box button,
.event-box a {
  margin-top: 10px;
  width: 100%;
  background: var(--red-color);
  color: #fff;
  padding: 8px;
  border-radius: 8px;
  font-size: 16px;
  text-align: center;
}
.event-toggle-btn {
  position: fixed;
  bottom: 30px;
  left: 20px;
  background: var(--red-color);
  color: #fff;
  padding: 10px 14px;
  border-radius: 30px;
  cursor: pointer;
  display: none;
  z-index: 100;
  font-size: 14px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
/* WHATSAPP BUTTON */
.floating-container .whatsapp-btn {
  position: relative;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
}

/* WAVE EFFECT */
.floating-container .wave {
  width: fit-content;
  position: fixed;
  bottom: 20px;
  left: 20px;
  cursor: pointer;
  background: rgba(37, 211, 102, 0.5);
  border-radius: 50%;
  animation: wave 2s infinite;
}

.floating-container .wave.delay {
  animation-delay: 0.5s;
}

@keyframes wave {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
.event-toggle-btn:hover {
  animation: blurPulse 1.5s infinite;
}
/* VIBRATE */
.whatsapp-btn:hover {
  animation: vibrate 0.3s linear infinite;
}
@keyframes blurPulse {
  0% {
    filter: scale(0.8);
  }
  50% {
    filter: scale(1);
  }
  100% {
    filter: scale(0.8);
  }
}
@keyframes vibrate {
  0% {
    transform: translate(0);
  }
  25% {
    transform: translate(1px, -1px);
  }
  50% {
    transform: translate(-1px, 1px);
  }
  75% {
    transform: translate(1px, 1px);
  }
  100% {
    transform: translate(0);
  }
}

.whatsapp-btn img {
  width: 28px;
  z-index: 2;
}

/* POPUP */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.622);
  display: none;
  justify-content: center;
  align-items: center;
  font-family: var(--secondary-font);
  z-index: 1000;
}

.popup-content {
  background: #000000;
  padding: 25px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  position: relative;
  color: var(--secondary-color);
  border: 2px solid var(--red-color);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}
.popup-content.popup-image {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  position: relative;
  height: 80vh;
  overflow-y: scroll;
}
.popup-content input,
.popup-content select {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--secondary-color);
  color: var(--secondary-color);
  outline: none;
}
.popup-content select option {
  background: #000000;
  color: var(--secondary-color);
}
.popup-content button {
  width: 100%;
  background: var(--red-color);
  color: white;
  padding: 10px;
  border-radius: 6px;
}

.popup .close-btn {
  width: fit-content;
  position: absolute;
  top: 10px;
  right: 12px;
  cursor: pointer;
}
