/*--------------------------------------------------------------
# 4. HEADER & NAVIGATION
--------------------------------------------------------------*/
.header {
  position: relative;
  z-index: 1000;
}

/* Logo Section */
.logo-section {
  background: linear-gradient(135deg, rgba(17, 105, 103, 0.03), rgba(34, 179, 175, 0.02));
  padding: 25px 0;
  border-bottom: 1px solid rgba(17, 105, 103, 0.1);
}

.logo-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.main-logo-wrapper {
  flex: 1;
}

.main-logo {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.main-logo:hover {
  transform: translateY(-2px);
}

.logo-image {
  flex-shrink: 0;
}

.logo-image img {
  width: 85px;
  height: 85px;
  object-fit: contain;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.main-logo:hover .logo-image img {
  transform: scale(1.05);
}

.logo-text h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 8px 0;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.main-logo:hover .logo-text h1 {
  color: #116967;
}

.logo-text p {
  font-size: 1.1rem;
  color: #116967;
  margin: 0;
  font-weight: 500;
}

/* Contact Info */
.contact-info {
  flex-shrink: 0;
}

.contact-card {
  display: flex;
  gap: 30px;
  padding: 20px 30px;
  background: linear-gradient(135deg, rgba(17, 105, 103, 0.08), rgba(34, 179, 175, 0.06));
  border-radius: 20px;
  border: 1px solid rgba(17, 105, 103, 0.15);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(17, 105, 103, 0.15);
  background: linear-gradient(135deg, rgba(17, 105, 103, 0.12), rgba(34, 179, 175, 0.08));
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #116967, #22b3af);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(17, 105, 103, 0.3);
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.85rem;
  color: #666;
  margin: 0 0 2px 0;
  font-weight: 500;
}

.contact-value {
  font-size: 0.95rem;
  color: #2c3e50;
  font-weight: 600;
  margin: 0;
}

/* Navigation Bar */
.navbar-section {
  background: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.sticky-navbar {
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar-section.scrolled {
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.navmenu {
  flex: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link  {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 22px !important;
  color: #2c3e50;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(45deg, #116967, #22b3af);
  transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-item:hover .nav-link::before {
  width: 85%;
}

.nav-link:hover,
.nav-item:hover .nav-link {
  color: #116967;
  background: rgba(17, 105, 103, 0.05);
}

/* Dropdown */
.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 240px;
  padding: 15px 0;
  border: none;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 12px 25px;
  color: #2c3e50;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 0 15px;
  font-weight: 500;
}

.dropdown-item:hover {
  background: linear-gradient(135deg, rgba(17, 105, 103, 0.1), rgba(34, 179, 175, 0.08));
  color: #116967;
  transform: translateX(5px);
}

/* Language Switcher */
.navbar-actions {
  flex-shrink: 0;
  margin-left: 25px;
}

.language-selector {
  position: relative;
  padding: 5px;
}

.language-selector .nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px !important;
  background: linear-gradient(135deg, #116967, #22b3af);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(17, 105, 103, 0.3);
  border: none;
}

.language-selector .nav-link::before {
  display: none;
}

.language-selector .nav-link:hover {
  background: linear-gradient(135deg, #0d5250, #1a8a87);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17, 105, 103, 0.4);
  color: white;
}

.language-selector .dropdown-menu {
  right: 0;
  left: auto;
  min-width: 150px;
  margin-top: 5px;
}

.language-selector .dropdown-item {
  text-align: center;
  font-weight: 500;
}

/* Mobile Navigation */
.mobile-nav-wrapper {
  display: none;

}

.mobile-nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: absolute;
  right: 30px;
  top: 5px;  
  z-index: 1001;
}

.mobile-nav-toggle:hover {
  background: rgba(17, 105, 103, 0.1);
}

.hamburger-line {
  display: block;
  width: 25px;
  height: 3px;
  background: #116967;
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-nav-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-nav-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.mobile-nav-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-nav-overlay.active {
  right: 0;
  opacity: 1;
  visibility: visible;
}

.mobile-nav-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
  backdrop-filter: blur(20px);
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  overflow-y: auto;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  scroll-behavior: smooth;
}

.mobile-nav-overlay.active .mobile-nav-content {
  transform: translateX(0);
}

/* Mobile Navigation Header */
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: linear-gradient(135deg, #116967, #22b3af);
  color: white;
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.mobile-logo span {
  font-weight: 600;
  font-size: 1rem;
}

.mobile-nav-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-nav-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Mobile Menu */
.mobile-nav-menu {
  padding: 30px 0;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-item {
  margin-bottom: 5px;
}

.mobile-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  color: #2c3e50;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  direction: rtl;
}

.mobile-nav-link:hover {
  background: linear-gradient(135deg, rgba(17, 105, 103, 0.1), rgba(34, 179, 175, 0.05));
  color: #116967;
  border-left-color: #116967;
  transform: translateX(10px);
}

.mobile-nav-link i {
  font-size: 0.9rem;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover i {
  opacity: 1;
  transform: translateX(5px);
}

/* Mobile Dropdown */
.mobile-dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  background: rgba(17, 105, 103, 0.05);
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-item.dropdown-active .mobile-dropdown-menu {
  max-height: 300px;
  padding: 10px 0;
}

.mobile-nav-item.dropdown-active .mobile-dropdown-toggle i {
  transform: rotate(180deg);
}

.mobile-dropdown-link {
  display: block;
  padding: 12px 50px;
  color: #2c3e50;
  text-decoration: none;
  font-weight: 400;
  font-size: 1rem;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  direction: rtl;
}

.mobile-dropdown-link:hover {
  background: rgba(17, 105, 103, 0.1);
  color: #116967;
  border-left-color: #22b3af;
  transform: translateX(10px);
}

/* Mobile Language Section */
.mobile-language-section {
  padding: 25px;
  border-top: 1px solid rgba(17, 105, 103, 0.1);
  margin-top: 20px;
}

.mobile-language-title {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 500;
}

.mobile-language-options {
  display: flex;
  gap: 10px;
}

.mobile-lang-btn {
  flex: 1;
  padding: 12px;
  background: linear-gradient(135deg, rgba(17, 105, 103, 0.1), rgba(34, 179, 175, 0.05));
  color: #2c3e50;
  text-decoration: none;
  text-align: center;
  border-radius: 10px;
  font-weight: 500;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.mobile-lang-btn:hover,
.mobile-lang-btn.active {
  background: linear-gradient(135deg, #116967, #22b3af);
  color: white;
  border-color: #22b3af;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(17, 105, 103, 0.3);
}

/* Mobile Contact Section */
.mobile-contact-section {
  padding: 25px;
  border-top: 1px solid rgba(17, 105, 103, 0.1);
  background: rgba(17, 105, 103, 0.03);
}

.mobile-contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
}

.mobile-contact-item:last-child {
  margin-bottom: 0;
}

.mobile-contact-item i {
  width: 20px;
  color: #116967;
  font-size: 1rem;
}

.mobile-contact-item span {
  color: #2c3e50;
  font-weight: 500;
  font-size: 0.9rem;
}

/* Body lock when mobile menu is open */
body.mobile-nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Custom Scrollbar */
.mobile-nav-content::-webkit-scrollbar {
  width: 4px;
}

.mobile-nav-content::-webkit-scrollbar-track {
  background: rgba(17, 105, 103, 0.1);
}

.mobile-nav-content::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #116967, #22b3af);
  border-radius: 2px;
}

/*--------------------------------------------------------------
# 5. HERO SECTION
--------------------------------------------------------------*/
.hero {
  position: relative;
  overflow: hidden;
  height: 75vh;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero .carousel {
  height: 100%;
  width: 100%;
}

.hero .carousel-inner {
  height: 100%;
}

.hero .carousel-item {
  height: 100%;
  position: relative;
  background: #000;
}

.hero .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.95;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(17, 105, 103, 0.5) 0%,
    rgba(23, 142, 139, 0.4) 30%,
    rgba(34, 179, 175, 0.3) 60%,
    rgba(17, 105, 103, 0.2) 100%);
  z-index: 2;
}

.carousel-item:nth-child(2) .carousel-overlay {
  background: linear-gradient(45deg, 
    rgba(17, 105, 103, 0.45) 0%,
    rgba(13, 82, 80, 0.5) 50%, 
    rgba(17, 105, 103, 0.35) 100%);
}

.carousel-item:nth-child(3) .carousel-overlay {
  background: linear-gradient(225deg, 
    rgba(34, 179, 175, 0.4) 0%,
    rgba(17, 105, 103, 0.5) 40%, 
    rgba(11, 69, 67, 0.4) 100%);
}

.carousel-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: 2rem 0;
}

.content-wrapper {
  max-width: 600px;
  color: white;
  animation: slideInUp 1s ease-out;
}

.hero-badge {
  display: inline-block;
  background: rgba(34, 179, 175, 0.4);
  backdrop-filter: blur(15px);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(34, 179, 175, 0.6);
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 3px 25px rgba(0, 0, 0, 0.7);
  color: #ffffff;
}

.hero-description {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.98;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
  color: #ffffff;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero .btn {
  padding: 0.875rem 2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 1rem;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero .btn-primary {
  background: linear-gradient(45deg, #116967, #22b3af);
  color: white;
  box-shadow: 0 8px 25px rgba(17, 105, 103, 0.4);
  border: 2px solid #22b3af;
}

.hero .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(17, 105, 103, 0.6);
  background: linear-gradient(45deg, #0d5250, #1a8a87);
  border-color: #34d4d0;
}

.hero .btn-outline {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: #ffffff;
  transform: translateY(-2px);
  color: #116967;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Carousel Controls */
.hero .carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(17, 105, 103, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(34, 179, 175, 0.6);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff ;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  z-index: 4;
  opacity: 0.9;
}

.hero .carousel-control-prev {
  left: 2rem;
}

.hero .carousel-control-next {
  right: 2rem;
}

.hero .carousel-control:hover {
  background: rgba(17, 105, 103, 0.8);
  border-color: #22b3af;
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  color: white;
  box-shadow: 0 5px 20px rgba(17, 105, 103, 0.4);
}

/* Carousel Indicators */
.hero .carousel-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  margin: 0;
  z-index: 4;
}

.hero .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  opacity: 0.7;
}

.hero .carousel-indicators button.active {
  background: #22b3af;
  border-color: #ffffff;
  opacity: 1;
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(34, 179, 175, 0.5);
}

.hero .carousel-indicators button:hover {
  opacity: 0.9;
  transform: scale(1.1);
  border-color: #22b3af;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# 6. FEATURED SERVICES SECTION
--------------------------------------------------------------*/
.featured-services {
  padding: 80px 0;
  background: linear-gradient(135deg, 
    rgba(17, 105, 103, 0.05) 0%, 
    rgba(34, 179, 175, 0.03) 50%, 
    rgba(17, 105, 103, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.featured-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.3;
  z-index: 1;
}

.featured-services .container {
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(45deg, #116967, #22b3af);
  color: white;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(17, 105, 103, 0.3);
}

.section-header .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  position: relative;
}

.section-header .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(45deg, #116967, #22b3af);
  border-radius: 2px;
}

.section-header .section-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.service-item {
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(17, 105, 103, 0.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  position: relative;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, #116967, #22b3af);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-item:hover::before {
  transform: scaleX(1);
}

.service-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(17, 105, 103, 0.02) 0%, 
    rgba(34, 179, 175, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-item:hover .service-background {
  opacity: 1;
}

.service-content {
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.icon-wrapper {
  margin-bottom: 25px;
  position: relative;
}

.icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #116967, #22b3af);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(17, 105, 103, 0.2);
  position: relative;
  overflow: hidden;
}

.icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-item:hover .icon::before {
  opacity: 1;
}

.icon i {
  font-size: 2rem;
  color: white;
  z-index: 1;
  position: relative;
}

.service-item:hover .icon {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 35px rgba(17, 105, 103, 0.3);
}

.service-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
}

.service-item h4 a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.service-item:hover h4 a {
  color: #116967;
}

.service-item p {
  color: #666;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-arrow {
  text-align: center;
  margin-top: auto;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.service-item:hover .service-arrow {
  opacity: 1;
  transform: translateY(0);
}

.service-item:hover .service-arrow i {
  color: #116967;
   font-size: 1.2rem;
  transform: translateX(3px);
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(17, 105, 103, 0.2);
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

.service-item:nth-child(odd) .icon {
  animation: float 6s ease-in-out infinite;
}

.service-item:nth-child(even) .icon {
  animation: float 6s ease-in-out infinite reverse;
}

/*--------------------------------------------------------------
# 7. ABOUT SECTION
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# 8. STATS SECTION
--------------------------------------------------------------*/
.stats .stats-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.stats .stats-item i {
  color: var(--accent-color);
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 36px;
  display: block;
  font-weight: 600;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# 9. APPOINTMENT SECTION
--------------------------------------------------------------*/
.appointment .php-email-form {
  width: 100%;
}

.appointment .php-email-form .form-group {
  padding-bottom: 8px;
}

.appointment .php-email-form input,
.appointment .php-email-form textarea,
.appointment .php-email-form select {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 10px !important;
}

.appointment .php-email-form input:focus,
.appointment .php-email-form textarea:focus,
.appointment .php-email-form select:focus {
  border-color: var(--accent-color);
}

.appointment .php-email-form input::placeholder,
.appointment .php-email-form textarea::placeholder,
.appointment .php-email-form select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.appointment .php-email-form input,
.appointment .php-email-form select {
  height: 44px;
}

.appointment .php-email-form textarea {
  padding: 10px 12px;
}

.appointment .php-email-form button[type=submit] {
  background: var(--accent-color);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.appointment .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# 10. TABS SECTION
--------------------------------------------------------------*/
.tabs {
  overflow: hidden;
}

.tabs .nav-tabs {
  border: 0;
}

.tabs .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: var(--default-color);
  border-radius: 0;
  border-right: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-weight: 600;
  font-size: 15px;
}

.tabs .nav-link:hover {
  color: var(--accent-color);
}

.tabs .nav-link.active {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background-color: var(--background-color);
}

.tabs .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.tabs .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.tabs .details p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.tabs .details p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# 11. TESTIMONIALS SECTION
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid var(--background-color);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  position: relative;
  border-radius: 6px;
  z-index: 1;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# 12. DOCTORS SECTION
--------------------------------------------------------------*/
.doctors .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.doctors .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.doctors .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.doctors .team-member .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.doctors .team-member .social a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.doctors .team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.doctors .team-member .member-info {
  padding: 25px 15px;
}

.doctors .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.doctors .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.doctors .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# 13. GALLERY SECTION
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-wrapper {
  height: auto;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--background-color);
  border: 1px solid var(--accent-color);
  width: 12px;
    height: 12px;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    transition: none;
  }
}

/*--------------------------------------------------------------
# 14. PRICING SECTION
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .pricing-item h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.pricing .pricing-item h4 {
  font-size: 36px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .pricing-item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .pricing-item ul {
  padding: 15px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .pricing-item ul li {
  padding-bottom: 16px;
}

.pricing .pricing-item ul i {
  color: var(--accent-color);
  font-size: 18px;
  padding-right: 4px;
}

.pricing .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.pricing .btn-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  margin: 0 -20px -20px -20px;
  padding: 20px 15px;
  text-align: center;
}

.pricing .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .featured h3 {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .advanced {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
}

/*--------------------------------------------------------------
# 15. FAQ SECTION
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  border-color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# 16. CONTACT SECTION
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 0 30px 0;
}

.contact .info-item i {
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 30px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# 17. SERVICE DETAILS SECTION
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}
