@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@100..900&family=Dela+Gothic+One&family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Oswald:wght@200..700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@100..900&family=Dela+Gothic+One&family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Oswald:wght@200..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: inherit;
}

body {
  min-height: 100vh;
  background: rgb(255, 255, 255);
  background-size: cover;
  background-position: center;
}

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

  /* About Section */
/* Base Styles */
.about-section {
  background-color: #f9f9f9; /* Slightly lighter background for newspaper feel */
  padding: 60px 20px;
  border: 1px solid #e0e0e0; /* Subtle border to emulate newspaper columns */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); /* Soft shadow for a lift effect */
  font-family: "Georgia", serif; /* Classic serif font for a traditional look */
}

.about-section .container {
  max-width: 1250px;
  margin: 0 auto;
  text-align: justify; /* Justified text for a newspaper feel */
}

.about-section h2 {
  font-size: 2.8rem;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.4;
  font-weight: 400;
  font-family: "Merriweather", serif; /* Elegant serif font for headlines */
}

.about-section .highlight {
  color: #000;
  font-weight: 700;
  border-bottom: 2px solid #ec7d49; /* Subtle underline for emphasis */
}

.about-section p {
  font-size: 1.45rem;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.8;
}

.event-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  flex-wrap: wrap;
  border-top: 1px solid #dcdcdc; /* Thin border to separate content */
  border-bottom: 1px solid #dcdcdc;
  margin-top: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease; /* Hover effect for interactivity */
}

.info-item:hover {
  transform: scale(1.05); /* Subtle hover effect */
}

.info-item i {
  margin-right: 8px;
  font-size: 24px;
  color: #ec7d49; /* Bold color for icons */
}

.info-text {
  font-size: 24px;
  color: #333;
  font-family: "Times New Roman", serif; /* Classic font for dates and locations */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .about-section h2 {
    font-size: 2.5rem;
  }

  .about-section p {
    font-size: 1.4rem;
  }

  .info-text {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .about-section h2 {
    font-size: 2.2rem;
  }

  .about-section p {
    font-size: 1.35rem;
  }

  .info-text {
    font-size: 20px;
  }

  .event-info {
    padding: 15px;
  }
}

@media (max-width: 600px) {
  .about-section {
    padding: 40px 10px;
  }

  .about-section h2 {
    font-size: 1.8rem;
    text-align: left;
  }

  .about-section p {
    font-size: 1rem;
    text-align: left;
  }

  .info-item {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .info-item i {
    font-size: 20px;
  }

  .event-info {
    flex-direction: column;
    text-align: center;
  }
}


/* Agenda Section */
/* Base Styles */
/* CSS code */
/* General Styles */
.agenda-section {
  background-color: #ffffff;
  padding: 60px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.intro-container h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.intro-container p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
}

.agenda-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.agenda-image {
  flex: 1;
  width: 100%; /* Make the image responsive */
  max-width: 35%; /* Limit the maximum width */
  border-radius: 12px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  margin: 10px;
  opacity: 0.9;
  transition: opacity 0.3s ease-in-out;
}

.agenda-image:hover {
  opacity: 1;
}

.agenda-content {
  flex: 1;
  padding: 20px;
  margin: 10px;
  text-align: left;
}

.agenda-content h3 {
  font-size: 1.7rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 15px;
}

.agenda-content p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* Reverse Layout for Even Items */
.agenda-item:nth-child(even) {
  flex-direction: row-reverse;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .agenda-item {
    flex-direction: column; /* Stack vertically on tablets and smaller devices */
    align-items: flex-start;
  }

  .agenda-image {
    max-width: 100%; /* Ensure image takes full width */
    margin: 0; /* Remove margin for a cleaner look */
  }

  .agenda-content {
    max-width: 100%; /* Full width */
    margin: 0; /* Remove margin */
    padding-top: 20px; /* Add padding for spacing */
  }

  .agenda-content h3 {
    font-size: 1.5rem;
  }

  .agenda-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .agenda-item {
    flex-direction: column; /* Stack vertically */
    align-items: flex-start;
  }

  .agenda-image {
    max-width: 100%; /* Full width for smaller screens */
    width: 100%; /* Make sure it scales properly */
    height: auto; /* Maintain aspect ratio */
    margin: 0 0 10px 0; /* Adjust margin for spacing */
  }

  .agenda-content {
    padding: 0;
    padding-top: 20px;
    text-align: left;
  }

  .agenda-content h3 {
    font-size: 1.3rem;
  }

  .agenda-content p {
    font-size: 0.85rem;
  }
}



/* conference section */
.container-theme {
    position: relative;
    width: 100%;
    height: 60px; /* Adjust height as needed */
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 10px;
}

.row1 {
    display: flex;
    white-space: nowrap;
    animation: scroll-row 47s linear infinite;
}

.row2 {
    display: flex;
    white-space: nowrap;
    animation: scroll-row 49s linear infinite;
}

.row3 {
    display: flex;
    white-space: nowrap;
    animation: scroll-row 48s linear infinite;
}

.row4 {
    display: flex;
    white-space: nowrap;
    animation: scroll-row 40s linear infinite;
}

.row5 {
    display: flex;
    white-space: nowrap;
    animation: scroll-row 44s linear infinite;
}

.element {
    display: inline-block;
    padding: 15px 30px;
    border: 2px solid rgb(0, 0, 0);
    border-color: rgb(0, 0, 0);
    color: black;
    border-radius: 25px;
}

.logo {
    display: inline-block;
    width: auto;  /* Adjust the size as needed */
    height: 50px; /* Adjust the size as needed */
    margin-right: 10px;
    margin-left: 10px;
}

@keyframes scroll-row {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .container-theme {
        margin-top: 10px;
    }
    .element {
        padding: 10px 20px;
        font-size: 14px;
    }
    .logo {
        width: 30px;
        height: auto;
    }
}



/* blog section */
.blog-section {
  padding: 40px 0;
  background-color: #f4f4f4;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}

.blog-card {
  flex: 1 1 calc(33.333% - 20px);
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.blog-card:hover {
  transform: translateY(-5px);
}

.image-container {
  position: relative;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: opacity 0.3s ease;
  opacity: 0.8;
}

.image-container:hover img {
  opacity: 1;
}

.content {
  padding: 15px;
  text-align: left;
}

h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

p {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
}

.read-article {
  font-weight: bold;
  color: black;
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

.read-article::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background-color: black;
  transition: width 0.3s;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.read-article:hover {
  color: #000;
}

.read-article:hover::after {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .blog-card {
      flex: 1 1 calc(50% - 20px);
  }
}

@media screen and (max-width: 480px) {
  .blog-card {
      flex: 1 1 100%;
  }
}

/* faq section */

.faq {
  margin: 0;
  padding: 10px;
  background-color: #f8f8f8;
}

.container-faq {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 40px;
}

.service-box {
  background-color: white;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}

.service-number {
  font-size: 2rem;
  font-weight: bold;
  margin-right: 20px;
  color: #111;
  position: relative;
  z-index: 2; /* Ensure the number is on top of the black box */
  transition: color 0.3s ease; /* Smooth transition for text color */
}

.service-box:hover .service-number {
  color: white; /* Change number color to white on hover */
}

.service-number::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -5px; /* Adjust to align with the number */
  width: 125%;
  height: 100%;
  background-color: black;
  transform: translateY(-50%);
  z-index: -1; /* Ensure the black box is behind the number */
  opacity: 0;
  transition: opacity 0.3s ease; /* Smooth fade-in effect */
}

.service-box:hover .service-number::before {
  opacity: 1; /* Make the black box visible on hover */
}

.service-content h2 {
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  margin: 0;
  color: #333;
}

.service-content p {
  margin: 10px 0;
  color: #555;
  font-family: 'IBM Plex Sans', sans-serif;
}

.service-link {
  margin-top: 10px;
  display: inline-block;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 1px solid #000;
}

.service-link:hover {
  color: #007bff;
  border-color: #007bff;
}

@media (max-width: 768px) {
.service-box {
flex-direction: column;
align-items: flex-start;
text-align: left;
position: relative;
}

.service-number {
margin: 0;
font-size: 2rem;
position: absolute;
top: 40px;
left: 25px;
}

.service-content {
padding-left: 65px;
}

.service-content h2 {
margin-top: 20px;
font-size: 1.3rem;
}

.service-content p {
margin-top: 20px;
font-size: 0.9rem;
line-height: 20px;
}

.service-link {
font-size: 0.9rem;
}
}


/* footer */
.footer {
  background-color: #000; /* Background color for footer */
  padding: 100px 0;
  text-align: center;
  position: relative;
}


.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-flex
{
  display: flex;
}

.logo-footer {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.logo-footer img {
  height: 40px;
  margin-right: 10px;
}

.logo-footer span {
  font-size: 1.2em;
  font-weight: bold;
  color: white;
}

.footer-nav {
  margin-bottom: 20px;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-size: 1em;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #ccc; /* Change to a lighter color on hover */
}

.footer-bottom {
  font-size: 0.9em;
  color: #aaa;
}

.footer-bottom a {
  color: #aaa;
  text-decoration: none;
  margin: 0 5px;
}

.footer-bottom a:hover {
  color: white;
}

@media (max-width: 768px) {
  .footer-nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
  }

  .footer-nav a {
      margin: 10px;
  }

  .footer-bottom {
      text-align: center;
      padding: 0 20px;
  }
}

.social-links a {
  font-size: 1.2rem; /* Icon size */
  color: #ffffff; /* Icon color */
  margin-right: 20px; /* Space between icons */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem; /* Set width and height to make a square */
  height: 2.5rem;
  border-radius: 50%; /* Make it circular */
  text-decoration: none;
}

.social-links a:hover {
  color: #ffffff; /* Icon color on hover */
  border: 2px solid #ffffff; /* Add a circular border on hover */
  background-color: transparent; /* Ensure background stays transparent */
}

.footer-copyright {
  margin-top: 20px; /* Space above the copyright line */
}

.footer-copyright p {
  font-size: 0.9rem; /* Adjust the font size */
  margin: 0;
}


/* Blog Section */
/* Blog Section */
/* Blog Section */
.blog-section {
  padding: 100px 0; /* Increased padding to create more space between the navbar and the text */
  background-color: #f4f4f4;
}

.blog-section-2 {
  padding: 50px 0;
  margin-bottom: 10px; /* Increased padding to create more space between the navbar and the text */
}

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

.intro-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px; /* Adds space between the text and the blog grid */
}

.intro-container h2 {
  font-size: 3em;
  text-align: left;
  font-weight: 300;
  line-height: 1.2;
}

.intro-container p {
  font-size: 1em;
  color: #666;
  text-align: left; /* Aligns the text to the left */
  margin-left: auto; /* Pushes the paragraph to the right */
  margin-right: 0; /* Ensures no extra space on the right */
  max-width: 50%;
  padding-top: 50px;
  line-height: 1.5;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 100px;
}

.blog-card {
  flex: 1 1 calc(33.333% - 100px);
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.blog-card:hover {
  transform: translateY(-5px);
}

.image-container {
  position: relative;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: opacity 0.3s ease;
  opacity: 0.8;
}

.image-container:hover img {
  opacity: 1;
}

.content {
  padding: 15px;
  text-align: left;
}

.content h3 {
  font-size: 1.2em;
  font-weight: 400;
  margin-bottom: 10px;
}

.content p {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
}

.read-article {
  font-weight: bold;
  color: black;
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

.read-article::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background-color: black;
  transition: width 0.3s;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.read-article:hover {
  color: #000;
}

.read-article:hover::after {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .blog-card {
      flex: 1 1 calc(50% - 20px);
  }

  .intro-container {
      flex-direction: column;
      text-align: left;
  }

  .intro-container p {
      max-width: 100%;
      text-align: left;
  }
}

@media screen and (max-width: 480px) {
  .blog-card {
      flex: 1 1 100%;
  }

  .intro-container h1 {
      font-size: 2em;
  }

  .intro-container p {
      font-size: 1em;
  }
}

/* Article section */

article.main-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px 0;
  text-align: center;
}

article.main-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

article.main-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 400;
  margin-top: 20px; /* Margin between navbar and heading */
}

article.main-section .image-container {
  margin-bottom: 20px;
}

article.main-section .image-container img {
  width: 50%;
  height: auto;
  border-radius: 10px;
}

article.main-section .footer-info {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 30px; /* Added margin to separate from text below */
}

article.main-section .text-content {
  text-align: left;
  font-size: 1rem;
  color: #333;
}

article.main-section .text-content p {
  margin-bottom: 20px;
  line-height: 1.6;
}

article.main-section .text-content h2 {
  font-size: 1.75rem;
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: left;
}

@media screen and (max-width: 768px) {

  article.main-section{
    padding: 0;
  }
  article.main-section h1 {
    margin-top: 0;
      font-size: 2rem;
  }

  article.main-section .text-content h2 {
    margin-top: 0;
      font-size: 1.5rem;
  }
  
}

/* Container Styling */
.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 20px; /* Rounded corners */
  text-align: center;
  max-width: 1000px; /* Maximum width */
  margin: 40px auto; /* Center alignment with margin */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional shadow for better visuals */
}

/* Text Styling */
.cta-container p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #333;
  text-align: justify;
}

/* Button Styling */
.cta-button {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 0.8em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #333;
}

/* Responsive Design */
@media (min-width: 768px) {
  .cta-container {
      flex-direction: row;
      text-align: left;
      max-width: 700px;
  }

  .cta-container p {
      font-size: 1.5em;
      margin-bottom: 0;
      text-align: left;
  }

  .cta-button {
      padding: 15px 30px;
      font-size: 0.8em;
      margin-left: 100px;
  }
}