/* Base styles */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #f9f9f9, #e0f7fa);
  color: #333; 

  padding: 0;
  max-width: 100%;
}
html, body {
  overflow-x: hidden;
  width: 100%;
}
/* .header {
  display: flex;

  align-items: center;
  justify-content: center; 
  position: relative;
  padding: 10px 40px;
  background: #fff;
  color: #013569;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.header .logo {
  position: absolute;
  left: 20px; 

  height: 60px;
}

.header .header-text {
  font-size: 26px;
  font-weight: 700;
  font-family: sans-serif;
} */
.header {
  display: flex;
  align-items: center;
  position: relative;
  padding: 20px 40px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  color: #013569;
 
}

.logo {
  height: 50px; /* Adjust the size as needed */
  margin-right: 20px;
}

.header-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 26px;
  font-weight: 700;
  font-family: sans-serif;
}

.main-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 20px;
  gap: 60px;
  flex-wrap: wrap; /* Ensure responsiveness */
}

.container {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  width: 100%;
  align-items: flex-start;
}

.content-box {
  flex: 1;
  color: #333;
  padding: 0px;
}

.content-box .webinar-title {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #004080;
}

.content-box .webinar-description {
  font-size: 16px;
  line-height: 1.6;
}

.form-box {
  flex: 1;
  background: #fff;
  padding: 40px;
  width: 70%;  /* Set width to 70% of the screen */
  max-width: 650px; /* Optional: Prevent it from getting too wide on large screens */
  margin: 0 auto; /* Centers it horizontally */
  /* padding: 30px; */
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  max-height: 114.0vh;
  overflow-y: auto;
 

}

.form-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #004080;
  text-align: center;
}

label {
  font-size: 14px;
  font-weight: 900;
  color: #444;
}

input, select, button {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

input:focus, select:focus {
  border-color: #004080;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 64, 128, 0.3);
}

button {
  background-color: #004080;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  padding: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #003366;
}


.phone-input-container {
  display: flex;
  gap: 10px;
}

.footer {
  text-align: center;
  padding: 10px 20px;
  background-color: #004080;
  color: #fff;
  font-size: 14px;
}


/* Features Section */
/* .features-box {
  padding: 20px;
 
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(109, 109, 109, 0.1);
  height: 320px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px; 
}

.feature-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0; 
}

.feature-item p {
  margin: 0; 
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}


.feature-highlight {
  font-weight: bold;
  color: #045ab0;
}



.carousel-container {
  max-width: 800px;
  margin: 0px auto;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: flex;
}

.carousel {
  display: flex;
  width: 100%;
  flex-wrap: nowrap;
  transition: transform 0.5s ease-in-out;
}

.carousel-item {
  min-width: 100%; 
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #f8f9fa;
  min-width: 100%;
  padding: 10px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #333; 
  background-color: white !important; 
  border-radius: 20px; 
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #dce6f2;
}

.carousel-image {
  flex: 0 0 120px;
  margin-right: 20px;
}

.carousel-image img {
  width: 100%;
  max-width: 120px;
  height: auto;
  border-radius: 6px;
}

.carousel-content {
  flex: 1;
}

.carousel-title {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.carousel-description {
  color: #666;
  font-size: 14px;
} */

/* Responsive adjustments */
/*   
@media (max-width: 576px) {
  .carousel-item {
    flex-direction: column;
    text-align: center;
  }
  .carousel-image {
    margin-right: 0;
    margin-bottom: 15px;
  }
}  */



/* Responsive Styles */
@media (max-width: 998px) {
  body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f9f9f9, #e0f7fa);
    color: #333; 
  }
  
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background: #fff;
    color: #013569;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .header .logo {
    height: 60px;
  }
  
  .header .header-text {
    font-size: 26px;
    font-weight: 700;
    font-family: sans-serif;
  }
  
  .main-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
    gap: 60px;
    flex-wrap: wrap; 
  }
  
  .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    width: 100%;
    align-items: flex-start;
  }

  .content-box .webinar-title {
    font-size: 25px; 
  }

  .content-box .webinar-description {
    font-size: 15px; 
  } */


  
/* Features Section */
/* .features-box {
  padding: 10px;

  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  height: fit-content
}



.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px; 
}

.feature-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.feature-item p {
  margin: 0; 
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}


.feature-highlight {
  font-weight: bold;
  color: #045ab0;
} */


  

.form-title {
    font-size: 25px; 
}

.form-box {
  /* flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  height: auto;
  max-height: none; 
  overflow: visible; */
  flex: 1;
  background: #fff;
  
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  max-height: 114.0vh;
  overflow-y: auto;
  
  width: 70%;  /* Set width to 70% of the screen */
  max-width: 650px; /* Optional: Prevent it from getting too wide on large screens */
  margin: 0 auto; /* Centers it horizontally */
}


  button {
    font-size: 14px; 
    padding: 10px;
  }

  /* .carousel-container {
    width: 100%;
    max-width: fit-content;
    margin: auto;
    overflow: hidden;
  }
  
  .carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .carousel-item {
    min-width: 100%;
    padding: 11px;
    margin: 5px 0;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    box-sizing: border-box;
    background-color: white; 
    border-radius: 20px; 
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
    border: 1px solid #dce6f2; 
  }
   */

}

@media (max-width: 768px) {
  .header {
    padding: 10px 20px;
  }

    
  .header .logo {
    height: 40px;

  }

  .header .header-text {
    font-size: 16px;
    font-weight: 600;
    font-family: sans-serif;
    text-align: center;

  }





  /* .features-list {
    gap: 10px; 
  } */



  /* Features Section */
/* .features-box {
  padding: 5px;

  border-radius: 7px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  height: fit-content;
}


.feature-item {
  display: flex;
  align-items: center; 
  gap: 12px;
  margin-bottom: 20px; 
}

.feature-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.feature-item p {
  margin: 0;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
} */

}


@media (max-width: 480px) {
  .header {
    padding: 10px 20px;
  }

    
  .header .logo {
    height: 30px;
  }

  .header .header-text {
    font-size: 12px;
    font-weight: 600;
    font-family: sans-serif;
    text-align: center;

  }


  .form-title {
    font-size: 20px; 
}
  
  .content-box .webinar-title {
    font-size: 20px; 
  }

  .content-box .webinar-description {
    font-size: 14px; 
  }




  .features-list {
    gap: 10px; 
  }


  /* Features Section */
/* .features-box {
  padding: 5px;

  border-radius: 7px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  height: fit-content;
}


.feature-item {
  display: flex;
  align-items: center; 
  gap: 12px; 
  margin-bottom: 20px; 
}

.feature-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0; 
}

.feature-item p {
  margin: 0; 
  font-size: 12px;
  color: #333;
  line-height: 1.5;
}

.carousel-container {
  width: 100%;
  max-width: fit-content;
  margin: auto;
  overflow: hidden;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-item {
  min-width: 100%;
  padding: 7px;
  margin: 5px 0; 
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  box-sizing: border-box;
  background-color: white; 
  border-radius: 20px; 
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
  border: 1px solid #dce6f2; 
}
 */

}

