/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Nunito",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #493c3e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #4605a2; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #4605a2; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #4605a2; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #444444;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
  color: var(--default-color);
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1; /* Background image behind the content */
  background-color: #222f3e;
  background-image: url('assets/img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
}


/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 75px;
  margin-right: 10px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(0, 0, 0, 0.8);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 76px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 75px;
  position: relative;
}

.section-title p {
  color: var(--accent-color);
  margin: 10px 0 0 0;
  font-size: 40px;
  font-weight: 700;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  font-family: var(--heading-font);
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px; /* Padding to ensure content doesn't touch the edges */
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 20px; /* Padding to ensure content doesn't touch the edges */
}

.hero-content .logo {
  max-height: 200px; /* Keep the logo size the same */
}

.hero-content h4 {
  font-size: 28px; /* Font size for larger screens */
  margin: 20px 0; /* Adjust margin for spacing */
}

.hero-content h5 {
  font-size: 23px; /* Font size for larger screens */
  margin: 10px 0; /* Adjust margin for spacing */
}

.hero-content .btn-get-started {
  color: var(--default-color);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 40px; /* Padding for larger buttons on larger screens */
  margin: 30px 0 0 0; /* Margin for spacing on larger screens */
  border-radius: 50px;
  text-transform: uppercase;
  transition: 0.3s;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 50%);
}

.hero-content .btn-get-started:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
}

@media (max-width: 768px) {
  .hero {
    padding: 15px; /* Less padding for very small screens */
  }

  .hero-content h4 {
    font-size: 24px; /* Reduced font size for smaller screens */
    margin: 15px 0; /* Adjusted margin for spacing */
  }

  .hero-content h5 {
    font-size: 16px; /* Reduced font size for smaller screens */
    margin: 10px 0; /* Adjusted margin for spacing */
  }

  .hero-content .btn-get-started {
    padding: 8px 30px; /* Adjusted padding for smaller buttons on mobile */
    margin: 20px 0 0 0; /* Adjusted margin for spacing */
  }
}

/* Common button style for both sections */
.btn-get-started {
  color: var(--default-color);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 40px;
  margin: 30px 0 0 0;
  border-radius: 50px;
  text-transform: uppercase;
  transition: 0.3s;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 50%);
}

.btn-get-started:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
}

/* Additional styles for hero section */
.hero .btn-get-started {
  font-size: 14px;
  padding: 10px 40px;
}

/* Additional styles for Call For Papers section */
.cfp .btn-get-started {
  font-size: 14px;
  padding: 8px 40px;
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.about .content p {
  margin-bottom: 30px;
}

.about .content .about-btn {
  padding: 8px 30px 9px 30px;
  color: var(--accent-color);
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--accent-color);
}

.about .content .about-btn i {
  font-size: 16px;
  padding-left: 5px;
}

.about .content .about-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.about .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.about .icon-box h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.about .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

.about .icon-box:hover h4 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Countdown
--------------------------------------------------------------*/

/* Countdown Timer Styling */
.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  font-size: 3rem;
  color: var(--heading-color);
  padding: 20px;
}

.countdown-box {
  text-align: center;
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.countdown-box:hover {
  transform: scale(1.1);
}

.countdown-box span {
  font-size: 4rem;
  font-weight: bold;
  color: var(--accent-color);
}

.countdown-box p {
  margin: 0;
  font-size: 1.2rem;
  color: var(--heading-color);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: color 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  max-height: 0; /* Initially hidden */
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  transition: transform 0.3s, color 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  max-height: 300px; /* Adjust based on content height */
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}


/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/

.team .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 5px;
  padding: 10px; /* Reduced padding */
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
  height: 150px; /* Adjusted image height */
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 30px; /* Reduced social icon height */
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: var(--heading-color);
  margin: 0 5px; /* Reduced margin */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a i {
  line-height: 0;
  font-size: 14px; /* Reduced icon size */
}

.team .team-member .member-info {
  padding: 15px 10px; /* Reduced padding */
  text-align: center;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 14px; /* Reduced font size */
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-member .member-info span {
  display: block;
  font-size: 11px; /* Reduced font size */
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
}


.community-partners-wrapper {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

.community-partners {
  padding: 20px; /* Additional padding to control spacing */
}

.community-img {
  max-width: 80%; /* Adjust the size of the images */
  height: auto;
  transition: transform 0.3s ease;
}

.community-img:hover {
  transform: scale(1.05); /* Slight zoom effect on hover */
}

@media (max-width: 768px) {
  .community-img {
    max-width: 70%; /* Adjust image size for smaller screens */
  }
}

@media (max-width: 576px) {
  .community-img {
    max-width: 60%; /* Further adjustments for very small screens */
  }
}

.media-partners {
  padding: 40px 0;
}

.media-img {
  max-width: 80%; /* Adjust the size of the images */
  height: auto;
  transition: transform 0.3s ease;
}

.media-img:hover {
  transform: scale(1.05); /* Slight zoom effect on hover */
}

@media (max-width: 768px) {
  .media-img {
    max-width: 70%; /* Adjust image size for smaller screens */
  }
}

@media (max-width: 576px) {
  .media-img {
    max-width: 60%; /* Further adjustments for very small screens */
  }
}

/* Sponsor Section */
.sponsor-category {
  margin-bottom: 30px;
  text-align: center;
}

.sponsor-category h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--aws-color, #232f3e); /* Example of AWS color */
}

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

.sponsor-category .col-lg-6, 
.sponsor-category .col-lg-4, 
.sponsor-category .col-lg-3, 
.sponsor-category .col-lg-2 {
  margin-bottom: 20px;
}

.platinum-img {
  max-width: 70%; /* Larger size for Platinum sponsors */
}

.gold-img {
  max-width: 80%; /* Slightly smaller for Gold sponsors */
}

.silver-img {
  max-width: 90%; /* Larger size for Silver sponsors, but still smaller than Gold */
}

.bronze-img {
  max-width: 95%; /* Larger size for Bronze sponsors, but smaller than Silver */
}

.venue-img {
  max-width: 70%; /* Adjust size for Venue Partner */
}

.sponsor-category img {
  transition: transform 0.3s ease-in-out;
}

.sponsor-category img:hover {
  transform: scale(1.1);
}

.call-for-sponsors {
  text-align: center; /* Centers text and inline elements */
}

.sponsor-heading {
  font-size: 2rem; /* Adjust size as needed */
  font-weight: bold; /* Make text bold */
  text-transform: uppercase; /* Uppercase text */
  margin-bottom: 20px; /* Spacing below heading */
}

.platinum-heading {
  color: #FFD700; /* Gold color for Platinum */
}

.gold-heading {
  color: #FFD700; /* Adjust as needed for Gold */
}

.silver-heading {
  color: #C0C0C0; /* Silver color */
}

.bronze-heading {
  color: #cd7f32; /* Bronze color */
}

.venue-heading {
  color: #007cba; /* Adjust as needed for Venue Partner */
}


/* Mascot */

.mascot-img-small {
  max-width: 60%; /* Make the mascot image smaller */
  height: auto; /* Keep aspect ratio */
}

.small-text {
  font-size: 0.9rem; /* Reduce text size for compact layout */
  line-height: 1.4; /* Adjust line spacing */
}

@media (max-width: 768px) {
  .mascot-img-small {
    max-width: 70%; /* Slightly larger for medium screens */
  }

  .small-text {
    font-size: 0.85rem; /* Adjust text size for medium screens */
  }
}

@media (max-width: 576px) {
  .mascot-img-small {
    max-width: 80%; /* Larger image for smaller screens */
  }

  .small-text {
    font-size: 0.8rem; /* Adjust text size for small screens */
  }
}

/* Stretch columns to the same height */
.row.d-flex {
  height: 100%; /* Ensure row takes up full height */
}

.col-lg-6.d-flex {
  height: 100%; /* Stretch columns equally */
}

/* Styling for the image grid and large image display */
.venue-slider {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1; /* Ensures it takes up remaining space */
}

.large-img-container {
  width: 100%;
  height: 300px; /* Keep the height as it is */
}

.large-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.thumbnails-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 images in a row */
  gap: 5px;
}

.thumb-img {
  width: 100%; /* Ensure full width in the grid column */
  height: 75px; /* Square aspect ratio */
  object-fit: cover; /* Maintain the image's aspect ratio */
  cursor: pointer;
  transition: transform 0.3s ease;
  border-radius: 5px;
}

.thumb-img:hover {
  transform: scale(1.1);
}

/* Styling for the lightbox popup modal */
.lightbox-modal {
  display: none; /* Ensure it starts hidden */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Dark semi-transparent background */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  cursor: pointer;
  text-align: center;
}

.lightbox-modal img {
  max-width: 90%; /* Adjust to fit the screen better */
  max-height: 90%; /* Adjust to fit the screen better */
  margin: auto;
}


.lightbox-content {
  max-width: 80%;
  max-height: 80%;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #bbb;
}

/* Styling for the map and venue info */
.venue-info {
  text-align: left;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.map-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 5px;
}

/* Styling for Venue Address and Button Container */
.venue-address-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.venue-address {
  margin: 0;
  flex-grow: 1;
}

.btn-container {
  width: auto;
  display: flex;
  justify-content: center;
}

.btn-map {
  display: inline-block;
  padding: 10px 20px;
  background-color: #4605a2;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

h3 {
  margin-bottom: 20px;
}

/* Ticket Categories Section */

.text-center {
  text-align: center;
  vertical-align: middle;
}

.ticket-categories {
  margin-bottom: 30px;
  overflow-x: auto; /* Enable horizontal scrolling */
}

.table {
  width: 100%; /* Ensure the table takes full width */
  border-collapse: collapse; /* Collapse borders */
  min-width: 600px; /* Minimum width to prevent shrinking */
}

.table th, .table td {
  padding: 10px; /* Padding for table cells */
  border: 1px solid #ddd; /* Border for table cells */
  text-align: center; /* Center-align text */
}

.btn-action {
  display: inline-block;
  padding: 8px 15px;
  background-color: #4605a2; /* Primary color */
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.btn-action:hover {
  background-color: #5a0cbe; /* Darker shade for hover effect */
}

/* Benefits Section Styles */
.benefits {
  margin-bottom: 30px;
}

.benefits-list {
  list-style-type: none; /* Remove default bullet points */
  padding: 0; /* Remove padding */
  text-align: left; /* Align text to the left */
}

.benefits-list li {
  position: relative; /* To position the custom bullet */
  margin-bottom: 10px; /* Spacing between list items */
  padding-left: 25px; /* Space for custom bullet */
  font-size: 18px; /* Increased font size for list items */
}

.benefits-list li:before {
  content: "✓"; /* Custom bullet */
  position: absolute; /* Positioning of the bullet */
  left: 0; /* Align to the left */
  color: #4605a2; /* Color for the bullet */
  font-size: 20px; /* Size of the bullet */
}

.note {
  text-align: center; /* Center the note */
  margin-top: 15px;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
  .table {
    width: auto; /* Allow the table to shrink to its content */
  }

  .table th, .table td {
    font-size: 14px; /* Adjust font size for smaller screens */
  }

  .benefits-list li {
    font-size: 16px; /* Adjust font size for smaller screens */
  }

  .btn-action {
    padding: 8px 10px; /* Adjust button padding for mobile */
  }
}

.table tr:nth-child(even) {
  background-color: #f9f9f9; /* Light gray for even rows */
}

.table tr:hover {
  background-color: #f1f1f1; /* Slightly darker gray for hover effect */
}

.table th {
  background-color: #4605a2; /* Header background color */
  color: white; /* Header text color */
}

/* Speaker Members */
.speaker-member {
  text-align: center;
  margin-bottom: 30px;
}

.speaker-member .member-img {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  transition: transform 0.3s ease-in-out;
}

.speaker-member .member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speaker-member:hover .member-img {
  transform: scale(1.05);
}

.speaker-member .social {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.speaker-member:hover .social {
  opacity: 1;
}

.speaker-member .social a {
  color: #fff;
  margin: 0 10px;
  font-size: 18px;
  transition: color 0.3s;
}

.speaker-member .social a:hover {
  color: #00aaff;
}

.speaker-member .member-info h4 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.speaker-member .member-info span {
  font-size: 1rem;
  color: #888;
}

/* Make the row contain 5 members */
.speakers .row {
  display: flex;
  justify-content: space-around;
}

.speakers .col-lg-2 {
  flex: 0 0 19%;
  max-width: 19%;
}

/* Adjust for mobile responsiveness */
@media (max-width: 992px) {
  .speakers .col-lg-2 {
    flex: 0 0 45%;
    max-width: 45%;
  }
}

@media (max-width: 768px) {
  .speakers .col-lg-2 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Agenda section styles */
.agenda .container {
  max-width: 1200px; /* adjust as needed */
  margin: 0 auto; /* centers the content */
  padding: 20px;
}

/* Adjust the width of the Sessionize schedule */
.sessionize-schedule {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

/* Optionally, you can adjust the iframe inside the sessionize script */
.sessionize-schedule iframe {
  width: 100%; /* Ensures it doesn't exceed container size */
  max-width: 1200px; /* Adjust max width if needed */
  height: auto; /* Keeps the aspect ratio */
}