/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #2f3138;
  font-family: "Open Sans", sans-serif;
  margin: 0;
}

body.dark-mode {
  background-color: #0f0f10 ;
  color: #e0e0e0;
}
















/*--------------------------------------------------------------
# Dark Mode Toggle Button
--------------------------------------------------------------*/

#dark-mode-toggle {
  position: absolute;
  top: 25px;
  right: 45px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border: none;
  cursor: pointer;
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

#dark-mode-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

#dark-mode-toggle:active {
  transform: scale(0.95);
}

#sun-icon, #moon-icon {
  font-size: 20px;
  transition: all 0.3s ease;
  position: absolute;
}

#sun-icon {
  color: #ff6b35;
  opacity: 1;
}

#moon-icon {
  color: #e6e6fa;
  opacity: 0;
}

/* Dark mode toggle button styling */
body.dark-mode #dark-mode-toggle {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  box-shadow: 0 2px 8px rgba(255,255,255,0.1);
}

body.dark-mode #dark-mode-toggle:hover {
  box-shadow: 0 4px 12px rgba(255,255,255,0.2);
}

/* Icon transitions */
body.dark-mode #sun-icon {
  opacity: 0;
  transform: rotate(180deg);
}

body.dark-mode #moon-icon {
  opacity: 1;
  transform: rotate(0deg);
}

#sun-icon {
  opacity: 1;
  transform: rotate(0deg);
}

#moon-icon {
  opacity: 0;
  transform: rotate(-180deg);
}

/* Responsive design for mobile devices */
@media (max-width: 991px) {
  #dark-mode-toggle {
    top: 20px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 20px;
  }
  
  #sun-icon, #moon-icon {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  #dark-mode-toggle {
    top: 15px;
    right: 10px;
    width: 35px;
    height: 35px;
    border-radius: 17.5px;
  }
  
  #sun-icon, #moon-icon {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Dark mode for header section
--------------------------------------------------------------*/

/* Header */
body.dark-mode #header {
    background-color: #1e1e1e;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.05);
}

/* Logo text */
body.dark-mode #logo h1 span {
    color: #ffffff !important;
}

/* Navigation Menu */
body.dark-mode #nav-menu-container {
    background-color: transparent;
}

body.dark-mode .nav-menu li a {
    color: #e0e0e0;
    transition: color 0.3s;
}

body.dark-mode .nav-menu li.menu-active a,
body.dark-mode .nav-menu li a:hover {
    color: #90caf9; /* Light blue accent */
}

/* Buttons */
body.dark-mode button {
    background-color: #333;
    color: #e0e0e0;
    border: 1px solid #555;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

body.dark-mode button:hover {
    background-color: #444;
}

/* Logo Animation Container */
body.dark-mode #logo-animation {
    background-color: #1e1e1e;
    box-shadow: 0 2px 10px rgba(255,255,255,0.05);
}

/* Marquee Strip */
body.dark-mode #marquee-strip {
    background-color: #2c2c2c;
    color: #ffffff;
}

body.dark-mode #marquee-strip .marquee-link {
    color: #90caf9;
}

/* Images border or filter if needed for dark mode */
body.dark-mode img {
    filter: brightness(0.9);
}

/* Optional: smooth transition for all elements */
body.dark-mode *, body.dark-mode *::before, body.dark-mode *::after {
    transition: background-color 0.3s, color 0.3s, border-color 0.3s, filter 0.3s;
}





/*--------------------------------------------------------------
# Dark mode for Contact section
--------------------------------------------------------------*/


/* Contact Section Dark Mode */
#contact.dark-contact {
  background-color: #0f0f10;
  color: #ffffff !important;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Section header */
#contact.dark-contact .section-header h2 {
  color: #ffffff !important;
}

#contact.dark-contact .section-header p {
  color: #e6e5e5 !important; /* light blue for subtext */
}

/* Contact info blocks */
#contact.dark-contact .contact-info .contact-address,
#contact.dark-contact .contact-info .contact-phone,
#contact.dark-contact .contact-info .contact-email {
  background-color: #0f0f10 !important;
  padding: 20px; 
  margin-bottom: 20px;
  color: #dbdbdb !important;
}

/* Contact headings (h3) */
#contact.dark-contact .contact-info h3 {
  color: #ffffff !important; /* highlight in light blue */
}

/* Paragraphs, addresses, links */
#contact.dark-contact .contact-info p,
#contact.dark-contact .contact-info address,
#contact.dark-contact .contact-info a {
  color: #cbcaca !important;
  transition: color 0.3s ease;
}

#contact.dark-contact .contact-info a:hover {
  color: #82cfff;
  text-decoration: underline;
}

/* Icons */
#contact.dark-contact .contact-info i {
  color: #4dabf7;
  font-size: 1.5rem;
}






/*--------------------------------------------------------------
# Dark mode for venue section
--------------------------------------------------------------*/
/* Venue Section Dark Mode */
#venue.dark-venue {
  background-color: #0f0f10;
  color: #ffffff;
}

/* Section header */
#venue.dark-venue .section-header h2 {
  color: #ffffff;
}

/* Venue info block */
#venue.dark-venue .venue-info {
  background-color: #171717;
  padding: 20px;
  border-radius: 10px;
  color: #e4e4e4;
}

/* Venue info headings */
#venue.dark-venue .venue-info h3 {
  color: #4dabf7; /* light blue for highlight */
}

/* Paragraphs */
#venue.dark-venue p {
  color: #dcdcdc;
}

/* Icons in venue info */
#venue.dark-venue .venue-info i {
  color: #82cfff;
}

/* Gallery images */
#venue.dark-venue .venue-gallery img {
  border: 2px solid;
  border-color: #000 !important;
  border-radius: 6px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

#venue.dark-venue .venue-gallery img:hover {
  transform: scale(1.05);
  border-color: #4dabf7;
}












/*--------------------------------------------------------------
# Fee Payment Dark styles
--------------------------------------------------------------*/

/* Fee Payment Section Dark Mode */
#feepayment.dark-feepayment {
  padding-top: 40px;
  background-color: #0f0f10;
  color: #ffffff;
}

/* Payment header dark mode */
#feepayment.dark-feepayment .fee-card-header {
  background-color: #333333 !important; 
}
 
/* Force override inline colors for h2, h3 in dark mode */
#feepayment.dark-feepayment h2,
#feepayment.dark-feepayment h3 ,
#feepayment.dark-feepayment p {
  color: #ffffff !important;
}


#feepayment.dark-feepayment .section-header h2 { 
  color: #ffffff !important;
}

/* Card */
#feepayment.dark-feepayment .card {
  background-color: #171717; 
  border-color: #000 !important;
  border-radius: 10px !important;
}

#feepayment.dark-feepayment .card-header {
  background-color: #333333;
  color: #ffffff;
}

#feepayment.dark-feepayment .card-header button {
  color: #ffffff;
}

#feepayment.dark-feepayment .card-body {
  background-color: #2c2c2c;
  color: #fcfcfc;
}

/* Headings inside body */
#feepayment.dark-feepayment h2,
#feepayment.dark-feepayment h3 {
  color: #ffffff;
}

/* Paragraphs and list items */
#feepayment.dark-feepayment p,
#feepayment.dark-feepayment li {
  color: #b1b1b1;
}

#feepayment.dark-feepayment strong{
  color: #fff;
}
 
 

/* QR Code border adjustment */
#feepayment.dark-feepayment #qr-code-section img {
  border: 1px solid #555;
}
 


/* this the button in the fee payment section but using css to regain full control in dark mode */ 
/* Payment header (light mode) */
#feepayment .fee-card-header {
  font-weight: 900;           /* heavier text */
  font-size: x-large;
  background-color: #f7f7f7;
  text-align: center;
  color: #007bff;             /* light blue text */
}

/* Payment toggle button (light mode) */
#feepayment .toggle-payment-btn {
  text-decoration: none;
  font-size: x-large;
  font-weight: 700;           /* give the button text weight */
  color: #007bff;             /* light blue text */
}

#feepayment .fee-card-header:hover {
  color: #3399ff;             /* one shade lighter on hover */
}





/*--------------------------------------------------------------
# Author Information Dark styles
--------------------------------------------------------------*/
 
#authinfo.dark-authinfo {
  background-color: #0f0f10;   /* Dark background */
  color: #e0e0e0;              /* Light text for readability */
}

#authinfo.dark-authinfo .section-header h2 {
  color: #ffffff; /* Heading in white */
}

#authinfo.dark-authinfo .section-header p {
  color: #cccccc; /* Subtext lighter gray */
}

/* Card styling */
#authinfo.dark-authinfo .card {
  background-color: #2c2c2c;
  border: 1px solid #444;
  color: #f0f0f0;
}

#authinfo.dark-authinfo .card-header {
  background-color: #161616;
  color: #ffffff;
  font-weight: bold;
}

#authinfo.dark-authinfo .card-body {
  background-color: #1d1c1c;
  color: #e0e0e0;
}

/* Table styling */
#authinfo.dark-authinfo table {
  background-color: #272727;
  color: #f0f0f0;
  border-color: #555;
}

#authinfo.dark-authinfo table tr {
  border-bottom: 1px solid #444;
}

#authinfo.dark-authinfo table td {
  color: #e0e0e0;
}

#authinfo.dark-authinfo table tr:nth-child(even) {
  background-color: #1e1e1e;
}

/* Inline span overrides */
#authinfo.dark-authinfo span[style*="background-color: yellow"] {
  background-color: #444 !important; 
  color: #ffeb3b !important; /* Make firm deadline readable */
}

#authinfo.dark-authinfo span[style*="background-color: #28a745"] {
  background-color: #19692c !important; /* Dark green */
  color: #e0e0e0 !important;
}

#authinfo.dark-authinfo span[style*="background-color: #dc3545"] {
  background-color: #7a1e26 !important; /* Dark red */
  color: #e0e0e0 !important;
}




















/*--------------------------------------------------------------
# CFP Dark styles
--------------------------------------------------------------*/

#cfp.dark-cfp {
  background-color: #0f0f10; /* Dark background */
  color: #f0f0f0; /* Light text for readability */
}
#cfp.dark-cfp p b {
    color: #ffffff !important; /* white for dark mode */
}


#cfp.dark-cfp p,
#cfp.dark-cfp li {
  color: #999797; /* Paragraphs and list items */
}

#cfp.dark-cfp p strong {
  color: #ffffff; /* Strong emphasis */
}

#cfp.dark-cfp .card {
  background-color: #0f0f10; /* Dark card background */
  border: 1px solid #444; /* Card border for contrast */
}

#cfp.dark-cfp .card-header {
  background-color: #333333; /* Darker header */
  color: #ffffff; /* Header text */
}

#cfp.dark-cfp .card-body {
  background-color: #0f0f10; /* Card body background */
  color: #e0e0e0; /* Body text color */
}
 













/* Dark mode for committees section */

/* Committee container */
#committee.committeeDark {
  background-color: #0f0f10 !important;
  color: #e0e0e0 !important;
}

/* Override Bootstrap .card */
#committee.committeeDark .card,
#committee .dark-card {
  background-color: #1e1e1e !important;
  border: 1px solid #333 !important;
  color: #f0f0f0 !important;
}

/* Override Bootstrap .card-header */
#committee.committeeDark .card-header,
#committee .dark-card-header {
  background-color: #2a2a2a !important;
  border-bottom: 1px solid #444 !important;
  color: #f5f5f5 !important;
}

/* Override Bootstrap .card-body */
#committee.committeeDark .card-body,
#committee .dark-card-body {
  background-color: #1e1e1e !important;
  color: #dcdcdc !important;
}

/* Section headers inside committee (Patrons, Advisory, etc.) */
#committee.committeeDark .section-header2,
#committee .dark-section-header {
  background-color: #2a2a2a !important;
  border-bottom: 1px solid #444 !important;
  color: #ffeb3b !important;
}

/* Lists inside committee */
#committee.committeeDark ul,
#committee.committeeDark li{
  color: #dcdcdc !important;
}

/* Committee section dark mode */
#committee.committeeDark small {
  color: #8e8a8a !important;
}  

#committee.committeeDark .section-header h2 {
  color: #ffffff !important;
}






















/* Dark mode for registration table */
.registrationDark .registration-table {
  background-color: #171717;
  color: #e6e6e6;
}

.registrationDark .registration-table th {
  background-color: #222;
  color: #fff;
}

.registrationDark .registration-table td {
  color: #fff;
}

/* override alternating row colors */
.registrationDark .registration-table tbody tr:nth-child(even) {
  background-color: #252525; /* dark even row */
}

.registrationDark .registration-table tbody tr:nth-child(odd) {
  background-color: #1e1e1e; /* dark odd row */
}

/* Dark mode for the whole registration section */
.registrationDark {
  background-color: #0f0f10; /* dark background for section */
  color: #e6e6e6;           /* default text color */
}

/* container specifically */
.registrationDark .container {
  background-color: #151515;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* section header */
.registrationDark .section-header h2 {
  color: #ffffff;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
}

/* inline styled text container (override inline style) */
.registrationDark div[style] {
  color: #e6e6e6 !important; 
}


/* optional hover effect */
.registrationDark .registration-table tbody tr:hover {
  background-color: #333333;
}


a {
  color: #869e9e;
  transition: 0.5s;
}

a:hover, a:active, a:focus {
  color: #869e9e;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
  color: #0e1b4d;
}

.main-page {
  margin-top: 70px;
}

.wow {
  visibility: hidden;
}

/* Prelaoder */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #fff url("../img/preloader.svg") no-repeat center center;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: #869e9e;
  color: #000;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50px;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s ease-in-out;
}

.back-to-top i {
  font-size: 24px;
  padding-top: 6px;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}



/* Sections Header
--------------------------------*/
.section-header {
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
}

.section-header2 {
  margin-bottom:5px;
  position: relative;
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  border-radius:10px;

}
.section-header::before {
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 5px;
  background: yellow;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-header h2 {
  font-size: 36px;
  color: rgba(21,76,121);
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-header p {
  text-align: center;
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #9195a2;
}

.section-header2 p {
  text-align: left;
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #9195a2;
}

.section-with-bg {
  background-color: #f6f7fd;
}

/*--------------------------------------------------------------
# committee
--------------------------------------------------------------*/
#committee .txt-clr small b{
  color:rgb(21,76,121);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#marquee-strip {
  height: 40px;
  background: #000000;
  color: #ffffff;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
  top: 110px; /* sits under fixed header */
  z-index: 996;
}

#marquee-strip .marquee-track {
  white-space: nowrap;
  will-change: transform;
  animation: marquee-left 50s linear infinite;
  padding-left: 100vw; /* start fully off-screen */
}

#marquee-strip .marquee-link {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
}

@keyframes marquee-left {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
#header {
  height: 110px;
  padding: 15px 0;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  min-height: 11.5%;
  transition: all 0.5s;
  z-index: 997;
  background: rgb(255, 255, 255);
}

@media (max-width: 991px) {
  #header {
    background: rgba(255, 255, 255, 0.8);
    height: 70px;
    padding: 15px 0;
    transition: all 0.5s;
  }
}

@media (max-width: 1199px) {
  #header .container {
    max-width: 100%;
  }
}

#header.header-scrolled, #header.header-fixed {
  background: rgb(255, 255, 255);
  height: 110px;
  padding: 15px 0;
  transition: all 0.5s;
}

#header #logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 6px 0;
  line-height: 1;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
}

#header #logo h1 span {
  color: rgb(21,76,121);
}

#header #logo h1 a, #header #logo h1 a:hover {
  color: #fff;
}

#header #logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}
.table-striped tr:nth-child(odd){
  background-color:rgba(21,76,121, 0.1);
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */
#nav-menu-container {
  float: left;
  margin: 0;
  background: rgb(255, 255, 255);
}

@media (max-width: 991px) {
  #nav-menu-container {
    display: none;
  }
}

/* Nav Meu Styling */
.nav-menu a {
  padding: 8px;
  text-decoration: none;
  display: inline-block;
  color: rgb(8, 8, 8);
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  outline: none;
}

@media (max-width: 1199px) {
  .nav-menu a {
    padding: 8px 4px;
  }
}

.nav-menu .menu-active a, .nav-menu a:hover {
  color: rgba(21,76,121);
}

.nav-menu > li {
  margin-left: 8px;
}

.nav-menu > li > a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: rgb(21,76,121);
  visibility: hidden;
  transition: all 0.3s ease-in-out 0s;
}

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

.nav-menu li.buy-tickets a {
  color: rgb(227, 243, 255);
  background: rgba(21,76,121);
  padding: 5px 20px;
  border-radius: 50px;
  border: 2px solid rgba(21,76,121);
  transition: all ease-in-out 0.3s;
  font-weight: 700;
  margin-left: 8px;
  margin-top: 2px;
  line-height: 1;
  font-size: 15px;
}

.nav-menu li.buy-tickets a:hover {
  background: none;
  color: rgb(21,76,121);

}

.nav-menu li.buy-tickets:hover a:before, .nav-menu li.buy-tickets.menu-active a:before {
  visibility: hidden;
}

.nav-menu ul {
  margin: 4px 0 0 0;
  padding: 10px;
  box-shadow: 0px 0px 30px rgb(255, 255, 255);
  background: #fff;
  border-radius: 3px;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 10px;
  color: #060c22;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
  border-radius: 3px;
}

.nav-menu ul li:hover > a {
  background: #02c764;
  color: #fff;
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 15px 15px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #fff;
}

@media (max-width: 991px) {
  #mobile-nav-toggle {
    display: inline;
  }
}

/* Mobile Nav Styling */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(6, 12, 34, 0.9);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 17px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}

#mobile-nav ul li a:hover {
  color: #02c764;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #02c764;
}

#mobile-nav ul .menu-item-active {
  color: #02c764;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(6, 12, 34, 0.8);
  display: none;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
  width: 100%;
  height: calc(100vh);
  background: url(../img/dullimage.jpg) top center;
  background-size: cover;
  overflow: hidden;
  position: relative;
  transition: background-image 1s ease-in-out;
}

/* Background image classes for smooth transitions */
#intro.bg-1 {
  background-image: url(../img/dullimage.jpg);
}

#intro.bg-2 {
  background-image: url(../img/bg-2.jpg);
}

#intro.bg-3 {
  background-image: url(../img/clg.jpg);
}

#intro.bg-4 {
  background-image: url(../img/ece/college_entrance.webp);
}

#intro.bg-5 {
  background-image: url(../img/ece/bg.JPG);
}

@media (min-width: 1024px) {
  #intro {
    background-attachment: fixed;
  }
}

/* #intro:before {
  content: "";
  background: rgba(72, 217, 120, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
} */

#intro .intro-container {
  position: absolute;
  bottom: 0;
  left: 0;
  top: 280px;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
padding-bottom: 170px;
 
  
  
  
}

@media (max-width: 991px) {
  #intro .intro-container {
    top: 70px;
  }
}

#intro h1 {
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 256%;
  font-weight: 600;
  
}

#intro h1 span {
  color: #869e9e;
}

@media (max-width: 991px) {
  #intro h1 {
    font-size: 34px;
  }
}

#intro p {
  color: #ebebeb;
  font-weight: 700;
  font-size: 20px;
}

@media (max-width: 991px) {
  #intro p {
    font-size: 16px;
  }
}

#intro .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(yellow 50%, rgba(30, 92, 110, 0.8) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

#intro .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#intro .play-btn:before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 2px solid rgba(163, 163, 163, 0.4);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

#intro .play-btn:hover::after {
  border-left: 15px solid yellow;
  transform: scale(20);
}

#intro .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

#intro .about-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 1000;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid whitesmoke;
}

#intro .about-btn:hover {
  background: whitesmoke;
  color: rgb(21,76,121);
  font-weight: 1000;
}

/* Background image navigation dots */
#intro .bg-nav-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

#intro .bg-nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
}

#intro .bg-nav-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

#intro .bg-nav-dot.active {
  background: #2E8B57;
  border-color: #2E8B57;
  transform: scale(1.1);
}

/* Responsive design for navigation dots */
@media (max-width: 768px) {
  #intro .bg-nav-dots {
    bottom: 20px;
    gap: 8px;
  }
  
  #intro .bg-nav-dot {
    width: 10px;
    height: 10px;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
#about {
  background: url("../img/bg3.jpeg");
  background-size: cover;
  overflow: hidden;
  position: relative;
  color: #fff;
  padding: 60px 0 40px 0;
}

@media (min-width: 1024px) {
  #about {
    background-attachment: fixed;
  }
}

#about:before {
  content: "";
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#about h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

#about h3 {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: yellow;
}

#about p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #fff;
}

#about span{
  color:yellow;
}

/* Technical Sponsors Marquee */
.sponsors-marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px 0;
  margin: 20px 0;
}

.sponsors-track {
  display: inline-block;
  animation: scroll-right 30s linear infinite;
  white-space: nowrap;
}

.sponsor-logo {
  display: inline-block;
  vertical-align: middle;
  margin: 0 40px;
  height: 80px;
  line-height: 80px;
}

.sponsor-logo img {
  max-height: 80px;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(1.1) contrast(1.1);
  transition: all 0.3s ease;
}

.sponsor-logo img:hover {
  transform: scale(1.1);
  filter: brightness(1.3) contrast(1.2);
}

@keyframes scroll-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.sponsors-marquee:hover .sponsors-track {
  animation-play-state: paused;
}

/* Responsive design for mobile devices */
@media (max-width: 768px) {
  .sponsors-marquee {
    padding: 15px 0;
    margin: 15px 0;
  }
  
  .sponsor-logo {
    margin: 0 20px;
    height: 60px;
    line-height: 60px;
  }
  
  .sponsor-logo img {
    max-height: 60px;
    max-width: 150px;
  }
  
  .sponsors-track {
    animation: scroll-right 25s linear infinite;
  }
}

@media (max-width: 480px) {
  .sponsor-logo {
    margin: 0 15px;
    height: 50px;
    line-height: 50px;
  }
  
  .sponsor-logo img {
    max-height: 50px;
    max-width: 120px;
  }
  
  .sponsors-track {
    animation: scroll-right 20s linear infinite;
  }
}


/*--------------------------------------------------------------
# Speakers Section
--------------------------------------------------------------*/
#speakers {
  padding: 60px 0 30px 0;
}

#speakers .speaker {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

#speakers .speaker .details {
  background: rgba(2, 45, 34, 0.76);
  position: absolute;
  left: 0;
  bottom: -30px;
  right: 0;
  text-align: center;
  padding-top: 10px;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

#speakers .speaker .details h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
}

#speakers .speaker .details p {
  color: #fff;
  font-size: 15px;
  margin-bottom: 10px;
  font-style: italic;
}

#speakers .speaker .details .social {
  height: 30px;
}

#speakers .speaker .details a {
  color: #fff;
}

#speakers .speaker .details a:hover {
  color: #02c764;
}

#speakers .speaker:hover .details {
  bottom: 0;
}

#speakers-details {
  padding: 60px 0;
}

#speakers-details .details h2 {
  color: rgba(21,76,121);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

#speakers-details .details .social {
  margin-bottom: 15px;
}

#speakers-details .details .social a {
  background: #e9edfb;
  color: #112363;
  line-height: 1;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  padding-top: 9px;
}

#speakers-details .details .social a:hover {
  background: #02c764;
  color: #fff;
}

#speakers-details .details .social a i {
  font-size: 18px;
}

#speakers-details .details p {
  color: #112363;
  font-size: 15px;
  margin-bottom: 10px;
}

#speakers small{
  color:white;
}

#speaker .bg-clr
{
  background-color:rgba(21,76,121);
}

#guests small{
  color:white;
}

#committee small{
  color:rgb(0, 0, 0);
}

/*--------------------------------------------------------------
# Schedule Section
--------------------------------------------------------------*/
#schedule {
  padding: 60px 0 60px 0;
}

#schedule .nav-tabs {
  text-align: center;
  margin: auto;
  display: block;
  border-bottom: 0;
  margin-bottom: 30px;
}

#schedule .nav-tabs li {
  display: inline-block;
  margin-bottom: 0;
}

#schedule .nav-tabs a {
  border: none;
  border-radius: 50px;
  font-weight: 600;
  background-color: #0e1b4d;
  color: #fff;
  padding: 10px 100px;
}

@media (max-width: 991px) {
  #schedule .nav-tabs a {
    padding: 8px 60px;
  }
}

@media (max-width: 767px) {
  #schedule .nav-tabs a {
    padding: 8px 50px;
  }
}

@media (max-width: 480px) {
  #schedule .nav-tabs a {
    padding: 8px 30px;
  }
}

#schedule .nav-tabs a.active {
  background-color: #02c764;
  color: #fff;
}

#schedule .sub-heading {
  text-align: center;
  font-size: 18px;
  font-style: italic;
  margin: 0 auto 30px auto;
}

@media (min-width: 991px) {
  #schedule .sub-heading {
    width: 75%;
  }
}

#schedule .tab-pane {
  transition: ease-in-out .2s;
}

#schedule .schedule-item {
  border-bottom: 1px solid #cad4f6;
  padding-top: 15px;
  padding-bottom: 15px;
  transition: background-color ease-in-out 0.3s;
}

#schedule .schedule-item:hover {
  background-color: #fff;
}

#schedule .schedule-item time {
  padding-bottom: 5px;
  display: inline-block;
}

#schedule .schedule-item .speaker {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  float: left;
  margin: 0 10px 10px 0;
}

#schedule .schedule-item .speaker img {
  height: 100%;
  transform: translateX(-50%);
  margin-left: 50%;
  transition: all ease-in-out 0.3s;
}

#schedule .schedule-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

#schedule .schedule-item h4 span {
  font-style: italic;
  color: #19328e;
  font-weight: normal;
  font-size: 16px;
}

#schedule .schedule-item p {
  font-style: italic;
  color: #152b79;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Venue Section
--------------------------------------------------------------*/
#venue {
  padding: 60px 0;
}

#venue .container-fluid {
  margin-bottom: 3px;
}

#venue .venue-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

#venue .venue-info {
  background: url("../img/venue-info-bg.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}

#venue .venue-info:before {
  content: "";
  background: rgba(21,76,121, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#venue .venue-info h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 574px) {
  #venue .venue-info h3 {
    font-size: 24px;
  }
}

#venue .venue-info p {
  color: #fff;
  margin-bottom: 0;
}

#venue .venue-gallery-container {
  padding-right: 12px;
}

#venue .venue-gallery {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

#venue .venue-gallery img {
  transition: all ease-in-out 0.4s;
}

#venue .venue-gallery:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Previous Editions Section
--------------------------------------------------------------*/
#prev {
  padding: 60px 0;
  text-align: right;
}

#prev .prev-info {
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: right;
}

#prev .prev-info:before {
  content: "";
  background: rgba(13, 20, 41, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#prev .prev-info h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  text-align: right;
}

@media (max-width: 574px) {
  #prev .prev-info h3 {
    font-size: 24px;
    text-align: right;
  }
}

#prev .prev-info p {
  color: #fff;
  margin-bottom: 0;
  text-align: right;
}

/*--------------------------------------------------------------
# Hotels Section
--------------------------------------------------------------*/
#hotels {
  padding: 60px 0;
}

#hotels .hotel {
  border: 1px solid #e0e5fa;
  background: #fff;
  margin-bottom: 30px;
}

#hotels .hotel:hover .hotel-img img {
  transform: scale(1.1);
}

#hotels .hotel-img {
  overflow: hidden;
  margin-bottom: 15px;
}

#hotels .hotel-img img {
  transition: 0.3s ease-in-out;
}

#hotels h3 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 5px;
  padding: 0 20px;
}

#hotels a {
  color: #152b79;
}

#hotels a:hover {
  color: #02c764;
}

#hotels .stars {
  padding: 0 20px;
  margin-bottom: 5px;
}

#hotels .stars i {
  color: #ffc31d;
}

#hotels p {
  padding: 0 20px;
  margin-bottom: 20px;
  color: #060c22;
  font-style: italic;
  font-size: 15px;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
#gallery {
  padding: 60px;
  overflow: hidden;
}

#gallery .owl-nav, #gallery .owl-dots {
  margin-top: 25px;
  text-align: center;
}

#gallery .owl-item {
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
}

#gallery .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#gallery .owl-dot.active {
  background-color: #02c764;
}

#gallery .gallery-carousel .owl-stage-outer {
  overflow: visible;
}

#gallery .gallery-carousel .center {
  border: 6px solid #02c764;
  margin: -10px;
  box-sizing: content-box;
  padding: 4px;
  background: #fff;
  z-index: 1;
}

/*--------------------------------------------------------------
# Sponsors Section
--------------------------------------------------------------*/
#supporters {
  padding: 60px 0;
}

#supporters .supporters-wrap {
  border-top: 1px solid #e0e5fa;
  border-left: 1px solid #e0e5fa;
  margin-bottom: 30px;
}

#supporters .supporter-logo {
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #e0e5fa;
  border-bottom: 1px solid #e0e5fa;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  height: 160px;
}

#supporters .supporter-logo:hover img {
  transform: scale(1.2);
}

#supporters img {
  transition: all 0.4s ease-in-out;
}

/*--------------------------------------------------------------
# F.A.Q Section
--------------------------------------------------------------*/
#faq {
  padding: 60px 0;
}

#faq #faq-list {
  padding: 0;
  list-style: none;
}

#faq #faq-list li {
  border-bottom: 1px solid #ddd;
}

#faq #faq-list a {
  padding: 18px 0;
  display: block;
  position: relative;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  padding-right: 20px;
}

#faq #faq-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 16px;
}

#faq #faq-list p {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  #faq #faq-list a {
    font-size: 18px;
  }
  #faq #faq-list i {
    top: 13px;
  }
}

#faq #faq-list a.collapse {
  color: #02c764;
}

#faq #faq-list a.collapsed {
  color: #000;
}

#faq #faq-list a.collapsed i::before {
  content: "\f055" !important;
}

/*--------------------------------------------------------------
# Subscribe Section
--------------------------------------------------------------*/
#subscribe {
  padding: 60px;
  background: url(../img/subscribe-bg.jpg) center center no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

#subscribe:before {
  content: "";
  background: rgba(6, 12, 34, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

@media (min-width: 1024px) {
  #subscribe {
    background-attachment: fixed;
  }
}

#subscribe .section-header h2, #subscribe p {
  color: #fff;
}

#subscribe input {
  background: #fff;
  color: #060c22;
  border: 0;
  outline: none;
  margin: 0;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 14px;
}

@media (min-width: 767px) {
  #subscribe input {
    min-width: 400px;
  }
}

#subscribe button {
  border: 0;
  padding: 9px 25px;
  cursor: pointer;
  background:#869e9e;
  color: #000000;
  transition: all 0.3s ease;
  outline: none;
  font-size: 14px;
  border-radius: 50px;
}

#subscribe button:hover {
  background: #e0072f;
}

@media (max-width: 460px) {
  #subscribe button {
    margin-top: 10px;
  }
}

/*--------------------------------------------------------------
# Buy Tickets Section
--------------------------------------------------------------*/
#buy-tickets {
  padding: 60px 0;
}

#buy-tickets .card {
  border: none;
  border-radius: 5px;
  transition: all  0.3s ease-in-out;
  box-shadow: 0 10px 25px 0 rgba(21,76,121);
  background-color: rgba(21,76,121);
}

#buy-tickets .card:hover {
  box-shadow: 0 10px 35px 0 rgba(6, 12, 34, 0.2);
}

#buy-tickets .card hr {
  margin: 25px 0;
}

#buy-tickets .card .card-title {
  margin: 10px 0;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: bold;
}

#buy-tickets .card .card-price {
  font-size: 48px;
  margin: 0;
}

#buy-tickets .card ul li {
  margin-bottom: 20px;
}

#buy-tickets .card .text-muted {
  opacity: 0.7;
}

#buy-tickets .card .btn {
  font-size: 15px;
  border-radius: 50px;
  padding: 10px 40px;
  transition: all 0.2s;
  background-color: rgba(21,76,121, 0.8);
  border: 0;
  color: #fff;
}

#buy-tickets .card .btn:hover {
  background-color: #e0072f;
}

#buy-tickets #buy-ticket-modal input, #buy-tickets #buy-ticket-modal select {
  border-radius: 0;
}

#buy-tickets #buy-ticket-modal .btn {
  font-size: 15px;
  border-radius: 50px;
  padding: 10px 40px;
  transition: all 0.2s;
  background-color: rgba(21,76,121, 0.8);
  border: 0;
  color: #fff;
}

#buy-tickets #buy-ticket-modal .btn:hover {
  background-color: #e0072f;
}

/*--------------------------------------------------------------
# CFP Section
--------------------------------------------------------------*/
#cfp {
  padding: 20px 0;

}

#cfp p{
  text-align: justify;

}

#cfp p strong{
  text-transform: uppercase;
  color: rgb(0, 0, 0);
  font-weight: bold;

}

#callforpapers {
color: white;
background: rgba(0, 0, 0, 0.8);

}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

#contact {
  padding: 60px 0;
}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #02c764;
}

#contact .contact-info address, #contact .contact-info p {
  margin-bottom: 0;
  color: #112363;
}

#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #112363;
}

#contact .contact-info a {
  color: #4869df;
}

#contact .contact-address, #contact .contact-phone, #contact .contact-email {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  #contact .contact-address, #contact .contact-phone, #contact .contact-email {
    padding: 20px 0;
  }
}

@media (min-width: 768px) {
  #contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}

#contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

#contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

#contact .php-email-form input, #contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

#contact .php-email-form input::focus, #contact .php-email-form textarea::focus {
  background-color: #02c764;
}

#contact .php-email-form input {
  padding: 20px 15px;
}

#contact .php-email-form textarea {
  padding: 12px 15px;
}

#contact .php-email-form button[type="submit"] {
  background: #02c764;
  border: 0;
  padding: 10px 40px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
  cursor: pointer;
}

#contact .php-email-form button[type="submit"]:hover {
  background: #e0072f;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: rgba(0, 0, 0, 0.8);
  padding: 0 0 10px 0;
  color: #eee;
  font-size: 14px;
}

#footer .footer-top {
  background: rgb(0, 0, 0);
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 26px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  color: #fff;
}

#footer .footer-top .footer-info img {
  height: 40px;
  margin-bottom: 10px;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer #foot h1 span {
  color: yellow;
}

#footer #foot p span {
  color: yellow;
}

#footer #foot .txt-footer {
  color: yellow;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #222636;
  color: #eee;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: yellow;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
  border-bottom: 2px solid yellow;
}

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

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

#footer .footer-top .footer-links ul i {
  padding-right: 5px;
  color: yellow;
  font-size: 18px;
}

#footer .footer-top .footer-links ul li {
  border-bottom: 1px solid #262c44;
  padding: 10px 0;
}

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

#footer .footer-top .footer-links ul a {
  color: #eee;
}

#footer .footer-top .footer-links ul a:hover {
  color: yellow;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type="email"] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .footer-newsletter input[type="submit"] {
  background: yellow;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type="submit"]:hover {
  background: #e0072f;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #ddd;
}

.button-navy{
  background-color: rgba(21,76,121);
  color: #ffffff;
  border-radius: 50px;
  padding: 10px;
  padding-left: 50px;
  padding-right: 50px;
  font-weight: bold;
  margin: 20px;
}
.button-navy:hover{
  background-color:  #869e9e;
  color: #000000;
  border-radius: 50px;
}
.bg-navy{
  background-color: #0E1B4D;
  color: #ffffff;
}
.bg-green{
  background-color: yellow;
  color: #ffffff;
  border-radius: 50px;
}
.eceimage{
  height: 50%;
}
.table-container {
  padding: 20px;
  display: flex;
  justify-content: center;
}

/* small examples — adapt colors/spacing to taste */
.registrationDark .dark-container {
  background: #0f0f10; /* if you want a darker page surface */
}

.registrationDark .dark-section-header h2 {
  color: #e9eef6; /* lighter header text */
}

.registrationDark .dark-text-center {
  color: #e0e0e0;
}

.registrationDark .dark-btn {
  background: #163a63;
  color: #fff;
  border: 1px solid #234a73;
}

.registrationDark .dark-card {
  background: #171717;
  border: 1px solid #2b2b2b;
  color: #e6e6e6;
}

.registrationDark .dark-card-header {
  background: #222;
  color: #fff;
  font-weight: 700;
}



.registration-table {
  width: 100%;
  max-width: 900px;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.registration-table th,
.registration-table td {
  border: 1px solid #ccc;
  padding: 10px 15px;
  text-align: left;
}

.registration-table th {
  background-color: #f7f7f7;
  font-weight: bold;
  text-align: center;
}

.registration-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.registration-table th, 
.registration-table td {
  font-size: 14px;
  color: #333;
}

.registration-table th {
  font-size: 16px;
}

.registration-table td {
  text-align: center;
}





@media screen and (max-width: 768px) {
  .registration-table th, .registration-table td {
      padding: 8px;
  }

  .registration-table {
      font-size: 12px;
  }
}





