:root {
  --eactaic-red: #b33939;
  --eactaic-blue: #00a8e8;
  --secondary-color: #0167b1;
  --dark-bg: #121212;
  --status-green: #2ecc71;
  --soft-bg: #fcfcfc;
  --bg-light: #f4f7f9;
  --bg-gray: #f8f9fa;
  --soft-gray: #f8f9fa;
  --glass-white: rgba(255, 255, 255, 0.8);
  --glass-bg: rgba(255, 255, 255, 0.92);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Roboto",
    -apple-system,
    sans-serif;
  overflow-x: hidden;
}

section {
  padding: 80px 0;
}

.bg-light-blue {
  background-color: #e6f0ff;
}

.bg-secondary-color {
  background-color: var(--secondary-color);
}

@media (min-width: 768.98px) {
  .column-count-2 {
    column-count: 2;
  }
}

/* MODERN NAV - Transparent to Solid */
.navbar {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px 0;
}

.navbar.scrolled {
  /* background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(15px); */
  padding: 12px 0;
  /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
}
.navbar .logo {
  width: 260px;
}
.navbar-wrap {
  backdrop-filter: blur(15px);
  border: 2px solid #c0212e;
  border-radius: 35px 35px 35px 35px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.navbar .nav-item {
  margin: 0 5px;
}
.navbar .nav-link {
  color: #555;
  position: relative;
  transition: 0.5s ease-in-out;
}
.navbar .nav-link:hover {
  color: #000;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--eactaic-red);
  left: 0;
  bottom: 0;
  transition: 0.5s ease-in-out;
}

.navbar-toggler span {
  color: var(--eactaic-red);
}

#mainNav .nav-link.active {
  color: #000;
  font-weight: 500;
  /* border-bottom: 2px solid var(--eactaic-red);  */
}
#mainNav .nav-link.active::after {
  width: 100%;
}
@media (max-width: 768px) {
  .navbar-collapse {
    padding-bottom: 15px;
  }
}
@media (max-width: 575.98px) {
  .navbar .logo {
    width: 190px;
  }
  .navbar {
    padding: 20px;
  }
  .navbar.scrolled {
    padding: 20px 20px;
  }
}

/* MODERN HERO */
.hero-section {
  position: relative;
  /* background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%),
    url("event-banner.jpg") no-repeat center center;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  color: white; */
}

.hero-section .overlay {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 3rem;
  border-radius: 24px;
}

@media (max-width: 767.98px) {
  .hero-section img {
    height: 300px;
    object-fit: cover;
    object-position: 35%;
  }
}

/* BG ELEMENTS */
.ele {
  position: absolute;
}
.ele-3 {
  width: 25%;
  bottom: -12px;
}
.ele-1 {
  right: -14%;
  transform: rotate(87deg);
  width: 425px;
  bottom: 20%;
}
.ele-2 {
  top: -4%;
  right: -3%;
  transform: rotate(175deg);
  width: 300px;
}

@media (max-width: 767.95px) {
  section {
    padding: 50px 0;
  }
  .ele-2 {
    top: -4%;
    right: -3%;
    width: 210px;
  }
}

/* MODERN BUTTONS */
.btn-modern {
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-primary-eactaic {
  background: var(--eactaic-red);
  border: none;
  color: white;
  border-radius: 50px;
}

.btn-primary-eactaic:hover {
  background: #8e2a2a;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(179, 57, 57, 0.3);
}

/* FOOTER */
/* footer {
  background: var(--dark-bg);
  color: #999;
  padding: 80px 0 30px;
}

footer h5 {
  color: white;
  margin-bottom: 25px;
  font-weight: 700;
}

.footer-link {
  color: #999;
  text-decoration: none;
  transition: 0.3s;
  display: block;
  margin-bottom: 10px;
}

.footer-link:hover {
  color: var(--eactaic-blue);
  padding-left: 5px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  color: white;
  transition: 0.3s;
}

.social-icon:hover {
  background: var(--eactaic-red);
  color: white;
} */

@media (max-width: 768px) {
  .hero-card {
    padding: 1.5rem;
    background: none;
    border: none;
    backdrop-filter: none;
  }
  .display-3 {
    font-size: 2.5rem;
  }
}

/* ****** COUNTER ********* */
.counter-wrapper {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(-45deg, #121212, #1a1a1a, #2d0b0b, #0b1a2d);
  background-size: 400% 400%;
  animation: gradientAnimation 15s ease infinite;
  overflow: hidden;
  color: white;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Floating light orbs for extra depth */
.counter-wrapper::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(179, 57, 57, 0.05) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.counter-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 20px;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.counter-card:hover {
  transform: translateY(-10px);
  border-color: #b33939; /* EACTAIC Red */
  background: rgba(255, 255, 255, 0.05);
}

.counter-number {
  font-size: 3.5rem;
  font-weight: 800;
  display: block;
  background: linear-gradient(to bottom, #ffffff, #888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
}

.counter-label {
  color: #00a8e8; /* Cyan blue from the banner */
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 0.85rem;
}

.icon-box {
  font-size: 2rem;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.5);
}

/* ********* EVENT CONTAINER ************* */
:root {
  --primary-red: #a32a29;
  --primary-blue: #4099ff;
  --text-dark: #333;
  --glass-bg: rgba(255, 255, 255, 0.9);
}

.event-container {
  display: flex;
  /* max-width: 900px;
        width: 95%; */
  position: relative;
  background: var(--glass-bg);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease;
}

.event-container:hover {
  transform: translateY(-5px);
}

/* --- Left Side: Registration & Location --- */
.event-container .left-panel {
  flex: 1.2;
  padding: 40px;
  background: linear-gradient(135deg, #ffffff 0%, #e6f0ff 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-container .reg-link {
  display: inline-block;
  background: var(--primary-red);
  color: white;
  padding: 15px 25px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 30px;
  animation: pulse 2s infinite;
  box-shadow: 0 4px 15px rgba(163, 42, 41, 0.3);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

.event-container .location-box {
  margin-bottom: 30px;
}

.event-container .location-label {
  color: #666;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.event-container .location-details {
  display: flex;
  align-items: center;
  gap: 15px;
}

.event-container .location-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-blue);
}

.event-container .location-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
}

.event-container .calendar-btn {
  background: white;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.event-container .calendar-btn:hover {
  background: var(--primary-blue);
  color: white;
}

/* --- Right Side: Details --- */
.event-container .right-panel {
  flex: 0.8;
  padding: 40px;
  background: #fff;
  border-left: 1px solid #eee;
}

.event-container .detail-group {
  margin-bottom: 25px;
}

.event-container .detail-label {
  font-size: 0.85rem;
  color: #888;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 5px;
}

.event-container .detail-value {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 600;
}

.event-container .detail-sub {
  font-size: 0.9rem;
  color: #555;
}

/* .status-badge {
            display: inline-block;
            background: #e1f5fe;
            color: #0288d1;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: bold;
        } */

/* Status Badge */
.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(46, 204, 113, 0.1);
  color: var(--status-green);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--status-green);
  border-radius: 50%;
  animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
  }
}

/* Calendar Button */
.btn-calendar {
  background: #1a1a1a;
  color: white;
  border-radius: 14px;
  padding: 12px 24px;
  font-weight: 600;
  border: none;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
}

.btn-calendar:hover {
  background: #333;
  color: white;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .event-container {
    flex-direction: column;
  }
  .right-panel {
    border-left: none;
    border-top: 1px solid #eee;
  }
  .event-container .left-panel {
    padding: 20px;
  }
  .event-container .right-panel {
    padding: 20px;
  }
  .event-container .reg-link {
    padding: 10px 20px;
    font-size: 1rem;
    margin-bottom: 25px;
  }
  .btn-calendar {
    padding: 12px 15px;
  }
  .event-container .detail-group:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 575.98px) {
  .event-container .detail-group {
    margin-bottom: 15px;
  }
  .ele-3 {
    width: 60%;
    opacity: 0.7;
  }
}

:root {
  --eactaic-red: #b33939;
  --eactaic-blue: #00a8e8;
  --text-dark: #2d3436;
}

.welcome-section {
  /* padding: 100px 0; */

  /* background: linear-gradient(135deg, #ffffff 0%, #e6f0ff 100%); */
  background-color: #e6f0ff;
  color: var(--text-dark);
  line-height: 1.8;
}

.welcome-title {
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  /* background: linear-gradient(90deg, #111, var(--eactaic-red));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent; */
}

/* Track Cards - Modern Bento Style */
.track-container {
  /* display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px; */
  margin: 25px 0;
}

.track-card:not(:last-child) {
  /* padding: 20px;
  border-radius: 24px;
  background: #fcfcfc; */
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.05); */
  margin-bottom: 10px;
  /* padding-bottom: 10px; */
}

.track-card:hover {
  /* transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05); */
  /* border-color: var(--eactaic-red); */
}

.track-num {
  /* font-size: 15px;
  font-weight: 700;
  color: var(--eactaic-red);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px; */
}

.track-card h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 16px;
}

/* Speaker Signatures */
/* .speaker-row {
        border-top: 1px solid #eee;
        padding-top: 40px;
        margin-top: 60px;
      }

      .speaker-item h6 {
        font-weight: 700;
        margin-bottom: 2px;
        color: #111;
      }

      .speaker-item p {
        font-size: 0.85rem;
        color: #777;
        line-height: 1.4;
      } */

.speaker-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.speaker-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-container {
  position: relative;
  overflow: hidden;
  background-color: #f8f9fa;
  aspect-ratio: 1 / 0.8;
  display: none;
}

.speaker-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform 0.5s ease;
}

.speaker-card:hover .speaker-img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.speaker-info {
  padding: 15px;
  /* text-align: center; */
  border-top: 3px solid var(--eactaic-red);
}

.speaker-name {
  color: #333;
  font-weight: 700;
  margin-bottom: 0.25rem;
  font-size: 18px;
}

.speaker-designation {
  color: var(--eactaic-red);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 5px 0 0;
  line-height: 1.4;
}

/* Subtle Fade-in Animation for the row */
.reveal {
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Share Icons */
.share-container {
  background: #f8f9fa;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  padding: 8px 25px;
  gap: 15px;
}

@media (max-width: 768px) {
  .welcome-section {
    overflow: hidden;
  }
  .welcome-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .welcome-section img {
    max-width: 300px;
    display: block;
    margin: auto;
  }
  .btn-modern {
    padding: 12px 10px;
    letter-spacing: 0.2px;
  }
}

/* Footer */
:root {
  --eactaic-red: #a32a29;
  --footer-bg: #0056a6;
  --footer-text: #ffffff;
}

.main-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding-top: 60px;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.footer-logo {
  /* padding: 10px;
            margin-bottom: 10px; */
}

.footer-about-text {
  line-height: 1.6;
  margin-bottom: 25px;
}

.footer-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--eactaic-red);
}

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

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

.footer-links a {
  color: var(--footer-text);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-bottom {
  background-color: #121416;
  padding: 20px 0;
  margin-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
}

.ia-link {
  color: var(--eactaic-red);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s;
}

.ia-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-bottom .text-end {
    text-align: center !important;
    margin-top: 10px;
  }
  .footer-bottom .text-start {
    text-align: center !important;
  }
}

@media (max-width: 575.98px){
    .footer-logo{
        max-width: 250px;
    }
}

/* TABS AND CONTENT */
/* Modern Tabs Styling */
.nav-pills {
  background: #fff;
  padding: 10px;
  border-radius: 50px;
  display: inline-flex;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.nav-pills .nav-link {
  border-radius: 40px;
  padding: 12px 30px;
  font-weight: 600;
  color: #555;
  transition: all 0.3s ease;
}

.nav-pills .nav-link.active {
  background-color: var(--eactaic-red);
  box-shadow: 0 4px 12px rgba(163, 42, 41, 0.3);
}

/* Content Card & Animations */
.tab-content-1 {
  /* margin-top: 30px; */
  background: #fff;
  border-radius: 20px;
  padding: 20px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.tab-pane-1 {
  animation: slideUp 0.5s ease-out forwards;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .tab-content-1 {
    padding: 20px;
  }
}

@media (max-width: 575.98px) {
  .tab-content-1 {
    padding: 15px;
    border-radius: 15px;
  }
}

/* Registration Table Styling */
.table-custom {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
}

.table-custom thead {
  background-color: #f8f9fa;
  border-bottom: 2px solid var(--eactaic-blue);
}

.table-custom th {
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.fee-highlight {
  /* color: var(--eactaic-red);
  font-weight: bold; */
  background-color: #a8e1f7 !important;
}

.combined-row {
  background-color: #f0f7ff !important;
  font-weight: 600;
}

/* Venue Elements */
#venue h6 {
  color: var(--eactaic-red);
}
.venue-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 20px;
}

.transport-card {
  border-left: 4px solid var(--eactaic-blue);
  background: #fdfdfd;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 0 12px 12px 0;
}

.btn-register {
  background: var(--eactaic-red);
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.2s;
  border: none;
}

.btn-register:hover {
  transform: scale(1.05);
  color: white;
  background: #8e2423;
}

.policy-box {
  background: #fff5f5;
  border-radius: 12px;
  padding: 20px;
  border-left: 4px solid var(--eactaic-red);
}

/* ********** COunter *********** */

.event-countdown {
  position: relative;
  background-color: #f5f7fa;
  padding: 50px 0;
  overflow: hidden;
  z-index: 1;
  font-family: "Roboto", sans-serif;
}

/* Minimalist Background Animation: Floating Echo Pulses */
.bg-pulse {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(179, 57, 57, 0.3) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  border-radius: 50%;
  z-index: -1;
  animation: drift 20s infinite alternate ease-in-out;
}

.pulse-1 {
  top: -200px;
  right: -100px;
}
.pulse-2 {
  bottom: -200px;
  left: -100px;
  animation-delay: -5s;
}

@keyframes drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(50px, 100px) scale(1.1);
  }
}

/* Typography and Layout */
.section-tag {
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--eactaic-red);
  font-size: 0.8rem;
  display: block;
  margin-bottom: 1rem;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.time-card {
  background: var(--glass-white);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.03);
  padding: 20px 20px;
  border-radius: 24px;
  transition: transform 0.4s ease;
}

.time-card:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.time-val {
  font-size: 4.8rem;
  font-weight: 300;
  line-height: 1;
  color: #111;
  display: block;
  letter-spacing: 3px;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}

.time-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #888;
}

@media (max-width: 992px) {
  .countdown-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .time-val {
    font-size: 3rem;
    margin-bottom: 5px;
  }
  .time-card {
    padding: 10px;
  }
}

/* *********** NOTICE SECTION inside registration tab ********** */
.minimal-notice {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 40px 0;
  margin: 40px 0;
  font-family: "Roboto" sans-serif;
}

.notice-body {
  /* font-size: 1.1rem;
        line-height: 1.6;
        color: #333; */
  /* max-width: 800px; */
}

.notice-body strong {
  color: #000;
  font-weight: 600;
}

.notice-footer {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
  color: #666;
}

.notice-footer span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Subtle fade-in animation */
.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ******* VISA SECTION ********** */

/* Animated Abstract Background */
.visa-section {
  position: relative;
  /* padding: 80px 0; */
  background: #e5effe;
  overflow: hidden;
  /* overflow: hidden;
            min-height: 100vh; */
}

.bg-element {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  animation: float 20s infinite alternate ease-in-out;
  opacity: 0.15;
}

.bg-red {
  width: 400px;
  height: 400px;
  background: var(--eactaic-red);
  top: -100px;
  right: -50px;
}
.bg-blue {
  width: 500px;
  height: 500px;
  background: var(--eactaic-blue);
  bottom: -150px;
  left: -100px;
  animation-delay: -5s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(100px, 50px) scale(1.2);
  }
}

/* Content Styling */
.visa-container {
  position: relative;
  z-index: 10;
}

.visa-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.visa-header {
  border-bottom: 2px solid #eee;
  margin-bottom: 40px;
  padding-bottom: 20px;
}

.section-label {
  color: var(--eactaic-red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 10px;
  display: block;
}

.visa-title {
  font-weight: 800;
  color: #222;
}

.info-group {
  margin-bottom: 40px;
}

.info-title {
  font-weight: 700;
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-title i {
  color: var(--eactaic-blue);
}

.list-custom {
  list-style: none;
  padding-left: 0;
}

.list-custom li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #555;
  line-height: 1.6;
}

.list-custom li::before {
  content: "\f058"; /* Check circle */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--eactaic-red);
  font-size: 0.9rem;
}

.alert-custom {
  background: #fff5f5;
  border-left: 4px solid var(--eactaic-red);
  padding: 8px;
  border-radius: 10px;
  font-size: 0.9rem;
}

.visa-contact {
  background: #f0f7ff;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  margin-top: 20px;
}

.btn-contact {
  background: var(--eactaic-red);
  color: white;
  border-radius: 50px;
  padding: 10px 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-contact:hover {
  background: #333;
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .btn-contact {
    padding: 10px 12px;
    word-break: break-all;
  }
  .visa-card {
    padding: 20px;
  }
}

@media (max-width: 575.98px){
    .visa-contact{
        padding: 15px;
    }
}
/* ********* ACCOMMODATION ************ */

.section-title {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #333;
  margin-bottom: 50px;
  position: relative;
}

.category-header {
  border-left: 5px solid var(--eactaic-blue);
  padding-left: 15px;
  margin: 40px 0 25px 0;
  color: #444;
  font-weight: 700;
}

.hotel-card {
  background: #fff;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  height: calc(100% - 30px);
}

.hotel-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.hotel-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Image Gallery Slider Hook */
.hotel-image-container {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

.hotel-content {
  padding: 15px;
  color: #3d3a3a;
}

/* Add this to your <style> section */
.hotel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.hotel-name {
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--eactaic-red);
  margin-bottom: 0 !important; /* Reset margin for flex alignment */
}

.star-rating {
  color: #ffc107; /* Gold color */
  font-size: 0.85rem;
  letter-spacing: 0px;
  white-space: nowrap;
  margin-top: 5px;
}

/* Minimalist tweak: subtle glow on hover */
.hotel-card:hover .star-rating {
  text-shadow: 0 0 8px rgba(255, 193, 7, 0.4);
  transition: text-shadow 0.3s ease;
}

.info-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #888;
  margin-bottom: 2px;
}

.info-value {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 15px;
}

.btn-book {
  background-color: var(--eactaic-red);
  color: white;
  border-radius: 50px;
  padding: 10px 25px;
  font-weight: 600;
  border: none;
  transition: background 0.3s;
}

.btn-book:hover {
  background-color: #7d201f;
  color: white;
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}
.booking-mod-note {
  margin: 20px auto 0;
  padding: 8px 15px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-left: 5px solid var(--eactaic-red);
  border-radius: 8px;
}

.booking-mod-note .mod-content {
  line-height: 1.6;
}

.booking-mod-note .mod-content a {
  color: var(--eactaic-red);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(163, 42, 41, 0.2);
  transition: border-color 0.3s ease;
}

.booking-mod-note .mod-content a:hover {
  border-bottom-color: #a32a29;
}

.booking-mod-note .highlight-code {
  /* background-color: #fceeee;
  color: #a32a29;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  display: inline-block;
  margin: 0 2px; */
}

.booking-mod-note .highlight-code {
  background-color: #fceeee;
  color: #a32a29;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  position: relative;
}

.booking-mod-note .highlight-code:hover {
  background-color: #f9dcdc;
  border-color: #a32a29;
}

.booking-mod-note .highlight-code:active {
  transform: scale(0.96);
}

/* Tooltip styling */
.copy-tooltip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  padding: 4px 8px;
  font-size: 0.7rem;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.copy-active .copy-tooltip {
  opacity: 1;
}

.copy-icon {
  font-size: 0.8rem;
  opacity: 0.6;
}

.booking-mod-note .mod-icon {
  margin-right: 10px;
  color: #a32a29;
}
