/* style.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  height: 100%;
}

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

.wrap-dw {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
span {
  font-family: "Simplon Norm";

  line-height: 3.8rem;

  color: var(--text-color);
}

p,
li,
input,
button,
label {
  font-family: "Simplon Norm";

  font-weight: 200;

  color: var(--text-color);
}

:root {
  --primary-color: #187fa4;
  --secondary-color: #6c757d;
  --text-color: #0c2a31;
}

.title-dw {
  width: 100%;
  background-color: var(--primary-color);
  font-size: 32px;
  text-align: center;
  padding: 7px 0;
  color: #fff;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

.para-dw {
  font-size: 15px;
  letter-spacing: 1.1px;
  line-height: 1.8rem;
  padding: 10px 20px;
}

/* For tablets and larger devices */

@media (min-width: 768px) {
  .title-dw {
    font-size: 32px;
  }
}

/* For smaller screens (phones) */

@media (max-width: 767px) {
  .title-dw {
    font-size: 25px;
  }
}

/* For smaller phones */

@media (max-width: 480px) {
  .title-dw {
    font-size: 25px;
  }

  .para-dw {
    text-align: center;

    padding: 0;
  }
}

/* Main Button */
.register-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  background: var(--primary-color);
  border: none;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(24, 127, 164, 0.5), 0 0 20px rgba(24, 127, 164, 0.3);
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  text-decoration: none;
}

.register-button svg {
  margin-right: 8px;
  fill: #ffffff;
  width: 20px;
  height: 20px;
}

.register-button:hover {
  box-shadow: 0 0 15px rgba(24, 127, 164, 0.8), 0 0 25px rgba(24, 127, 164, 0.6);
  transform: translateY(-2px);
}

.register-button:active {
  transform: translateY(0);
  box-shadow: 0 0 5px rgba(24, 127, 164, 0.4);
}

/* Main Button End*/

/* Hero Section */

.hero-dw {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url(".././img/Hero/bg3.jpg") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  margin: 0;
}

.overlay-dw {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: rgba(0, 0, 0, 0.5);

  z-index: 1;
}

.hero-dw .content-dw {
  position: relative;

  z-index: 2;

  max-width: 800px;

  padding: 20px;
}

.hero-dw .content-dw img {
  width: 22%;
}

.hero-dw .content-dw h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: fadeInDown 1s ease;
}

.hero-dw .content-dw p {
  font-size: 1.2rem;
  -bottom: 1.5rem;
  animation: fadeIn 1.5s ease;
}

.hero-header-dw {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  font-size: 55px;
}

.hero-info-dw {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 20px;

  margin-top: 20px;
}

.hero-info-item-dw {
  display: flex;

  align-items: center;

  gap: 10px;
}

.hero-info-item-dw span {
  font-size: 18px;

  color: #fff;

  text-transform: uppercase;

  font-weight: 600;
}

.hero-info-item-dw span sup {
  text-transform: lowercase;
}

.hero-info-icon-dw {
  width: 20px;

  height: 20px;

  fill: #fff;
}

@media (min-width: 768px) {
}

/* For smaller screens (phones) */

@media (max-width: 767px) {
}

/* For smaller phones */

@media (max-width: 480px) {
  .hero-dw .content-dw h1 {
    font-size: 1.8rem;

    line-height: 2.7rem;
  }

  .hero-dw .content-dw img {
    width: 25%;
  }
}

/* About Section */

.about-dw {
  width: 100%;

  min-height: 60vh;

  display: flex;

  flex-wrap: wrap;
}

.about-left-dw {
  width: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-direction: column;

  padding: 50px 0;
}

.about-right-dw {
  width: 50%;

  display: flex;

  align-items: center;

  justify-content: center;
}

/* For tablets and larger devices */

@media (min-width: 768px) {
}

/* For smaller screens (phones) */

@media (max-width: 767px) {
  .about-dw {
    flex-direction: column-reverse;
  }

  .about-right-dw,
  .about-left-dw {
    width: 100%;
  }

  .about-right-dw {
    padding-top: 40px;
  }
}

/* For smaller phones */

@media (max-width: 480px) {
  .about-dw {
    flex-direction: column-reverse;
  }
}

/* Card Section 01 */

.card-section-dw {
  width: 100%;

  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 2;

  padding: 40px 0;
}

/* Animation */

/* Card 01 */

.card-dw {
  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  width: 70%;

  border-radius: 24px;

  line-height: 1.6;

  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-content-dw {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 24px;

  border-radius: 22px;

  color: #ffffff;

  overflow: hidden;

  background: #0a3cff;

  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-content-dw img {
  width: 100%;
}

.card-content-dw::before {
  position: absolute;

  content: "";

  top: -4%;

  left: 50%;

  width: 90%;

  height: 90%;

  transform: translate(-50%);

  background: #ced8ff;

  z-index: -1;

  transform-origin: bottom;

  border-radius: inherit;

  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-content-dw::after {
  position: absolute;

  content: "";

  top: -8%;

  left: 50%;

  width: 80%;

  height: 80%;

  transform: translate(-50%);

  background: #e7ecff;

  z-index: -2;

  transform-origin: bottom;

  border-radius: inherit;

  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-dw:hover {
  transform: translate(0px, -16px);
}

.card-dw:hover .card-content-dw::before {
  rotate: -8deg;

  top: 0;

  width: 100%;

  height: 100%;
}

.card-dw:hover .card-content-dw::after {
  rotate: 8deg;

  top: 0;

  width: 100%;

  height: 100%;
}

/* For tablets and larger devices */

@media (min-width: 768px) {
}

/* For smaller screens (phones) */

@media (max-width: 767px) {
  .card-dw {
    width: 100%;
  }
}

/* For smaller phones */

@media (max-width: 480px) {
  .card-dw {
    width: 100%;
  }
}

/* Card 02 */

.card2-container-dw {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 280px;
  height: 225px;
  overflow: hidden;
  margin: 15px;
  border-bottom: 2px solid var(--primary-color);
  transition: all 0.3s ease;
}

.card2-container-dw:hover {
  transform: translateY(-10px);
  cursor: pointer;
}

.card2-dw {
  padding: 16px;
}

.card2-front-content-dw {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.card2-front-content-dw p {
  font-size: 18px;
  margin: 0;
  color: var(--primary-color);
  font-weight: 600;
}

.card2-content-dw p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.card2-icon-dw {
  width: 30px;
  height: 30px;
  fill: var(--primary-color);
}

/* Agenda */

.agenda-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(".././img/bg4.jpg") center center/cover no-repeat;
  background-position: top;
  position: relative;
}

.agenda-container {
  max-width: 650px;
  border-radius: 10px;
  width: 100%;
  padding: 20px;
  background: var(--primary-color);
  color: #fff;
  z-index: 2;
  margin: 40px 0;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.agenda-timeline {
  position: relative;
  padding: 20px 0;
  margin: 0;
  list-style: none;
}

.agenda-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  width: 4px;
  background: #fff;
}

.agenda-item {
  position: relative;

  margin-bottom: 40px;

  padding-left: 80px;
}
.agenda-item li {
  color: #fff;
  font-size: 14px;
}

.agenda-item ul {
  padding: 0 14px;
}
.agenda-item:last-child {
  margin-bottom: 0;
}

.agenda-item::before {
  content: "";

  position: absolute;

  top: 10px;

  left: 23px;

  width: 10px;

  height: 10px;

  background: var(--primary-color);

  border: 4px solid white;

  border-radius: 50%;

  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);

  animation: bounce 1s infinite alternate;
}

@keyframes bounce {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-10px);
  }
}

.agenda-time {
  font-size: 14px;

  color: rgb(222, 222, 222);

  font-weight: bold;
}

.agenda-title {
  font-size: 18px;

  font-weight: bold;

  margin: 5px 0;

  color: #fff;
}

.agenda-description {
  font-size: 14px;
  margin: 0;
  color: #fff;
  margin: 5px 0;
}

/* Why Attend Section */

.attend-area-dw {
  padding: 40px 0;
}

.attend-area-dw p {
  text-align: center;
}

.card_section4-dw {
  display: flex;

  justify-content: center;

  gap: 3;

  flex-wrap: wrap;

  padding: 50px 0;
}

.card4-dw {
  width: 20%;

  margin: 0 15px;

  height: 180px;
}

.card4-dw img {
  height: 180px;
}

@media (min-width: 768px) {
}

/* For smaller screens (phones) */

@media (max-width: 767px) {
  .card_section4-dw {
    flex-direction: column;

    justify-content: center;

    align-items: center;

    padding: 40px 0;
  }

  .card4-dw {
    width: 300px;

    margin: 20px 0;
  }

  .card4-dw img {
    width: 300px;
  }
}

/* For smaller phones */

@media (max-width: 480px) {
  .card_section4-dw {
    flex-direction: column;

    justify-content: center;

    align-items: center;

    padding: 40px 0;
  }

  .card4-dw {
    width: 300px;

    margin: 20px 0;
  }

  .card4-dw img {
    width: 300px;
  }
}

/* General Reset */
body,
h1,
h5,
p {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

/* Section Styles */
.overlay {
  position: relative;
  overflow: hidden;
  background: linear-gradient(226deg, #062c3a 38.51%, #093342 83.25%);
  padding: 50px 0;
  color: #fff;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.col-xl-5,
.col-xl-6 {
  padding: 20px;
}

.col-xl-5 {
  flex: 0 0 45%;
}

.col-xl-6 {
  flex: 0 0 50%;
}

.card-body {
  background-color: rgba(65, 65, 65, 0.308);
  border-radius: 10px;
  backdrop-filter: blur(30px);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 7px 29px 0px;
  padding: 41px;
  text-align: left;
  position: relative;
}
/* Form Styles */
.signup-form {
  width: 100%;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input {
  width: 100%;
  padding: 15px 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  background: rgba(65, 65, 65, 0.308);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px); /* Glass effect */
  color: #fff; /* Text color for contrast */
  outline: none; /* Remove default outline */
  transition: all 0.3s ease; /* Smooth transition for hover/focus */
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.7); /* Placeholder color */
}

.form-group input:hover {
  background: rgba(255, 255, 255, 0.3); /* Slightly more opaque on hover */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Enhance shadow */
}

.form-group input:focus {
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.4); /* More opaque on focus */
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Stronger shadow */
}

.form-group.phone {
  margin-bottom: 20px;
}

.form-check input {
  margin-right: 10px;
}

.form-check label {
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
}

.form-check a {
  color: #fff;
  text-decoration: underline;
}

.form-header-dw {
  font-size: 40px;
  color: #fff;
}

.form-date-dw {
  font-family: 18px;
  color: #fff;
}

.form-left-dw {
  width: 50%;
}

.form-right-dw {
  width: 50%;
}
.lead {
  font-size: 18px;
  font-weight: 400;
}

.privacy-policy {
  font-size: 14px;
}

.privacy-policy a {
  color: #fff;
}

/* For smaller screens (phones) */

@media (max-width: 767px) {
  .form-left-dw {
    width: 100%;
  }

  .form-right-dw {
    width: 100%;
  }

  .form-header-dw {
    font-size: 25px;
    color: #fff;
    line-height: 2.1rem;
    margin: 15px 0;
  }

  .form-date-dw {
    font-size: 15px;
    color: #fff;
  }

  .form-logo-dw {
    width: 30%;
  }
}

/* For smaller phones */

@media (max-width: 480px) {
  .form-left-dw {
    width: 100%;
  }

  .form-right-dw {
    width: 100%;
  }

  .form-header-dw {
    font-size: 25px;
    color: #fff;
    line-height: 2.1rem;
  }

  .form-date-dw {
    font-family: 11px;
    color: #fff;
  }
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  .col-xl-5,
  .col-xl-6 {
    flex: 0 0 100%;
    text-align: center;
  }

  .row {
    flex-direction: column;
  }
}

.form-check {
  display: flex;
  align-items: flex-start; /* Aligns the checkbox and label at the top */
  gap: 10px; /* Adds space between checkbox and text */
}

.form-check input[type="checkbox"] {
  margin-top: 4px;
}

.form-check label {
  font-size: 14px;
  line-height: 1.6;
  color: #fff; /* Change this to the desired text color */
}

.form-check a {
  color: #fff; /* Adjust link color as needed */
  text-decoration: underline;
}

.form-check a:hover {
  color: #f0e68c; /* Optional hover effect for the link */
}

/* Speaker Section */

.speaker-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  max-width: 300px;
  margin: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-bottom: 2px solid var(--primary-color);
  transition: all 0.4s ease;
  opacity: 0.75 !important;
}
.speaker-card:hover {
  transform: translateY(-10px);
  cursor: pointer;
  opacity: 1 !important;
}
.speaker-image img {
  width: 50%;
  height: auto;
  border-radius: 50%;
  border: 4px solid #187fa4;
}

.speaker-card:hover .speaker-image img {
  border: none;
}

.speaker-name {
  font-size: 1.2em;
  font-weight: bold;
  margin: 10px 0 5px;
  color: #333;
}

.speaker-title {
  font-size: 0.9em;
  color: #555;
  margin-bottom: 10px;
}

.speaker-bio {
  font-size: 0.9em;
  color: #666;
}

.social-links {
  margin-top: 15px;
}

.social-links a {
  color: #187fa4;
  margin: 0 10px;
  font-size: 1.2em;
  text-decoration: none;
}

.social-links a:hover {
  color: rgb(255, 255, 255);
}

/* Style for the speaker card */
.speaker-card {
  width: 250px;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.speaker-card:hover {
  transform: scale(1.05);
}

/* Modal styles */

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px; 
}

/* Modal content box */
.modal-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  width: 500px;
  max-width: 90%; 
  animation: flip-horizontal-top 0.4s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
  border-bottom: 4px solid #187fa4;
  position: relative; 
}

.modal-content p {
  margin: 10px 0;
}

.modal-content h2{
  color: #187fa4;
}


/* Close button */
.close-btn {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
}

/* Speaker Image */
.speaker-image-modal img {
  width: 30%;
  height: auto;
  border-radius: 50%;
  border: 4px solid #187fa4;
}


/* Flip Animation */
@keyframes flip-horizontal-top {
  0% {
    transform: rotateX(90deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0);
    opacity: 1;
  }
}



/* Small Tablets & Large Phones (max-width: 768px) */
@media (max-width: 768px) {
  .modal-content {
    width: 90%;
    padding: 15px;
  }
  
  .speaker-image-modal img {
    width: 40%; 
  }

  .close-btn {
    font-size: 22px;
    right: 15px;
    top: 5px;
  }
}

/* Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
  .modal-content {
    width: 95%;
    padding: 15px;
  }

  .modal-content h2 {
    font-size: 18px;
  }

  .modal-content p {
    font-size: 14px;
  }

  .speaker-image-modal img {
    width: 50%; 
  }

  .close-btn {
    font-size: 20px;
    right: 10px;
    top: 5px;
  }
}

