/* General Styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
}

/* Header Section */
.webinar-header {
  background: linear-gradient(135deg, #8b0000, #2c001e);
  color: white;
  padding: 1.5rem;
}
.event-details p,
.workshop-intro,
.experts-info {
  margin: 10px 0;
}
.workshop-topics {
  list-style: none;
  padding-left: 0;
}

.workshop-topics li {
  margin: 8px 0;
  font-size: 16px;
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.text-content {
  flex: 1;
  margin-right: 1.5rem;
}

.event-date {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #c6c6c6;
}

h1 {
  font-size: 2rem;
  margin: 0.8rem 0;
  line-height: 1.3;
}

.description {
  font-size: 1rem;
  margin: 1rem 0 2rem;
  line-height: 1.6;
}

.register-btn {
  background-color: transparent;
  color: white;
  padding: 0.8rem 1.5rem;
  border: 2px solid white;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.register-btn:hover {
  background-color: white;
  color: #2d003a;
}

.image-content img {
  max-width: 100%;
  border-radius: 10px;
  flex: 1;
}

.image-content {
  flex: 1;
}

/* Responsive Design for Webinar Header */
@media (max-width: 768px) {
  .webinar-header {
    padding: 1rem;
  }

  .header-content {
    flex-direction: column; /* Stack content vertically */
    text-align: center;
  }

  .text-content {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  h1 {
    font-size: 1.5rem; /* Reduce font size */
    line-height: 1.2;
  }

  .description {
    font-size: 0.9rem; /* Smaller font size for mobile */
    margin: 0.5rem 0 1.5rem;
  }

  .register-btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem; /* Reduce padding */
    margin-top: 1rem;
  }

  .image-content {
    width: 100%; /* Ensure the image takes full width */
    margin-top: 1rem;
  }

  .image-content img {
    border-radius: 10px; /* Maintain rounded corners */
  }
}
@media screen and (max-width: 768px) {
  .event-details {
    text-align: center; /* Center align text */
  }

  .event-details p {
    font-size: 14px; /* Adjust text size */
    margin: 5px 0; /* Reduce margin */
  }

  .workshop-intro,
  .experts-info {
    text-align: center;
    font-size: 14px;
    padding: 0 10px; /* Add padding for spacing */
  }

  .workshop-topics {
    list-style: none;
    padding: 0;
    text-align: left; /* Align list to left */
    margin: 0 auto;
    max-width: 90%; /* Keep content within screen width */
  }

  .workshop-topics li {
    font-size: 14px;
    margin: 8px 0;
    display: flex;
    align-items: center; /* Align icon with text */
    gap: 5px; /* Add spacing between icon and text */
  }
}

/* Section Styles */
#about {
  padding: 2rem 1rem;
  text-align: center;
}

#about h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0056b3;
}

#agenda {
  padding: 2rem 1rem;
  text-align: center;
}

#agenda .day {
  margin-bottom: 1.5rem;
}

#speakers {
  padding: 2rem 1rem;
  text-align: center;
}

.speaker-card {
  display: inline-block;
  margin: 1rem;
  text-align: center;
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 5px;
  width: 200px;
}

.speaker-card img {
  width: 100%;
  border-radius: 50%;
}

/* Key Highlights Styles */
.key-highlights {
  margin: 20px 0;
  padding: 0;
  list-style: none;
  color: #ffd700;
  font-size: 16px;
}

.key-highlights li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.key-highlights li::before {
  content: "✔️";
  margin-right: 10px;
  color: #ffd700;
  font-weight: bold;
}

.key-highlights li span {
  margin-left: 5px;
}

.register-btn {
  margin-top: 20px;
  background: #ffd700;
  color: #3a0088;
  padding: 12px 24px;
  font-size: 18px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.register-btn:hover {
  background: #e1b700;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #f4f4f4;
  margin-top: 2rem;
}
/* Responsive Design for Section Styles */
@media (max-width: 768px) {
  #about h2,
  #agenda h2,
  #speakers h2 {
    font-size: 1.5rem; /* Adjust section headings */
  }

  #about,
  #agenda,
  #speakers {
    padding: 1rem; /* Reduce section padding */
  }

  .speaker-card {
    width: 100%; /* Stack speaker cards vertically */
    margin-bottom: 1.5rem; /* Add spacing between cards */
  }

  .speaker-card img {
    width: 150px; /* Adjust image size */
    margin: 0 auto;
  }

  .key-highlights {
    font-size: 14px; /* Smaller text size for highlights */
    margin: 10px 0;
  }

  .key-highlights li {
    font-size: 10px;
  }

  .register-btn {
    font-size: 16px; /* Adjust button size */
    padding: 10px 20px;
  }
}
/* Workshop Details Section */
.workshop-details {
  background-color: #f9f9f9; /* Light gray background */
  padding: 2rem; /* Space around the text */
}

.details-container {
  max-width: 900px; /* Limit text width */
  margin: 0 auto; /* Center the content */
  color: #333; /* Darker text for contrast */
  font-family: Arial, sans-serif; /* Professional font */
  line-height: 1.8; /* Increase line spacing for readability */
  font-size: 1rem; /* Base font size */
}

.details-container p {
  margin-bottom: 1.5rem; /* Space between paragraphs */
}

.details-container strong {
  font-size: 1.1rem; /* Slightly larger size for emphasis */
  color: #2d003a; /* Add a highlight color */
}
/* Responsive Design for Workshop Details */
@media (max-width: 768px) {
  .workshop-details {
    padding: 1.5rem; /* Adjust padding for smaller screens */
  }

  .details-container {
    font-size: 0.9rem; /* Smaller font size for readability */
    line-height: 1.6; /* Adjust line height */
    padding: 0 1rem; /* Add padding for better readability */
  }

  .details-container strong {
    font-size: 1rem; /* Reduce emphasized text size */
  }
}

/* Footer Responsive Design */
@media (max-width: 768px) {
  footer {
    padding: 0.8rem; /* Adjust padding */
    font-size: 0.8rem; /* Smaller font size */
  }
}
.table-container1 {
  margin: 20px auto;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  width: 90%; /* Ensure both tables take the same width */
}

table {
  width: 100%; /* Uniform width */
  border-collapse: collapse;
}

th,
td {
  padding: 15px;
  text-align: center;
}
h2 {
  text-align: center;
}

th {
  background-color: #0048ba;
  color: white;
}

tr:nth-child(even) {
  background-color: #f9f9f9;
}

tr:hover {
  background-color: #f1f1f1;
}
.table-container table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  overflow: hidden; /* Ensures corners are not cut off */
  border: 1px solid #ddd; /* Optional border */
  border-radius: 10px; /* Rounded corners for the table */
}

.table-container th,
.table-container td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: center;

  vertical-align: top;
}

.table-container th {
  background-color: #0048ba;
  color: white;
}

.table-container td {
  vertical-align: top;
}

/* Set consistent column widths */
.table-container th:first-child,
.table-container td:first-child {
  width: 25%; /* Time column */
}

.table-container th:nth-child(2),
.table-container td:nth-child(2) {
  width: 75%; /* Topic & Speaker column */
}
#speakers {
  font-family: Arial, sans-serif;
  margin: 20px;
}

#speakers h2 {
  text-align: center;
  color: #0048ba;
}

.speaker-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.speaker-item {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  width: 300px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.speaker-item h3 {
  font-size: 1.2em;
  color: #333;
  margin: 10px 0;
}

.speaker-item p {
  font-size: 1em;
  color: #555;
  margin: 0;
}
.speaker-item:hover {
  background-color: #e6f2ff; /* Light blue background */
  border-color: #0048ba; /* Dark blue border */
  transform: scale(1.02);
  transition: background-color 0.3s ease, border-color 0.3s ease,
    transform 0.3s ease;
}
.imageContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 3rem;
  justify-content: space-around;
  text-align: center;
}

.imageContainer div {
  transition: transform 0.3s ease; /* Smooth scaling */
}
.imageContainer img {
  width: 120px;
  height: 80px;
  border-radius: 10px;
}
.imageContainer1 img {
  width: 150px;
  height: 80px;
  border-radius: 10px;
}
.imageContainer2 img {
  width: 150px;
  height: 100px;
  border-radius: 10px;
}
/* Scale effect on hover */
.imageContainer div:hover {
  transform: scale(1.1); /* Scale up the logo */
}
.speakerImageContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 60px; /* Adds space between containers */
  margin-top: 3rem;
  justify-content: center; /* Centers the profiles horizontally */
  text-align: center; /* Aligns text to center */
}

.speakerImageContainer img {
  width: 150px; /* Adjust size */
  height: 150px; /* Ensure a square shape for perfect roundness */
  border-radius: 50%; /* Makes the image round */
  object-fit: cover; /* Ensures the image fits properly */
  border: 2px solid #ffffff; /* Optional border around the image */
}

.speaker2 {
  text-align: center; /* Align text to center */
  width: 220px;
  height: auto; /* Allow height to adjust based on content */
  margin: 10px; /* Adds space between text and the container */
}
h4 {
  text-align: center;
}
.qr-code-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.qr-code img {
  width: 150px;
  height: 150px;
  border-radius: 10px;
  border: 2px solid #0048ba; /* Optional styling */
}

.qr-code p {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
  text-align: center;
}

.register-btn {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #0048ba;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  text-align: center;
  display: inline-block;
  transition: background-color 0.3s;
}

/* .register-btn:hover {
  background-color: #003580;
} */
/* QR Code Section */
.qr-code-container {
  margin-top: 20px;
  text-align: center;
}

.qr-code {
  width: 150px;
  height: 150px;
  border-radius: 10px;
  border: 2px solid #0048ba;
  margin-bottom: 10px;
}

.qr-code-container p {
  font-size: 14px;
  color: #333;
}
#certificate-img {
  width: 500px; /* Fixed width */
  height: auto; /* Maintain aspect ratio */
  max-height: 500px; /* Limit max height */
  display: block;
  margin: auto; /* Center horizontally */
}
/* Media query for screens smaller than 768px (Tablets & Mobiles) */
@media screen and (max-width: 768px) {
  #certificate-img {
    width: 80%; /* Reduce width for smaller screens */
    max-height: 200px; /* Limit height */
  }
}

/* Media query for very small screens (Mobile Phones) */
@media screen and (max-width: 480px) {
  #certificate-img {
    width: 90%; /* Use almost full width */
    max-height: 150px; /* Reduce height further */
  }
}
nav ul {
  list-style-type: none;
  padding: 0;
}

nav ul li {
  display: inline;
  margin-right: 10px;
}

nav ul li a {
  text-decoration: none;
  /* color: #ffffff; */
  font-size: 18px;
}

nav ul li a i {
  margin-right: 5px;
}
#about {
  display: block;
}

/* Hide other sections initially */
#events,
#executive,
#contact #offerings {
  display: none;
}

.logo {
  position: relative;
  margin-left: 20px;
  bottom: 130px;
}

/* Styles for desktop view */
@media only screen and (min-width: 741px) {
  .logo {
    font-size: 24px;
    /* Adjust font size for desktop view */
  }
}

/* Styles for mobile view */
@media only screen and (max-width: 740px) {
  .logo {
    font-size: 18px;
    bottom: 10px;
    /* Adjust font size for mobile view */
  }
}

a {
  text-decoration: none;
}

#header {
  background-color: white;
  background-size: cover;
  text-align: center;
  /* background-position: center; */
  background-repeat: no-repeat;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-image 0.5s ease-in-out;

  position: relative; /* For absolute positioning of text */
  color: white; /* Text color */
  background-image: url("../../images/eventimages/eventsbackg1.gif");
}
@media (max-width: 600px) {
  #header {
    height: 200px;
    background-position: center;
    /* background-size: cover; */
  }
}

@media (min-width: 601px) and (max-width: 1024px) {
  #header {
    height: 300px;
  }
}

@media (min-width: 1025px) {
  #header {
    height: 400px;
  }
}

#header {
  background-size: cover;
  padding-right: 30px;
}

#header img {
  width: 120px;
  height: 80px;
  margin-top: 10px;
}
.header-text {
  position: absolute; /* Position text relative to #header */
  top: 60%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -50%); /* Adjust for exact center */
  padding: 20px; /* Optional padding for better readability */
  background-color: rgba(
    0,
    0,
    0,
    0.5
  ); /* Semi-transparent background for readability */
  border-radius: 10px; /* Optional rounded corners */
}
.header-text h1 {
  margin: 0; /* Removes default margin */
  font-size: 36px; /* Adjust font size */
}

.header-text p {
  margin: 0; /* Removes default margin */
  font-size: 18px; /* Adjust font size */
}
/* Mobile styles */
@media (max-width: 768px) {
  #header {
    height: 300px; /* Adjust height for smaller screens */
  }

  .logo {
    margin-bottom: 10px; /* Reduce space between logo and text */
  }

  .header-text {
    padding: 15px; /* Reduce padding for smaller screens */
    font-size: 16px; /* Adjust font size */
    width: 90%; /* Ensure text container fits within mobile screens */
  }

  .header-text h1 {
    font-size: 28px; /* Adjust font size for mobile */
  }

  .header-text p {
    font-size: 14px; /* Adjust font size for mobile */
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  #header {
    height: 270px; /* Further adjust height for very small screens */
  }

  .logo {
    margin-bottom: 5px; /* Reduce space further */
  }

  .header-text {
    padding: 10px; /* Further reduce padding */
    font-size: 14px; /* Adjust font size */
  }

  .header-text h1 {
    font-size: 18px; /* Further adjust font size for mobile */
  }

  .header-text p {
    font-size: 12px; /* Further adjust font size for mobile */
  }
}
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

nav.nav-link {
  position: relative;
  bottom: 140px;
}

nav ul li {
  display: inline-block;
  margin-right: 45px;
  margin-top: 0px;
  position: relative;
}

nav a {
  text-decoration: none;
  color: #f8f8f8;
  font-weight: bold;
}
/* Styles for mobile view */
@media (max-width: 767px) {
  nav a {
    color: #000000; /* Change this to the color you want for mobile view */
  }
  nav.nav-link {
    position: relative;
    bottom: 125px;
  }
}

.navbar-color.active,
.navbar-color:hover {
  background: #00bfcc;
  transition: 0.3s ease;
}

#homecontent {
  display: block;
}

.menu {
  cursor: pointer;
  display: none;
}

@media all and (max-width: 900px) {
  .menu {
    display: block;
    margin-bottom: 3px;
    margin-top: 70px;
  }

  ul.list {
    list-style-type: none;
    position: fixed;
    top: 105px;
    flex-direction: column;
    right: 0;
    background: #f8f8f8;
    transform: translateX(100%);
    transition: all 0.5s;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
  }

  nav ul li {
    display: block;
    padding: 20px;
  }

  nav ul li {
    display: block;
    padding: 20px;
  }
}

@media all and (max-width: 740px) {
  ul {
    flex-direction: column;
  }

  .logo {
    align-self: flex-start;
    margin: 10px 0px 0px 20px;
  }

  .showmenu {
    display: block;
  }

  /* by jeeva */

  .menu {
    display: block;
  }
}

/* by jeeva */

.display {
  transform: translateX(0%) !important;
}

@media all and (max-width: 300px) {
  .logo {
    align-self: center;
    /* Center the logo within its container */
    margin: 10px 0;
    /* Adjust margin for spacing */
    max-width: 100%;
    /* Ensure the logo doesn't exceed the width of its container */
  }
}

/* Style for the text */
h5 {
  margin: 5px 0;
}
.menu-line {
  height: 3px;
  width: 20px;
  background-color: #ffffff;
  margin-bottom: 3px;
}

.menu {
  cursor: pointer;
  display: none;
}

@media all and (max-width: 900px) {
  .menu {
    display: block;
    margin-bottom: 3px;
  }

  ul.list {
    list-style-type: none;
    position: fixed;
    top: 105px;
    flex-direction: column;
    right: 0;
    background: #f8f8f8;
    transform: translateX(100%);
    transition: all 0.5s;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
  }

  nav ul li {
    display: block;
    padding: 20px;
  }

  nav ul li {
    display: block;
    padding: 20px;
  }
}

@media all and (max-width: 740px) {
  ul {
    flex-direction: column;
  }

  .logo {
    align-self: flex-start;
    margin: 10px 0px 0px 20px;
  }

  .showmenu {
    display: block;
  }

  /* by jeeva */

  .menu {
    display: block;
  }
}
