:root {
  --primary-color: #107e7d;
  --secondary-color: #6c757d;
  --accent-color: #8FE388;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  scroll-behavior: smooth;
}

.text-primary {color: #159a97 !important;}

/* Navigation */
.navbar {
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  align-content: space-between;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-link {
  font-weight: 500;
  margin: 0 10px;
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

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

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

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/assets/img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
  color: white;
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
  .hero {
      min-height: 100vh;
      height: auto;
      padding: 80px 0;
      text-align: center;
  }

  .hero-content {
      padding-top: 60px;
  }

  .hero h1 {
      font-size: 3rem !important;
  }

  .hero .btn {
      display: block;
      margin-left: auto;
      margin-right: auto; 
      width: 70%;
  }
}

.hero-content {
  animation: fadeInUp 1s ease;
}

/* Sections */
section {
  padding: 80px 0;
}

.section-title {
  position: relative;
  margin-bottom: 50px;
  color: var(--dark-color);
}

.section-title:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

/* About Section */
.about-img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-img:hover {
  transform: scale(1.03);
}

.feature-box {
  padding: 30px;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
  height: 100%;
}

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

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Services Section */
.service-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}

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

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Media Section */
.media-card {
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
  height: 100%;
}

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

/* Experience Section */
.timeline {
  position: relative;
  padding-left: 50px;
}

.timeline:before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--primary-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -50px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
}

/* Contact Section */
.contact-info {
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 10px;
}

.form-control {
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(44, 123, 229, 0.25);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #159a97;
  border-color: #107e7d;
  transform: translateY(-3px);
}

.btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.btn-outline-primary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background-color: rgb(225, 225, 225);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 30px 0;
}

.social-icons a {
  color: white;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: var(--accent-color);
  transform: translateY(-5px);
}

.clickable-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

/* Animations */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--dark-color);
  transform: translateY(-5px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  section {
      padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .hero {
      height: auto;
      padding: 100px 0;
  }
  
  .section-title {
      margin-bottom: 30px;
  }
  
  section {
      padding: 50px 0;
  }
}

@media (max-width: 576px) {
  .hero h1 {
      font-size: 2.2rem;
  }
  
  .hero p {
      font-size: 1rem;
  }
  
  section {
      padding: 40px 0;
  }
}

.credits img {
  max-height: 50px;
}

.credits a img {
  transition: filter 0.3s ease-in-out;
} */

.credits a img:hover {
  filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 1));
}

.credits a img:hover {
  filter: drop-shadow(0px 0px 15px #eb4330) 
          drop-shadow(0px 0px 30px #eb4330);
}

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

.credits a img {
  animation: pulse 2s infinite ease-in-out;
}