/* 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: "Raleway",  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: #151515; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ffc451; /* 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: #312f2f; /* 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: rgba(255, 255, 255, 0.905);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffc451; /* 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: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ffc451; /* 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: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #2a2727;
} 

.dark-background2 {
  --background-color: rgba(6, 6, 6, 0.3);  
  --default-color: rgba(255, 255, 255, 0.3);  
  --heading-color: rgba(255, 255, 255, 0.3);  
  --surface-color: rgba(37, 37, 37, 0.3);  
  --contrast-color: rgba(42, 39, 39, 0.3);  
}

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

/*--------------------------------------------------------------
# Pop up notifications
--------------------------------------------------------------*/
.modal {
      display: block; /* Show on load */
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%; height: 100%;
      background-color: rgba(0,0,0,0.6);
      animation: fadeIn 0.5s;
    }

    .modal-content {
      background: #fff;
      margin: 15% auto;
      padding: 20px;
      width: 50%;
      /* height:65%; */
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      text-align: center;
      /* font-family: Arial, sans-serif; */
      font-family: var(--heading-font);
      /* font-size: 14px; */
    }

    .close {
      /* float: right; */
      font-size: 18px;
      font-weight: bold;
      cursor: pointer;
      color: #aaa;
      margin-top: 5%;
      /* position: relative;
      top: -50px; */
    }

    .close:hover { 
      color: #000;
      text-shadow: 0px 5px 5px #aaa; }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

.svg_img{
  width: 100%;
  display: block;
  margin: 0 auto;
}

.ann{
  font-family: var(--heading-font);
  font-weight: bold;
  /* font-size: 30px; */
}

.decp{
  padding: 10px;
  margin-top: 5%;
  /* font-size: 12px; */
}

.join{
    font-size: 15px;
      font-weight: bold;
      cursor: pointer;
      color: #ffc451;
      margin-top: 5%;
}
.join:hover{
  color: #000;
  text-shadow: 0px 5px 5px #aaa;
}
/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
.claimable{
  /* padding-right: 50px; */
  width: 100%;
}
.icon_btn{
  border-radius: 100%;
  /* border: 2px solid #ffc107; */
  /* background-color: #ffc107; */
  /* padding: 5px 7px; */
  color: #ffc107;
  font-size: 15px;
  font-weight: bold;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.icon_person{
  border-radius: 5px;
  /* border: 2px solid #ffc107; */
  /* background-color: white; */
  padding: 0px 5px;
  color: #ffc107;
  font-size: 15px;
  font-weight: bold;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cap_banner{
  color: white;
  font-family: var(--nav-font);
  font-size: 14px;
  font-style: italic;
}

.btn_abs{
  font-family: var(--nav-font);
  color:#ffc107;
  padding: 10px 20px;
  border-radius: 5px;
  border: 2px solid #ffc107;
}
.btn_abs:hover{
  background-color: #ffc107;
  color: #000;
}

.btn_reg{
  color: #ffc107;
  padding: 10px 20px;
  font-family: var(--nav-font) ;
  background-color: transparent;
  border: 2px solid #ffc107;
  border-radius: 5px;
  font-size: 16px;
  /* font-weight: bold; */
}
.btn_reg:hover{
  color: #000;
  border: 2px solid #ffc107;
  font-family: var(--nav-font) ;
  background-color:#ffc107;
  border-radius: 5px;
  font-size: 16px;
  /* font-weight: bold; */
}
.line_ttl{
  border-bottom: 3px solid #ffc107;
  width: 120px;
  stroke-linecap: round;
  border-radius: 999px;
}
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);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

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

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

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

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

.header .logo span {
  color: var(--accent-color);
  font-size: 32px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  font-size: 14px;
  padding: 8px 30px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  border: 2px solid var(--accent-color);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--default-color);
  background: var(--accent-color);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    color: #000;
    order: 2;
    margin: 10px;
    padding: 10px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

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

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(0, 0, 0, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: rgba(0, 0, 0, 0.3);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* hybrid info */
.hybrid_info{
  border: 2px solid white;
  width: fit-content;
  padding: 7px;
  color: white;
  font-family: var(--nav-font);
  font-style: italic;
  font-size: 11px;
  text-align: center;
}

/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
    z-index: 2;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    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;
    transition: 0.3s;
  }

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

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-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: 0;
    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 {
    background-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;
  }
}

/* Navmenu - Mobile */
@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;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .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), white 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: color-mix(in srgb, var(--accent-color), white 90%);
  }

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

  .navmenu .active i,
  .navmenu .active:focus i {
    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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.3s 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.3);
    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;
  position: relative;
}

.footer .footer-top {
  padding: 50px 0;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 10%);
}

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

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

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

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

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

.footer .social-links a:hover {
  color: var(--contrast-color);
  background-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 {
  margin-right: 4px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.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 30%);
  display: inline-block;
  line-height: 1;
}

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

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

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 15%);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 15%);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 30px 0;
}

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #000;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s 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: 40px;
  height: 40px;
  border-radius: 4px;
  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;
}

/*--------------------------------------------------------------
# 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);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

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

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

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

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

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  /* line-height: 1px; */
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 60vh;
  position: relative;
  padding: 120px 0 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .img-hero {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit:cover;
  /* object-position: 100% 1px; */
  z-index: 0;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 1%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container-fluid
 {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  font-family: var(--nav-font);
}

.hero h2 span {
  color: var(--accent-color);
}

.hero p {
  margin: 10px 0 0 0;
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  height: 80%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
}

.hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: var(--accent-color);
}

.hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

.hero .icon-box h3 a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: ease-in-out 0.3s;
}

.hero .icon-box:hover {
  border-color: var(--accent-color);
}

.hero .icon-box:hover h3 a {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: justify;
}

.about .content .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.3rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content p {
  text-align: justify;
}

.about img {
  border-radius: 25px;
}


/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 1;
  transition: 0.3s;
  /* filter: grayscale(100); */
}

/* .clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
} */

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-image {
  position: relative;
  min-height: 400px;
}

.features .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 25px;
}

.features .features-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px 0;
  text-align: justify;
}

.features .features-item i {
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0;
}

.features .features-item p {
  /* font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0; */
  text-align: justify;
}

.features h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  height: 100%;
  transition: all ease-in-out 0.3s;
}

.services .service-item .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
  margin: 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .service-item .icon i {
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.3s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  color: var(--background-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 10px;
}

.stats .stats-item i {
  font-size: 44px;
  color: var(--accent-color);
  line-height: 0;
  margin-right: 15px;
}

.stats .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 40px;
  display: block;
  font-weight: 700;
  line-height: 40px;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 15px 0 0 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

.testimonials:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.3;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.wrap {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 350px;
	justify-items: stretch;
	animation: slide 15s linear infinite;
	animation-play-state: running;
  }
  
  .wrap img {
	width: 300px;
	height: 150px;
	border-radius: 15px;
	object-fit:contain;
	border: 3px solid rgba(255, 255, 255, 0.5);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }
  
  .wrap img:hover {
	transform: scale(1.1);
	box-shadow: 0 8px 30px rgba(255, 255, 255, 0.8), 0 4px 20px rgba(0, 0, 0, 0.4);
	border-color: rgba(255, 255, 255, 0.8);
  }
  
  .wrap:hover {
	animation-play-state: paused;
  }

  @keyframes slide {
	to {
	  translate: calc(-4 * 250px);
	}
  }
.team .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .team-member .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .team-member .social a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .team-member .member-info {
  padding: 25px 15px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

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

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
/*.starter-section {
   Add your styles here 
}*/

/*--------------------------------------------------------------
# TRACKS
--------------------------------------------------------------*/
.tr_bg {
  position: relative;
  color: black; /* Ensure text remains visible */
  text-align: justify;
  padding: 50px;
}

.tr_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/webpg_bg2.webp");
  background-attachment: fixed;
  background-size:cover;
  background-repeat: no-repeat;
  background-position:center;
  filter: grayscale(100%); /* Make it black and white */
  opacity: 0.15; /* Lower the opacity */
  z-index: -1; /* Keeps background behind the text */
}
.track_box{
  background-color: transparent;
  padding: 50px;
}
.tr_ttl{
  font-family: var(--heading-font);
  font-size: 30px;
  color: black;
  text-transform: uppercase;
  font-weight: 750;
  
}
.t_no{
  position: relative;
  text-align: right;
  font-family: 'Gotham';
  font-size: 50px;
  color: white;
}
.t_icon{
  font-size: 30px;
  color: #ffc451;
  /* text-shadow: #128FC8; */
}

.t_box1, .t_box2, .t_box3, .t_box4 {
  padding: 20px;
  border: 5px solid black;
  text-align: center;
  color: white;
  height: 100%;
  margin: 30px;
  box-sizing: border-box; /* Ensures border is part of the total size */
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}


.t_cap{
  text-align: left;
  font-family: var(--default-font);;
  font-size: 14px;
  line-height: 2.0;
  color: black;
}
.t_ttl{
  font-family: var(--heading-font);
  font-size: 30px;
  color: #ffc451;
  font-weight: 750;
}

/*--------------------------------------------------------------
# KEYNOTE SPEAKERS UPDATED
--------------------------------------------------------------*/

.key_all {
  padding-top: 20px;
  box-shadow: 5px 0px 10px grey;
  position: relative;
  width: 300px;
  height: 420px;
  border-radius: 20px;
  overflow: visible;
  /* background-image: linear-gradient(to right, transparent 50%, #14789d 50%, #2bc398 100%); */
  background-image: linear-gradient(to right, white 50%, #4444 50%);
}

/* Watermark using pseudo-element */
.key_all::before {
  content: 'DIGITAL TWIN'; /* Change to whatever you want */
  font-weight: bold;
  font-family: var(--heading-font);
  position: absolute;
  top: 50%;
  left: 75%;
  transform: translate(-50%, -50%) rotate(-90deg);
  font-size: 50px;
  color: white;
  /* opacity: 0.8; */
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.img_full {
  /* padding-top: 30px; */
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  z-index: 0;
  position: relative;
}

.box_cap {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: left;
  padding: 10px;
  border-radius: 0 0 20px 20px;
  background-image: linear-gradient(to bottom, transparent, #444444);
  z-index: 2;
}

.logo_comp {
  position: absolute;
  top: -50px;  /* small offset from top */
  right: -35px; /* small offset from right */
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #f9f9f9;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 5px 0px 10px grey;
}

.img_logo {
  width: 80%;
  height: auto;
  object-fit: contain;
}

.keynote_name{
  font-weight: bold;
  font-family: var(--nav-font);
  font-size: 20px;
  color: #ffc107;
  text-shadow: 0px 2px 10px #060606;
}
.keynote_up{
  color:#151515;
  font-family: var(--heading-font);
  font-size: 14px;
  /* text-shadow: 0px 2px 10px black; */
  font-weight: bold;
}
.keynote_ttl{
  font-family: var(--heading-font);
  color: white;
  font-size: 14px;
}

.keynote_comp{
  font-family: var(--heading-font);
  color: #ffc107;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
}

.key_line{
  border-bottom: 2px solid #ffc107;
  width: 100px;
  stroke-linecap: round;
  border-radius: 999px;
}

/*--------------------------------------------------------------
# INVITED SPEAKERS UPDATED
--------------------------------------------------------------*/
.inv_all{
  justify-content: center;
  align-items: center;
  text-align: center;
}
.inv1{
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 220px;
  border-radius:100%;
  background-image: url("../img/keynote/petronas_helmi.png");
  background-color: #eeee;
  background-size:150%;
  background-position: -55px 1px;
  background-repeat: no-repeat;
  border: 10px solid white;
  position: relative;
  overflow: visible;
}
.logo_comp1 {
  padding: 10px;
  position: absolute;
  top: 165px;  /* small offset from top */
  right: 60px; /* small offset from right */
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #eeeeee;
  border: 6px solid white;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: contain;
  /* box-shadow: 5px 0px 10px grey; */
}


.inv2{
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 220px;
  border-radius:100%;
  background-image: url("../img/keynote/penangPort_fadzly.png");
  background-color: #eeee;
  background-size:150%;
  background-position: -45px 1px;
  background-repeat: no-repeat;
  border: 10px solid white;
}
.logo_comp2 {
  padding: 10px;
  position: absolute;
  top: 165px;  /* small offset from top */
  right: 90px; /* small offset from right */
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #eeeeee;
  border: 6px solid white;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: contain;
  /* box-shadow: 5px 0px 10px grey; */
}


.inv3{
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 220px;
  border-radius:100%;
  background-image: url("../img/keynote/inv_plus_norbzlan.webp");
  background-color: #eeee;
  background-size:cover;
  background-position: 20px 30px;
  background-repeat: no-repeat;
  border: 10px solid white;
  position: relative;
  overflow: visible;
}
.logo_comp3 {
  padding: 10px;
  position: absolute;
  top: 165px;  /* small offset from top */
  right: 60px; /* small offset from right */
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #eeeeee;
  border: 6px solid white;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: contain;
  /* box-shadow: 5px 0px 10px grey; */
}

.inv4{
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 220px;
  border-radius:100%;
  background-image: url("../img/keynote/sic_fauzan.png");
  background-color: #eeee;
  background-size:150%;
  background-position: -50px 1px;
  background-repeat: no-repeat;
  border: 10px solid white;
}
.logo_comp4 {
  padding: 10px;
  position: absolute;
  top: 165px;  /* small offset from top */
  right: 60px; /* small offset from right */
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #eeeeee;
  border: 6px solid white;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: contain;
  /* box-shadow: 5px 0px 10px grey; */
}

.inv5{
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 220px;
  border-radius:100%;
  background-image: url("../img/keynote/inv_syafiq.webp");
  background-color: #eeee;
  background-size:120%;
  background-position: -16px 1px;
  background-repeat: no-repeat;
  border: 10px solid white; 
}
.logo_comp5 {
  padding: 10px;
  position: absolute;
  top: 165px;  /* small offset from top */
  right: 60px; /* small offset from right */
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #eeeeee;
  border: 6px solid white;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: contain;
  /* box-shadow: 5px 0px 10px grey; */
}

.inv_logo{
  padding-top: 20px;
  width: 50px;
}

.inv_fname{
  font-family: var(--nav-font);
  font-weight: bold;
  font-size: 15px;
  text-transform: uppercase;
}

.inv_lname{
  font-family: var(--heading-font);
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.inv_pos{
  font-family: var(--heading-font);
  font-size: 10px;
}

.inv_compname{
  font-family: var(--nav-font);
  text-transform: uppercase;
  font-size: 12px;
}
/*--------------------------------------------------------------
# KEYNOTE SPEAKERS
--------------------------------------------------------------*/
/* .po_ttl{
  text-transform: uppercase;
  font-weight: 700;
  text-align: left;
  padding-left: 150px;
}
.po_clss{
  padding: 5px;
}
.po_box{
  height: auto;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin: 5px;
  padding:20px;
}

.po_cont{
  position: relative;
  text-align: center;
  top:250px
}

.key_inv_ttl{
  text-align: center;
  padding-left: 100px;
} */
/*--------------------------------------------------------------
# POSTERS
--------------------------------------------------------------*/
.poster_box{
  background-color: white;
  padding: 10px;
  border-radius: 10px;
  width:fit-content;
  box-shadow: 10px 10px 30px grey;
}
.poster_bg {
  position: relative;
  color: black; /* Ensure text remains visible */
  text-align: justify;
  padding: 50px;
}

.poster_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/bg_dtwin2.jpeg");
  background-size:cover;
  background-repeat: no-repeat;
  background-position:center;
  filter: grayscale(100%); /* Make it black and white */
  opacity: 0.2; /* Lower the opacity */
  z-index: -1; /* Keeps background behind the text */
}
.poster_image{
  box-shadow: 10px 10px 30px grey;
}
/* .cfp_box{
  padding: 5px;
}
.post_box{
  border: 2px solid rgba(0, 0, 0, 0.2);
  height: 50vh;
  margin: 20px;
} */
.ifa_box{
  border: 2px solid rgba(0, 0, 0, 0.2);
  height: 50vh;
  margin: 20px;
}
.post_ttl{
  text-transform: uppercase;
  padding: 20px;
}

.post_ttl{
  text-transform: uppercase;
  padding: 20px;
}

.ifa_ttl{
  text-transform: uppercase;
  padding: 20px;
}
/*--------------------------------------------------------------
# EXHIBITORS
--------------------------------------------------------------*/
.disc_poss{
  text-align: justify;
}

.post_cont{
  position: relative;
  text-align: center;
  top:150px
}

/*--------------------------------------------------------------
# ORGANIZER & CO-ORGANIER
--------------------------------------------------------------*/
.comp_logo_1{
  height: 10rem;
  width: 10rem;
  box-shadow: 10px 10px 35px grey;
  padding: 15px;
  margin: 5px;
  border-radius: 60%;
  background-image: url("../img/new_unimap_wbpg.webp");
  background-color: white;
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: center;
}

.comp_logo_2{
  height: 10rem;
  width: 10rem;
  box-shadow: 10px 10px 35px grey;
  padding: 15px;
  margin: 5px;
  border-radius: 60%;
  background-image: url("../img/new_castech_wbpg.webp");
  background-color: white;
  background-size :80%;
  background-repeat: no-repeat;
  background-position: center;
}

.comp_logo_3{
  height: 10rem;
  width: 10rem;
  box-shadow: 10px 10px 35px grey;
  padding: 15px;
  margin: 5px;
  border-radius: 60%;
  background-image: url("../img/new_a31_wbpg.webp");
  background-color: white;
  background-size :contain;
  background-repeat: no-repeat;
  background-position: center;
}
.comp_logo_4{
  height: 10rem;
  width: 10rem;
  box-shadow: 10px 10px 35px grey;
  padding: 15px;
  margin: 5px;
  border-radius: 60%;
  background-image: url("../img/new_ideria_wbpg.webp");
  background-color: white;
  background-size:90%;
  background-repeat: no-repeat;
  background-position: center;
}

.bg_org {
  position: relative;
  color: black; /* Ensure text remains visible */
  text-align: justify;
  padding: 50px;
}

.bg_org::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/webpg_bg2.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  filter: grayscale(100%); /* Make it black and white */
  opacity: 0.08; /* Lower the opacity */
  z-index: -1; /* Keeps background behind the text */
}



/*--------------------------------------------------------------
# OBJECTIVES
--------------------------------------------------------------*/
.obj_bg {
  position: relative;
  color: black; /* Ensure text remains visible */
  text-align: justify;
  padding: 50px;
}

.obj_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/webpg_bg3.webp");
  background-size:cover;
  background-repeat: no-repeat;
  background-position:center;
  filter: grayscale(100%); /* Make it black and white */
  opacity: 0.1; /* Lower the opacity */
  z-index: -1; /* Keeps background behind the text */
}


/*--------------------------------------------------------------
# ORGANIZING COMMITTEE
--------------------------------------------------------------*/
.border_btm{
  padding-bottom: 6px;
  border-bottom: 2px solid #ffc451;
}

.org_no{
  color: #ffc451;
  font-size: 35px;
  font-family: var(--nav-font);
  font-weight: bold;
}
.org_committee {
  display: inline-block;
  font-family: var(--default-font);
  font-weight: bold;
  font-size: 30px;
  text-transform: uppercase;
  color: black;
  position: relative;
}

.org_committee::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px; /* Adjust border length */
  height: 3px;
  background-color: var(--accent-color);
}

.org_ttlname{
  font-family: var(--heading-font);
  font-size: 18px;
  color: var(--accent-color);
  font-weight: bold;
}

.org_name{
  font-family: var(--heading-font);
  font-weight: bold;
  font-size: 23px;
  color: black;
}

.org_cap{
  font-family: var(--heading-font);
  font-size: 14px;
}

.org_section{
  font-weight: bold;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-transform: uppercase;
  font-size: 30px;
  color: black;
}
/* .orgcomm_ttl{
  font-family: var(--heading-font);
  font-size: 15px;
  color: #ffc107;
  font-weight: bold;
}
.orgcomm_name{
  margin: -5px;
  font-family: var(--heading-font);
  font-weight: bold;
  font-size: 20px;
}

.header_orgcomm{
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  border: 2px solid black;
}

.line_div{
  height: 2px;
  width: 100%;
  background-color: #ffc107;
}

.org_com_1{
  height: 10rem;
  width: 10rem;
  box-shadow: 10px -10px 35px grey;
  padding: 15px;
  margin: 5px;
  border-radius: 60%;
  background-color: white;
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../img/wbpg_img_DrAmmar.webp");
  filter: grayscale(100%);
}
.org_com_2{
  background-image: url("../img/wbpg_img_DrLatifahMunirah.webp");
  height: 10rem;
  width: 10rem;
  box-shadow: 10px -10px 35px grey;
  padding: 15px;
  margin: 5px;
  border-radius: 60%;
  background-color: white;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  filter: grayscale(100%);
}
.org_com_3{
  background-image: url("../img/wbpg_img_DrSyuhaida.webp");
  height: 10rem;
  width: 10rem;
  box-shadow: 10px -10px 35px grey;
  padding: 15px;
  margin: 5px;
  border-radius: 60%;
  background-color: white;
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center;
  filter: grayscale(100%);
}
.org_com_4{
  background-image: url("../img/wbpg_img_DrHayatiSabani.webp");
  height: 10rem;
  width: 10rem;
  box-shadow: 10px -10px 35px grey;
  padding: 15px;
  margin: 5px;
  border-radius: 60%;
  background-color: white;
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: center;
  filter: grayscale(100%);
}
.org_com_5{
  background-image: url("../img/wbpg_img_DrAzianAzamimi.webp");
  height: 10rem;
  width: 10rem;
  box-shadow: 10px -10px 35px grey;
  padding: 15px;
  margin: 5px;
  border-radius: 60%;
  background-color: white;
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: center;
  filter: grayscale(100%);
}
.org_com_6{
  background-image: url("../img/wbpg_img_DrShakaff.webp");
  height: 10rem;
  width: 10rem;
  box-shadow: 10px -10px 35px grey;
  padding: 15px;
  margin: 5px;
  border-radius: 60%;
  background-color: white;
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: center;
  filter: grayscale(100%);
}
.org_com_7{
  background-image: url("../img/wbpg_img_DrSyafiq.webp");
  height: 10rem;
  width: 10rem;
  box-shadow: 10px -10px 35px grey;
  padding: 15px;
  margin: 5px;
  border-radius: 60%;
  background-color: white;
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: center;
  filter: grayscale(100%);
}
.org_com_8{
  background-image: url("../img/wbpg_img_Shakhirul.webp");
  height: 10rem;
  width: 10rem;
  box-shadow: 10px -10px 35px grey;
  padding: 15px;
  margin: 5px;
  border-radius: 60%;
  background-color: white;
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: center;
  filter: grayscale(100%);
}
.org_com_9{
  background-image: url("../img/wbpg_img_DrLatifahMohamed.webp");
  height: 10rem;
  width: 10rem;
  box-shadow: 10px -10px 35px grey;
  padding: 15px;
  margin: 5px;
  border-radius: 60%;
  background-color: white;
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center;
  filter: grayscale(100%);
}
.org_com_10{
  background-image: url("../img/wbpg_img_DrMarni.webp");
  height: 10rem;
  width: 10rem;
  box-shadow: 10px -10px 35px grey;
  padding: 15px;
  margin: 5px;
  border-radius: 60%;
  background-color: white;
  background-size:cover;
  background-repeat: no-repeat;
  background-position: center;
  filter: grayscale(100%);
}
.org_com_11{
  background-image: url("../img/wbpg_img_TsErdy.webp");
  height: 10rem;
  width: 10rem;
  box-shadow: 10px -10px 35px grey;
  padding: 15px;
  margin: 5px;
  border-radius: 60%;
  background-color: white;
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center;
  filter: grayscale(100%);
}
.org_com_12{
  background-image: url("../img/wbpg_img_DrAmmar.webp");
  height: 10rem;
  width: 10rem;
  box-shadow: 10px -10px 35px grey;
  padding: 15px;
  margin: 5px;
  border-radius: 60%;
  background-color: white;
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center;
  filter: grayscale(100%);
}

.org_com_13{
  background-image: url("../img/wbpg_img_DrSyed.webp");
  height: 10rem;
  width: 10rem;
  box-shadow: 10px -10px 35px grey;
  padding: 15px;
  margin: 5px;
  border-radius: 60%;
  background-color: white;
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center;
  filter: grayscale(100%);
} */

/*--------------------------------------------------------------
# EXHIBITORS
--------------------------------------------------------------*/
.exhb_bg {
  position: relative;
  color: black; /* Ensure text remains visible */
  text-align: justify;
  padding: 50px;
}

.exhb_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/webpg_bg2.webp");
  background-size:cover;
  background-repeat: no-repeat;
  background-position:center;
  filter: grayscale(100%); /* Make it black and white */
  opacity: 0.1; /* Lower the opacity */
  z-index: -1; /* Keeps background behind the text */
}

/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/
.foot_box {
  background-color: rgba(0, 0, 0, 1.0);
  background-size: 30%;
  background-repeat:no-repeat;
  background-position: center;
  padding: 50px 50px 10px 50px;
  display: grid; 
  justify-items: center;
}

.grid_footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  color: white;
  gap: 100px; 
}


.f_ttl{
  font-family: var(--heading-font);
  font-size: 25px;
  color: white;
  font-weight: 600;
}

.f_cap{
  font-family: var(--nav-font);
  font-size: 15px;
  text-align: justify;
  color: white;
}

.f_icon{
  font-size: 23px;
  color: var(--accent-color);
  /* text-shadow: 0px 0px 10px var(--accent-color); */
}

.img_footer{
  width: 250px;
  justify-items: center;
}
.f_copyright{
  color: white;
  font-family: 'Century Gothic';
  text-align: center;
  justify-content: center;
  font-size: 12px;
}

/*--------------------------------------------------------------
# ALL SPEAKERS
--------------------------------------------------------------*/
.inv_box_new{
  border-radius: 120px;
  background-color: white;
  padding: 30px;
  box-shadow: 10px 10px 35px grey;
  height:auto;
}
.key_bg {
  position: relative;
  color: black; /* Ensure text remains visible */
  text-align: justify;
  padding: 50px;
}

.key_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/bg_aidt.jpeg");
  background-size:cover;
  background-repeat: no-repeat;
  background-position:center;
  filter: grayscale(100%); /* Make it black and white */
  opacity: 0.1; /* Lower the opacity */
  z-index: -1; /* Keeps background behind the text */
}
.keynote_line{
  width: 50%;
  background-color: #ffc451;
  border-radius: 100px;
  height: 10px;
}
.inv_line{
  width: 50%;
  background-color: #ffc451;
  border-radius: 100px;
  height: 10px;
}
.border_line{
  /* border-right: 6px solid rgba(128, 128, 128, 0.2); */
  margin: 5px;
  height:auto;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
}

.both_border{
  border-right: 6px solid rgba(128, 128, 128, 0.2);
  border-left: 6px solid rgba(128, 128, 128, 0.2);
  height:auto;
}

.keynote_box{
  margin: 5px;
  padding: 20px;
  border-radius: 100px;
  /* background-color: rgba(128, 128, 128, 0.3); */
  background-color: white;
  box-shadow: 10px 10px 35px rgba(128, 128, 128, 0.5); 
}

/* Keynote 1 */
.key1 {
  width: 160px;
  height: 160px;
  background: white;
  background-image: url("../img/keynote/keynote_jeffry.png");
  background-size: cover;
  position: relative;
  display: flex;
  place-content: center;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  /* box-shadow: 10px 10px 35px grey; */
}

.key1 h2 {
  z-index: 1;
  color: white;
  font-size: 2em;
}

.key1::before {
  content: '';
  position: absolute;
  width: 200px; /* Slightly larger than the card */
  height: 220px;
  background: conic-gradient(
      #ffc451 0%, 
      #ffda92 25%, /* Lighter transition between yellow and green */
      #78E495 50%, 
      #ffda92 75%, /* Lighter transition between green and yellow */
      #ffc451 100%
  );
  animation: rotateBorder 3s linear infinite;
  border-radius: 100%;
}

.key1::after {
  content: '';
  position: absolute;
  background: white;
  background-image: url("../img/keynote/keynote_jeffry.png");
  background-size: 140%;
  background-position: top;
  box-shadow: 10px 10px 35px grey;
  inset: 3px;
  border-radius: 50%;
}


/* Keynote 2 */
.key2 {
  width: 160px;
  height: 160px;
  background: white;
  background-image: url("../img/keynote/keynote_jeffry.png");
  background-size: cover;
  position: relative;
  display: flex;
  place-content: center;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  /* box-shadow: 10px 10px 35px grey; */
}

.key2 h2 {
  z-index: 1;
  color: white;
  font-size: 2em;
}

.key2::before {
  content: '';
  position: absolute;
  width: 200px; /* Slightly larger than the card */
  height: 220px;
  background: conic-gradient(
      #ffc451 0%, 
      #ffda92 25%, /* Lighter transition between yellow and green */
      #78E495 50%, 
      #ffda92 75%, /* Lighter transition between green and yellow */
      #ffc451 100%
  );
  animation: rotateBorder 3s linear infinite;
  border-radius: 100%;
}

.key2::after {
  content: '';
  position: absolute;
  background: white;
  background-image: url("../img/keynote/inv_azri.png");
  background-size: 120%;
  background-position: center;
  box-shadow: 10px 10px 35px grey;
  inset: 3px;
  border-radius: 50%;
}

/* Keynote 3 */
.key3 {
  width: 160px;
  height: 160px;
  background: white;
  background-image: url("../img/keynote/keynote_jeffry.png");
  background-size: cover;
  position: relative;
  display: flex;
  place-content: center;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  /* box-shadow: 10px 10px 35px grey; */
}

.key3 h2 {
  z-index: 1;
  color: white;
  font-size: 2em;
}

.key3::before {
  content: '';
  position: absolute;
  width: 200px; /* Slightly larger than the card */
  height: 220px;
  background: conic-gradient(
      #ffc451 0%, 
      #ffda92 25%, /* Lighter transition between yellow and green */
      #78E495 50%, 
      #ffda92 75%, /* Lighter transition between green and yellow */
      #ffc451 100%
  );
  animation: rotateBorder 3s linear infinite;
  border-radius: 100%;
}

.key3::after {
  content: '';
  position: absolute;
  background: white;
  background-image: url("../img/keynote/webpg_nishizaki.webp");
  background-size: 85%;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 10px 10px 35px grey;
  inset: 3px;
  border-radius: 50%;
}

/* Keynote 4 */
.key4 {
  width: 160px;
  height: 160px;
  background: white;
  background-image: url("../img/keynote/keynote_vivek.webp");
  background-size: cover;
  position: relative;
  display: flex;
  place-content: center;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  /* box-shadow: 10px 10px 35px grey; */
}

.key4 h2 {
  z-index: 1;
  color: white;
  font-size: 2em;
}

.key4::before {
  content: '';
  position: absolute;
  width: 200px; /* Slightly larger than the card */
  height: 220px;
  background: conic-gradient(
      #ffc451 0%, 
      #ffda92 25%, /* Lighter transition between yellow and green */
      #78E495 50%, 
      #ffda92 75%, /* Lighter transition between green and yellow */
      #ffc451 100%
  );
  animation: rotateBorder 3s linear infinite;
  border-radius: 100%;
}

.key4::after {
  content: '';
  position: absolute;
  background: white;
  background-image: url("../img/keynote/keynote_vivek.webp");
  background-size: 95%;
  background-repeat: no-repeat;
  background-position: 5px -20px;
  box-shadow: 10px 10px 35px grey;
  inset: 3px;
  border-radius: 50%;
}

/* Card 1 */
.card1 {
  width: 160px;
  height: 160px;
  background: white;
  background-image: url("../img/keynote/sic_fauzan.png");
  background-size: cover;
  position: relative;
  display: flex;
  place-content: center;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  /* box-shadow: 10px 10px 35px grey; */
}

.card1 h2 {
  z-index: 1;
  color: white;
  font-size: 2em;
}

.card1::before {
  content: '';
  position: absolute;
  width: 200px; /* Slightly larger than the card */
  height: 220px;
  background: conic-gradient(
      #ffc451 0%, 
      #ffda92 25%, /* Lighter transition between yellow and green */
      #78E495 50%, 
      #ffda92 75%, /* Lighter transition between green and yellow */
      #ffc451 100%
  );
  animation: rotateBorder 3s linear infinite;
  border-radius: 100%;
}

@keyframes rotateBorder {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.card1::after {
  content: '';
  position: absolute;
  background: white;
  background-image: url("../img/keynote/sic_fauzan.png");
  background-size: 140%;
  background-position: top;
  /* box-shadow: 10px 10px 35px grey; */
  inset: 3px;
  border-radius: 50%;
}


/* Card 2 */
.card2 {
  width: 160px;
  height: 160px;
  background: white;
  background-image: url("../img/keynote/petronas_helmi.png");
  background-size: cover;
  position: relative;
  display: flex;
  place-content: center;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  /* box-shadow: 10px 10px 35px grey; */
}

.card2 h2 {
  z-index: 1;
  color: white;
  font-size: 2em;
}

.card2::before {
  content: '';
  position: absolute;
  width: 200px; /* Slightly larger than the card */
  height: 220px;
  background: conic-gradient(
      #ffc451 0%, 
      #ffda92 25%, /* Lighter transition between yellow and green */
      #78E495 50%, 
      #ffda92 75%, /* Lighter transition between green and yellow */
      #ffc451 100%
  );
  animation: rotateBorder 3s linear infinite;
  border-radius: 100%;
}

.card2::after {
  content: '';
  position: absolute;
  background: white;
  background-image: url("../img/keynote/petronas_helmi.png");
  background-size: 140%;
  background-position: top;
  box-shadow: 10px 10px 35px grey;
  inset: 3px;
  border-radius: 50%;
}

/* Card 3 */
.card3 {
  width: 160px;
  height: 160px;
  background: white;
  background-image: url("../img/keynote/penangPort_fadzly.png");
  background-size: cover;
  position: relative;
  display: flex;
  place-content: center;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  /* box-shadow: 10px 10px 35px grey; */
}

.card3 h2 {
  z-index: 1;
  color: white;
  font-size: 2em;
}

.card3::before {
  content: '';
  position: absolute;
  width: 200px; /* Slightly larger than the card */
  height: 220px;
  background: conic-gradient(
      #ffc451 0%, 
      #ffda92 25%, /* Lighter transition between yellow and green */
      #78E495 50%, 
      #ffda92 75%, /* Lighter transition between green and yellow */
      #ffc451 100%
  );
  animation: rotateBorder 3s linear infinite;
  border-radius: 100%;
}

.card3::after {
  content: '';
  position: absolute;
  background: white;
  background-image: url("../img/keynote/penangPort_fadzly.png");
  background-size: 140%;
  background-position: top;
  box-shadow: 10px 10px 35px grey;
  inset: 3px;
  border-radius: 50%;
}

/* Card 4 */
.card4 {
  width: 160px;
  height: 160px;
  background: white;
  background-image: url("../img/keynote/inv_plus_norbzlan.webp");
  background-size: cover;
  position: relative;
  display: flex;
  place-content: center;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  /* box-shadow: 10px 10px 35px grey; */
}

.card4 h2 {
  z-index: 1;
  color: white;
  font-size: 2em;
}

.card4::before {
  content: '';
  position: absolute;
  width: 200px; /* Slightly larger than the card */
  height: 220px;
  background: conic-gradient(
      #ffc451 0%, 
      #ffda92 25%, /* Lighter transition between yellow and green */
      #78E495 50%, 
      #ffda92 75%, /* Lighter transition between green and yellow */
      #ffc451 100%
  );
  animation: rotateBorder 3s linear infinite;
  border-radius: 100%;
}

.card4::after {
  content: '';
  position: absolute;
  background: white;
  background-image: url("../img/keynote/inv_plus_norbzlan.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 10px 15px;
  box-shadow: 10px 10px 35px grey;
  inset: 3px;
  border-radius: 50%;
}

/* Card 5 */
.card5 {
  width: 160px;
  height: 160px;
  background: white;
  background-image: url("../img/keynote/inv_plus_norbzlan.webp");
  background-size: cover;
  position: relative;
  display: flex;
  place-content: center;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 10px 10px 35px grey;
}

.card5 h2 {
  z-index: 1;
  color: white;
  font-size: 2em;
}

.card5::before {
  content: '';
  position: absolute;
  width: 200px; /* Slightly larger than the card */
  height: 220px;
  background: conic-gradient(
      #ffc451 0%, 
      #ffda92 25%, /* Lighter transition between yellow and green */
      #78E495 50%, 
      #ffda92 75%, /* Lighter transition between green and yellow */
      #ffc451 100%
  );
  animation: rotateBorder 3s linear infinite;
  border-radius: 100%;
}

.card5::after {
  content: '';
  position: absolute;
  background: white;
  background-image: url("../img/keynote/inv_IrLauYew.webp");
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: 20px 20px;
  box-shadow: 10px 10px 35px grey;
  inset: 3px;
  border-radius: 50%;
}

/* Card 6 */
.card6 {
  width: 160px;
  height: 160px;
  background: white;
  background-image: url("../img/keynote/inv_azri.webp");
  background-size: cover;
  position: relative;
  display: flex;
  place-content: center;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 10px 10px 35px grey;
}

.card6 h2 {
  z-index: 1;
  color: white;
  font-size: 2em;
}

.card6::before {
  content: '';
  position: absolute;
  width: 200px; /* Slightly larger than the card */
  height: 220px;
  background: conic-gradient(
      #ffc451 0%, 
      #ffda92 25%, /* Lighter transition between yellow and green */
      #78E495 50%, 
      #ffda92 75%, /* Lighter transition between green and yellow */
      #ffc451 100%
  );
  animation: rotateBorder 3s linear infinite;
  border-radius: 100%;
}

.card6::after {
  content: '';
  position: absolute;
  background: white;
  background-image: url("../img/keynote/inv_azri.webp");
  background-size: 110%;
  background-repeat: no-repeat;
  /* background-position: 20px 20px; */
  box-shadow: 10px 10px 35px grey;
  inset: 3px;
  border-radius: 50%;
}

/* Card 4=7 */
.card7 {
  width: 160px;
  height: 160px;
  background: white;
  background-image: url("../img/keynote/inv_helme.webp");
  background-size: cover;
  position: relative;
  display: flex;
  place-content: center;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 10px 10px 35px grey;
}

.card7 h2 {
  z-index: 1;
  color: white;
  font-size: 2em;
}

.card7::before {
  content: '';
  position: absolute;
  width: 200px; /* Slightly larger than the card */
  height: 220px;
  background: conic-gradient(
      #ffc451 0%, 
      #ffda92 25%, /* Lighter transition between yellow and green */
      #78E495 50%, 
      #ffda92 75%, /* Lighter transition between green and yellow */
      #ffc451 100%
  );
  animation: rotateBorder 3s linear infinite;
  border-radius: 100%;
}

.card7::after {
  content: '';
  position: absolute;
  background: white;
  background-image: url("../img/keynote/inv_helme.webp");
  background-size: 115%;
  background-repeat: no-repeat;
  background-position: -10px 20px;
  box-shadow: 10px 10px 35px grey;
  inset: 3px;
  border-radius: 50%;
}


/* Card 8 */
.card8 {
  width: 160px;
  height: 160px;
  background: white;
  background-image: url("../img/keynote/inv_syafiq.webp");
  background-size: cover;
  position: relative;
  display: flex;
  place-content: center;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  /* box-shadow: 10px 10px 35px grey; */
}

.card8 h2 {
  z-index: 1;
  color: white;
  font-size: 2em;
}

.card8::before {
  content: '';
  position: absolute;
  width: 200px; /* Slightly larger than the card */
  height: 220px;
  background: conic-gradient(
      #ffc451 0%, 
      #ffda92 25%, /* Lighter transition between yellow and green */
      #78E495 50%, 
      #ffda92 75%, /* Lighter transition between green and yellow */
      #ffc451 100%
  );
  animation: rotateBorder 3s linear infinite;
  border-radius: 100%;
}

.card8::after {
  content: '';
  position: absolute;
  background: white;
  background-image: url("../img/keynote/inv_syafiq.webp");
  background-size: 115%;
  background-repeat: no-repeat;
  background-position: -5px 0px;
  box-shadow: 10px 10px 35px grey;
  inset: 3px;
  border-radius: 50%;
}


/* Card 9 */
.card9 {
  width: 160px;
  height: 160px;
  background: white;
  background-image: url("../img/keynote/inv_afiq.webp");
  background-size: cover;
  position: relative;
  display: flex;
  place-content: center;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 10px 10px 35px grey;
}

.card9 h2 {
  z-index: 1;
  color: white;
  font-size: 2em;
}

.card9::before {
  content: '';
  position: absolute;
  width: 200px; /* Slightly larger than the card */
  height: 220px;
  background: conic-gradient(
      #ffc451 0%, 
      #ffda92 25%, /* Lighter transition between yellow and green */
      #78E495 50%, 
      #ffda92 75%, /* Lighter transition between green and yellow */
      #ffc451 100%
  );
  animation: rotateBorder 3s linear infinite;
  border-radius: 100%;
}

.card9::after {
  content: '';
  position: absolute;
  background: white;
  background-image: url("../img/keynote/inv_afiq.webp");
  background-size: 120%;
  background-repeat: no-repeat;
  background-position: -10px 0px;
  box-shadow: 10px 10px 35px grey;
  inset: 3px;
  border-radius: 50%;
}


.inv_name{
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
}
.inv_last_name{
  font-family: var(--heading-font);
  font-weight: bold;
  font-size: 13px;
  text-transform: uppercase;
  text-align: center;
}

.inv_ttl{
  font-family: var(--heading-font);
  font-size: 12px;
  text-align: center;
  font-weight: bold;
}

.inv_comp{
  font-family: var(--heading-font);
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
}


.inv_box_right{
  /* padding: 10px; */
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  border-right: 5px solid white;
  height: 100%;
  box-shadow: 20px 0px 20px rgba(128, 128, 128, 0.5);
}

.inv_logo {
  width: 80px;
}

.key_line_sm{
  border-bottom: 2px solid #ffc451;
}
/*--------------------------------------------------------------
# IMPORTANT DATES
--------------------------------------------------------------*/
.line_2025{
  padding: 2px;
  text-align: center;
  background-color: #ffc451;
  font-family: var(--heading-font);
  font-weight: bold;
  font-size: 20px;
}

.border_timeline{
  height: 30px;
  border-right: 2px solid #ffc451;
  opacity: 0.7;
}

.number{
  text-align: center;
  font-size: 30px;
  font-weight: bold;
}

.number_ext{
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  text-decoration: line-through;
}

.month{
  text-align: center;
  font-family: var(--heading-font);
  font-size: 12px;
}

.month_ext{
  text-align: center;
  font-family: var(--heading-font);
  font-size: 12px;
  text-decoration: line-through;
}

.cap_timeline{
  font-family: var(--nav-font);
}

.date_line{
  height: 50%;
  border-right: 2px solid rgba(128, 128, 128, 0.3);
  /* border-left: 2px solid rgba(128, 128, 128, 0.3); */
}

.ext_box_up{
  display: flex;
  align-items: center;
  text-align: center;
  gap: 10px;
  position: relative;
  left: 50%;
}

.ext_box_down{
  display: flex;
  align-items: center;
  text-align: center;
  gap: 10px;
  position: relative;
  left: 25%;
}

.ext_box_mob{
  display: flex;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.ext_txt{
  text-align: center;
  font-style: italic;
  font-weight: bold;
  font-family: var(--nav-font);
  font-size: 12px;
  color: #000;
  opacity: 0.5;
}

.ext_date{
  align-items: center;
  text-align: center;
  font-style: italic;
  font-weight: bold;
  font-family: var(--nav-font);
  font-size: 20px;
  color: black;
}
/*--------------------------------------------------------------
# INSTRUCTION FOR AUTHORS
--------------------------------------------------------------*/
.ifa_bg {
  position: relative;
  color: black; /* Ensure text remains visible */
  text-align: justify;
  padding: 50px;
}

.ifa_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/webpg_bg2.webp");
  background-attachment: fixed;
  background-size:cover;
  background-repeat: no-repeat;
  background-position:center;
  filter: grayscale(100%); /* Make it black and white */
  opacity: 0.15; /* Lower the opacity */
  z-index: -1; /* Keeps background behind the text */
}

/*--------------------------------------------------------------
# TECHNICAL ADVISORY PANEL
--------------------------------------------------------------*/
.bg_tch {
  position: relative;
  color: black; /* Ensure text remains visible */
  text-align: justify;
  padding: 50px;
}

.bg_tch::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/webpg_bg3.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  filter: grayscale(100%); /* Make it black and white */
  opacity: 0.08; /* Lower the opacity */
  z-index: -1; /* Keeps background behind the text */
}

.tap_box{
  margin: 5px;
  padding: 50px;
  background-color: white;
  /* box-shadow: 10px 10px 25px rgba(128, 128, 128, 0.5); */
  text-align: left;
  font-style: normal;
  font-size: 15px;
  font-family: var(--heading-font);
}
.tap_border{
  border-right: 3px solid rgba(255, 196, 81, 1);
}
.tap_no{
  font-style: normal;
  padding: 5px;
  text-align: center;
  font-size: 50px;
  font-family: var(--nav-font);
  font-weight:bold;
  color: rgba(255, 196, 81, 1);
  /* box-shadow: 2px 2px 10px rgba(128, 128, 128, 0.9);
  border-radius: 100%;
  border: 4px solid rgba(128, 128, 128, 0.1);
  height: 90px;
  width: 90px; */
}

.tap_country{
  text-transform: uppercase;
  font-family: var(--nav-font);
  font-weight: bold;
  font-size: 26px;
  text-align: left;
  border-bottom: 4px solid rgba(255, 196, 81, 1);
  width: 40px;
}

.tap_uni{
  font-style: italic;
  text-align: left;
  font-weight: bold;
  text-transform:capitalize;
  font-size: 17px;
  font-family: var(--nav-font);
}
.country_ic{
  color: rgba(128, 128, 128, 0.5);
  font-size: 20px;
}



.icon_box{
  padding: 10px;
}

.cap_border{
  border-left: 3px solid rgba(255, 196, 81, 0.7);
  height: 50%;
  font-family: var(--nav-font);
}

/*--------------------------------------------------------------
# SPONSORS
--------------------------------------------------------------*/
.spons_bg {
  position: relative;
  color: black; /* Ensure text remains visible */
  text-align: justify;
  padding: 50px;
}

.spons_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/bg_tech.jpeg");
  background-size:cover;
  background-repeat: no-repeat;
  background-position:center;
  filter: grayscale(100%); /* Make it black and white */
  opacity: 0.1; /* Lower the opacity */
  z-index: -1; /* Keeps background behind the text */
}


/*--------------------------------------------------------------
# VENUE
--------------------------------------------------------------*/
.venue_box{
  border: 1px solid rgba(255, 196, 81, 1);
  height: auto;
}
.venue_box_pic{
  height: fit-content;
}

.cap_box{
  background-color: white;
}

.hotel_name{
  font-family: var(--heading-font);
  font-weight: bold;
  font-size: 30px;
  color: #000;
}

.hotel_cap{
  font-family: var(--heading-font);
  font-size: 15px;
}

.cap_icon{
  color: gold;
}

.hotel_button{
  background-color: gold;
  color: #252525;
  border-radius: 5px;
  padding: 10px 20px;
  font-family: var(--heading-font);
  font-weight: bold;
}

.hotel_button:hover{
  background-color: #252525;
  color: gold;
}

.venue_bg {
  position: relative;
  color: black; /* Ensure text remains visible */
  text-align: justify;
  padding: 50px;
}

.venue_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/webpg_bg1.webp");
  background-size:cover;
  background-repeat: no-repeat;
  background-position:center;
  filter: grayscale(100%); /* Make it black and white */
  opacity: 0.1; /* Lower the opacity */
  z-index: -1; /* Keeps background behind the text */
}


.pic_hotel{
  width:100%;
  height: 100%;
}



.wtc_pics{
  border-radius: 10px;
  width: 1000px;
}

/*--------------------------------------------------------------
# WORKSHOPS
--------------------------------------------------------------*/
.w_icon{
  font-size: 25px;
  color: #151515;
  opacity: 0.6;
}

.w_box{
  background-color: white;
  margin: 5px;
  box-shadow: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.w_header{
  font-size: 18px;
  font-family: var(--heading-font);
  font-weight: bold;
  font-style: normal;
  color: #ffc107;
}

.w_caption{
  font-family: var(--heading-font);
  line-height: 1.5;
  font-size: 12px;
}

.w_price{
  font-weight:bold;
  font-size: 25px;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# WOKRSHOP SCHEDULE
--------------------------------------------------------------*/
 .schedule-body {
            margin: 0;
            padding: 0;
            font-family: var(--heading-font);
            /* background-color: #f5f7fa; */
            font-size: 12px;
        }
        
        .schedule-page {
            line-height: 1.6;
            color: #333;
            max-width: 1000px;
            margin: 0 auto;
            padding: 5px;
        }
        
        .schedule-title {
            text-align: center;
            color: #2c3e50;
            margin-bottom: 30px;
            font-size: 2.2rem;
            font-weight: normal;
        }
        
        .schedule-container {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            overflow: vis;
        }
        
        .schedule-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .schedule-table-header {
            /* background-color: white; */
            background-color: rgba(128, 128, 128, 0.1); /* Grey with 20% opacity */
            color: #132D46;
            font-weight: bold;
            text-align: left;
            padding: 15px;
            font-size: 1.0rem;
        }
        
        .schedule-table-cell {
            padding: 14px 15px;
            border-bottom: 1px solid #e1e4e8;
            vertical-align: top;
        }
        
        .schedule-table-row:last-child .schedule-table-cell {
            border-bottom: none;
        }
        
        .session-header {
            /* background-color: #e3f2fd; */
            background-color: rgba(128, 128, 128, 0.1); /* Grey with 20% opacity */
            font-weight: 600;
            color: #5157EA;
            text-align: center;
        }
        
        .break {
            background-color: white;
            font-style: italic;
            color: #1976d2;
            font-weight: bold;
            text-align: center;
        }
        
        .time {
            font-weight: 500;
            color: #132D46;
            width: 120px;
            font-weight: bold;
        }
        
        .programme {
            line-height: 1.5;
        }
        
        @media (max-width: 768px) {
            .schedule-table, 
            .schedule-table-header, 
            .schedule-table-cell, 
            .schedule-table-row {
                display: block;
            }
            
            .schedule-table-header {
                position: absolute;
                top: -9999px;
                left: -9999px;
            }
            
            .schedule-table-row {
                border: 1px solid #ccc;
                margin-bottom: 15px;
                border-radius: 5px;
            }
            
            .schedule-table-cell {
                border: none;
                border-bottom: 1px solid #eee;
                position: relative;
                padding-left: 50%;
            }
            
            .schedule-table-cell:before {
                position: absolute;
                top: 14px;
                left: 12px;
                width: 45%;
                padding-right: 10px;
                white-space: nowrap;
                font-weight: bold;
                /* color: #3498db; */
            }
            
            .schedule-table-cell:nth-of-type(1):before { content: "Session"; }
            .schedule-table-cell:nth-of-type(2):before { content: "Time"; }
            .schedule-table-cell:nth-of-type(3):before { content: "Programme"; }
        }

/*--------------------------------------------------------------
# REGISTER
--------------------------------------------------------------*/
.reg_bg {
  position: relative;
  color: black; /* Ensure text remains visible */
  text-align: justify;
  padding: 50px;
}

.reg_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/webpg_bg4.webp");
  background-attachment: fixed;
  background-size:cover;
  background-repeat: no-repeat;
  background-position:center;
  filter: grayscale(100%); /* Make it black and white */
  opacity: 0.3; /* Lower the opacity */
  z-index: -1; /* Keeps background behind the text */
}

/*--------------------------------------------------------------
# SPONSOR
--------------------------------------------------------------*/

@import url(https://fonts.googleapis.com/css?family=Raleway:400,500,800);
        @import url(https://fonts.googleapis.com/css?family=Montserrat:800);
        .snip1276 {
        font-family: 'Raleway', Arial, sans-serif;
        color: #3575BB;
        text-align: center;
        font-size: 16px;
        width: 100%;
        max-width: 1000px;
        margin: 50px 10px 10px;
        }
        .snip1276 .plan {
        margin: 0;
        width: 25%;
        position: relative;
        float: left;
        overflow: hidden;
        background-color: #e6e6e6;
        border: 1px solid #adb5b8;
        box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
        }
        .snip1276 .plan:hover i,
        .snip1276 .plan.hover i {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        }
        .snip1276 * {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
        }
        .snip1276 header {
        position: relative;
        background-color: #3575BB;
        color: #ffffff;
        padding: 20px 20px;
        }
        .snip1276 header:after {
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 24px 150px 0 150px;
        border-color: #3575BB transparent transparent transparent;
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        }
        .snip1276 .plan-title {
        top: 0;
        font-weight: 500;
        margin: 8px 0;
        text-transform: uppercase;
        font-weight: 400;
        letter-spacing: 1px;
        }
        .snip1276 .plan-cost {
        margin: 8px 0 0;
        }
        .snip1276 .plan-price {
        font-family: 'Montserrat', Arial, sans-serif;
        font-weight: 600;
        font-size: 2em;
        color: #ffffff;
        }
        .snip1276 .plan-type {
        opacity: 0.8;
        color: #ffffff;
        font-size: 0.7em;
        text-transform: uppercase;
        }
        .snip1276 .plan-features {
        padding: 40px 0 0;
        margin: 0;
        list-style: outside none none;
        font-size: 0.8em;
        }
        .snip1276 .plan-features li {
        border-top: 1px solid rgba(0, 0, 0, 0.2);
        padding: 10px 5%;
        font-weight: 500;
        }
        .snip1276 .plan-features li:nth-child(even) {
        background: rgba(0, 0, 0, 0.08);
        }
        .snip1276 .plan-features i {
        margin-right: 8px;
        opacity: 0.4;
        }
        .snip1276 .plan-select {
        border-top: 1px solid rgba(0, 0, 0, 0.2);
        padding: 20px;
        }
        .snip1276 .plan-select a {
        background-color: #1e1e1e;
        color: #ffffff;
        text-decoration: none;
        padding: 12px 20px;
        font-size: 0.75em;
        font-weight: 600;
        text-transform: uppercase;
        display: inline-block;
        }
        .snip1276 .plan-select a:hover {
        background-color: #2b2b2b;
        }
        .snip1276 .featured {
        margin-top: -10px;
        border: 5px solid #bea74d;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
        z-index: 1;
        }
        .snip1276 .featured header {
        background-color: #F6BB00;
        }
        .snip1276 .featured header:after {
        border-color: #F6BB00 transparent transparent transparent;
        }
        .snip1276 .featured .plan-select {
        padding: 30px 20px;
        }
        .snip1276 .featured .plan-select a {
        background-color: #F6BB00;
        }
        @media only screen and (max-width: 767px) {
        .snip1276 .plan {
            width: 50%;
        }
        .snip1276 .plan-title,
        .snip1276 .plan-select a {
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }
        .snip1276 .plan-select,
        .snip1276 .featured .plan-select {
            padding: 20px;
        }
        .snip1276 .featured {
            margin-top: 0;
        }
        }
        @media only screen and (max-width: 440px) {
        .snip1276 .plan {
            width: 100%;
        }
        }

/* CARD */
h1 {
            font-size: 2.5rem;
            font-weight: 900;
            text-transform: uppercase;
            margin-top: 2em;
            margin-bottom: 0;
        }

        .text-accent {
            color: #00A1AB;
        }

        .fs-500 {
            font-size: 1.3125rem;
            margin: 0;
        }

        .mb {
            margin-bottom: 0.5em;
        }

        .plans {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin: 2em 0;
        }

        .plan {
            width: 18.5rem;
            height: 31.5rem;
            padding: 2em;
            border-radius: 1em;
            margin: 0 0.5em 1em;
            box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
        }

        .plan--light {
            color: #4E4E4E;
            background: linear-gradient(-45deg, #E5E3E8, #FAFAFA);
        }

        .plan--light .plan-price {
            color: #00A1AB;
        }

        .plan--light .btn {
            color: #FFF;
            background: #4E4E4E;
        }

        .plan--accent {
            /* width: 20.5rem; */
            /* height: 30.5rem; */
            color: #FFF;
            background: linear-gradient(-45deg, #00A1AB, #3741A0);

        }

        .plan--accent .btn {
            color: #4E4E4E;
            background: #FFF;
        }

        .plan-title {
            text-transform: uppercase;
            margin: 0 0 1em;
            line-height: 2.5;
            color: black;
            font-weight: bold;
        }

        .plan-price {
            margin: 0;
            font-size: 2.5rem;
            line-height: 0.1;
            font-weight: 900;
            
        }

        .plan-price span {
            display: block;
            font-size: 1.5625rem;
            font-weight: 300;
        }

        .plan-description {
          text-align: left;
            margin: 2em 0;
            line-height: 1.5;
            /* width: 100%; */
            font-family: var(--nav-font);
            font-size: 1.0rem;
        }

        .btn {
            display: inline-block;
            padding: 0.5em 0.75em;
            border-radius: 0.25em;
            text-transform: uppercase;
            text-decoration: none;
            font-weight: 700;
            color: #FFF;
            background: #00A1AB;
            transition: 0.3s;
        }

        .btn:hover {
            opacity: 0.7;
        }

        .btn-mb {
            margin-bottom: 3em;
        }

        .btn--light {
            color: #4E4E4E;
            background: #FFF;
        }

        .btn--dark {
            color: #FFF;
            background: #4E4E4E;
        }


/*--------------------------------------------------------------
# WOKRSHOP SCHEDULE
--------------------------------------------------------------*/
 .schedule-body {
            margin: 0;
            padding: 0;
            font-family: var(--heading-font);
            /* background-color: #f5f7fa; */
            font-size: 12px;
        }
        
        .schedule-page {
            line-height: 1.6;
            color: #333;
            max-width: 1000px;
            margin: 0 auto;
            padding: 5px;
        }
        
        .schedule-title {
            text-align: center;
            color: #2c3e50;
            margin-bottom: 30px;
            font-size: 2.2rem;
            font-weight: normal;
        }
        
        .schedule-container {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            overflow: vis;
        }
        
        .schedule-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .schedule-table-header {
            /* background-color: white; */
            background-color: rgba(128, 128, 128, 0.1); /* Grey with 20% opacity */
            color: #132D46;
            font-weight: bold;
            text-align: left;
            padding: 15px;
            font-size: 1.0rem;
        }
        
        .schedule-table-cell {
            padding: 14px 15px;
            border-bottom: 1px solid #e1e4e8;
            vertical-align: top;
        }
        
        .schedule-table-row:last-child .schedule-table-cell {
            border-bottom: none;
        }
        
        .session-header {
            /* background-color: #e3f2fd; */
            background-color: rgba(128, 128, 128, 0.1); /* Grey with 20% opacity */
            font-weight: 600;
            color: #5157EA;
            text-align: center;
        }
        
        .break {
            background-color: white;
            font-style: italic;
            color: #1976d2;
            font-weight: bold;
            text-align: center;
        }
        
        .time {
            font-weight: 500;
            color: #132D46;
            width: 120px;
            font-weight: bold;
        }
        
        .programme {
            line-height: 1.5;
        }
        
        @media (max-width: 768px) {
            .schedule-table, 
            .schedule-table-header, 
            .schedule-table-cell, 
            .schedule-table-row {
                display: block;
            }
            
            .schedule-table-header {
                position: absolute;
                top: -9999px;
                left: -9999px;
            }
            
            .schedule-table-row {
                border: 1px solid #ccc;
                margin-bottom: 15px;
                border-radius: 5px;
            }
            
            .schedule-table-cell {
                border: none;
                border-bottom: 1px solid #eee;
                position: relative;
                padding-left: 50%;
            }
            
            .schedule-table-cell:before {
                position: absolute;
                top: 14px;
                left: 12px;
                width: 45%;
                padding-right: 10px;
                white-space: nowrap;
                font-weight: bold;
                /* color: #3498db; */
            }
            
            .schedule-table-cell:nth-of-type(1):before { content: "Session"; }
            .schedule-table-cell:nth-of-type(2):before { content: "Time"; }
            .schedule-table-cell:nth-of-type(3):before { content: "Programme"; }
        }