:root {
  --default-font: "Jost", sans-serif;
  --heading-font: "Rubik", sans-serif;
  --nav-font: "Jost", sans-serif;
}
/* 3885ae
2c3e50 */
:root {
  --background-color: #ffffff;
  --default-color: #666666;
  --heading-color: #3885ae;
  --accent-color: #e9c446;
  --surface-color: #f5f5f5;
  --contrast-color: #ffffff;
}

:root {
  --primary-blue: #3885ae;
  --secondary-blue: #2984b5;
  --accent-yellow: #f4d03f;
  --accent-gold: #f4c430;
  --light-bg: #f8f9fa;
  --dark-text: #2c3e50;
  --border-radius: 15px;
  --text-light: #ffffff;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

:root {
  --nav-color: #212529;
  --nav-hover-color: #e9c446;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #666666;
  --nav-dropdown-hover-color: #e9c446;
}

:root {
  --primary-color: #3885ae;
  --secondary-color: #f8fafc;
  /* --accent-color: #06b6d4; */
  --text-dark: #2c3e50;
  --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--default-font);
  color: var(--default-color);
  padding-top: 0;
  overflow-x: hidden;
  min-height: 100vh;
  /* padding: 2rem 0; */
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px; /* width for vertical scroll */
  height: 10px; /* height for horizontal scroll */
}

::-webkit-scrollbar-track {
  background: #f1f1f1; /* Track color */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #3885ae; /* Thumb (scroll handle) color */
  border-radius: 10px;
  border: 2px solid #f1f1f1; /* creates spacing around the thumb */
}

::-webkit-scrollbar-thumb:hover {
  background: #2b6f91; /* Thumb hover color */
}

.text-primary {
  color: #3885ae;
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--heading-font);
  color: var(--heading-color);
}
/* Top Bar */
.top-bar {
  background-color: var(--heading-color);
  color: white;
  padding: 8px 0;
  font-size: 14px;
  position: relative;
  z-index: 1000;
}

.top-bar-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.contact-info {
  display: flex;
  gap: 30px;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-bar-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.top-bar-links a:hover {
  color: var(--accent-color);
}

.top-bar-links span {
  color: white;
}

.social-lang {
  display: flex;
  align-items: center;
  gap: 15px;
}

.lang-selector {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  color: white;
  text-decoration: none;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Header */
.header {
  background: white;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 999;
}

.header-content {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center;
  padding: 0 20px;
  margin: 0 auto; /* Center the container itself */
  max-width: 100%;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo img {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 12px;
}

.company-info {
  flex: 1;
  justify-content: center;
}

.company-info h1 {
  color: var(--heading-color);
  font-size: 26px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 5px;
}

.company-info h3 {
  color: var(--text-dark);
  text-align: center;
  font-size: 18px;
  margin-bottom: 5px;
}

.tagline {
  color: var(--accent-color);
  font-style: italic;
  font-size: 14px;
}

.logo-right img {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 10px;
}

/* Sticky Navigation */
.navigation {
  background: var(--heading-color);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navigation.scrolled {
  background: rgba(56, 133, 174, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.nav-menu {
  display: flex;
  list-style: none;
  justify-content: center;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  padding: 15px 20px;
  cursor: pointer;
  align-items: center;
  gap: 10px;
}

.nav-toggle:focus {
  outline: none;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  display: block;
  padding: 15px 20px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-menu a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.nav-menu a:hover::before {
  width: 100%;
}

.nav-menu .dropdown::after {
  /* content: "▼"; */
  margin-left: 5px;
  font-size: 10px;
  transition: transform 0.3s ease;
}

.nav-menu .dropdown:hover::after,
.nav-menu .dropdown.active::after {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.nav-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  color: var(--default-color);
  padding: 12px 20px;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover {
  background: var(--accent-color);
  color: white;
  /* transform: translateX(5px); */
}

.dropdown-menu li:last-child a {
  border-bottom: none;
  border-radius: 0 0 5px 5px;
}

.dropdown-menu li:first-child a {
  border-radius: 5px 5px 0 0;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #1d2f6f;
    flex-direction: column;
    display: none;
    max-height: 80vh;
    overflow-y: auto;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background-color: rgba(255, 255, 255, 0.05);
    margin-left: 20px;
  }

  .dropdown-item {
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .dropdown-submenu .dropdown-menu {
    left: 0;
    margin-left: 40px;
  }

  .top-bar-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .logo-section {
    flex-direction: column;
    gap: 20px;
  }

  .company-info h1 {
    font-size: 20px;
  }

  .company-info h3 {
    font-size: 14px;
  }
}

/* Hero Carousel */
.hero-carousel {
  position: relative;
  height: 500px;
  overflow: hidden;
  margin-top: 0;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  background: var(--heading-color);
  display: flex;
  align-items: center;
}

.carousel-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
}

.slide-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 2;
}

.slide-text {
  flex: 1;
  color: white;
  max-width: 600px;
  animation: slideInLeft 1s ease-out;
}

.slide-text h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-text .swahili {
  color: var(--accent-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.slide-text p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
  background: var(--accent-color);
  color: #2c3e50;
  padding: 15px 40px;
  border: none;
  border-radius: 5px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(233, 196, 70, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-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.5s ease;
}

.cta-button:hover {
  background: #d4ac3a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 196, 70, 0.4);
}

.cta-button:hover::before {
  left: 100%;
}

/* Carousel Navigation */
.carousel-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.carousel-dot.active {
  background: white;
  transform: scale(1.3);
}

.carousel-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 24px;
  padding: 15px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.carousel-arrows:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-slide.active .slide-text {
  animation: slideInLeft 1s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
  .top-bar-content {
    flex-direction: column;
    gap: 10px;
  }

  .contact-info {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    align-items: center;
  }

  .header-content {
    flex-direction: column;
    gap: 15px;
    margin: 0 5%;
  }

  .logo-section {
    flex-direction: column;
    gap: 10px;
  }

  .company-info h1 {
    font-size: 20px;
  }

  .company-info h3 {
    font-size: 16px;
  }

  /* Mobile Navigation */
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--heading-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }

  .nav-menu.active {
    display: flex;
    max-height: 500px;
    animation: slideDown 0.3s ease-out;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu a {
    padding: 15px 20px;
    font-size: 16px;
    display: block;
    width: 100%;
  }

  /* Mobile Dropdown */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .dropdown-menu.active {
    max-height: 200px;
  }

  .dropdown-menu a {
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 30px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    transform: none;
  }

  .slide-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 0 15px;
  }

  .slide-text {
    max-width: 100%;
  }

  .slide-text h2 {
    font-size: 32px;
  }

  .slide-text p {
    font-size: 16px;
  }

  .cta-button {
    font-size: 20px;
    padding: 12px 30px;
  }

  .carousel-arrows {
    width: 40px;
    height: 40px;
    font-size: 18px;
    padding: 10px;
  }

  .prev {
    left: 10px;
  }

  .next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .hero-carousel {
    height: 400px;
  }

  .slide-text h2 {
    font-size: 28px;
  }

  .slide-text p {
    font-size: 14px;
  }

  .cta-button {
    font-size: 18px;
    padding: 10px 25px;
  }
}

.leader-section {
  background: var(--background-color);
  padding: 50px 0;
}

.leader-section .leader-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.leader-card {
  background: var(--contrast-color);
  border-radius: 10px;
  padding: 20px;
  margin-left: auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.leader-card h3 {
  font-size: 20px;
  color: var(--heading-color);
  margin: 5px 10px;
  text-align: center;
}
.leader-card p {
  font-size: 16px;
  color: var(--accent-color);
  margin: 10px 0;
  text-align: center;
  font-weight: bold;
}

.leader-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

.leader-card:hover {
  transform: translateY(-5px);
}

.about-us {
  background: var(--background-color);
  padding: 20px 50px;
  display: flex;
  flex-direction: column;
}
.about-us h2 {
  font-size: 32px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: bolder;
  /* text-align: center; */
  margin-bottom: 20px;
}

.about-us p {
  font-size: 18px;
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 30px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.profile-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.profile-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #007bff, #17a2b8);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.profile-card:hover::before {
  transform: scaleX(1);
}

.profile-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.profile-card.chairman {
  animation: slideInLeft 0.8s ease-out 0.2s both;
}

.profile-card.msajili {
  animation: slideInRight 0.8s ease-out 0.4s both;
}

.profile-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  position: relative;
  border: 4px solid transparent;
  background: linear-gradient(45deg, #007bff, #17a2b8);
  padding: 4px;
  transition: all 0.3s ease;
}

.profile-image:hover {
  animation: pulse 0.6s ease-in-out;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.profile-image:hover img {
  transform: scale(1.1);
}

.profile-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  position: relative;
}

.profile-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: #f39c12;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  position: relative;
}

.profile-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #f39c12, #e67e22);
  border-radius: 1px;
}

.info-section {
  margin-top: 25px;
  background: rgba(248, 249, 250, 0.8);
  backdrop-filter: blur(5px);
  border-radius: 15px;
  padding: 2.5rem;
  animation: slideInRight 0.8s ease-out 0.6s both;
  position: relative;
  overflow: hidden;
}

.info-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(0, 123, 255, 0.1) 0%,
    transparent 70%
  );
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.section-title {
  text-align: center;
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #17a2b8);
  border-radius: 2px;
  transform: scaleX(0);
  animation: expandWidth 1s ease-out 1s both;
}

@keyframes expandWidth {
  to {
    transform: scaleX(1);
  }
}

.info-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #5a6c7d;
  margin-bottom: 2rem;
  text-align: justify;
  position: relative;
}

/* .info-text::first-letter {
            font-size: 3rem;
            font-weight: 700;
            color: #007bff;
            float: left;
            line-height: 2.5rem;
            margin: 0.2rem 0.5rem 0 0;
        } */

.decorative-icon {
  position: absolute;
  color: rgba(0, 123, 255, 0.1);
  font-size: 8rem;
  z-index: 0;
}

.icon-1 {
  top: -2rem;
  right: -2rem;
  animation: rotate 20s linear infinite;
}

.icon-2 {
  bottom: -2rem;
  left: -2rem;
  animation: rotate 20s linear infinite reverse;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-container {
    margin: 1rem;
    border-radius: 15px;
  }

  .profile-card {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .info-section {
    padding: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .info-text {
    font-size: 0.95rem;
  }

  .profile-image {
    width: 100px;
    height: 100px;
  }

  .profile-name {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  body {
    padding: 0;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .decorative-icon {
    font-size: 5rem;
  }
}

/* Loading Animation */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeOut 0.5s ease-out 2s both;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.loader {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-top: 5px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.main-container {
  margin-top: 50xp;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.header-section {
  background: var(--contrast-color);
  color: white;
  padding: 2rem 2rem;
  text-align: center;
  position: relative;
}

.header-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(255,255,255,.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="10" cy="10" r="1" fill="url(%23a)"/><circle cx="30" cy="5" r="1" fill="url(%23a)"/><circle cx="50" cy="15" r="1" fill="url(%23a)"/><circle cx="70" cy="8" r="1" fill="url(%23a)"/><circle cx="90" cy="12" r="1" fill="url(%23a)"/></svg>');
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.main-title {
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 1rem;
  /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); */
  animation: slideInDown 1s ease-out;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-area {
  padding: 3rem 2rem;
}

.service-card {
  background: white;
  height: 310px;
  border-radius: var(--border-radius);
  padding: 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--secondary-blue);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-gold), #e6b800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(244, 196, 48, 0.3);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(244, 196, 48, 0.5);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  text-align: center;
}

.service-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.read-more-btn {
  background: linear-gradient(
    135deg,
    var(--secondary-blue),
    var(--primary-blue)
  );
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.read-more-btn::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.5s;
}

.read-more-btn:hover::before {
  left: 100%;
}

.read-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
}

.sidebar {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  padding: 2rem;
  /* border-radius: var(--border-radius); */
  color: white;
  position: sticky;
  top: 2rem;
}

.sidebar-section {
  margin-bottom: 2rem;
}

.sidebar-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.sidebar-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.more-link {
  background: var(--accent-gold);
  color: var(--dark-text);
  padding: 1rem;
  border-radius: 10px;
  text-decoration: none;
  display: block;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.more-link:hover {
  background: #e6b800;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(244, 196, 48, 0.4);
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .main-title {
    font-size: 2rem;
  }

  .content-area {
    padding: 2rem 1rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .sidebar {
    margin-top: 2rem;
    position: static;
  }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-in forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.breadcrumb {
  background-color: transparent;
  padding: 1rem 0;
}

.breadcrumb-item a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s;
}

.breadcrumb-item a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.service-header {
  background-color: var(--secondary-color);
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 0.15rem 0.5rem rgba(0, 0, 0, 0.05);
}

.service-content {
  line-height: 1.8;
}

.sidebar-card {
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 0.15rem 0.5rem rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.sidebar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.sidebar-card .card-body {
  padding: 1.5rem;
}

.sidebar-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 0.5rem;
}

.sidebar-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
}

.news-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
  transition: all 0.3s;
}

.news-item:hover {
  background-color: rgba(78, 115, 223, 0.05);
  padding-left: 0.5rem;
}

.news-item:last-child {
  border-bottom: none;
}

.news-item a {
  color: #333;
  text-decoration: none;
}

.news-item a:hover {
  color: var(--primary-color);
}

.news-date {
  font-size: 0.8rem;
  color: #6c757d;
}

.view-more-btn {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
  transition: all 0.3s;
}

.view-more-btn:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.service-image {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.service-image img {
  transition: transform 0.5s;
}

.service-image:hover img {
  transform: scale(1.03);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(78, 115, 223, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-size: 1.5rem;
}

/* news section style */
/* .news-section {
  background: var(--background-color);
  padding: 50px 0;
  display: flex;
}

.news-card {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--secondary-blue) 100%
  );
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  position: relative;
  margin-bottom: 2rem;
}

.news-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.8s;
}

.news-card:hover::before {
  transform: translateX(100%);
}

.news-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.news-header {
  text-align: center;
  font-family: var(--heading-font);
  padding: 3rem 2rem 2rem;
  position: relative;
  z-index: 2;
}

.news-title {
  color: var(--text-light);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out;
}

.news-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  animation: slideInLeft 0.6s ease-out;
}

.news-item:nth-child(2) {
  animation-delay: 0.1s;
}
.news-item:nth-child(3) {
  animation-delay: 0.2s;
}
.news-item:nth-child(4) {
  animation-delay: 0.3s;
}
.news-item:nth-child(5) {
  animation-delay: 0.4s;
}

.news-item:last-child {
  border-bottom: none;
}

.news-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.news-text {
  color: var(--accent-yellow);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0;
  transition: all 0.3s ease;
}

.news-icon {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.news-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--accent-yellow);
  color: var(--accent-yellow);
  transform: rotate(45deg) scale(1.1);
} */

.news-card {
  background: white;
  /* border-radius: 16px; */
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  border: none;
  overflow: hidden;
  height: 100%;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.news-card:nth-child(1) {
  animation-delay: 0.1s;
}

.news-card:nth-child(2) {
  animation-delay: 0.2s;
}

.news-card:nth-child(3) {
  animation-delay: 0.3s;
}

.news-card:nth-child(4) {
  animation-delay: 0.4s;
}

.news-card:nth-child(5) {
  animation-delay: 0.5s;
}

.news-card:nth-child(6) {
  animation-delay: 0.6s;
}

.news-card:nth-child(7) {
  animation-delay: 0.7s;
}

.news-card:nth-child(8) {
  animation-delay: 0.8s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.news-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.news-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.news-card:hover .news-image::before {
  left: 100%;
}

.news-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1),
    rgba(6, 182, 212, 0.1)
  );
  transition: opacity 0.3s ease;
}

.news-card:hover .news-overlay {
  opacity: 0.8;
}

.news-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.news-date {
  color: #64748b;
  font-size: 0.8rem;
}

.news-title {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  font-size: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-excerpt {
  color: #64748b;
  font-size: 0.85rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
}

.badge-event {
  background: linear-gradient(135deg, var(--accent-color), #0891b2);
  color: white;
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 15px;
  font-weight: 500;
}

.badge-news {
  background: linear-gradient(135deg, var(--primary-color), #1d4ed8);
  color: white;
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 15px;
  font-weight: 500;
}

.read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.read-more:hover {
  color: var(--accent-color);
  transform: translateX(3px);
}

.read-more i {
  margin-left: 0.25rem;
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(2px);
}

.sidebar-cta {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-light);
  overflow: hidden;
  position: relative;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards 0.5s;
}

.sidebar-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
}

.cta-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.cta-icon i {
  color: white;
  font-size: 1.5rem;
}

.cta-title {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.cta-description {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .container-fluid {
    padding: 2rem 1rem;
  }
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1),
    rgba(6, 182, 212, 0.1)
  );
  animation: float 6s ease-in-out infinite;
}

.floating-circle:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.floating-circle:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 60%;
  left: 5%;
  animation-delay: 2s;
}

.floating-circle:nth-child(3) {
  width: 80px;
  height: 80px;
  top: 30%;
  left: 8%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Image backgrounds */
.img-tech {
  background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.img-event {
  background-image: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.img-community {
  background-image: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.img-innovation {
  background-image: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.img-launch {
  background-image: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.img-workshop {
  background-image: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.img-conference {
  background-image: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.img-webinar {
  background-image: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.image-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: white;
  opacity: 0.9;
}

.content-card {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--secondary-blue) 100%
  );
  /* margin-bottom: 50px; */
  /* border-radius: 20px; */
  box-shadow: var(--shadow);
  padding: 3rem;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.content-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.8s;
}

.content-card:hover::before {
  transform: translateX(100%);
}

.content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.content-text {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  animation: fadeIn 1s ease-out;
}

.action-btn {
  background: var(--accent-yellow);
  color: var(--primary-blue);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(244, 208, 63, 0.3);
}

.action-btn:hover {
  background: #f1c40f;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(244, 208, 63, 0.4);
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.floating-circle:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-circle:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-circle:nth-child(3) {
  width: 40px;
  height: 40px;
  top: 80%;
  left: 60%;
  animation-delay: 4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
  }
  66% {
    transform: translateY(10px) rotate(240deg);
  }
}

@media (max-width: 768px) {
  .news-title {
    font-size: 2rem;
  }

  .news-text {
    font-size: 1.2rem;
  }

  .content-text {
    font-size: 1.5rem;
  }
}

.main-footer {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.main-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="20" cy="80" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0 2rem;
}

.footer-section h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-section h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #3498db, #2980b9);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  /* display: flex; */
  align-items: center;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #3498db;
  transform: translateX(5px);
}

.footer-links a i {
  margin-right: 0.5rem;
  width: 16px;
  text-align: center;
}

.footer-social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.footer-social-link:hover {
  background: rgba(52, 152, 219, 0.8);
  border-color: #3498db;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.footer-contact-info {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item i {
  width: 20px;
  margin-right: 1rem;
  color: #3498db;
}

.newsletter-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.newsletter-input {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 0.75rem 1.25rem;
  color: white;
  width: 100%;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: #3498db;
  box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
  color: white;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
  background: linear-gradient(135deg, #3498db, #2980b9);
  border: none;
  border-radius: 25px;
  padding: 0.75rem 2rem;
  color: white;
  font-weight: 500;
  width: 100%;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background: linear-gradient(135deg, #2980b9, #1f4e79);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-bottom-links {
  text-align: center;
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #3498db;
}

.company-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.company-logo i {
  margin-right: 0.5rem;
  color: #3498db;
}

.company-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.location-map {
  margin-top: 1rem;
}

.map-container {
  position: relative;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.map-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
  border-color: rgba(52, 152, 219, 0.5);
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(52, 152, 219, 0.9), transparent 30%);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.map-container:hover .map-overlay {
  opacity: 1;
}

.map-info {
  color: white;
  font-weight: 600;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.map-info i {
  margin-right: 0.5rem;
  color: #3498db;
}

@media (max-width: 768px) {
  .footer-content {
    padding: 3rem 0 1.5rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }
}

/* Animation for elements coming into view */
.footer-section {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.footer-section:nth-child(1) {
  animation-delay: 0.1s;
}
.footer-section:nth-child(2) {
  animation-delay: 0.2s;
}
.footer-section:nth-child(3) {
  animation-delay: 0.3s;
}
.footer-section:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
