/* Navbar background change on scroll */
/* Main navbar */
#mainNav {
    background-color: #050f31;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

/* Default link style */
#mainNav .nav-link {
    color: whitesmoke !important;
    font-weight: 800;
    font-size: medium;
    text-decoration: uppercase;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    display: inline-block;
}

/* Hover effect on nav links: blue background and subtle shadow */
#mainNav .nav-link:hover {
    background-color:  #781c2e;  /* bright blue background */
    color: #fff !important;
    box-shadow:  #781c2ea9;
    cursor: pointer;
}

/* Brand default */
#mainNav .navbar-brand {
    color: whitesmoke !important;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    font-weight: 500;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    display: inline-block;
}

/* Hover effect on brand */
#mainNav .navbar-brand:hover {
    background-color:  #781c2e;
    color: #fff !important;
    box-shadow: #781c2ea9;
    cursor: pointer;
}


/* When scrolled */
#mainNav.scrolled {
    background-color: #ffffff !important;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

/* Link color after scroll */
#mainNav.scrolled .nav-link {
    color: #781c2e !important;
}
#mainNav.scrolled .nav-link:hover {
    background-color:  #781c2e;  /* bright blue background */
    color: #fff !important;
    box-shadow:  #781c2ea9;
    cursor: pointer;
}
/* Brand after scroll */
#mainNav.scrolled .navbar-brand {
    color: #781c2e !important;
}
#mainNav.scrolled .navbar-brand:hover {
    background-color:  #781c2e;
    color: #fff !important;
    box-shadow: #781c2ea9;
    cursor: pointer;
}
.hero-slide {
  background-size: cover;
  background-position: center center;
}
/* Fix header spacing */
.hero-section {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.hero-slide .slide-text {
  padding-top: 80px;  /* push heading down, prevents cropping */
  padding-bottom: 60px; /* keeps buttons from sticking to edge */
}
/* Mobile adjustments for conference heading */
@media (max-width: 576px) {
  .conference-heading {
    font-size: 1.6rem !important;   /* slightly smaller */
    line-height: 1.2 !important;    /* compact spacing */
    margin-top: 25px !important;    /* keep clear of navbar */
    word-wrap: break-word;
    text-align: center;             /* safe alignment on mobile */
  }
}


/* Make buttons responsive */
.btn-group-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px; /* space between buttons */
  margin-top: 20px;
}

.btn-group-wrap .btn {
  min-width: 140px;
  padding: 10px 20px;
  border-radius: 8px;
  white-space: normal; /* allow text wrap */
}



/* Button-style nav links */
.btn-nav {
    padding: 6px 12px;
    margin: 0 5px;
    border-radius: 2px;
    background-color: #781c2e;
    color: white !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background-color: #781c2e;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Space links horizontally */
.navbar-nav {
    width: 100%;
    justify-content: space-between;
}
/* Mobile navbar toggler button */
/* Apply only to mobile */
@media (max-width: 991.98px) {

    /* Before scroll */
    .navbar:not(.scrolled) .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }

    .navbar:not(.scrolled) .nav-link {
        color:#781c2e!important;
    }

    /* After scroll */
    

    .navbar.scrolled .nav-link {
        color: #994153 !important;
    }
}

/* Heading responsive scaling */
.conference-heading {
  font-size: 2.5rem; /* Desktop default */
  line-height: 1.2;
}

@media (max-width: 768px) {
  .conference-heading {
    font-size: 2rem; /* Tablets */
  }
}

@media (max-width: 576px) {
  .conference-heading {
    font-size: 1.6rem; /* Phones */
    word-break: break-word; /* Prevents overflow */
  }
}

/* Container for button group */
.btn-group-wrap {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

/* Base button styling */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 400;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  box-sizing: border-box;
}

/* Primary button styling */
.btn-primary {
  background-color: #721541 !important;
  color: white !important;
  border-color: #50041b !important;
}

.btn-primary:hover {
  background-color: #b68f25 !important;
  border-color: #685a1d !important;
  transform: translateY(-2px);
}
@media screen and (max-width: 600px) {
  .btn {
    width: 100%;
    padding: 12px 10px;
    font-size: 14px;
    border-radius: 8px;
  }

  .btn-primary {
    font-size: 10px;
  }
}


.btn-primary:focus,
.btn-primary:active {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

/* Accessibility enhancements */
.btn:focus {
  outline: 2px solid #144a4e !important;
  outline-offset: 2px;
}


.btn {
  -webkit-box-shadow: 0 0.1875rem 0.1875rem 0 rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 0.1875rem 0.1875rem 0 rgba(0, 0, 0, 0.1) !important;
  padding: 1.25rem 2rem;
  font-family: 'Varela Round';
  font-size: 80%;
  text-transform: uppercase;
  letter-spacing: .15rem;
  border: 0;
}

.btn-primary {
  background-color: #781c2e;
}

.btn-primary:hover {
  background-color: #601625;
}

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

.btn-primary:active {
  background-color: #3d151a !important;
}
.about-section {
  padding-top: 5rem;
  background:#eec07ace ;
  color: #6b0731; /* Keeps text readable */
}



.about-section n{
  margin-bottom: 5rem;
}

.niphm-section {
  padding: 10rem 0;
}

.niphm-section .featured-text {
  padding: 2rem;
}

@media (min-width: 992px) {
  .niphm-section .featured-text {
    padding: 0 0 0 2rem;
    border-left: 0.5rem solid #781c2e;
  }
}

.niphm-section .project-text {
  padding: 3rem;
  font-size: 90%;
}

@media (min-width: 992px) {
  .niphm-section .project-text {
    padding: 5rem;
  }
  .niphm-section .project-text hr {
    border-color: #781c2e;
    border-width: .25rem;
    width: 30%;
  }
}
.projects-section .text-center h2.text-white {
  font-weight: 800;
  font-size: 3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 2px 2px 8px #781c2e;
  color: #781c2e;
  margin-bottom: 2rem;
  
}

.about-section p {
  margin-bottom: 5rem;
}

.projects-section {
  padding: 10rem 0;
}

.projects-section .featured-text {
  padding: 2rem;
}

@media (min-width: 992px) {
  .projects-section .featured-text {
    padding: 0 0 0 2rem;
    
  }
}

.projects-section .project-text {
  padding: 3rem;
  font-size: 90%;
}

@media (min-width: 992px) {
  .projects-section .project-text {
    padding: 5rem;
  }
  .projects-section .project-text hr {
    border-color: #781c2e;
    border-width: .25rem;
    width: 30%;
  }
}

.projects-section {
  padding: 4rem 2rem;
  background: #011c20d8; 
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fffafb; 
}

.projects-section .text-center h2 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #dac97e; 
  letter-spacing: 3px;
    text-transform: uppercase;
  margin-bottom: 3rem;
  text-shadow: 0 2px 6px rgba(123, 32, 49, 0.4);
}

.projects-section .card {
  background:rgb(186, 237, 231) ;
  border: none;
  border-radius: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 1rem 1.25rem;
  max-height: auto;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (hover: hover) and (pointer: fine) {
  .projects-section .card:hover {
    transform: translateY(-8px) scale(1.03);
  
    cursor: pointer;
    background: rgb(189, 222, 232);
  }
}

.projects-section .card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: rgb(1, 20, 17);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 1rem;
  line-height: 1.2;

  position: relative;
  padding-bottom: 0.5rem;
}

.projects-section .card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #7c031a;
  border-radius: 2px;
  transition: width 0.35s ease;
}

.projects-section .card:hover h3::after {
  width: 100%;
}

.projects-section .card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #115f8d;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.projects-section .card p {
  font-size: 0.95rem;
  line-height: 1.2;
  color:rgb(92, 4, 26);
  font-size: medium;
  flex-grow: 1;
  font-weight: 600;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif!important ;

  transition: color 0.3s ease;
}

.projects-section .card:hover p {
  color: #141414;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .projects-section .card {
    padding: 1.5rem;
  }

  .projects-section .card h3 {
    font-size: 1.2rem;
  }
}
html {
  scroll-behavior: smooth;
}
.btn.btn-primary.js-scroll-trigger {
  background-color: #781c2e;
  border-color: #781c2e;
  color: white;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn.btn-primary.js-scroll-trigger:hover,
.btn.btn-primary.js-scroll-trigger:focus {
  background-color: #a8324a;
  border-color: #a8324a;
  box-shadow: 0 4px 15px rgba(168, 50, 74, 0.6);
  color: white;
  text-decoration: none;
}


.contact-section {
  position: relative; /* Needed for overlay */
  padding: 5rem 0 0;
  background-color: rgb(1, 1, 23) !important;
  overflow: hidden;
}

/* Add the transparent image */
.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('mgblock.jpg') center/cover no-repeat;
  opacity: 0.3; /* Adjust transparency (0.1 – 0.5) */
  z-index: 0;
}

/* Keep content above image */
.contact-section > * {
  position: relative;
  z-index: 1;
}

.contact-section .card {
  border: 0;
  border-bottom: 0.25rem solid #781c2e;
}

.contact-section .card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  font-family: 'Varela Round';
  text-transform: uppercase;
  letter-spacing: 0.15rem;
}

.contact-section .card hr {
  border-color: #781c2e;
  border-width: 0.25rem;
  width: 3rem;
}

.contact-section .social {
  margin-top: 5rem;
}

.contact-section .social a {
  text-align: center;
  height: 3rem;
  width: 3rem;
  background: white;
  border-radius: 100%;
  line-height: 3rem;
  color: rgba(255, 255, 255, 0.3);
}

.contact-section .social a:hover {
  color: rgba(255, 255, 255, 0.5);
}

.contact-section .social a:active {
  color: #fff;
}

body {
  font-family: 'Nunito';
  letter-spacing: 0.0625em;
}

a {
  color: #781c2e;
}

a:focus, a:hover {
  text-decoration: none;
  color: #3c6360;
}



.bg-primary {
  background-color: #781c2e !important;
}

.text-primary {
  color: #781c2e !important;
}

footer {
  padding: 5rem 0;
}

.unionicon {
  margin-bottom: 30px;
  margin-top: -30px;
  width: 15%;
}

.cresticon {
  margin-bottom: 30px;
  width: 30%;
  margin-top: -30px;
}


/* fancy hr */

hr {
  border: 0;
  margin: 1.35em auto;
  max-width: 100%;
  background-position: 50%;
  box-sizing: border-box;
  padding: 0;
}

.accessory {
  height: 6px;
  background-image: radial-gradient(closest-side, rgba(128, 128, 128, 1.0), rgba(128, 128, 128, 0) 100%);
  position: relative;
}

hr.hr-4 {
  padding: 0;
  border: none;
  border-top: medium double #8c8c8c;
  color: #8c8c8c;
  text-align: center;
}

hr.hr-4:after {
  content: "§";
  display: inline-block;
  position: relative;
  top: -0.7em;
  font-size: 1.5em;
  padding: 0 0.25em;

}


/* Headshots */

figure {
  margin-top: 30px;
  position: relative;
  display: inline-block;
  border-radius: 100%;
  width: 150px;
  height: 150px;
  transition: all 250ms;

}

.one {
  position: relative;
  z-index: 1;
  height: 160px;

}

.one:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 180px;
  height: 180px;
  border-radius: 80rem;
  background-color: lightgrey;
  transform: scale(1);
  transition: all 250ms;
}

.one img {
  position: relative;
  display: inline-block;
  z-index: 1;
  overflow: hidden;
  width: 180px;
  border-radius: 8rem;
}
.one:hover:before {
  background-color:  #b71a3a;
  transform: scale(1.1);
}


.headshottext{
  margin-top: 10px;
  padding-left: 10px;

}

.headshotgrade{
  margin-top: -5rem;
  font-size: 70%;
}



* {
  box-sizing: border-box;
}
.section-title {
  font-weight: 700;
  color: #2e0753;
}

.section-divider {
  width: 80px;
  height: 4px;
  background-color: #8b1d3f;
  border: none;
  margin: 0 auto 20px;
}

.cardh {
  background: #ffffff;
  border-left: 6px solid #8b1d3f;
}

.conference-points {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.conference-points:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.conference-points p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #000;
}

.modern-table th, .modern-table td {
  vertical-align: middle;
  text-align: center;
}

.fade-in {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }
.delay-6 { animation-delay: 1.2s; }
.delay-7 { animation-delay: 1.4s; }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Overall wrapper */
.wrapper {
  max-width: 750px;
  width: 90%;
  margin: 5% auto 40px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.15);
  overflow: hidden !important;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 20px;
  box-sizing: border-box;
}

/* Slide controls container */
.slide-controls {
  display: flex;
  justify-content: center;
  margin: 20px auto;
  background: #f4f4f4;
  border-radius: 50px;
  box-shadow: inset 0 0 8px #ddd;
  max-width: 420px;
  width: 90%;
}

.slide-controls label {
  width: 50%;
  text-align: center;
  padding: 10px 0;
  font-weight: 600;
  color: #999;
  border-radius: 50px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.slide-controls input#login:checked ~ label[for="login"],
.slide-controls input#signup:checked ~ label[for="signup"] {
  color: #fff;
  font-weight: 700;
  cursor: default;
}

/* Details container */
.details-container {
  text-align: center;
  margin-bottom: 20px;
}

.details-container .details {
  font-size: 1rem;
  color: #6d0707;
}

/* Forms */
.form-inner {
  width: 100%;
}

.field {
  margin-bottom: 15px;
}

.field input,
.field select {
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}

.field.btn input[type="submit"] {
  width: 100%;
  padding: 12px;
  background: #6d0707;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.field.btn input[type="submit"]:hover {
  background: #4e0505;
}

.pass-link,
.signup-link {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 5px;
}

.pass-link a,
.signup-link label {
  color: #6d0707;
  cursor: pointer;
  text-decoration: none;
}

.pass-link a:hover,
.signup-link label:hover {
  text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .wrapper {
    margin: 8% auto;
    width: 95%;
    padding: 15px;
  }

  .slide-controls label {
    font-size: 0.9rem;
    padding: 8px 0;
  }

  .details-container .details {
    font-size: 0.95rem;
  }

  .field input,
  .field select {
    padding: 10px 12px;
    font-size: 0.95rem;
  }

  .field.btn input[type="submit"] {
    padding: 10px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .wrapper {
    margin: 10% auto;
    width: 100%;
    padding: 10px;
  }

  .slide-controls label {
    font-size: 0.85rem;
    padding: 6px 0;
  }

  .details-container .details {
    font-size: 0.9rem;
  }

  .field input,
  .field select,
  .field.btn input[type="submit"] {
    font-size: 0.9rem;
    padding: 8px 10px;
  }
}


.countdown-section {
  background: linear-gradient(135deg, #010e1b, #154572);
  padding: 40px 15px;
  color: white;
  text-align: center;
}

.countdown-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.countdown-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.countdown-card {
  background: white;
  color: #003366;
  padding: 25px;
  border-radius: 15px;
  width: 370px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.countdown-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.countdown-date {
  font-size: 1rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 15px;
}

.countdown-timer {
  font-size: 1.8rem;
  font-weight: bold;
  color: #d32f2f;
  background: rgba(255,0,0,0.08);
  padding: 10px 15px;
  border-radius: 8px;
}


.hero-slide {
  position: relative;
  height: 65vh!important; /* Full screen */
  background: url('drone field.jpg') center/cover no-repeat;
}

.hero-slide .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Adjust transparency */
  z-index: 1;
}

.slide-text {
  position: relative;
  z-index: 2; /* Text appears above overlay */
}
.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
  .hero-slide h1 {
  font-size: 2.5rem; /* Adjust as needed */
  font-weight: 700;
  color: rgb(238, 230, 10);
}

.hero-slide h2 {
  font-size: 1.5rem; /* Adjust as needed */
  font-weight: 400;
  color: white;
}
@media (max-width: 768px) {
  .hero-slide h1 {
    font-size: 3rem;
  }

  .hero-slide h2 {
    font-size: 2rem;
  }
}
 .about-section h2 {
      font-family: 'Georgia', serif;
      font-size: 2.5rem;
    }
    .about-section h3 {
      font-family: 'Georgia', serif;
      font-size: 2rem;
    }
    .about-section p {
      font-family: 'Georgia', serif;
      font-size: 1.125rem;
      color: black;
    }
    /* General Styles */
/* General Styles */
.about-section {
  background: linear-gradient(135deg, #186981, #010f18);
  padding: 60px 0;
  color: #072644;
  font-family: 'Roboto', sans-serif;
  position: relative;
  overflow: hidden;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Section Title */
.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color:white;
  animation: fadeInUp 1.2s ease-out forwards;
}

/* Accessory Line */
.accessory {
  width: 60px;
  height: 4px;
  background-color: #00695c;
  margin: 20px auto;
  animation: slideIn 1s ease-out forwards;
}

/* Importance Title */
.importance-title {
  font-size: 2rem;
  color: #091f83;
  opacity: 0;
  animation: fadeInUp 1.5s ease-out forwards;
  animation-delay: 0.5s;
}

/* Conference Description */
.conference-description {
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInUp 1.8s ease-out forwards;
  animation-delay: 1s;
}

/* Keyframe Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  0% {
    width: 0;
  }
  100% {
    width: 60px;
  }
}

/* Hover Effects */
.section-title:hover {
  color: #ebd780;
  transform: scale(1.05);
  transition: transform 0.3s ease, color 0.3s ease;
}

.importance-title:hover {
  color: #051311;
  transform: scale(1.05);
  transition: transform 0.3s ease, color 0.3s ease;
}

.conference-description:hover {
  color: #000c0a;
  transform: scale(1.02);
  transition: transform 0.3s ease, color 0.3s ease;
}
/* General Styles */
.animated-heading {
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  color: inherit;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 1.2s ease-out forwards;
}

.animated-paragraph {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInUp 1.5s ease-out forwards;
  animation-delay: 0.5s;
}

/* Keyframe Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover Effects */
.animated-heading:hover {
  color:  #4b0522;
  transform: scale(1.05);
  transition: transform 0.3s ease, color 0.3s ease;
}

.animated-paragraph:hover {
  color: #02110f;
  transform: scale(1.02);
  transition: transform 0.3s ease, color 0.3s ease;
}
/* General Styles */

.conference-box {
  background:  #d5e9f1;
  border-left: 6px solid #06184b;
  animation: fadeInUp 1.2s ease-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  width: 100%;      /* take full container width */
  margin: 0 auto;   /* center if needed */
  padding: 2rem;
}


.conference-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.section-heading {
  color: #8b1d3f;
  font-weight: 600;
}

.conference-description {
  line-height: 1.6!important;
  
  color: #333;
  font-size: 1.0rem!important;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.aim-scope-text {
  font-size: 1.0rem!important;    /* smaller font size */
  line-height: 1.6!important;      /* good readability */
  text-align: center!important;    /* center alignment */
  color: #444;           /* slightly softer text color */
}
.exhibition-box {
  background: #d5e9f1;
  border-left: 6px solid #2e0753; /* matching your title color */
  animation: fadeInUp 1.2s ease-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  width: 100%;      /* take full container width */
  margin: 0 auto;   /* center if needed */
  padding: 2rem;

}

.exhibition-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.exhibition-heading {
  color: #2e0753;
  font-weight: 600;
}

.exhibition-text {
  font-size: 0.95rem; /* reduced font size */
  line-height: 1.7;
  text-align: center;
  color: #333;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.modern-points li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 1.6;
  background: #fff;
  border-radius: 8px;
  padding: 12px 15px 12px 40px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modern-points li::before {
  content: "\2713"; /* Check mark */
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #8b1d3f;
  font-weight: bold;
  font-size: 1.2rem;
}

.modern-points li:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Animation */
.animate-point {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInUp 0.8s ease forwards;
}

.animate-point.delay-1 { animation-delay: 0.2s; }
.animate-point.delay-2 { animation-delay: 0.4s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.important-dates {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

.conference-point {
  background: linear-gradient(90deg, #8b1d3f, #d72638);
  color: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
  font-size: 1.05rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.conference-point::before {
  content: "\1F4C5"; /* Calendar emoji */
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  opacity: 0.9;
}

.conference-point p {
  margin: 0;
  padding-left: 35px;
}

.conference-point:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* Animation */
.animate-point {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInUp 0.8s ease forwards;
}

.animate-point.delay-1 { animation-delay: 0.1s; }
.animate-point.delay-2 { animation-delay: 0.3s; }
.animate-point.delay-3 { animation-delay: 0.5s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.publication-highlight {
  background: linear-gradient(135deg, #0d5962, #064c65);
  color: #fff;
  padding: 16px 18px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  text-align: center;
  font-size: 0.7rem;
  position: relative;
  overflow: hidden;
  border-left: 6px solid #158caa;
}

.publication-highlight h3 {
  margin: 0;
  font-weight: 400;
  line-height: 1.2;
}

.publication-highlight em {
  font-style: italic;
  font-weight: 400;
}

.publication-highlight::before {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  opacity: 0.85;
}

.animate-highlight {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInUp 0.8s ease forwards;
}

.animate-highlight.delay-4 { animation-delay: 0.7s; }

/* Reusing same fade-in animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.registration-heading {
  background: linear-gradient(135deg, #ff7b54, #ffb347);
  padding: 20px 25px;
  border-radius: 14px;
  text-align: center;
  color: white;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
  margin-top: 10%;
}

.registration-heading h2 {
  margin: 0;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.registration-heading::before {
  content: "";
  position: absolute;
  top: 0; left: -50%;
  width: 200%; height: 100%;
  background: rgba(255,255,255,0.15);
  transform: skewX(-25deg);
  animation: shine 3s infinite linear;
}

@keyframes shine {
  0% { left: -50%; }
  100% { left: 150%; }
}
.hero-section {
  position: relative;
  width: 100%;
  color: white;
}

.hero-slide {
  background: url('drone field.jpg') center/cover no-repeat;
  height: 100vh;
  min-height: 400px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.slide-text {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .conference-heading {
    font-size: 1.75rem;
  }
  .slide-text h2 {
    font-size: 1rem;
  }
  .btn-group-wrap a {
    display: block;
    margin: 5px auto;
  }
}
.conference-description {
  list-style: none; /* Remove default bullets */
  padding-left: 0;
}

.conference-description li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #1a1a1a;
  background: #f9f9f9;
  border-left: 4px solid #007bff; /* Green accent bar */
  border-radius: 8px;
  padding: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}



/* Hover effect */
.conference-description li:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.aim-scope-list {
  list-style: none;
  padding-left: 0;
}

.aim-scope-list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #f8f0f0;
  background: #095c6b;
  border-left: 4px solid #007bff; /* Blue accent bar */
  border-radius: 8px;
  padding: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.aim-scope-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.info-card {
  background-color: #ffffff;
  border-left: 6px solid #8b1d3f;
  color: #000;
}

.info-box {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  color: #000;
}

.info-list {
  padding: 0;
  margin: 0;
}

.info-item {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.2rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  transition: background 0.3s ease;
}

.info-item:hover {
  background-color: #eef1f3;
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.info-item .icon {
  color: #8b1d3f;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}
/* Container styling */
.pricing-table-container {
  padding: 2rem 1rem;
  background-color: #f4f6f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Responsive wrapper */
.pricing-table-responsive {
  overflow-x: auto;
}

/* Table styling */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
}

/* Header */
.pricing-table thead {
  background-color: #2d2f35;
  color: #ffffff;
}

.pricing-table thead th {
  padding: 1rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
}

/* Body */
.pricing-table tbody td,
.pricing-table tbody th {
  padding: 1rem;
  text-align: center;
  font-size: 0.95rem;
  color: #333;
  border-bottom: 1px solid #e0e0e0;
  background-color: #fff;
}

.pricing-table tbody th {
  text-align: left;
  font-weight: 500;
}

/* Hover effect */
.pricing-table tbody tr:hover {
  background-color: #f9fbfc;
  transition: background 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .pricing-table {
    font-size: 0.85rem;
  }

  .pricing-table thead th,
  .pricing-table tbody td,
  .pricing-table tbody th {
    padding: 0.75rem;
  }
}
.payment-note {
  font-size: 0.9rem;
  color: #555555;
  line-height: 1.5;
  font-style: italic;
  border-left: 4px solid #8b1d3f; /* matches your theme */
  padding-left: 1rem;
  margin-top: 1rem !important;
  background-color: #f9f9f9;
  border-radius: 6px;
  max-width: 600px;
}
.aim-scope-points p {
    background: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .aim-scope-points p:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  }
  .aim-scope-points p {
    background: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .aim-scope-points p:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  }



  .conference-title {
    font-size: 1.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding-bottom: 12px;
    display: inline-block;
  }
  .conference-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    margin: 8px auto 0;
    border-radius: 2px;
  }
   .conf-overview-title {
    font-size: 1.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding-bottom: 12px;
    display: inline-block;
    color:#01070c;
  }
  .conf-overview-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #198754, #20c997);
    margin: 8px auto 0;
    border-radius: 2px;
  }
   .conf-overview-title {
    font-size: 1.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding-bottom: 12px;
    display: inline-block;
    color:#01070c;
  }
  .conf-overview-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #198754, #20c997);
    margin: 8px auto 0;
    border-radius: 2px;
  }
   .conf-students-title {
    font-size: 1.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding-bottom: 12px;
    display: inline-block;
    color:#01070c;
  }
  .conf-students-title::after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #fd7e14, #dc3545);
    margin: 8px auto 0;
    border-radius: 2px;
  }
 /* Reduce table font size */
  .small-table th, 
  .small-table td {
    font-size: 0.9rem;
    padding: 8px;
  }

/* Mobile optimization for Bootstrap 4.3.1 */
@media (max-width: 575.98px) {
  .small-table th,
  .small-table td {
    font-size: 0.8rem;
    padding: 6px;
  }
  .payment-note {
    font-size: 0.8rem;
  }
}

  .important-dates {
    background: #97d8d4;
    border: 1px solid #dee2e6;
    color: white;
  }
  .important-dates li {
    background: #255a8f;
    padding: 8px 12px;
    border-radius: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .important-dates li:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  }
   .pricing-table-container table {
    background: #0e292e;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  .pricing-table-container thead {
    background: linear-gradient(90deg, #475462, #689aa8);
    color: #fff;
    font-weight: 600;
  }
  .pricing-table-container tbody tr:nth-child(even) {
    background-color: #0e292e;/* subtle row highlight */
  }
  .pricing-table-container tbody tr:hover {
    background-color: #0e292e; /* hover effect */
    transition: 0.2s ease-in-out;
  }


.pricing-table-container table {
    background: #488eba;
    border-radius: 10px;
    overflow: hidden;
     color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  .pricing-table-container thead {
    background: linear-gradient(90deg, #385676, #2a545f);
    color: #fff;
    font-weight: 600;
  }
  .pricing-table-container tbody tr:nth-child(even) {
    background-color: #45749e; /* subtle row highlight */
    color: white;
  }
  .pricing-table-container tbody tr:hover {
    background-color: #45749e; /* hover effect */
    transition: 0.2s ease-in-out;
     color: #fff;
  }
  /* 🔹 Change only the first column background */
  .pricing-table-container tbody td:first-child {
    background-color: #374e89;
    font-weight: 600;
    text-align: left;
     color: #fff;
  }
/* Make category column stand out */
  .pricing-table-container td.category-col {
    background-color: #f1f6ff;
    font-weight: 600;
    text-align: left;
    white-space: nowrap; /* keep text in one line */
  }

/* On smaller screens, reduce padding & font size */
@media (max-width: 575.98px) {
  .pricing-table-container table {
    font-size: 13px;
  }
  .pricing-table-container td,
  .pricing-table-container th {
    padding: 8px;
  }
}
