/* Base Navbar Styles */
.navbar-dropdown {
  left: 0;
  padding: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 0.45s ease;
  z-index: 1030;
  background: rgba(22, 22, 22, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  min-height: 60px;
}

/* Brand and Logo */
.navbar-brand {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.navbar-logo {
  margin-right: 0.5rem;
  transition: margin 0.3s ease-in-out;
  display: flex;
  align-items: center;
}

.navbar-logo img {
  height: 2.5rem;
  /* Reduced from 2.8rem */
  width: auto;
  transition: all 0.3s ease-in-out;
}

.navbar-caption-wrap {
  display: flex;
  align-items: center;
}

.navbar-caption-wrap img {
  height: 0.9rem;
  /* Reduced from 1rem */
  width: auto;
  margin-left: 0.5rem;
  transition: all 0.3s ease-in-out;
}

/* Mobile Specific Styles */
@media (max-width: 991px) {
  .navbar-brand {
    flex: 1;
    justify-content: flex-start;
  }

  .navbar-logo img {
    height: 2rem;
    /* Reduced from 2.2rem */
  }

  .navbar-caption-wrap img {
    height: 0.7rem;
    /* Reduced from 0.75rem */
    margin-left: 0.25rem;
  }
}

@media (max-width: 576px) {
  .navbar-logo img {
    height: 1.6rem;
    /* Reduced from 1.8rem */
  }

  .navbar-caption-wrap img {
    height: 0.6rem;
    /* Reduced from 0.65rem */
  }
}

/* Navigation Links */
.nav-link {
  color: #ffffff;
  padding: 0.5rem 1rem;
  transition: color 0.2s ease-in-out;
  position: relative;
}

.nav-link:hover {
  color: #838181;
}

/* Hamburger Menu */
.navbar-toggler {
  border: none;
  padding: 0.25rem;
  outline: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 2px;
  margin: 6px 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}

/* Mobile Styles */
@media (max-width: 991px) {
  .navbar-collapse.show {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #161616;
    padding: 1rem;
    z-index: 1000;
  }

  .navbar.navbar-dropdown.navbar-fixed-top.navbar-expand-lg {
    background-color: #161616 !important;
  }

  .navbar-collapse.show .nav-link {
    color: #ffffff !important;
    padding: 0.75rem 1rem;
  }

  .navbar-collapse.show .nav-link:hover {
    color: #838181 !important;
  }

  .navbar-collapse.show .text-white,
  .navbar-collapse.show .text-primary {
    color: #ffffff !important;
  }

  .navbar-nav {
    padding: 1rem 0;
  }

  /* Hamburger Animation */
  .navbar-toggler[aria-expanded="true"] .hamburger span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) {
    opacity: 0;
  }

  .navbar-toggler[aria-expanded="true"] .hamburger span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* Desktop Styles */
@media (min-width: 992px) {
  .navbar-nav {
    align-items: center;
  }

  .nav-link {
    padding: 0.5rem 1rem;
    position: relative;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #ffffff;
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
  }

  .nav-link:hover::after {
    width: 100%;
  }

  .navbar-collapse {
    justify-content: flex-end;
  }
}

/* Enhanced Timeline Styles */
.timeline-element {
  position: relative;
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  animation: fadeInUp 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-play-state: paused;
  will-change: transform, opacity;
}

.timeline-element.visible {
  animation-play-state: running;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.timeline-text-content {
  background: linear-gradient(145deg, rgba(26, 26, 26, 0.4) 0%, rgba(22, 22, 22, 0.2) 100%);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.timeline-text-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, rgba(148, 148, 148, 0.1) 0%, rgba(36, 144, 233, 0) 100%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-element:hover .timeline-text-content {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(43, 42, 42, 0.5);
  border-color: rgba(80, 176, 231, 0.4);
}

.timeline-element:hover .timeline-text-content::before {
  opacity: 1;
}

.timeline-element:hover .image-wrapper img {
  transform: scale(1.08);
}

.image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, rgba(36, 187, 233, 0.2) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-element:hover .image-wrapper::after {
  opacity: 1;
}

.iconBackground {
  display: none;
  /* Hide the dots */
}

.separline::before {
  content: '';
  position: absolute;
  left: 33.3%;
  top: 0;
  bottom: -20px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.2) 100%);
  transform: translateX(-50%);
  z-index: 1;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .separline::before {
    left: 50%;
  }
}

.timeline-element {
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.6s ease forwards;
  animation-play-state: paused;
  z-index: 2;
}

.iconBackground {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  left: 33.3%;
  top: 20px;
  transform: translateX(-50%);
  background: #e92b24;
  box-shadow: 0 0 0 4px rgba(233, 43, 36, 0.2);
  z-index: 3;
}

.time-line-date-content {
  background: transparent;
  padding: 1.5rem;
  border: none;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInLeft 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-play-state: paused;
}

.timeline-element.visible .time-line-date-content {
  animation-play-state: running;
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.mbr-timeline-date {
  color: #ffffff !important;
  margin: 0;
  font-size: 2rem;
}

.timeline-text-content h4,
.timeline-text-content p,
.timeline-text-content strong,
.mbr-timeline-title,
.mbr-timeline-date,
.mbr-text {
  color: #ffffff !important;
}

.time-line-date-content .mbr-timeline-date {
  color: #ffffff !important;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .separline::before {
    left: 50%;
  }

  .iconBackground {
    left: 50%;
  }
}

/* ... social links ... */

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.social-links a:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .social-links {
    justify-content: center;
    margin-top: 2rem;
  }

  .footer-brand,
  .footer-links,
  .footer-contact,
  .stay-connected h6 {
    text-align: center;
  }

  .footer-contact li {
    justify-content: center;
  }

  .col-12.col-md-3 {
    margin-bottom: 2rem;
  }
}

/* ... rest of existing styles ... */