* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Archivo", serif;
}

p,
li,
input,
button,
select {
  font-family: "Archivo", serif;
}

.container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrap {
  width: 90%;
  max-width: 1200px;
  display: flex;
}

.wrap-nav {
  width: 95%;
  max-width: 1200px;
}
.navbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 15px 20px;
  background-color: white;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000; /* Ensures navbar stays above other content */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Adds a subtle shadow */
}
.navbar img {
  height: 30px; /* Adjust as needed */
  max-width: 100%;
}
.navbar .register-btn {
  padding: 12px 25px;
  background-color: #000;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.navbar .register-btn:hover {
  background-color: #424141;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .wrap {
    width: 95%;
    padding: 0 20px;
  }
  .navbar {
    padding: 10px 15px;
  }
  .navbar img {
    height: 25px;
  }
  .navbar .register-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Hero Section */
/* Default Desktop Styles */
.hero-exo {
  width: 100%;
  min-height: 95vh;
  background-image: linear-gradient(90deg, #005e9e, #4fb484);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
}

.left {
  width: 60%;
}

.right {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
}

.hero-head {
  color: #fff;
  font-size: 48px;
  font-weight: 600;
  line-height: 58px;
}

.hero-border {
  width: 100%;
}

.hero-details {
  font-style: normal;
  font-weight: 300;
  font-size: 22px;
  line-height: 26px;
  color: #ffffff;
  padding-bottom: 15px;
  width: 100%;
}

/* Form Styling */
.form-container {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  width: 370px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 60px;
}

.form-container input,
.form-container select {
  width: 100%;
  height: 47px;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #f2ecec;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.form-container input::placeholder {
  color: #bababa;
}

/* Style for the checkbox container */
.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

/* Style for the checkbox */
.checkbox-container input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  cursor: pointer;
}


/* Style for the privacy policy link */
.checkbox-container a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

/* Phone Input (intl-tel-input) */
.iti {
  width: 100%;
  display: block;
  font-size: 15px;
  font-family: "Archivo", serif;
}

.intl-tel-input .country-list {
  max-height: 200px;
}

.btn-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.register-btn-2 {
  padding: 15px 20px;
  background: black;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 45px;
}

.register-btn-2:hover {
    background-color: #424141;
}

/* Responsive Styles */

/* Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
  .wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .left,
  .right {
    width: 100%;
    text-align: center;
    align-items: center;
    margin-top: 20px;
  }

  .hero-head {
    font-size: 36px;
    line-height: 46px;
    margin-top: 70px;
  }

  .hero-details {
    font-size: 18px;
    line-height: 24px;
  }

  .form-container {
    width: 80%;
    margin-top: 10px;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .hero-exo {
    height: auto;
    padding: 20px 0;
  }

  .wrap {
    flex-direction: column;
    width: 100%;
  }

  .hero-head {
    font-size: 28px;
    line-height: 38px;
  }

  .hero-details {
    font-size: 16px;
    line-height: 22px;
  }

  .form-container {
    width: 90%;
    padding: 20px;
    margin-top: 30px;
  }

  .form-container input,
  .form-container select {
    height: 42px;
    font-size: 0.9rem;
  }

  .register-btn-2 {
    font-size: 14px;
    padding: 12px 15px;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .hero-head {
    font-size: 24px;
    line-height: 32px;
  }

  .hero-details {
    font-size: 14px;
    line-height: 20px;
  }

  .form-container {
    width: 100%;
    padding: 15px;
  }

  .form-container input,
  .form-container select {
    font-size: 0.85rem;
    height: 40px;
  }

  .register-btn-2 {
    font-size: 12px;
    padding: 10px;
  }
}

/* Event Overview */

.overview {
  width: 100%;
  background-color: #fff;
  padding: 50px 0;
}

.title-overview {
  font-size: 40px;
  line-height: 56px;
  text-align: center;
}

.para-overview {
  width: 100%;
  font-size: 20px;
  line-height: 33px;
  padding-top: 20px;
  text-align: center;
  font-weight: 300;
}

/* Tablet View (768px and below) */
@media (max-width: 768px) {
  .title-overview {
    font-size: 32px;
    line-height: 44px;
  }

  .para-overview {
    font-size: 18px;
    line-height: 30px;
    padding: 15px 0;
  }

  .overview {
    padding: 40px 0;
  }
}

/* Mobile View (480px and below) */
@media (max-width: 480px) {
  .title-overview {
    font-size: 34px;
    line-height: 34px;
  }

  .para-overview {
    font-size: 16px;
    line-height: 26px;
  }

  .overview {
    padding: 30px 0;
  }
}
.agenda-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 50px 0;
}
.agenda-section img {
  width: 80%;
  margin: 40px 0;
}

/* Benefits Section */

.right-b,
.left-b {
  width: 50%;
}

.left-b {
  padding-top: 50px;
}
.left-b h1 {
  text-align: left;
}

.right-b{
  display: flex;
  align-items: center;
  justify-content: end;
}
.right-b img {
  width: 82%;
}

.para-b {
  font-size: 20px;
  line-height: 28px;
  font-weight: 300;
  margin: 20px 0;
}

/* Tablet View (768px and below) */
@media screen and (max-width: 1024px) {
  .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .left-b,
  .right-b {
    width: 100%;
    padding: 20px;
  }

  .left-b h1 {
    text-align: center;
  }

  .para-b {
    font-size: 18px;
    line-height: 26px;
  }

  .right-b img {
    max-width: 80%;
  }
}

/* Mobile View (480px and below) */
@media (max-width: 480px) {
  .left-b,
  .right-b {
    width: 100%;
    padding: 0 15px;
  }

  .left-b {
    margin: 0;
  }

  .left-b h1 {
    font-size: 24px;
    text-align: center;
  }

  .para-b {
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    margin: 10px 0;
  }

  .right-b img {
    max-width: 100%;

  }

  .agenda-section {
    padding: 10px 0;
  }

  .agenda-section img {
    width: 100%;
    margin: 40px 0;
  }
}

.speaker-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 50px 0;
  flex-wrap: wrap;
}

.card {
  max-width: 310px;
  width: 100%;
  height: 465px;
  background-color: #8980f5;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
}

.speaker-img {
  width: 100%;
  height: 65%;
}
.card-content {
  padding: 15px;
  height: 100%;
  background-color: #8980f5;
  color: white;
}
.card h3 {
  margin: 0;
  line-height: 30px;
  letter-spacing: -0.019em;
  text-align: center;
  margin-bottom: 5px;
  font-size: 18px !important;
  font-weight: 700;
}
.card p {
  margin: 5px 0;
  font-weight: 400;
  font-size: 16px !important;
  line-height: 20px !important;
  text-align: center;
}
.linkedin-icon {
  display: inline-block;
  position: absolute;
  bottom: 10px;
}
.linkedin-icon img {
  width: 24px;
  height: 24px;
}

@media screen and (max-width: 1024px) {
  .speaker-section {
    gap: 20px;
  }
  .card {
    max-width: 300px;
  }
  .speaker-img {
    width: 100%;
    height: 65%;
  }
}

/* Mobile View */
@media screen and (max-width: 768px) {
  .speaker-section {
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
  }
  .card {
    max-width: 90%;
  }

  .card-content {
    padding: 20px;
  }
}

/* CTA Section */

.cta-section {
  background: #349867;
  text-align: center;
  padding: 30px 20px;
}

.cta-content h2 {
  color: white;
  font-weight: 600;
  font-size: 43px;
  line-height: 55px;
}

.cta-button {
  display: inline-block;
  background: white;
  color: black;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  padding: 18px 40px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
  margin-top: 20px;
}

.cta-button:hover {
  background: #f0f0f0;
}

@media screen and (max-width: 768px) {
  .cta-content h2 {
      font-size: 24px;
  }
  .cta-button {
      font-size: 14px;
      padding: 10px 20px;
  }
}