@import url('https://fonts.googleapis.com/css2?family=Anton&family=Open+Sans:wght@600&display=swap');

.ceo-popup-section {
  padding: 60px 20px;
  background: #ffffff;
  font-family: 'Open Sans', sans-serif;

}

.section-title1 {
  font-family: 'Anton', sans-serif;
  font-size: 4.5rem;
  text-align: center;
  margin-bottom: 10px;
  color: #e60910;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 40px;
}

.category-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.popup-btn {
  font-family: 'Anton', sans-serif;
  font-size: 1.2rem;
  background: #111;
  color: #fff;
  border: none;
  padding: 16px 24px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
  width: 350px;
  display: flex;
  justify-content: center;
  align-self: center;
}

.popup-btn:hover {
  background: #333;
}

/* Modal Overlay */
.popup-modal1 {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.85);
  padding: 20px;
  overflow-y: auto;
}

/* Modal Content Box */
.modal-content1 {
  background: #11111196;
  color: #fff;
  font-family: 'Corbel Light', sans-serif;
  max-width: 650px;
  margin: 8% auto;
  padding: 35px 30px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
  border: 1px solid #ffffff;
  backdrop-filter: blur(5px);
  height: 550px !important;
  position: absolute;
  top:-10%;
  right:30%
}

/* Heading */
.modal-content1 h3 {
  font-family: 'Anton', sans-serif;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #e50914;
  text-align: center;
}

/* Lists */
.modal-content1 ul,
.modal-content1 ol {
  padding-left: 20px;
  line-height: 1.8;
  font-size: 0.98rem;
}

.modal-content1 li {
  margin-bottom: 12px;
  font-weight: bold;
}

/* Final Call Section */
.modal-content1 .final-call {
  margin-top: 30px;
  padding: 15px;
  background: #f1c40f;
  color: #000;
  border-radius: 6px;
  text-align: center;
  font-family: 'Anton', sans-serif;
  font-size: 1.1rem;
}

/* Close Button */
.modal-content1 .close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .modal-content1 {
    padding: 25px 20px;
    margin-top: 20%;
    height: auto !important;
    width: 95% !important;
    right: 2% !important;
    top: -8% !important;
  }

  .modal-content1 h3 {
    font-size: 1.4rem;
  }

  .modal-content1 ul,
  .modal-content1 ol {
    font-size: 0.95rem;
  }

  .modal-content1 .final-call {
    font-size: 1rem;
  }
}


.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #333;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .section-title1 {
    font-size: 4rem;
  }
  .popup-btn {
    font-size: 1rem;
    padding: 14px;
  }
  .modal-content1 {
    padding: 20px;
    margin-top: 15%;
  }
}






.absolute-png-container {
  position: relative; /* Make sure parent has position: relative */
}

.absolute-png {
  position: absolute;
  top: -50px;          /* adjust vertically */
  left: 66%;
 
  width: 420px;        /* adjust size */
  height: auto;
  opacity: 0.9;        /* optional: transparency */
  pointer-events: none; /* makes image non-clickable */
  z-index: 10;
}

@media (max-width:768px){
  .absolute-png{
    display: none !important;
  }
}






.clickme-wrapper {
  position: relative; /* This can be body or any parent container */
}

.clickme-gif {
  position: absolute;
  bottom: -90px;   /* Adjust positioning as needed */
  right: 560px;
  width: 150px;    /* Size can be changed */
  z-index: 1001;
  cursor: pointer;
  animation: pulse 1.5s infinite;
}


@media (max-width:768px){
  .clickme-gif{
    position: absolute;
    bottom: -70px !important;
    left: 100px !important;
    width: 100px !important;
  }
}
