/**
* Template Name: Groovin
* Template URL: https://bootstrapmade.com/groovin-free-bootstrap-theme/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* 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: "Playfair Display",  sans-serif;
  --nav-font: "Merriweather",  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: #2a2a2a; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #df1529; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #d1d1d1;  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #df1529; /* 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: #ffffff;
}

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

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

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;
}
f
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: "Roboto" ,sans-serif;
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}

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

.header .logo img {
  max-height: 80px;
  margin-right: 0;
}

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: #d80000;
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 15px;
  border-radius: 4px;
  transition: 0.3s;
  border: 2px solid #d80000;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: #fff;
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

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

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

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

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #000000;
}

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

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

  .navmenu li {
    position: relative;
  }

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

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

  .navmenu a,
  .navmenu a:focus {
    color: #000;
    font-size: 15px;
    padding: 0 2px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

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

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

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #d80000;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #d80000;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer .footer-about p {
  font-size: 14px;
  font-family: "Roboto" ,sans-serif;
}

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

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

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

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

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

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

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

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

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 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: var(--background-color);
  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: var(--background-color);
  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: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

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

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #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);
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

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

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

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

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

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
  font-family: "Roboto" ,sans-serif;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
}

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

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

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

.hero .carousel-item::before {
  content: "";
  
  position: absolute;
  inset: 0;
}

.hero .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  animation: fadeInDown 1s both;
}

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

.hero p {
  animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {

  .hero h2,
  .hero p {
    max-width: 60%;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 4px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.nav.nav-pills{
  justify-content: center;
}
.tab-content .tab-pane .session-title{
  font-size: 24px;
  font-weight: 700;
  color: #d80000;
  font-family: "Roboto", sans-serif;
}
.tab-content .tab-pane p{
  color:#4054b2;
  text-align: center;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
}
.nav-pills .nav-link{
  background-color:#f1f1f1;
  color: #333;
  padding: 15px 25px;
  margin-right: 15px;
  border-radius: 25px;
  font-style: normal;
  font-family: "Roboto", sans-serif;
}
.tab-desc{
  padding: 10px;
  border-radius: 10px;
  background-color:#f1f1f1;
  min-height: 85px;
  font-family: "Roboto", sans-serif;
}
.tab-desc.main-tab{
  background-color: #d80000;
}
.tab-desc.main-tab .title{
  color: #fff;
}
.tab-desc.main-tab .date-time{
  color: #fff;
}
.tab-desc .title{
  font-size: 18px;
  font-weight: 700;
  color: #333;
  font-family: "Roboto", sans-serif;
}
.tab-desc .date-time{
  font-size: 18px;
  font-weight: 700;
  color: #d80000;
  font-family: "Roboto", sans-serif;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
  color: #fff;
  background-color:#333;
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  font-size: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contact .info-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 20px 0;
}

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

@media (min-width: 992px) {
  .contact .info-item.info-item-borders {
    border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  }
}

.contact .php-email-form {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-top: 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.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: 50px;
}

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



.dates-cards {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.date-card {
  background: #fff;
  border: 2px solid #d80000;
  border-radius: 22px;
  padding: 32px 28px;
  width: 300px;
  box-shadow: 0 2px 12px rgba(216, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
}

.date-card.active {
  background: #d80000;
  color: #fff;
  border-color: #d80000;
}

.date-card.active h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.date-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #d80000;
}

.status.closed {
  color: #d80000;
  font-weight: 700;
  margin-bottom: 18px;
}

.date-card.active .status.closed {
  color: #fff;
}

.event-dates {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.btn {
  background: #d80000;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 10px 28px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn:disabled {
  background: #aaa;
  cursor: not-allowed;
}

.date-card.active .btn {
  background: #000;
}

@media (max-width: 900px) {
  .dates-cards {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .date-card {
    width: 90%;
    max-width: 350px;
  }
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #fff;
  margin: 0;
  padding: 0;
  color: #222;
}

/* Navigation Bar */
.navbar {
  background: #fff;
  border-bottom: 2px solid #d80000;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}
.nav-menu {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}
.nav-menu li a {
  text-decoration: none;
  color: #222;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-menu li a:hover {
  color: #d80000;
}
.nav-btn {
  background: #d80000;
  color: #fff;
  padding: 10px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s;
}
.nav-btn:hover {
  background: #b60000;
}

/* Welcome Section */
.welcome-section {
  padding: 60px 0 40px 0;
  background: #fff;
}
.welcome-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.welcome-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
  background: #eee;
}
.welcome-content {
  flex: 1;
  min-width: 320px;
  max-width: 600px;
}
.welcome-title {
  color: #d80000;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.welcome-name {
  font-size: 2rem;
  font-weight: 800;
  margin: 0;
  color: #333;
  font-family: "Roboto", sans-serif;
}
.welcome-role {
  font-family: 'Pacifico', cursive, Arial, sans-serif;
  color: #d80000;
  font-size: 1.2rem;
  margin: 10px 0 18px 0;
}
.welcome-role span {
  font-family: inherit;
}
.welcome-text {
  color: #444;
  font-size: 1.04rem;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 28px;
  font-family: "Roboto", sans-serif;
}
.read-more-btn {
  display: inline-block;
  background: #d80000;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 32px;
  border-radius: 22px;
  text-decoration: none;
  transition: background 0.2s;
}
.read-more-btn:hover {
  background: #b60000;
}

/* Responsive */
@media (max-width: 900px) {
  .welcome-container {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .welcome-image img {
    width: 100%;
    max-width: 320px;
    height: auto;
  }
}

.committee-section {
  text-align: center;
  padding: 60px 0 30px 0;
  background: #fff;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: #222;
  margin-bottom: 0.2em;
  padding-bottom: 0;
}

.section-title span {
  font-weight: 800;
}

.section-underline {
  width: 60px;
  height: 4px;
  background: #d80000;
  margin: 0 auto 36px auto;
  border-radius: 2px;
}

.committee-members {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.committee-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 15px;
  overflow: hidden;
  background: #eee;
  margin-bottom: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 15px 0;
}

.member-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  background: #eee;
  margin-bottom: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

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

.member-info h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 6px 0;
}

.role {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
}

.role.chairperson {
  color: #d80000;
}

.role.cochairperson {
  color: #d80000;
}

.role.secretary {
  color: #d80000;
}

@media (max-width: 900px) {
  .committee-members {
    flex-direction: column;
    gap: 38px;
  }
}


.speaker-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 20px;
  aspect-ratio: 1 / 1; /* Makes it a square */
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.speaker-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.speaker-photo{
  width: 260px;
  height: 260px;
  margin: 0 auto;
}
.speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #eee;
}

.speaker-info {
  text-align: center;
  margin-top: 10px;
  overflow-wrap: break-word;
  padding: 0 5px;
}

.speaker-info h3 {
  font-size: 1.25rem;
  margin: 8px 0;
  color: #333;
}

.speaker-info p {
  margin: 4px 0;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.3;
}
.speaker-info label{
  color: #e74c3c;
  font-size: 16px;
  font-weight: 600;
}
.topbar-section{
  background: #eef3fc;
  padding: 20px 40px;
  border-bottom: 2px solid #e0e6f2;
}
.topbar {
  display: flex;
  align-items: center;
  font-family: 'Segoe UI', Arial, sans-serif;
  
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

.topbar-right {
  margin-left: 40px;
  color: #232323;
}

.main-title {
  color: #e32636;
  font-size: 30px;
  font-weight: bold;
}

.subtitle {
  font-size: 24px;
  font-weight: 700;
  display: block;
}
.abstract-section .abstract-text{
  font-size: 20px;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  color: #333;
}
.abstract-section ul li{
  font-size: 16px;
  color: #333;
  line-height: 26px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}

.product-slider {
  width: 100%;
}
.product-slider .slick-list .slick-track .slick-slide{
  margin-right: 10px;
}
@media (max-width: 767px){
  .topbar-section{
    padding: 20px 0;
  }
  .topbar{
    display: block;
    text-align: center;
  }
  .topbar-left{
    justify-content: center;
  }
  .topbar-right{
    margin-left: 0;
  }
  .main-title{
    font-size: 26px;
  }
  .subtitle{
    font-size: 16px;
  }
  .welcome-image{
    text-align: center;
    margin-bottom: 20px;
  }
  .section-title{
    font-size: 26px;
  }
  .committee-member{
    width: 100%;
  }
  .nav-pills .nav-link{
    margin-bottom: 15px;
  }
  .tab-content .tab-pane .session-title{
    font-size: 22px;
  }
  .product-slider .slick-list .slick-track .slick-slide{
    margin-right: 0;
  }
}

/* Countdown Timer Styles */
.countdown-section {
  background: #f8f9fa;
  padding: 10px 0;
  text-align: center;
}

.countdown-section .section-title {
  margin-bottom: 0.2em;
  padding-bottom: 0;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.countdown-item {
  background: #fff;
  border: 2px solid #d80000;
  border-radius: 15px;
  padding: 10px;
  min-width: 90px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(216, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.countdown-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(216, 0, 0, 0.2);
}

.countdown-number {
  font-size: 30px;
  font-weight: bold;
  color: #d80000;
  font-family: "Roboto", sans-serif;
}

.countdown-label {
  font-size: 14px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
}

.countdown-date {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .countdown-timer {
    gap: 25px;
  }
  
  .countdown-item {
    min-width: 110px;
    padding: 20px 15px;
  }
}

@media (max-width: 992px) {
  .countdown-section {
    padding: 50px 0;
  }
  
  .countdown-section .section-title {
    font-size: 2.2rem;
  }
  
  .countdown-timer {
    gap: 20px;
  }
  
  .countdown-item {
    min-width: 100px;
    padding: 20px 15px;
  }
  
  .countdown-number {
    font-size: 2.5rem;
  }
  
  .countdown-date {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .countdown-section {
    padding: 40px 0;
    border-top: 2px solid #d80000;
    border-bottom: 2px solid #d80000;
  }
  
  .countdown-section .section-title {
    font-size: 2rem;
  }
  
  .countdown-timer {
    gap: 15px;
    justify-content: space-around;
  }
  
  .countdown-item {
    min-width: 90px;
    padding: 18px 12px;
    flex: 1;
    max-width: 120px;
  }
  
  .countdown-number {
    font-size: 2.2rem;
  }
  
  .countdown-label {
    font-size: 0.95rem;
  }
  
  .countdown-date {
    font-size: 1rem;
    padding: 0 15px;
  }
}

@media (max-width: 576px) {
  .countdown-section {
    padding: 30px 0;
  }
  
  .countdown-section .section-title {
    font-size: 1.8rem;
  }
  
  .countdown-timer {
    gap: 10px;
    margin-bottom: 25px;
  }
  
  .countdown-item {
    min-width: 75px;
    padding: 15px 8px;
    border-radius: 12px;
  }
  
  .countdown-number {
    font-size: 1.8rem;
  }
  
  .countdown-label {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
  }
  
  .countdown-date {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

@media (max-width: 400px) {
  .countdown-section {
    padding: 25px 0;
  }
  
  .countdown-section .section-title {
    font-size: 1.6rem;
  }
  
  .countdown-timer {
    gap: 8px;
    margin-bottom: 20px;
  }
  
  .countdown-item {
    min-width: 65px;
    padding: 12px 6px;
    border-radius: 10px;
  }
  
  .countdown-number {
    font-size: 1.5rem;
  }
  
  .countdown-label {
    font-size: 0.75rem;
    letter-spacing: 0.3px;
  }
  
  .countdown-date {
    font-size: 0.85rem;
    padding: 0 10px;
  }
}

/* Updated Committee Section Styles */
.committee-section {
  background: #fff;
  padding: 60px 0;
}

.committee-category {
  margin-bottom: 50px;
}

.committee-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #d80000;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Roboto", sans-serif;
}

.committee-member-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.committee-member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(216, 0, 0, 0.15);
  border-color: #d80000;
}

.member-photo {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f8f9fa;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.committee-member-card:hover .member-photo img {
  transform: scale(1.05);
}

.member-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
  font-family: "Roboto", sans-serif;
}

.role {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  padding: 5px 15px;
  border-radius: 20px;
  display: inline-block;
  font-family: "Roboto", sans-serif;
}

.role.chairperson {
  background: #d80000;
  color: #fff;
}

.role.chair {
  background: #e74c3c;
  color: #fff;
}

.role.cochair {
  background: #f39c12;
  color: #fff;
}

.role.member {
  background: #004185;
  color: #fff;
}

/* Responsive Design for Committee Section */
@media (max-width: 768px) {
  .committee-section {
    padding: 40px 0;
  }
  
  .committee-title {
    font-size: 1.5rem;
  }
  
  .committee-member-card {
    padding: 15px;
  }
  
  .member-photo {
    width: 120px;
    height: 120px;
  }
  
  .member-info h3 {
    font-size: 1.1rem;
  }
  
  .role {
    font-size: 0.9rem;
    padding: 4px 12px;
  }
}

@media (max-width: 576px) {
  .committee-category {
    margin-bottom: 40px;
  }
  
  .committee-title {
    font-size: 1.3rem;
  }
  
  .member-photo {
    width: 100px;
    height: 100px;
  }
  
  .member-info h3 {
    font-size: 1rem;
  }
}

/* Modern Event Schedule Styles */
.modern-event-schedule {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  position: relative;
}

.schedule-nav {
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.day-nav-pills {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.day-pill {
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 20px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
}

.day-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(216, 0, 0, 0.15);
  border-color: #d80000;
}

.day-pill.active {
  background: #d80000;
  border-color: #d80000;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(216, 0, 0, 0.3);
}

.day-number {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
  color: #d80000;
  font-family: "Roboto", sans-serif;
}

.day-pill.active .day-number {
  color: white;
}

.day-info {
  display: flex;
  flex-direction: column;
}

.day-name {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
  font-family: "Roboto", sans-serif;
}

.month {
  font-size: 0.9rem;
  opacity: 0.7;
  font-family: "Roboto", sans-serif;
}

.schedule-content {
  position: relative;
  z-index: 2;
}

.day-schedule {
  display: none;
}

.day-schedule.active {
  display: block;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 158px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #d80000, #f39c12);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
}

.timeline-time {
  width: 160px;
  text-align: right;
  padding-right: 30px;
  position: relative;
}

.timeline-time::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 15px;
  width: 16px;
  height: 16px;
  background: #d80000;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px #d80000;
}

.time {
  display: block;
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  font-family: "Roboto", sans-serif;
}

.duration {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-top: 2px;
  font-family: "Roboto", sans-serif;
}

.timeline-content {
  flex: 1;
  margin-left: 30px;
}

.event-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #d80000;
  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.event-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.event-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin: 0;
  flex: 1;
  font-family: "Roboto", sans-serif;
}

.event-type {
  background: #d80000;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 15px;
  font-family: "Roboto", sans-serif;
}

.event-time {
  font-size: 1rem;
  font-weight: 600;
  color: #d80000;
  margin: 8px 0;
  font-family: "Roboto", sans-serif;
}

.event-desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
  font-family: "Roboto", sans-serif;
}

/* Event Type Colors */
.event-card.keynote { border-left-color: #e74c3c; }
.event-card.keynote .event-type { background: #e74c3c; }
.event-card.session { border-left-color: #3498db; }
.event-card.session .event-type { background: #3498db; }
.event-card.presentation { border-left-color: #f39c12; }
.event-card.presentation .event-type { background: #f39c12; }
.event-card.discussion { border-left-color: #9b59b6; }
.event-card.discussion .event-type { background: #9b59b6; }
.event-card.break { border-left-color: #2ecc71; }
.event-card.break .event-type { background: #2ecc71; }
.event-card.business { border-left-color: #34495e; }
.event-card.business .event-type { background: #34495e; }
.event-card.closing { border-left-color: #e67e22; }
.event-card.closing .event-type { background: #e67e22; }
.event-card.inaugural { border-left-color: #d80000; }
.event-card.inaugural .event-type { background: #d80000; }

/* Responsive Design */
@media (max-width: 768px) {
  .modern-event-schedule {
    padding: 50px 0;
  }
  
  .day-nav-pills {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .day-pill {
    min-width: 180px;
    padding: 15px 20px;
  }
  
  .day-number {
    font-size: 2rem;
  }
  
  .timeline::before {
    left: 58px;
  }
  
  .timeline-time {
    width: 60px;
    font-size: 0.9rem;
  }
  
  .timeline-time::after {
    right: -8px;
  }
  
  .timeline-content {
    margin-left: 20px;
  }
  
  .event-card {
    padding: 20px;
  }
  
  .event-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .event-type {
    margin-left: 0;
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  .timeline::before {
    left: 58px;
  }
  
  .timeline-time {
    width: 60px;
    padding-right: 15px;
  }
  
  .timeline-content {
    margin-left: 15px;
  }
  
  .event-card {
    padding: 15px;
  }
  
  .event-card h3 {
    font-size: 1.1rem;
  }

  .time{
    font-size: 12px;
  }

  .duration{
    font-size: 10px;
  }
}

/* Modern Abstract Submission Section Styles */
.modern-abstract-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  padding: 80px 0;
  position: relative;
}

.abstract-hero {
  margin-bottom: 80px;
  padding: 40px 0;
}

.abstract-content {
  padding-right: 30px;
}

.abstract-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif;
}

.abstract-subtitle {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 40px;
  font-family: "Roboto", sans-serif;
}

.abstract-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #d80000;
  line-height: 1;
  margin-bottom: 8px;
  font-family: "Roboto", sans-serif;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
}

.abstract-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.submission-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(216, 0, 0, 0.1);
  border: 2px solid #f8f9fa;
  transition: all 0.3s ease;
  max-width: 350px;
  position: relative;
  overflow: hidden;
}

.submission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d80000, #e74c3c);
}

.submission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(216, 0, 0, 0.2);
}

.submission-card .card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #d80000, #e74c3c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;
}

.submission-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  font-family: "Roboto", sans-serif;
}

.submission-card p {
  color: #666;
  margin-bottom: 25px;
  font-family: "Roboto", sans-serif;
}

.btn-submit-abstract {
  background: #d80000;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
  font-family: "Roboto", sans-serif;
}

.btn-submit-abstract:hover {
  background: #b60000;
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
}

/* Guidelines Section */
.guidelines-section {
  margin-bottom: 80px;
}

.guidelines-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 50px;
  font-family: "Roboto", sans-serif;
}

.guidelines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.guideline-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid #d80000;
}

.guideline-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.guideline-card .card-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.guideline-card .card-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 1.5rem;
  color: white;
}

.guideline-card .card-icon.content {
  background: linear-gradient(135deg, #3498db, #2980b9);
}

.guideline-card .card-icon.format {
  background: linear-gradient(135deg, #f39c12, #e67e22);
}

.guideline-card .card-icon.presentation {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.guideline-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin: 0;
  font-family: "Roboto", sans-serif;
}

.guideline-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.guideline-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  font-family: "Roboto", sans-serif;
}

.guideline-list li i {
  color: #27ae60;
  margin-right: 10px;
  margin-top: 2px;
  font-size: 1.1rem;
}

/* Important Dates Timeline */
.important-dates {
  margin-bottom: 80px;
}

.dates-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 50px;
  font-family: "Roboto", sans-serif;
}

.dates-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.dates-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #d80000, #f39c12);
  transform: translateX(-50%);
}

.date-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}

.date-item:nth-child(odd) {
  justify-content: flex-end;
}

.date-item:nth-child(odd) .date-content {
  text-align: right;
  margin-right: 40px;
}

.date-item:nth-child(even) .date-content {
  margin-left: 40px;
}

.date-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: #d80000;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 0 0 4px #d80000;
  z-index: 2;
}

.date-content {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  position: relative;
}

.date-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
  font-family: "Roboto", sans-serif;
}

.date-content .date {
  font-size: 1.1rem;
  font-weight: 600;
  color: #d80000;
  margin-bottom: 5px;
  font-family: "Roboto", sans-serif;
}

.date-content .desc {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  font-family: "Roboto", sans-serif;
}

/* Call to Action Section */
.cta-section {
  background: linear-gradient(135deg, #d80000, #e74c3c);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.1"><circle cx="30" cy="30" r="2"/></g></g></svg>') repeat;
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: "Roboto", sans-serif;
}

.cta-content > p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  font-family: "Roboto", sans-serif;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.btn-primary-submit {
  background: #fff;
  color: #d80000;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Roboto", sans-serif;
}

.btn-primary-submit:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  color: #d80000;
  text-decoration: none;
}

.btn-secondary-submit {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 13px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Roboto", sans-serif;
}

.btn-secondary-submit:hover {
  background: white;
  color: #d80000;
  text-decoration: none;
}

.contact-info {
  font-size: 1rem;
  margin: 0;
  opacity: 0.9;
  font-family: "Roboto", sans-serif;
}

.contact-info i {
  margin-right: 8px;
}

/* Responsive Design for Abstract Section */
@media (max-width: 992px) {
  .abstract-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .abstract-stats {
    justify-content: center;
  }
  
  .dates-timeline::before {
    left: 30px;
  }
  
  .date-item {
    justify-content: flex-start !important;
  }
  
  .date-item .date-content {
    margin-left: 60px !important;
    margin-right: 0 !important;
    text-align: left !important;
  }
  
  .date-marker {
    left: 30px !important;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .modern-abstract-section {
    padding: 50px 0;
  }
  
  .abstract-hero {
    margin-bottom: 50px;
  }
  
  .abstract-title {
    font-size: 2rem;
  }
  
  .abstract-stats {
    gap: 20px;
  }
  
  .guidelines-section,
  .important-dates {
    margin-bottom: 50px;
  }
  
  .guidelines-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .cta-section {
    padding: 40px 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary-submit,
  .btn-secondary-submit {
    width: 250px;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .abstract-title {
    font-size: 1.8rem;
  }
  
  .abstract-stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .submission-card {
    padding: 30px 20px;
  }
  
  .dates-timeline::before {
    left: 20px;
  }
  
  .date-marker {
    left: 20px !important;
  }
  
  .date-item .date-content {
    margin-left: 50px !important;
  }
}

/*--------------------------------------------------------------
# Enhanced Footer with Google Map
--------------------------------------------------------------*/
.footer {
  background: linear-gradient(135deg, #2c3e50 0%, #3e5771 100%) !important;
  color: #fff !important;
  padding: 60px 0 0 0 !important;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></g></svg>') repeat;
  opacity: 0.3;
}

.footer-top {
  position: relative;
  z-index: 2;
}

.footer h4 {
  color: #fff !important;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer a {
  color: #d1d5db !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #fff !important;
}

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

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li i {
  margin-right: 8px;
  color: #d80000;
  font-size: 12px;
}

.footer-contact p {
  margin-bottom: 10px;
  color: #d1d5db !important;
}

.footer-contact i {
  color: #d80000;
  margin-right: 8px;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 30px 0;
}

.social-links a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 45px !important;
  height: 45px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border-radius: 50% !important;
  color: #fff !important;
  font-size: 18px;
  transition: all 0.3s ease;
  border: none !important;
}

.social-links a:hover {
  background: #d80000 !important;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(216, 0, 0, 0.3);
}

.map-container {
  width: 100%;
  height: 350px;
  position: relative;
  overflow: hidden;
  margin: 40px 0 0 0;
  border-top: 3px solid #d80000;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}

.map-container:hover iframe {
  filter: grayscale(0%);
}

.copyright {
  background: rgba(0, 0, 0, 0.3) !important;
  padding: 20px 0 !important;
  margin: 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.copyright p {
  margin: 0 !important;
  color: #d1d5db !important;
}

.credits a {
  color: #d80000 !important;
  font-weight: 500;
}

.credits a:hover {
  color: #ff4444 !important;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 0 0 !important;
  }
  
  .social-links {
    justify-content: center;
    margin: 20px 0;
  }
  
  .map-container {
    height: 250px;
  }

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

/*--------------------------------------------------------------
# Enhanced Registration Form Styles
--------------------------------------------------------------*/
.registration-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.registration-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23d80000" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></g></svg>') repeat;
  opacity: 0.4;
}

.registration-container {
  position: relative;
  z-index: 2;
}

.registration-form {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  padding: 50px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.registration-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #d80000, #e74c3c, #f39c12);
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  font-family: "Roboto", sans-serif;
}

.form-header p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.step-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  gap: 20px;
}

.step {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #666;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  position: relative;
  font-family: "Roboto", sans-serif;
}

.step.active {
  background: #d80000;
  color: white;
  transform: scale(1.1);
}

.step.completed {
  background: #28a745;
  color: white;
}

.step-connector {
  width: 80px;
  height: 3px;
  background: #e9ecef;
  transition: all 0.3s ease;
}

.step-connector.active {
  background: #d80000;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.form-group {
  flex: 1;
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: "Roboto", sans-serif;
  background: #f8f9fa;
  color: #000;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d80000;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(216, 0, 0, 0.1);
  color: #000;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group.required label::after {
  content: '*';
  color: #dc3545;
  margin-left: 4px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 25px;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-group label {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  cursor: pointer;
  color: #555;
}

.form-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  gap: 20px;
}

.btn-form {
  padding: 15px 30px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Roboto", sans-serif;
  min-width: 120px;
  justify-content: center;
}

.btn-primary {
  background: #d80000;
  color: white;
}

.btn-primary:hover {
  background: #b60000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(216, 0, 0, 0.3);
}

.btn-secondary {
  background: #6c757d;
  color: white;
}

.btn-secondary:hover {
  background: #5a6268;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(108, 117, 125, 0.3);
}

.btn-success {
  background: #28a745;
  color: white;
  font-size: 1.1rem;
  padding: 18px 40px;
}

.btn-success:hover {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.btn-form:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.form-progress {
  width: 100%;
  height: 6px;
  background: #e9ecef;
  border-radius: 3px;
  margin-bottom: 30px;
  overflow: hidden;
}

.form-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #d80000, #e74c3c);
  transition: width 0.3s ease;
  border-radius: 3px;
}

.error-message {
  color: #dc3545;
  font-size: 0.9rem;
  margin-top: 5px;
  display: none;
  font-family: "Roboto", sans-serif;
}

.success-message {
  background: #d4edda;
  color: #155724;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid #c3e6cb;
  display: none;
  font-family: "Roboto", sans-serif;
}

.registration-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.feature-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: #d80000;
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d80000, #e74c3c);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;
}

.feature-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  font-family: "Roboto", sans-serif;
}

.feature-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  font-family: "Roboto", sans-serif;
}

/* Responsive Design */
@media (max-width: 992px) {
  .registration-section {
    padding: 60px 0;
  }
  
  .registration-form {
    padding: 40px 30px;
  }
  
  .form-header h2 {
    font-size: 2rem;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .step-indicator {
    gap: 15px;
  }
  
  .step-connector {
    width: 60px;
  }
}

@media (max-width: 768px) {
  .registration-section {
    padding: 40px 0;
  }
  
  .registration-form {
    padding: 30px 20px;
    margin: 0 10px;
  }
  
  .form-header h2 {
    font-size: 1.8rem;
  }
  
  .form-header p {
    font-size: 1rem;
  }
  
  .step-indicator {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .step {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .step-connector {
    width: 40px;
    height: 2px;
  }
  
  .form-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn-form {
    width: 100%;
  }
  
  .registration-features {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
}

/* Title */


/* Paragraph */


/* Strong Text */


/* Register Button */


/* Modal Close Button */
.modal-header .close {
  background: transparent;
  border: none;
  color: #aaa;
  font-size: 30px;
  font-weight: bold;
  opacity: 1;
}

.modal-header .close:hover,
.modal-header .close:focus {
  color: #333;
  opacity: 1;
}



/* Responsiveness */
@media (max-width: 768px) {
  
  .header .logo img{
    width: 60px;
  }
  
  .header .topbar{
    height: auto;
  }
}

/*--------------------------------------------------------------
# Registration Table Styles
--------------------------------------------------------------*/
.registration-table {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: #fff;
  border: none;
  margin-bottom: 0;
}

.registration-table thead th {
  background: linear-gradient(135deg, #d80000 0%, #e74c3c 100%);
  color: white;
  font-weight: 600;
  text-align: center;
  padding: 20px 15px;
  border: none;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  position: relative;
}

.registration-table thead th:first-child {
  border-top-left-radius: 15px;
}

.registration-table thead th:last-child {
  border-top-right-radius: 15px;
}

.registration-table tbody tr {
  transition: all 0.3s ease;
  border-bottom: 1px solid #e9ecef;
}

.registration-table tbody tr:hover {
  background: #f8f9fa;
  transform: translateX(5px);
}

.registration-table tbody tr:last-child {
  border-bottom: none;
}

.registration-table tbody td {
  padding: 20px 15px;
  text-align: center;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  color: #333;
  border: none;
  font-weight: 500;
}

.registration-table tbody td:first-child {
  font-weight: 600;
  color: #d80000;
  text-align: left;
}

.registration-deadline {
  color: #d80000;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.2rem;
  font-family: "Roboto", sans-serif;
}

.payment-information {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 30px;
  border-radius: 0 0 15px 15px;
  text-align: center;
}

.payment-information h6 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #d80000;
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif;
}

.account-details {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
  border: 2px solid #e9ecef;
}

.account-details p {
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  font-family: "Roboto", sans-serif;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
}

.account-details p:last-child {
  margin-bottom: 0;
}

.account-details strong {
  color: #d80000;
  font-weight: 700;
  min-width: 160px;
  font-family: "Roboto", sans-serif;
}

.account-details p:before {
  content: "💳";
  font-size: 1.2rem;
  margin-right: 5px;
}

.account-details p:nth-child(1):before { content: "🏦"; }
.account-details p:nth-child(2):before { content: "💳"; }
.account-details p:nth-child(3):before { content: "🏧"; }
.account-details p:nth-child(4):before { content: "💵"; }
.account-details p:nth-child(5):before { content: "🏢"; }
.account-details p:nth-child(6):before { content: "🏪"; }
.account-details p:nth-child(7):before { content: "📍"; }
.account-details p:nth-child(8):before { content: "🔢"; }
.account-details p:nth-child(9):before { content: "💱"; }

/* Copy Button Styles */
.copyable-field {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.account-value {
  font-weight: 700;
  color: #333;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.5px;
  background: #f8f9fa;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #e9ecef;
  flex: 1;
  min-width: 0;
  word-break: break-all;
}

.copy-btn {
  background: #d80000;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 40px;
  height: 36px;
  justify-content: center;
}

.copy-btn:hover {
  background: #b60000;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(216, 0, 0, 0.3);
}

.copy-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(216, 0, 0, 0.3);
}

.copy-btn i {
  font-size: 1rem;
}

/* Responsive Design for Registration Table */
@media (max-width: 768px) {
  .registration-table {
    font-size: 0.9rem;
  }
  
  .registration-table thead th {
    padding: 15px 10px;
    font-size: 0.9rem;
  }
  
  .registration-table tbody td {
    padding: 15px 10px;
    font-size: 0.9rem;
  }
  
  .payment-information {
    padding: 20px;
  }
  
  .account-details {
    padding: 20px;
  }
  
  .account-details p {
    font-size: 0.9rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .account-details strong {
    min-width: auto;
  }
}

@media (max-width: 576px) {
  .registration-table {
    font-size: 0.8rem;
  }
  
  .registration-table thead th {
    padding: 12px 8px;
    font-size: 0.8rem;
  }
  
  .registration-table tbody td {
    padding: 12px 8px;
    font-size: 0.8rem;
  }
  
  .payment-information {
    padding: 15px;
  }
  
  .account-details {
    padding: 15px;
  }
  
  .account-details p {
    font-size: 0.8rem;
  }
  
  .registration-deadline {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .registration-form {
    padding: 25px 15px;
    margin: 0 5px;
  }
  
  .form-header h2 {
    font-size: 1.6rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Enhanced Registration Section Styling
--------------------------------------------------------------*/
#register {
  background-color: #fff;
  padding: 40px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}

#register h3 {
  color: #d80000;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif;
  text-align: center;
}

#register h5 {
  text-align: center;
  margin-bottom: 25px;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
}

#register table.cus-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  color: #333;
}

#register table.cus-table thead th {
  background: #d80000;
  color: #fff;
  font-weight: 700;
  padding: 12px 15px;
  border-radius: 10px 10px 0 0;
  text-align: center;
}

#register table.cus-table tbody tr {
  background: #f9f9f9;
  transition: transform 0.3s ease;
}

#register table.cus-table tbody tr:hover {
  background: #f1f1f1;
  transform: translateY(-4px);
  box-shadow: 0 5px 15px rgba(216, 0, 0, 0.1);
}

#register table.cus-table tbody td {
  padding: 12px 15px;
  text-align: center;
  font-weight: 500;
  vertical-align: middle;
}

#register table.cus-table tbody td:first-child {
  text-align: left;
  font-weight: 700;
  color: #d80000;
}

/* Payment Details Rows */
.payment-detail-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.payment-detail-row span {
  font-size: 18px;
}

.payment-detail-row span:first-child {
  flex: 1 1 150px;
  font-weight: 400;
  color: #000;
}

.payment-detail-row span#account-number,
.payment-detail-row span#iban-number,
.payment-detail-row span#branch-code {
  font-weight: 700;
  color: #222;
  user-select: text;
  flex-grow: 1;
  background: #f4f4f4;
  border-radius: 6px;
  padding: 5px 10px;
  overflow-wrap: break-word;
}

/* Copy Button Styling */
.copy-btn {
  background-color: #d80000;
  border: none;
  color: #fff;
  font-size: 18px;
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copy-btn:hover,
.copy-btn:focus {
  background-color: #b60000;
  outline: none;
  transform: translateY(-2px);
}

.copy-btn:active {
  background-color: #a50000;
  transform: translateY(0);
}

.copy-btn i {
  pointer-events: none;
}

/* Responsive Design */
@media (max-width: 767px) {
  #register {
    padding: 20px 15px;
  }
  
  #register h3, #register h5 {
    font-size: 1.5rem;
  }
  
  .payment-detail-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .payment-detail-row span#account-number,
  .payment-detail-row span#iban-number,
  .payment-detail-row span#branch-code {
    width: 100%;
    padding: 6px 12px;
    font-size: 16px;
  }
  
  .copy-btn {
    align-self: flex-end;
    padding: 5px 8px;
    font-size: 16px;
  }
}
.hero-banner-section {
    padding: 20px 0;
    position: relative;
    background-color: #f8f9fa;
  }
  
  .hero-banner {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .hero-banner img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  
  
  .button-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .button-box-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    font-family: "Roboto", sans-serif;
  }
  
  .btn-action {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    margin-bottom: 15px;
    transition: all 0.3s ease;
  }
  
  .btn-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #fff;
  }
  
  .btn-action i {
    font-size: 1.3rem;
  }
  
  .btn-action.register { background-color: #df1529; }
  .btn-action.abstract { background-color: #000; }
  .btn-action.workshop { background-color: #004185; }
  .btn-action.grand { background-color: #f39c12; }
  
  @media (max-width: 992px) {
    .hero-banner-section .row {
      flex-direction: column;
    }
  
    .hero-banner-section .col-lg-9,
    .hero-banner-section .col-lg-3 {
      width: 100%;
      margin-bottom: 20px;
    }
  
    .hero-title {
      font-size: 2.2rem;
    }
  
    .hero-subtitle {
      font-size: 1.3rem;
    }
  
    .button-box {
      padding: 20px;
    }
  
    .btn-action {
      padding: 12px 15px;
    }
  }
  
  