/* Top Header Styles */
.top-header {
  background: var(--navy);
  color: var(--text-light);
  padding: 8px 0;
  font-size: 0.9rem;
}

.header-top-left-items {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-top-left-items span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-header-right {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 15px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: var(--text-light);
  transition: opacity 0.3s;
}

.social-links a:hover {
  opacity: 0.8;
}

/* Langauage Select */
.select-lang {
  padding-left: 10px;
  position: relative;
}

.select-lang i {
  position: absolute;
  top: 2px;
  left: 0;
  font-size: var(--bsd-text-sm);
  line-height: 1;
  color: var(--text-light);
  padding-left: 8px;
}

.select-lang .navbar-language .dropdown-toggle {
  background-color: transparent;
  border: none;
  font-size: var(--baseColor);
  padding: 2px 23px 2px 15px;
  /* padding-left: 26px; */
  color: var(--text-light);
  transition: var(--transition-light);
  font-weight: var(--bsd-font-medium);
  border-radius: var(--bsd-rounded-md);
  line-height: var(--bsd-leading-none);
}

[lang="en-GB"] .select-lang .navbar-language .dropdown-toggle {
  display: flex;
  align-items: center;
}

.select-lang .navbar-language .dropdown-toggle:after {
  display: none;
}

.select-lang .navbar-language .dropdown-toggle:before {
  position: absolute;
  top: 0;
  right: 2px;
  content: "\ea4e";
  font-family: "remixicon";
  font-weight: var(--bsd-font-normal);
  border: 0;
  margin-left: 0px;
  font-size: var(--bsd-text-xl);
}

.select-lang .navbar-language .dropdown-toggle.show:before {
  -webkit-transform: rotateX(-180deg);
  transform: rotateX(-180deg);
}

.select-lang .navbar-language .dropdown-menu {
  margin: 0;
  padding: 5px 0;
  box-shadow: 0 9px 54px 0 rgba(32, 32, 32, 0.1);
  left: auto;
  right: 0;
  border: 0;
  border-radius: 0;
  transform: translateY(20px) !important;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: var(--linear-light);
}

.select-lang .navbar-language .dropdown-menu a {
  padding: 5px 10px;
  transition: var(--linear-light);
}

.select-lang .navbar-language .dropdown-menu a img {
  width: 20px;
  margin-right: 10px;
}

.select-lang .navbar-language .dropdown-menu.show {
  transform: translateY(7px) !important;
  opacity: 1;
  pointer-events: all;
}

.gtranslate_wrapper * {
  color: var(--text-light) !important;
}

.gtranslate_wrapper .gt_languages>a * {
  color: var(--darkColor) !important;
}

/* Middle Header */
.middle-header {
  padding: 15px 0;
  background: white;
  border-bottom: 1px solid #eee;
}

.logo-section {
  display: flex;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--baseColor);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 80px;
}

.slider-section {
  display: flex;
  justify-content: flex-end;
}

.header-slider {
  height: 80px;
  background: var(--secondary-gradient);
  border-radius: var(--bsd-rounded-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-weight: 600;
  width: 100%;
  max-width: 400px;
  text-align: center;
  /* padding: 0 20px; */
  overflow: hidden;
  position: relative;
}

.carousel-img {
    width: 100%;
    height: 80px;
    /* height: 100%; 
    object-fit: cover;
    object-position: center; */
}

.carousel-item-next, .carousel-item-prev, .carousel-item.active {
  display: flex;
  height: 80px;
  align-items: center;
  justify-content: center;
}

.middle-header .social-links a {
  color: #0f1011;
}

/* Bottom Header - Navigation */
.bottom-header {
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 102, 0.1);
  position: relative;
  padding: 0;
  z-index: 1000;
}

.desktop-nav {
  display: flex;
  align-items: center;
  width: 100%;
}

.navbar-nav {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--navy) !important;
  font-weight: 500;
  padding: 15px 20px !important;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  cursor: pointer;
}

.nav-link.active,
.navLink-item.current,
.nav-link:hover {
  color: var(--light-blue) !important;
  background: rgba(0, 71, 255, 0.05);
}

.navLink-item.current {
  padding-left: 25px;
}

.nav-link i {
  font-size: 0.8rem;
  transition: transform 0.3s;
}

/* First level menu item separator */
.navLink-menu>li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 102, 0.05);
}

/* Dropdown Menu Styles */
.navLink-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: none;
  box-shadow: var(--card-shadow);
  border-radius: 0 0 var(--bsd-rounded-lg) var(--bsd-rounded-lg);
  padding: 10px 0;
  margin-top: 0;
  width: 220px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.nav-item:hover>.navLink-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navLink-item {
  padding: 10px 20px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  position: relative;
  text-decoration: none;
}

.navLink-item:hover {
  background: rgba(0, 71, 255, 0.05);
  color: var(--light-blue);
  padding-left: 25px;
}

.navLink-item i {
  width: 20px;
  text-align: center;
}

.navLink-toggle>.nav-link::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}

/* Multi-level navLinks */
.navLink-submenu {
  position: relative;
}

.navLink-submenu>.navLink-menu {
  top: 0;
  left: 100%;
  margin-top: -10px;
  margin-left: 5px;
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
}

.navLink-submenu:hover>.navLink-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.navLink-submenu>.navLink-item:after {
  content: '\F285';
  font-family: 'bootstrap-icons' !important;
  font-weight: 900;
  position: absolute;
  right: 15px;
  font-size: 0.8rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--navy);
  cursor: pointer;
}

.mobile-menu .social-links a {
  color: var(--navy);
}

/* Responsive Design */
@media (max-width:1199px) {
  .nav-link {
    padding: 15px 14px !important;
  }
}
@media (max-width: 991px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #0f1011;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100vh;
  background: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  z-index: 1100;
  transition: left 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-header {
  padding: 15px 20px;
  color: var(--text-light);
  background: #f8f9fa;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: #0f1011;
  font-size: 1.5rem;
}

.mobile-nav {
  padding: 20px 0;
}

.mobile-nav-item {
  border-bottom: 1px solid #eee;
}

.mobile-dropdown-item,
.mobile-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
}

.mobile-dropdown-item i,
.mobile-nav-link i {
  transition: transform 0.3s;
}

.mobile-nav-link.active i {
  transform: rotate(180deg);
}

.mobile-dropdown-item.active i {
  transform: rotate(-90deg);
}

.mobile-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f8f9fa;
}

.mobile-dropdown.active {
  max-height: 500px;
}

.mobile-dropdown-item {
  padding: 12px 20px 12px 40px;
  border-bottom: 1px solid #e9ecef;
}

.mobile-dropdown-item:hover {
  background: rgba(0, 71, 255, 0.05);
  color: var(--light-blue);
}

/* Second level dropdown */
.mobile-dropdown-second {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f0f2f5;
}

.mobile-dropdown-second.active {
  max-height: 500px;
}

.mobile-dropdown-second-item {
  display: block;
  padding: 10px 20px 10px 60px;
  color: var(--baseColor);
  text-decoration: none;
  border-bottom: 1px solid #e9ecef;
  font-size: 0.9rem;
}

.mobile-dropdown-second-item:hover {
  background: rgba(0, 71, 255, 0.05);
  color: var(--light-blue);
}

.mobile-dropdown-item.current,
.mobile-dropdown-second-item.current {
  background: rgba(0, 71, 255, 0.05);
  color: var(--light-blue);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  display: none;
}

.menu-overlay.active {
  display: block;
}

/* Banner Slider */
.banner-slider {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.banner-slide.active {
  opacity: 1;
}

.banner-content {
  max-width: 600px;
  padding: 40px;
  background: rgba(0, 51, 102, 0.8);
  color: var(--text-light);
  border-radius: var(--bsd-rounded-lg);
  margin-left: 10%;
}

.banner-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.banner-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.banner-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.banner-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.banner-indicator.active {
  background: white;
}

.banner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s;
  line-height: var(--bsd-leading-none);
}

.banner-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.banner-nav i {
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-prev {
  left: 20px;
}

.banner-next {
  right: 20px;
}

/* News Ticker */
.news-ticker {
  background: #f8f9fa;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  position: relative;
  overflow: hidden;
}

.ticker-label {
  background: var(--navy);
  color: var(--text-light);
  padding: 5px 15px;
  border-radius: var(--bsd-rounded);
  font-weight: 600;
  margin-right: 15px;
  white-space: nowrap;
  z-index: 2;
}

.ticker-container {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.ticker-content {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.ticker-list {
  display: flex;
}

.ticker-item {
  display: inline-block;
  padding-right: 50px;
  color: var(--navy);
  font-weight: 500;
  position: relative;
}

.ticker-item::after{
  content: "-";
  position: absolute;
  left: -15px;
  top: 0;
  color: currentColor;
}

.ticker-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.ticker-item a:hover {
    text-decoration: underline !important;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(0, 51, 102, 0.7), rgba(0, 71, 255, 0.7)), url('https://images.unsplash.com/photo-1548013146-72479768bada?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  padding: 150px 0;
  text-align: center;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Services Section */
.services-section {
  background: #f8f9fa;
}

.service-card {
  background: white;
  border-radius: var(--bsd-rounded-lg);

  text-align: center;
  box-shadow: var(--card-shadow);
  transition: all 0.3s;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.service-icon {
  /* width: 80px;
  height: 80px; */
  /* background: var(--primary-gradient); */
  /* border-radius: 50%; */
  /* display: flex;
  align-items: center;
  justify-content: center; */
  margin: 0 auto;
  /* color: var(--text-light);
  font-size: 1.8rem; */
  padding: var(--card-padding);
}

.service-card img {
  height: 70px;
  margin-bottom: 15px;
}

/* .service-card a:hover img {
  filter: brightness(0) invert(1);
} */

.service-card h3 {
  color: var(--navy);
  font-size: var(--bsd-text-lg);
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card p {
  color: #666;
}

/* Highlight Section */
.highlight-content {
  padding-right: 40px;
}

.highlight-content h2 {
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 20px;
}

.highlight-content p {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.7;
}

.highlight-image {
  border-radius: var(--bsd-rounded-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.highlight-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* CTA Section */
.cta-section {
  padding: 120px 0 100px;
  color: var(--text-light);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--primary-gradient);
  border-radius: 20px;
  margin: 50px auto;
  max-width: 1200px;
  box-shadow: 0 20px 60px rgba(0, 71, 255, 0.3);
}

/* Wave Background */
.wave-background {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="white"/></svg>');
  background-size: 1200px 100px;
  animation: wave 12s linear infinite;
}

.wave:nth-child(2) {
  animation: wave 15s linear infinite;
  opacity: 0.5;
  animation-delay: -5s;
  bottom: 10px;
}

.wave:nth-child(3) {
  animation: wave 18s linear infinite;
  opacity: 0.7;
  animation-delay: -2s;
  bottom: 15px;
}

.wave:nth-child(4) {
  animation: wave 20s linear infinite;
  opacity: 0.3;
  animation-delay: -7s;
  bottom: 20px;
}

@keyframes wave {
  0% {
    background-position-x: 0;
  }

  100% {
    background-position-x: 1200px;
  }
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 20%;
  right: 10%;
  animation-delay: 1s;
}

.floating-element:nth-child(3) {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
}

.floating-element:nth-child(4) {
  width: 100px;
  height: 100px;
  bottom: 10%;
  right: 20%;
  animation-delay: 3s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

/* Content Styling */
.cta-content {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 25px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  letter-spacing: -1px;
  line-height: 1.2;
  animation: fadeInDown 1s ease;
}

.cta-section p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-weight: 400;
  animation: fadeIn 1.2s ease;
}

.app-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease;
}

.app-btn {
  background: white;
  color: var(--baseColor);
  padding: 18px 30px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.app-btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}

.app-btn:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  color: var(--text-light);
}

.app-btn:hover:before {
  opacity: 1;
}

.app-btn:hover .btn-text small {
  color: rgba(255, 255, 255, 0.9);
}

.app-btn i {
  font-size: 2.2rem;
  transition: transform 0.4s;
}

.app-btn:hover i {
  transform: scale(1.2);
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn-text small {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
  transition: color 0.4s;
}

.btn-text div {
  font-size: 1.2rem;
  font-weight: 700;
}

/* Additional Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.feature-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 25px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s;
}

.feature-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--text-light);
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-light);
}

.feature-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

/* Ripple Effect Styles */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .cta-section {
    padding: 80px 0 60px;
    margin: 30px 20px;
  }

  .cta-section h2 {
    font-size: 2.5rem;
  }

  .cta-section p {
    font-size: 1.1rem;
    padding: 0 20px;
  }

  .app-btn {
    padding: 15px 20px;
  }

  .app-btn i {
    font-size: 1.8rem;
  }

  .btn-text div {
    font-size: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
    padding: 0 20px;
  }
}

@media (max-width: 576px) {
  .cta-section h2 {
    font-size: 2rem;
  }

  .app-buttons {
    flex-direction: column;
    align-items: center;
  }

  .app-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* Notices Section */
.notices-section {
  background: #f8f9fa;
}

.tab-container {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  animation: fadeInUp 0.8s ease;
}

.tab-layout {
  display: flex;
}

/* Vertical Sidebar */
.tab-sidebar {
  width: 240px;
  background: linear-gradient(180deg, #1E3A8A 0%, #1E40AF 100%);
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

.tab-sidebar::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.sidebar-header {
  padding: 0 20px 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.sidebar-header h3 {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-header h3 i {
  font-size: 1.2rem;
  color: #F59E0B;
}

.tab-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}

.tab-button {
  padding: 16px 18px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 4px solid transparent;
}

.tab-button:focus {
  outline: 3px solid #F59E0B;
  outline-offset: 2px;
}

.tab-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.tab-button:hover::before {
  left: 100%;
}

.tab-button:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-light);
  transform: translateX(5px);
}

.tab-button.active {
  background: white;
  color: #1E3A8A;
  border-left-color: var(--red);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25), inset 0 0 0 2px var(--red);
  transform: translateX(5px);
  font-weight: 700;
}

.tab-button i {
  font-size: 1.4rem;
  min-width: 24px;
}

.tab-button.active i {
  color: var(--red);
}

.tab-button-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.tab-button-title {
  font-size: 0.95rem;
  font-weight: 600;
}

.tab-button.active .tab-button-title {
  font-weight: 700;
}

.tab-button-count {
  font-size: 0.75rem;
  opacity: 0.7;
  font-weight: 500;
}

.tab-button.active .tab-button-count {
  color: var(--red);
  opacity: 1;
  font-weight: 600;
}

/* Content Area */
.tab-content-area {
  flex: 1;
  padding: 35px 40px;
  background: #F9FAFB;
}

.tab-pane {
  display: none;
  opacity: 0;
  animation: fadeInSlide 0.5s ease forwards;
}

.tab-pane.active {
  display: block;
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-header {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #E5E7EB;
}

.content-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1E3A8A;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.content-header h3 i {
  color: var(--red);
  font-size: 1.3rem;
}

.content-header p {
  color: #6B7280;
  font-size: 0.9rem;
  margin: 0;
}

/* Notice Cards */
.notice-card {
  background: white;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  border: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.notice-card:focus-within {
  outline: 3px solid #3B82F6;
  outline-offset: 2px;
}

.notice-card:hover::before {
  transform: scaleY(1);
}

.notice-card:hover {
  transform: translateX(3px);
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.12);
  border-color: #3B82F6;
}

.card-content {
  flex: 1;
  min-width: 0;
}

.card-date {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6B7280;
  font-size: 0.8rem;
  font-weight: 500;
}

.card-date i {
  font-size: 0.9rem;
  color: #9CA3AF;
}



.card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1F2937;
  line-height: 1.5;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.card-title a:hover {
  color: #3B82F6;
}

.card-title a:focus {
  outline: 2px solid #3B82F6;
  outline-offset: 2px;
  border-radius: var(--bsd-rounded);
}

.card-icon {
  color: #3B82F6;
  display: flex;
  font-size: 1.4rem;
  transition: transform 0.3s ease;
  line-height: var(--bsd-leading-none);
}

.notice-card:hover .card-icon {
  transform: translateX(3px);
}

.view-all-section {
  text-align: center;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 2px solid #E5E7EB;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

/* Scroll Animation */
.notice-card {
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInLeft 0.6s ease forwards;
}

.notice-card:nth-child(1) {
  animation-delay: 0.1s;
}

.notice-card:nth-child(2) {
  animation-delay: 0.2s;
}

.notice-card:nth-child(3) {
  animation-delay: 0.3s;
}

.notice-card:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .tab-layout {
    flex-direction: column;
  }

  .tab-sidebar {
    width: 100%;
    padding: 25px 0;
  }

  .tab-buttons {
    flex-direction: row;
    overflow-x: auto;
    padding: 0 15px 15px;
  }

  .tab-button {
    min-width: 180px;
    padding: 14px 16px;
  }

  .tab-content-area {
    padding: 25px 20px;
  }

  .content-header h3 {
    font-size: 1.3rem;
  }

  .content-header p {
    font-size: 0.85rem;
  }

  .card-title {
    font-size: 0.95rem;
  }

  .card-date {
    font-size: 0.75rem;
  }

  .view-all-btn {
    font-size: 0.9rem;
    padding: 11px 28px;
  }
}

@media (max-width: 576px) {
  .tab-button {
    min-width: 150px;
    padding: 12px 14px;
    font-size: 0.85rem;
  }

  .tab-button i {
    font-size: 1.2rem;
  }

  .tab-button-title {
    font-size: 0.85rem;
  }

  .tab-button-count {
    font-size: 0.7rem;
  }

  .notice-card {
    padding: 16px 20px;
  }

  .card-title {
    font-size: 0.9rem;
  }

  .card-date {
    font-size: 0.7rem;
  }

  .content-header h3 {
    font-size: 1.2rem;
  }

  .view-all-btn {
    font-size: 0.85rem;
    padding: 10px 24px;
  }
}

/* Products Section */
.products-section {
  position: relative;
  min-height: 100%;
}

.product-card {
  border-radius: var(--bsd-rounded-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  background: white;
  border: 2px solid transparent;
  position: relative;
  animation: fadeInUp 0.8s ease;
  animation-fill-mode: both;
}

.col-md-4:nth-child(1) .product-card {
  animation-delay: 0.1s;
}

.col-md-4:nth-child(2) .product-card {
  animation-delay: 0.2s;
}

.col-md-4:nth-child(3) .product-card {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--baseColor);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--hover-shadow);
  border-color: rgba(32, 100, 210, 0.2);
}

.product-image {
  height: 220px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--baseColor);
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}

.product-image::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  background: rgba(32, 100, 210, 0.08);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
}

/* .product-card:hover .product-image::after {
  width: 200px;
  height: 200px;
  background: rgba(32, 100, 210, 0.12);
} */

.product-image i {
  position: relative;
  z-index: 1;
  transition: all 0.5s ease;
  filter: drop-shadow(0 5px 15px rgba(32, 100, 210, 0.2));
}

.product-card:hover .product-image i {
  transform: scale(1.15) rotate(-5deg);
}

.product-content {
  padding: 30px;
  background: white;
}

.product-content h3 {
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.product-card:hover .product-content h3 {
  color: var(--baseColor);
}

.product-content p {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.product-link {
  color: var(--baseColor);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.4s ease;
  padding: 0;
  border: none;
  background: transparent;
  position: relative;
  font-size: 1rem;
}

.product-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--baseColor);
  transition: width 0.4s ease;
}

.product-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(32, 100, 210, 0.2);
}

.product-link:hover::before {
  width: 100%;
}

.product-link:hover {
  gap: 12px;
  color: var(--navy);
}

.product-link i {
  transition: all 0.4s ease;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--baseColor);
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
}

.product-link:hover i {
  transform: translateX(5px) rotate(360deg);
  background: var(--navy);
}

/* Badge for featured products */
.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--red);
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(247, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .product-image {
    height: 250px;
    font-size: 3.5rem;
  }

  .product-content {
    padding: 25px 20px;
  }

  .product-content h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .product-content h3 {
    font-size: 1.2rem;
  }

  .product-link {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Team Section */
.team-section {
  background: #f5f5f5;
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.team-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(200, 200, 200, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 200, 200, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  opacity: 0.5;
}

.team-card {
  background: white;
  border-radius: var(--bsd-rounded-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  border-top: 4px solid var(--navy);
  animation: fadeInUp 0.8s ease;
  animation-fill-mode: both;
}

.col-md-6:nth-child(1) .team-card {
  animation-delay: 0.1s;
}

.col-md-6:nth-child(2) .team-card {
  animation-delay: 0.2s;
}

.col-md-6:nth-child(3) .team-card {
  animation-delay: 0.3s;
}

.col-md-6:nth-child(4) .team-card {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.team-image {
  height: 280px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.team-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.05);
}

.team-image i {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.95);
  color: var(--baseColor);
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 4px solid white;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.team-card:hover .team-image i {
  transform: scale(1.1) rotate(5deg);
}

.team-content {
  padding: 30px 25px;
  text-align: center;
  position: relative;
  background: white;
}

.team-content h3 {
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.team-card:hover .team-content h3 {
  color: var(--navy);
}

.team-content .designation {
  color: white;
  background: var(--red);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 10px 16px;
  border-radius: 20px;
  line-height: var(--bsd-leading-none);
}

.team-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.team-contact a {
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 12px 15px;
  border-radius: 8px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
  border: 1px solid #e9ecef;
}

.team-contact a:hover {
  color: var(--navy);
  background: #e8eeff;
  border-color: var(--navy);
  transform: translateX(3px);
}

.team-contact a i {
  transition: transform 0.3s ease;
}

.team-contact a:hover i {
  transform: scale(1.15);
}

/* Responsive */
@media (max-width: 1279px) and (min-width: 992px) {
  .team-contact a {
    font-size: 0.8rem;
    padding: 10px 12px;
    word-break: break-all;
  }

  .team-content {
    padding: 25px 20px;
  }

  .team-content h3 {
    font-size: 1.2rem;
  }

  .team-content .designation {
    font-size: 0.8rem;
    padding: 5px 12px;
  }
}

@media (max-width: 991px) {
  .team-contact a {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .team-image {
    height: 240px;
  }

  .team-image i {
    width: 110px;
    height: 110px;
    font-size: 4rem;
  }
}

@media (max-width: 576px) {
  .team-content h3 {
    font-size: 1.2rem;
  }

  .team-content .designation {
    font-size: 0.8rem;
  }

  .team-image {
    height: 220px;
  }
}

/* Calculator widget css */
.calculator-item .calculator-item-content h4 {
  margin-bottom: 20px;
  color: var(--baseColor);
}

/* custom scrollbar */

.calculator-item .calculator-item-content>ul::-webkit-scrollbar {
  width: 20px;
}

.calculator-item .calculator-item-content>ul::-webkit-scrollbar-track {
  background-color: transparent;
}


.calculator-item .calculator-item-content>ul::-webkit-scrollbar-thumb {
  background-color: #d6dee1;
  border-radius: 20px;
  border: 6px solid transparent;
  background-clip: content-box;
}


.calculator-item .calculator-item-content>ul::-webkit-scrollbar-thumb:hover {
  background-color: #a8bbbf;
}

.calculator-item .calculator-item-content>ul {
  max-height: 230px;
  overflow-y: scroll;
}

.calculator-item .calculator-item-content>ul>li {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: -0.01em;
  color: #555C63;
  width: 100%;
  max-width: 449px;
  margin-bottom: 15px;
}


.calculator-item,
.sidebar_widget {
  background-color: #ffffff;
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0px 20px 60px 10px #00000012;
  overflow: hidden;
}

.calculator-widget .single-calculator-widget label {
  font-size: 16px;
  font-weight: 600;
  color: var(--thm-title-color);
}

.calculator-widget .interestBox {
  border-radius: 5px;
  display: inline-block;
  border: 1px solid #dcdee0;
}

.calculator-widget .calculator-result-widget>div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.calculator-widget .calculator-result-widget>div:last-child {
  margin-bottom: 0;
}

.calculator-widget .calculator-result-widget h6 {
  font-weight: 600;
  font-size: 16px;
  position: relative;
  color: var(--theme-title-color);
  margin: 0;
}

.calculator-widget .calculator-result-widget p {
  color: var(--thm-base);
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 0;
}

.sidebar_widget .post-block-list .list-post {
  margin-bottom: 0;
  display: flex;
  gap: 20px;
}

.sidebar_widget .post-block-list .list-post li {
  margin-bottom: 15px;
  width: 40%;
}

.post-thumb img {
  object-fit: cover;
}

.post-thumb-80 img {
  max-width: 90px;
  height: 4rem;
}

.post-title a {
  color: inherit;
  display: inline;
  padding-bottom: 0;
  font-size: 17px;
}

.post-title a:hover {
  color: var(--thm-base);
}

/* .post-content .post-title {
    margin-bottom: 4px;
} */

.post-content .entry-meta {
  line-height: 1;
}

@media (max-width:767px) {
  .sidebar_widget {
    margin-bottom: 20px;
  }
}

.post-thumb-80 .default-wrap img {
  padding: 20px;
  height: auto;
  width: 85px;
}

.card-shadow {
  box-shadow: 0 9px 14px -4px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: none;
}

.result-card {
  background: var(--primary-gradient);
  color: white;
  padding: 10px 20px;
}

.breakdown-item {
  transition: all 0.3s ease;
  border: none;
}

.breakdown-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-preview {
  background: linear-gradient(to right, #9333ea, #3b82f6);
  border: none;
  color: white;
  transition: all 0.3s ease;
}

.btn-preview:hover {
  opacity: 0.9;
  transform: scale(1.05);
  color: white;
}

.calculator-widget .input-group-text.loan {
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.calculator-widget .input-group-text {
  background-color: #e9ecef;
  border-color: #ced4da;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.table-hover tbody tr:hover {
  background-color: #f8f9fa;
}

.modal-content {
  border-radius: 1rem;
  border: none;
}

.modal-header {
  border-bottom: 1px solid #dee2e6;
}

.btn-close-custom {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #6c757d;
  cursor: pointer;
}

.btn-close-custom:hover {
  color: #495057;
}

.breakdown-value-blue {
  color: #2563eb;
}

.breakdown-value-green {
  color: #16a34a;
}

.breakdown-value-red {
  color: #dc2626;
}

.breakdown-value-purple {
  color: #9333ea;
}

.breakdown-value-indigo {
  color: #4f46e5;
}


/* Our Partner */
.usefulLinks .bsd-ourPartner,
footer .usefulLinks .bsd-ourPartner {
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
  z-index: 1;
  width: 100%;
  background: #fff;
  margin-top: -3.75rem;
}

.usefulLinks .bsd-ourPartner {
  margin-top: 0;
}

.usefulLinks .bsd-ourPartner h2 {
  color: #111;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.usefulLinks .bsd-ourPartner ul {
  margin: 0;
  padding: 0;
}

.usefulLinks .bsd-ourPartner ul li {
  margin: 0 0.75rem;
  display: inline;
}

.usefulLinks .bsd-ourPartner ul li img {
  height: 3rem;
  width: auto;
}

.usefulLinks .bsd-ourPartner ul li img:hover {
  filter: gray;
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
  transition: all 0.3s ease 0s;
}

/* Footer */
.footer {
  background: var(--navy);
  color: var(--text-light);
}

.footer .top-footer {
  padding: 50px 0 0;
}

.footer h5 {
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer h5:after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background: var(--light-blue);
  bottom: 0;
  left: 0;
  border-radius: var(--bsd-rounded-sm);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  font-size: 0.95rem;
  background: transparent;
  border: none;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--baseColor);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-links a:hover {
  color: #ffffff;
}

.contact-info {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 10px;
  border-radius: 8px;
}

.contact-info li:hover {
  color: #ffffff;
  background: rgba(32, 100, 210, 0.1);
}

.contact-info i {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 3px;
  font-size: 1.2rem;
  min-width: 24px;
  background: rgba(32, 100, 210, 0.15);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-info li:hover i {
  background: var(--baseColor);
  color: white;
}

.social-links-footer {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.social-links-footer a {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  font-size: 1.2rem;
}

.social-links-footer a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--baseColor);
  transform: scale(0) rotate(45deg);
  transition: transform 0.4s ease;
  border-radius: 12px;
  z-index: -1;
}

.social-links-footer a:hover::before {
  transform: scale(1) rotate(0deg);
}

.social-links-footer a:hover {
  transform: translateY(-8px);
  border-color: var(--baseColor);
  box-shadow: 0 10px 25px rgba(32, 100, 210, 0.4);
}

.social-links-footer a i {
  display: flex;
  line-height: var(--bsd-leading-none);
}

.copyright {
  background: rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin-top: 60px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.copyright p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.copyright a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.copyright a:hover {
  color: var(--text-light);
  text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
  .contact-info li {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .top-header {
    background-color: #ffffff;
  }
  .logo img {
    height: 50px;
  }

  .mobile-topnav .select-lang .navbar-language .dropdown-toggle,
  .mobile-topnav .select-lang i {
    color: #0f1011;
  }

  .hero-section h1 {
    font-size: 2.8rem;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    padding: 0;
  }

  .banner-content {
    margin-left: 5%;
    padding: 30px;
  }

  .banner-content h2 {
    font-size: 2rem;
  }

  .banner-nav {
    display: none;
  }

  .highlight-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .tab-container {
    flex-direction: column;
  }

  .tab-buttons {
    width: 100%;
    display: flex;
  }

  .tab-button {
    flex: 1;
    text-align: center;
    border-left: none;
    border-bottom: 4px solid transparent;
  }

  .tab-button.active {
    border-left: none;
    border-bottom: 4px solid var(--light-blue);
  }

  .header-top-left-items {
    font-size: 0.8rem;
    gap: 10px;
  }

  .header-slider {
    max-width: 100%;
    margin-top: 15px;
  }

  .usefulLinks .bsd-ourPartner ul li {
    margin: 0 0.75rem 0.75rem;
    display: inline-block;
  }

  footer .top-footer {
    padding: 40px 0 0;
  }

  footer .social-links-footer {
    margin-bottom: 10px;
  }

  .social-links-footer a {
    width: 38px;
    height: 38px;
  }

  .copyright {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: var(--section-padding);
  }

  .hero-section h1 {
    font-size: 2.2rem;
  }

  .tab-buttons {
    flex-direction: column;
  }

  .top-header {
    padding: 10px 0;
  }

  .banner-slider {
    height: 400px;
  }

  .banner-content {
    padding: 20px;
    margin: 0 5%;
  }

  .banner-content h2 {
    font-size: 1.8rem;
  }

  .banner-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .usefulLinks .bsd-ourPartner ul li {
    width: 100%;
  }

  footer .bsd-ourPartner {
    padding: 2rem 1.5rem;
    margin-top: -4rem;
  }

  footer .bsd-ourPartner h2 {
    font-size: 1.3rem;
  }

  footer .bsd-ourPartner ul {
    gap: 1.5rem;
  }

  footer .bsd-ourPartner ul li img {
    height: 3rem;
  }

  .footer h5 {
    font-size: 1.15rem;
    margin-bottom: 20px;
  }

  .social-links-footer a {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  footer .bsd-ourPartner {
    padding: 1.5rem 1rem;
  }

  footer .bsd-ourPartner ul {
    gap: 1rem;
  }

  .contact-info li {
    padding: 8px;
  }

  .contact-info i {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

/* Download Event List */
.download-event-list table th {
  font-weight: normal;
  text-align: left;
  text-transform: uppercase;
  border: 0;
}

.download-event-list table thead th {
  color: #585858;
  background-color: #ccd5db;
}

.download-event-list.min-width-space table thead th:first-child {
  width: 50%;
}

.download-event-list table {
  margin-bottom: 0;
}

.download-event-list table thead th,
.download-event-list table tbody>tr>td {
  border-top: none;
  font-weight: normal;
  font-size: 15px;
  vertical-align: middle;
}

[lang="en"] .download-event-list table tbody>tr>td {
  font-size: 14px;
}

.download-event-list table tbody>tr:nth-child(2n) {
  background-color: #eeeeee;
}

.check-list li .table a,
.table a {
  color: #212529;
  font-size: 15px;
  font-weight: normal;
}

.svg-inline--fa {
  display: inline-block;
  font-size: inherit;
  /*height: 0.9rem;*/
  overflow: visible;
  vertical-align: -.125em;
}

.svg-inline--fa.fa-w-16 {
  width: 0.9rem;
}

.table a.btnViewFile,
.btnViewFile {
  background: var(--thm-base);
  color: #ffffff;
}

.Download-container_table .table td {
  border-top: none;
}

.Download-container_table {
  margin-top: 30px;
}

@media (max-width:991px) {
  .Download-container_table {
    margin-bottom: 80px;
  }
}

.table-striped tbody tr td {
  box-shadow: none;
}

.Download-container_table .table tbody tr>td>table>tbody>tr {
  border-width: 1px 0;
  border-style: solid;
  border-color: #dee2e6;
  margin-bottom: 10px;
}

.Download-container_table table thead th:first-child {
  width: 50%;
}

.Download-container_table.table_file table thead th:first-child {
  width: 80%;
}

.Download-container_table .btn-box {
  margin-top: 15px;
}

/* Inner Page Styles */
.page-header {
  color: white;
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
  height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-header:before {
  content: '';
  background: var(--secondary-gradient);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

/* Page Content */
.page-content {
  padding-bottom: 8rem;
}

@media (max-width:991px) {
  .page-content {
    padding-bottom: 2.5rem;
  }
}

.content-sidebar {
  position: sticky;
  top: 30px;
}

.sidebar-menu {
  background: white;
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.sidebar-title {
  background: var(--primary-gradient);
  color: white;
  padding: 20px;
  margin: 0;
  font-weight: 600;
}

.sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-nav-item {
  width: 100%;
  border-bottom: 1px solid #eee;
}

.sidebar-nav-link {
  display: block;
  padding: 15px 20px;
  color: var(--navy);
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
}

.sidebar-nav-link:hover, .sidebar-nav-link.active {
  background: rgba(0, 71, 255, 0.05);
  color: var(--light-blue);
  padding-left: 25px;
}

.sidebar-nav-link.active:after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--light-blue);
}

.content-main {
  padding-left: 40px;
}

.section-title {
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.about-intro {
  margin-bottom: 50px;
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-box {
    display: flex;
    column-gap: 20px;
    background-color: #f2f4f8;
    border: 1px solid #e7e7e7;
    padding: 30px;
    transition: all 0.5s;
}
.about-box:hover {
    transform: translateY(10px);
}
.about-icon {
    font-size: 50px;
    transition: all 0.5s;
    transform: scaleX(1);
}
.about-box:hover .about-icon {
    transform: scaleX(-1);
}
.about-detail h5 {
  margin-bottom: 10px;
  line-height: 1;
}
.about-detail p{
    margin-bottom: 0;
}

.milestone-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: all 0.3s;
  height: 100%;
}

.milestone-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.milestone-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 1.5rem;
}

.milestone-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.milestone-text {
  color: #666;
  font-weight: 500;
}

.team-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.3s;
  margin-bottom: 30px;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.team-image {
  height: 250px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-info {
  padding: 20px;
  text-align: center;
}

.team-name {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.team-position {
  color: var(--light-blue);
  margin-bottom: 15px;
  font-weight: 500;
}

.team-description {
  color: #666;
  font-size: 0.9rem;
}

.values-section {
  background: #f8f9fa;
  padding: 80px 0;
  margin: 80px 0;
}

.value-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: all 0.3s;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 1.8rem;
}

.value-card h3 {
  color: var(--navy);
  margin-bottom: 15px;
  font-weight: 600;
}

.value-card p {
  color: #666;
}

@media (max-width: 991px) {
  .content-main {
    padding-left: 0;
  }
  
  .about-intro {
    margin-bottom: 0;
  }

}


/************************************/
/***   Gallery Page Css    ***/
/************************************/
.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255,255,255,.3);
  transform: translate(-50%,-50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.gallery-item{
    position: relative;
}

.gallery-image{
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-image img{
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 0.8;
    transition: all 0.4s ease-in-out;
}

.gallery-item:hover .gallery-image img{
    transform: scale(1.1);
}

.gallery-content{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gallery-content a{
    color: inherit;
}

.gallery-content h3{
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 0;
}

.gallery-btn{
	margin-left: 20px;
	text-align: right;
}

.photo-gallery-item .gallery-item .gallery-image,
.photo-gallery-item .news-list-item .news-image {
  position: relative;
  overflow: hidden;
}

.photo-gallery-item .overlay-box {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.photo-gallery-item .overlay-box:before {
  position: absolute;
  content: '';
  left: -100%;
  top: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.85;
  display: flex;
  align-items: center;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  background-color: rgba(0,0,0,0.80);
}

.photo-gallery-item .gallery-item:hover .gallery-image .overlay-box:before,
.photo-gallery-item .news-list-item:hover .news-image .overlay-box:before  {
  left: 0%;
}

.photo-gallery-item .overlay-box .detail-link,
.photo-gallery-item .overlay-box .gallery-popup{
  background-color: #ffffff;
  width: 54px;
  height: 54px;
  color: #012068;
  font-size: 18px;
  line-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  font-weight: 700;
  margin-left: -27px;
  margin-top: -27px;
  
  transform: scale(0,0);
  -moz-transform: scale(0,0);
  -webkit-transform: scale(0,0);
  -ms-transform: scale(0,0);
  -o-transform: scale(0,0);
  
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.photo-gallery-item .overlay-box .detail-link i:before {
  font-weight: 600 !important;
}

.photo-gallery-item .news-list-item:hover .news-image .overlay-box .detail-link,
.photo-gallery-item .news-list-item:hover .news-image .overlay-box .gallery-popup,
.photo-gallery-item .gallery-item:hover .gallery-image .overlay-box .gallery-popup  {
  transform: scale(1,1);
  -moz-transform: scale(1,1);
  -webkit-transform: scale(1,1);
  -ms-transform: scale(1,1);
  -o-transform: scale(1,1);
}

@media (max-width: 767px) {
  .gallery-content h3 {
    font-size: var(--bsd-text-lg);
  }
}

/************************************/
/***   Video Gallery Page Css    ***/
/************************************/
.video-post-wrap ul {
  padding-left: 0;
  list-style: none;
  display: flex;
}

.video-post-area .video-post-wrap ul li:nth-child(-n+2) {
  margin-top: 0;
}

.YouTubeVideoContainer {
  width: 100%;
  height: 230px;
  border-top-left-radius: var(--bsd-rounded-lg);
  border-top-right-radius: var(--bsd-rounded-lg);
  overflow: hidden;
}

.wigdet-video-post {
  height: 400px; /* or any consistent value */
  overflow: hidden;
}

.wigdet-video-post .portfolio-title {
  color: var(--navy);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
}

.portfolio-content {
  padding: 16px;
  background-color: #fff;
}


/* <= 400px */
@media (max-width: 400px) {
  .video-post-wrap .YouTubeVideoContainer {
    height: 175px;
  }
}

/* 401px – 480px */
@media (min-width: 401px) and (max-width: 480px) {
  .video-post-wrap .YouTubeVideoContainer {
    height: 200px;
  }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
  .video-post-wrap .YouTubeVideoContainer {
    height: 250px;
  }
}

/* 768px – 991px */
@media (min-width: 768px) and (max-width: 991px) {
  .video-post-wrap .YouTubeVideoContainer {
    height: 180px;
  }

  .widget.video {
    margin-top: 40px;
  }

  .widget.video.ps-3 {
    padding-left: 0 !important;
  }
}

/* 992px – 1199px */
@media (min-width: 992px) and (max-width: 1199px) {
  .video-post-wrap .YouTubeVideoContainer {
    height: 164px;
  }
}

/* 1200px – 1399px */
@media (min-width: 1200px) and (max-width: 1399px) {
  .video-post-wrap .YouTubeVideoContainer {
    height: 190px;
  }
}

/************************************/
/***   Service Page Css    ***/
/************************************/
.service-card {
    background: #ffffff;
    border: none;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(32, 100, 210, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(32, 100, 210, 0.2);
    border: 2px solid var(--baseColor);
}

.service-card .service-icon {
    transition: transform 0.3s ease;
    z-index: 2;
    position: relative;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
}

/* Decorative elements */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(32, 100, 210, 0.05) 0%, rgba(32, 100, 210, 0.05) 100%);
  z-index: 0;
}

.shape-1 {
  width: 120px;
  height: 120px;
  top: -40px;
  right: -40px;
}

.shape-2 {
  width: 80px;
  height: 80px;
  bottom: -20px;
  left: -20px;
}

@media (max-width: 768px) {
  .service-card {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 576px) {
  .service-card {
    padding: 1.2rem 0.8rem;
  }
}

/* Service Listing */
.services-image {
  display: block;
  position: relative;
  overflow: hidden;
}
.services-image img {
  transition: 0.5s;
  background-size: cover;
  width: 100%;
}
.services-image img:nth-child(1) {
  transform: translatex(50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.services-image img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  object-fit: cover;
}
.services-overlay {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--easilon-black-rgb, 43, 43, 94), 0.8);
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(-20%);
  z-index: 1;
  transition: opacity 500ms ease, transform 500ms ease;
}
.services-card:hover .services-overlay {
  opacity: 1;
  transform: translateY(0);
}
.services-card:hover .services-image img:nth-child(1) {
  transform: translatex(0) scalex(1);
  opacity: 1;
  filter: blur(0);
}
.services-card:hover .services-image img:nth-child(2) {
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.services-content {
  padding: 20px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background-color: var(--easilon-white, #ffffff);
}
@media (max-width: 1199px) {
  .services-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.services-title {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  text-transform: capitalize;
}
.services-title:hover {
  color: var(--navy, #003366);
}
.services-title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.services-title a:hover {
  background-size: 100% 1px;
}
.services-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--navy, #003366);
  transition: all 500ms ease;
  line-height: 10px;
}
.services-btn:hover {
  background-color: var(--navy, #003366);
}
.services-btn__icon {
  display: inline-flex;
  font-size: 14px;
  color: var(--navy, #003366);
  transition: all 500ms ease;
}
.services-btn__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.services-btn:hover .services-btn__icon {
  color: var(--text-light, #ffffff);
  animation: sliderLeft 0.5s;
}

@keyframes sliderLeft {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  51% {
    opacity: 1;
  }
}

ul.features-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  margin-bottom: 20px;
  margin-top: 20px;
}
ul.features-list li {
  position: relative;
  width: 45%;
  margin-left: 24px;
}
ul.features-list li::after {
  content: url(../images/resources/star-shape.svg);
  position: absolute;
  top: 5px;
  left: -24px;
  line-height: 15px;
}

/************************************/
/***   Faq Css    ***/
/************************************/
.faq-wrap {
  margin-bottom: 40px;
}

.faq-wrap:last-child {
  margin-bottom: 0;
}

.faq-wrap h5 {
  font-size: var(--bsd-text-2xl);
  font-weight: var(--bsd-font-bold);
  line-height: var(--bsd-leading-7);
  margin-bottom: 20px;
}

.faq-wrap.sticky{
  position: sticky;
  top: 100px;
}

.faq-right {
  background-color:rgb(6 21 37 / 95%) ;
}

.faq-right-inner {
    position: relative;
    padding: 45px;
}
.faq-right-inner h4{
    color: var(--text-light);
    font-size: var(--bsd-text-xl);
    line-height: var(--bsd-leading-7);
    margin-bottom: 14px;
}
.faq-right-inner>p{
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.8);
}
.faq-right-inner .faq-details {
    margin: 14px 0 30px;
}
.faq-details p{
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.8);
}
.faq-right-inner a:hover{
    background-color: var(--text-light);
    color: #0f1011;
}
.faq-right-inner a::after{
    display: none;
}

.accordion-item ,
.accordion-item:first-of-type, .accordion-item:last-of-type{
  border: 1px solid #ebebeb !important;
  border-radius: 0;
}
.accordion-item:first-of-type>.accordion-header .accordion-button,
.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed{
  border-radius: 0;
}
.accordion-button:not(.collapsed){
  background-color: #f2f4f8;
  color: var(--navy);
  box-shadow: none;
}
.accordion-button:focus{
  box-shadow:none ;
}
.accordion-item+.accordion-item {
  margin-top: 18px;
}
.accordion-button{
  padding: 25px;
  background-color: #f2f4f8;
  color: var(--navy);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.02em;
}
.accordion-body{
  padding: 25px 55px;
}
.accordion-body p{
  margin-bottom: 0;
}
.fqa-block.stcky{
  position: sticky;
  top: 100px;
}
.accordion-button::after{
  background-image: url(../images/resources/arrow-up.png);
}
.accordion-button:not(.collapsed)::after{
  background-image: url(../images/resources/arrow-up.png);
}


/************************************/
/***   News page Css    ***/
/************************************/
.news-list-item {
  background-color: #f2f4f8;
}

.news-item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background-color: var(--navy);
}

.news-item-meta date {
  color: var(--text-light);
}

.news-image img {
  width: 100%;
  height: 450px;
}

@media (max-width:1199px) {
  .news-image img {
    height: 380px;
  }
}

@media (max-width:767px) {
  .news-image img {
    height: auto;
  }
}


.news-item-details {
    border: 1px solid #F2F4F8;
    border-top: none;
    padding: 20px;
}

.news-item-details h5 {
  margin-bottom: 18px;
  line-height: var(--bsd-leading-9);
}

.news-item-details h5 a {
  color: #0f1011;
  font-size: var(--bsd-text-xl);
  font-weight: 500;
  text-decoration: none;
}

.news-list-item:hover .btn-link i{
  transform: rotate(-45deg);
}

.news-item-details .btn-link{
  transition: all 0.8s ;
}

.news-item-details .btn-link span{
  max-width: 0;
  overflow: hidden;
  text-wrap: nowrap;
  display: inline-block;
  transition: max-width 4s linear;
}

.news-item-details .btn-link:hover span{
  max-width: 1000px;
}

.single-news-details {
  margin-top: 40px;
}

.single-news-details h3 {
  color: #0f1011;
  font-weight: 600;
  font-size: var(--bsd-text-3xl);
  margin-bottom: 20px;
}

/* Single News Sidebar */
.news-sidebar {
  padding: 30px;
  background-color: #f2f4f8;
  border-radius: var(--bsd-rounded-xl);
}
.news-sidebar.stcky {
  position: sticky;
  top: 30px;
}

.news-news h4 {
  margin-bottom: 16px;
  font-weight: 700;
}

.recent-news-widget-item img {
  width: 85px;
  height: 88px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  flex-shrink: 0;
}

.recent-news-widget-item {
  display: flex;
  column-gap: 12px;
  align-items: center;
}

.recent-news-widget-item+.recent-news-widget-item {
    margin-top: 14px;
}

.recent-news-widget-item-title span {
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 20px;
  color: #5a5a5a;
  display: block;
}

.recent-news-widget-item-title a {
  color: #0f1011;
  margin-bottom: 0;
  line-height: 24px;
  font-weight: 500;
}

/************************************/
/***   Team page Css    ***/
/************************************/
.team-box {
  position: relative;
  overflow: hidden;
}

.team-box .team-image {
  position: relative;
  display: block;
  height: 380px;
}

.team-details {
  position: absolute;
  bottom: 15px;
  left: 15px;
  width: calc(100% - 30px);
}

.team-details-inner {
  padding: 30px;
  text-align: center;
  background-color: var(--navy);
}

.team-details h5{
  color: var(--text-light);
  margin-bottom: 6px;
}

.team-details p{
  color: var(--text-light);
  margin-bottom: 0;
  position: relative;
  font-size: 14px;
  line-height: 20px;
  text-transform: capitalize;
}

.team-details .team-social-media {
  font-size: 18px;
  opacity: 0;
  visibility: hidden;
  transform-origin: bottom;
  transform: scaleY(0) translateZ(100px);
  transition: all 0.7s ease;
  border-top: 0.3px solid #918b8b;
  max-height: 0px;
}

.team-social-media i {
  height: 32px;
  width: 32px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
}

.team-social-media ul {
  display: flex;
  column-gap: 8px;
  justify-content: center;
}

.team-box:hover .team-social-media {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1) translateZ(0px);
  max-height: 100px;
  margin-top: 10px;
  padding-top: 10px;
}

.team-details-block {
  margin-bottom: 40px;
}
.team-details-item>h3 {
  font-weight: 700;
  margin-bottom: 18px;
}
.team-details-item ul li{
  padding: 18px 0;
  border-top: 1px solid #c2c2c2;
}
.team-details-item ul li h4 {
  font-size: 16px;
  margin-bottom: 0;
  line-height: var(--bsd-leading-9);
}
.team-details-item ul li h3{
  font-weight: 700;
  margin-bottom: 14px;
}

.team-details-item ul li p {
  margin-bottom: 0;
}

.team-details-block h3{
  font-weight: 700;
  margin-bottom: 14px;
}
.team-details-block .team-images img {
  height: 450px;
  object-fit: cover;
}
ul.team-details-list{
  display: flex;
  row-gap: 14px;
  padding-left: 26px;
  flex-wrap: wrap;
}
ul.team-details-list li{
  position: relative;
  width: 100%;
}
ul.team-details-list li::after{
  content: url(../images/resources/star-shape.svg);
  position: absolute;
  top: 6px;
  left: -24px;
  line-height: 15px;
}

/************************************/
/***   Download page Css    ***/
/************************************/
.download-table {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.download-table .table-header {
  background-color: #e9ecef;
  padding: 15px 20px;
  font-weight: 600;
  border-bottom: 1px solid #dee2e6;
}

.download-table .download-row {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #dee2e6;
  transition: background-color 0.2s;
}
.download-table .download-row:hover {
  background-color: #f8f9fa;
}
.download-table .download-row:last-child {
  border-bottom: none;
}
.download-table .file-name {
  flex: 2;
  font-weight: 500;
}
.download-table .file-date {
  /* flex: 1; */
  color: #6c757d;
}
.download-table .download-btn {
  flex: 0 0 auto;
}
.download-table .file-icon {
  margin-right: 10px;
  color: #6a11cb;
}
.download-table .empty-state {
  text-align: center;
  padding: 40px 20px;
  color: #6c757d;
}
.download-table .empty-state i {
  font-size: 48px;
  margin-bottom: 15px;
  color: #dee2e6;
}
@media (max-width: 768px) {
  .download-table .download-row {
      flex-direction: column;
      align-items: flex-start;
  }
  .download-table .file-name, .download-table .file-date, .download-table .download-btn {
      width: 100%;
      margin-bottom: 10px;
  }
  .download-table .download-btn {
      text-align: right;
  }
}

/************************************/
/***   Contact page Css    ***/
/************************************/
.contact-top-box {
  position: relative;
  z-index: 1;
  background: #EDF2F7;
  padding: 32px;
  border-radius: 8px;
  transition: all 0.4s;
  height: 100%;
}

.contact-top-box:hover {
  transform: translateY(-5px);
  transition: all 0.4s;
}

.contact-top-box:hover .contact-box .icons {
  background: var(--navy);
  transition: all 0.4s;
  transform: rotateY(-180deg);
}

.contact-top-box .contact-box {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.contact-top-box .contact-box .icons {
  height: 80px;
  width: 80px;
  text-align: center;
  line-height: 80px;
  display: inline-block;
  transition: all 0.4s;
  border-radius: 8px;
  background: var(--navy);
  flex-shrink: 0;
}

.contact-top-box .contact-box .text {
  padding-left: 24px;
  flex-grow: 1;
}

.contact-top-box .contact-box .text span {
  font-size: var(--bsd-text-base);
  font-style: normal;
  font-weight: var(--bsd-font-normal);
  line-height: 26px;
  display: block;
}

.contact-top-box .contact-box .text h4 {
  color: var(--navy);
  font-size: var(--bsd-text-1xl);
  font-style: normal;
  font-weight: var(--bsd-font-semibold);
  line-height: 26px;
  display: inline-block;
  padding-top: 16px;
}

.contact-top-box .call {
  padding-top: 32px;
  border-top: 1px solid var(--text-light);
  margin-top: 32px;
}

.contact-top-box .call a {
  color: var(--navy);
  font-size: var(--bsd-text-base);
  font-style: normal;
  font-weight: var(--bsd-font-normal);
  line-height: 26px;
  display: block;
  transition: all 0.4s;
  cursor: text;
  pointer-events: none;
}

.contact-top-box .call span,
.contact-top-box .call a:hover {
  transition: all 0.4s;
}

.maps-area iframe {
  height: 525px;
  width: 100%;
}

@media (max-width: 991px) {
  .maps-area iframe {
    height: 375px;
  }
}

.contact-inner-area .contact-header-area {
    padding: 0 0 0 50px;
}

.contact-header h2 {
  color: var(--navy);
  font-size: var(--bsd-text-5xl);
  font-style: normal;
  font-weight: var(--bsd-font-semibold);
  line-height: var(--bsd-leading-10);
  display: inline-block;
  transition: all 0.4s;
}

.contact-header p {
  font-size: var(--bsd-text-base);
  font-style: normal;
  line-height: 24px;
}

.contact-header-area .form-group input {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(6, 29, 25, 0.1);
  background: var(--text-light);
  color: var(--navy);
  font-size: var(--bsd-text-base);
  font-style: normal;
  font-weight: var(--bsd-font-normal);
  line-height: 16px;
  padding: 16px;
}

.contact-header-area .form-group textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(6, 29, 25, 0.1);
  background: var(--text-light);
  color: var(--navy);
  font-size: var(--bsd-text-base);
  font-style: normal;
  font-weight: var(--bsd-font-normal);
  line-height: 16px;
  padding: 16px;
  height: 120px;
}