* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
  .badge i {
    color: #F4B730; /* Yellow */
  }

body {
  margin: 0;
  padding: 0;
  font-family: 'Outfit', sans-serif;
}

.hero-banner {
  margin-top: 0;
  padding-top: 40px; /* reduce from 60 if needed */
}

.hero-banner h1:first-child {
  margin-top: 0;
}

/* ✅ HERO BANNER */
.hero-banner {
  background-color: #ffffff;
  padding: 60px 20px;
    margin: 0;   
    font-family: 'Outfit', sans-serif;
}
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: auto;
  flex-wrap: wrap;
  gap: 40px;
}
.hero-text {
  flex: 1 1 50%;
  max-width: 500px;
}
.hero-text h1 {
  font-size: 42px;
  color: #152b5a;
  line-height: 1.3;
  margin-bottom: 15px;
}
.hero-text span {
  color: #f4c10f;
}
.hero-text p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

/* ✅ BUTTON CONTAINER */
.styled-buttons {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  margin-top: 30px;
  justify-content: start; 

}

/* ✅ FLAT ROUNDED BUTTON */
.flat-rounded-btn {
  display: flex;
  align-items: center;
  width: 250px;
  height: 55px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  background:white;
  color: #1A2C53;
  border: 2px solid #f4c10f;
  border-radius: 100px;
  box-shadow: 0 6px 18px rgba(244, 193, 15, 0.25);
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  position: relative;
}

/* ✅ ICON SIDE */
.flat-rounded-btn .icon {
  width: 55px;
  height: 100%;
  background: #1A2C53;
  color:   #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background 0.3s ease;
}

/* ✅ TEXT SIDE */
.flat-rounded-btn .text {
  padding: 0 20px;
  flex: 1;
  text-align: left;
  color: #1A2C53;
}

/* ✅ ON HOVER */
.flat-rounded-btn:hover {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(135deg, #f4c10f, #f7d847);
  box-shadow: 0 10px 25px rgba(244, 193, 15, 0.45);
  color: #fff;
}

/* ✅ HOVER COLOR CHANGES INSIDE */
.flat-rounded-btn:hover .text,
.flat-rounded-btn:hover .icon {
  color: #fff;
}

.flat-rounded-btn:hover .icon {
  background: #1A2C53;
}


/* ✅ HERO IMAGE */
.hero-image {
  flex: 1 1 40%;
  position: relative;
  text-align: center;
  width: 450px;
  height: auto;
  max-width: 100%;
  margin-top: -50px;
}
.circle-solid,
.circle-dashed {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.circle-solid {
  width: 500px;
  height: 500px;
  background-color: rgba(244, 193, 15, 0.2);
  z-index: 1;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(244, 193, 15, 0.4);
}
.circle-dashed {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  height: 520px;
  border: 5px dashed #f4c10f;
  border-radius: 50%;
  z-index: 0;
  opacity: 1;

  /* ✅ Animation */
  animation: rotateCircle 25s linear infinite;
}

/* ✅ Animation Keyframes */
@keyframes rotateCircle {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.main-img {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: auto; /* or set fixed height like 500px if needed */
  z-index: 2;
  border-radius: 12px;
    margin-top: -60px;
}


/* ✅ BADGES */
.badge,
.badge-top,
.badge-middle,
.badge-bottom {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  color: #333;
  font-weight: 500;
  z-index: 3;
  min-width: 160px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}
.badge:hover,
.badge-top:hover,
.badge-middle:hover,
.badge-bottom:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.badge-top {
  top: 300px;
  right: 410px;
}
.badge-middle {
  top: 120px;
  right: 20px;
}
.badge-bottom {
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
.badge-bottom img {
  width: 24px;
  margin-right: 8px;
  vertical-align: middle;
}

/* ✅ SUCCESS SECTION */
.success-section {
  background: #fffef6;
  padding: 60px 20px;
}
.success-container {
  max-width: 1140px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}
.success-left {
  flex: 1 1 48%;
}
.success-left h2 {
  font-size: 36px;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.success-left h2 span {
  color: #f4c10f;
}
.success-left p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}
.success-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}
.btn-view,
.btn-watch {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.btn-view {
  background-color: #f4c10f;
  color: #000;
}
.btn-watch {
  position: relative;
  background-color: transparent;
  z-index: 1;
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid #f4c10f;
}
.btn-watch::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(270deg, #f4c10f, #ff6a00, #f4c10f);
  background-size: 600% 600%;
  border-radius: 10px;
  z-index: -1;
  animation: borderAnimation 4s linear infinite;
}
.btn-watch span {
  color: #f4c10f;
  margin-left: 5px;
  font-weight: 600;
}
@keyframes borderAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.success-right {
  flex: 1 1 48%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.grid-box {
  background: #fff;
  color: #000;
  border: 2px solid #f4c10f;
  padding: 16px 20px;
  text-align: center;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}
.grid-box:hover {
  background: #f4c10f;
  color: #000;
}

/* ✅ RESPONSIVE */
/* ✅ MOBILE FIXES — FINAL VERSION */
@media screen and (max-width: 768px) {
  .hero-banner {
    padding: 40px 10px 20px;
  }

  .hero-container {
    flex-direction: column;
    gap: 20px;
    padding: 0 10px;
    text-align: center;
  }

  .hero-text {
    margin: 0;
    padding: 0;
  }

  .hero-text h1 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .hero-text p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero-image {
    margin-top: 10px;
  }

  .main-img {
    margin-top: -20px;
    max-width: 280px;
  }

  .circle-solid {
    width: 300px;
    height: 300px;
     top: 55%;
  }

  .circle-dashed {
    width: 310px;
    height: 310px;
    top: 55%;
      border-width: 3px;
  }


  .mobile-buttons .flat-rounded-btn {
 width: auto !important;
    max-width: 350px;
      flex-direction: row; 
  padding: 0 15px;
  height: 50px;
  white-space: nowrap;
    justify-content: flex-start;
  }

  .mobile-buttons .icon {
    background: #1A2C53;
    color: white;
  }

  .hero-wave {
    margin-top: -80px;
  }
}

@media screen and (max-width: 480px) {
  .hero-text h1 {
    font-size: 26px;
  }
  .flat-rounded-btn {
    width: 92%;
    height: 48px;
    font-size: 14px;
  }
  .flat-rounded-btn .icon {
    width: 42px;
    font-size: 15px;
  }
  .flat-rounded-btn .text {
    padding-left: 14px;
  }
  .circle-solid
  {
    width: 280px;
    height: 280px;
  }
  .circle-dashed {
    width: 290px;
    height: 290px;
  }
  .main-img {
    max-width: 250px;
  }
  .badge-top {
    top: 200px;
    right: 200px;
     height: 50px;
    
    font-size: 11px;
    padding: 6px;
  }

  .badge-middle {
    top: 70px;
    left: 250px;
    height: 50px;
   
    font-size: 11px;
    padding: 6px;
  }
  
}
@media (max-width: 768px) {
  .badge-top,
  .badge-middle {
    width: 80px !important;
    font-size: 10px !important;
  
    min-width: unset !important;
  }

    .hero-wave {
    margin-top:-85px !important;
  }

  
}

@media (max-width: 480px) {
  .badge-top,
  .badge-middle {
    width: 80px !important;
    font-size: 10px !important;

    min-width: unset !important;
  }
   .hero-wave {
    margin-top:-85px !important;
  }
}




.hero-wave {
  position: relative;
  margin-top: -114px; /* adjust if needed */
  z-index: 1;
  overflow: hidden;
  line-height: 0;
}
.hero-wave svg {
  display: block;
  width: 100%;
  height: 120px;
}
/* stpp */
/* FORM GENERAL STYLING */
#enrollPopup form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-row input {
  flex: 1;
  padding: 12px 15px;
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  transition: 0.3s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.form-row input:focus,
.form-group select:focus,
textarea:focus {
  border-color: #f4c10f;
  box-shadow: 0 0 0 2px rgba(244, 193, 15, 0.2);
}

.form-group select,
textarea {
  width: 100%;
  padding: 12px 15px;
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  color: #1A2C53;
}

.radio-group,
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.radio-group label,
.checkbox-group label {
  background: #f9f9f9;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s;
}

.radio-group label:hover,
.checkbox-group label:hover {
  background: #fff7dc;
  border-color: #f4c10f;
}

textarea {
  height: 100px;
  resize: vertical;
  border-radius: 8px;
}

.submit-btn {
  background: #f4c10f;
  color: #1A2C53;
  font-weight: bold;
  padding: 14px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background: #eebf00;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.success-message {
  font-size: 14px;
  color: green;
  text-align: center;
  margin-top: 10px;
}



.word-pop span {
  opacity: 0;
  display: inline-block;
  transform: translateY(20px);
  animation: wordPop 0.6s ease forwards;
}

.word-pop span:nth-child(1) { animation-delay: 0.1s; }
.word-pop span:nth-child(2) { animation-delay: 0.2s; }
.word-pop span:nth-child(3) { animation-delay: 0.3s; }
.word-pop span:nth-child(4) { animation-delay: 0.4s; }
.word-pop span:nth-child(5) { animation-delay: 0.5s; }
.word-pop span:nth-child(6) { animation-delay: 0.6s; }
.word-pop span:nth-child(7) { animation-delay: 0.7s; }
.word-pop span:nth-child(8) { animation-delay: 0.8s; }
.word-pop span:nth-child(9) { animation-delay: 0.9s; }
.word-pop span:nth-child(10) { animation-delay: 1s; }
.word-pop span:nth-child(11) { animation-delay: 1.1s; }

@keyframes wordPop {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Hide mobile-buttons by default */


/* Scrollbar Base */
::-webkit-scrollbar {
  width: 15px;
  background-color: #f0f0f0;
}

/* Track (the background of the scrollbar) */
::-webkit-scrollbar-track {
  background: linear-gradient(to bottom, #fff, #f0f0f0);
  border-radius: 20px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
}

/* Thumb (the draggable part) */
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #f4c10f, #ff9500);
  border-radius: 12px;
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.4);
  border: 2px solid #fff;
}

/* Thumb on Hover */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #e0aa00, #ff7300);
}

/* Optional: Corner where vertical and horizontal scrollbars meet */
::-webkit-scrollbar-corner {
  background: #f0f0f0;
}

    .whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 40px;
  background-color: #25D366;
  color: #fff;
  font-size: 30px;
  padding: 12px 16px;
  border-radius: 50%;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  text-align: center;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128C7E;
}
  /* di */

 .popup {
  display: none;
  position: fixed;
  bottom: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #152b5a, #0e1d3d);
  border: 2px solid #f8b615;
  color: #f8b615;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  padding: 25px 35px;
  z-index: 9999;
  text-align: center;
  animation: fadeIn 0.3s ease-in-out;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.popup.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.popup button {
  margin-top: 20px;
  padding: 8px 18px;
  background: linear-gradient(to right, #f8b615, #f9cd56);
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(248, 182, 21, 0.3);
}

.popup button:hover {
  background: linear-gradient(to right, #f9cd56, #f8b615);
  box-shadow: 0 6px 15px rgba(248, 182, 21, 0.5);
}

#inspectBtn {
  cursor: not-allowed;
  background: linear-gradient(to right, #f8b615, #f4a400);
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  box-shadow: 0 5px 12px rgba(248, 182, 21, 0.4);
  transition: all 0.3s ease;
}

#inspectBtn:hover {
  background: linear-gradient(to right, #f4a400, #f8b615);
}
/* ipad */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
    .circle-solid {
    width: 380px;
    height: 380px;
    top: 55%;
  }

  .circle-dashed {
    width: 400px;
    height: 400px;
    top: 55%;
    border-width: 4px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .main-img {
    max-width: 350px;
    margin: 0 auto;
  }

  .success-container {
    flex-direction: column;
    gap: 30px;
  }

  .success-right {
    grid-template-columns: 1fr 1fr;
  }

  .flat-rounded-btn {
    width: 100%;
    justify-content: center;
  }
  .hero-text h1 {
  font-size: clamp(24px, 5vw, 42px);
}

}
@media screen and (max-width: 600px) {
  .success-right {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 820px) and (max-width: 1024px) {
  .badge-top {
    top: 240px;
    right: 300px;
  }
  .badge-middle {
    top: 100px;
    right: 50px;
  }
}

