*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6, p, span, div, input, button, textarea, select, option, li, a, label , small{
  font-family: "IBM Plex Sans Arabic", "tahoma" !important;
  color: #333;
}
:root {
  --blur-size: 200px;
  --shape-1-size: 520px;
  --shape-3-size: 580px;
  --shapes-opacity: 40%;
  --color-primary: #126573;
  --color-primary-dark: #0a3e47;
  --color-primary-light: #1e8a9d;
  --color-primary-rgb: 18, 101, 115;
  --color-secondary: #314159;
  --color-secondary-light: #4a617f;
  --color-secondary-dark: #1f2a3c;
  --color-secondary-rgb: 49, 65, 89;
  --color-light: #f9f4ed;
  /* Typography Hierarchy System */
  --font-scale-xs: 0.75rem;   /* 12px */
  --font-scale-sm: 0.875rem;  /* 14px */
  --font-scale-base: 1rem;    /* 16px */
  --font-scale-md: 1.125rem;  /* 18px */
  --font-scale-lg: 1.25rem;   /* 20px */
  --font-scale-xl: 1.5rem;    /* 24px */
  --font-scale-2xl: 1.875rem; /* 30px */
  --font-scale-3xl: 2.5rem;   /* 40px */
  --font-scale-4xl: 3.5rem;   /* 56px */
  
  /* Font Weights */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Spacing Scale */
  --space-xs: 0.25rem;   /* 4px */
  --space-sm: 0.5rem;    /* 8px */
  --space-md: 1rem;      /* 16px */
  --space-lg: 1.5rem;    /* 24px */
  --space-xl: 2rem;      /* 32px */
  --space-2xl: 3rem;     /* 48px */
  --space-3xl: 4rem;     /* 64px */
  
  /* Z-index layers */
  --z-background: -10;
  --z-default: 1;
  --z-elements: 10;
  --z-header: 100;
  --z-overlay: 1000;
}
.animated-bg{
  overflow-x: hidden;
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  opacity: .5;
  top: 0px;
  left: 0px;
}
img{
  max-width: 100%;
}

body{
  background-color: #fff;
  direction: rtl;
  /* overflow-x: hidden; */
}
.shape-1 {
  width: var(--shape-1-size);
  height: var(--shape-1-size);
  background-color: #275c65;
  border-radius: 50%;
  position: absolute;
  left: -1rem;
  top: 0;
  mix-blend-mode: multiply;
  filter: blur(var(--blur-size));
  opacity: var(--shapes-opacity);
  animation: blob ease-in 7s infinite;
}

.shape-2 {
  width: var(--shape-1-size);
  height: var(--shape-1-size);
  background-color: #62dfe5;
  border-radius: 50%;
  position: absolute;
  right: -1rem;
  top: 0;
  mix-blend-mode: multiply;
  filter: blur(var(--blur-size));
  opacity: var(--shapes-opacity);
  animation: blob ease-in 7s infinite;
  animation-delay: 2s;
  animation-direction: reverse;
}

.shape-3 {
  width: var(--shape-3-size);
  height: var(--shape-3-size);
  background-color: #866aac;
  border-radius: 50%;
  position: absolute;
  left: calc(50% - calc(var(--shape-1-size) / 2));
  bottom: 0;
  mix-blend-mode: multiply;
  filter: blur(var(--blur-size));
  opacity: var(--shapes-opacity);
  animation: blob ease-in 7s infinite;
  animation-delay: 4s;
}

@keyframes blob {
  0% {
      transform: translate(0px, 0px) scale(1);
  }
  33% {
      transform: translate(30px, -50px) scale(1.1);
  }
  66% {
      transform: translate(-20px, 20px) scale(0.9);
  }
  100% {
      transform: translate(0px, 0px) scale(1);
  }
}


.main-intro-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* background-color: #f8f9fa; */
  padding: 0;
}

.intro-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.intro-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 20px 20px;
  opacity: 0.03;
  z-index: 1;
  background-image: 
    radial-gradient(var(--color-primary) 2px, transparent 2px),
    radial-gradient(var(--color-secondary) 2px, transparent 2px);
  background-position: 0 0, 10px 10px;
}

.intro-shape {
  position: absolute;
  border-radius: 50%;
  animation: float-slow 15s ease-in-out infinite;
}

.intro-shape--1 {
  top: -15%;
  right: -5%;
  width: 70%;
  height: 60%;
  background: var(--color-primary);
  filter: blur(100px);
  opacity: 0.07;
  animation-delay: 0s;
}

.intro-shape--2 {
  bottom: -20%;
  left: -10%;
  width: 80%;
  height: 70%;
  background: var(--color-secondary);
  filter: blur(130px);
  opacity: 0.08;
  animation: float-slow 18s ease-in-out infinite reverse;
  animation-delay: -5s;
}

.intro-shape--3 {
  top: 40%;
  right: 45%;
  width: 30%;
  height: 30%;
  background: var(--color-primary-light);
  filter: blur(70px);
  opacity: 0.06;
  animation: float-slow 12s ease-in-out infinite;
  animation-delay: -3s;
}

@keyframes float-slow {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(1%, 1%) rotate(2deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

.intro-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 50%;
  opacity: 0.2;
  animation: particle-float 15s linear infinite;
}

@keyframes particle-float {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  90% {
    opacity: 0.2;
  }
  100% {
    transform: translateY(-100vh) translateX(20px);
    opacity: 0;
  }
}

.intro-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  gap: 2rem;
  padding: 0 2rem;
}

.intro-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
  position: relative;
  z-index: var(--z-elements);
}

.intro-badge {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-size: var(--font-scale-sm);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-xl);
  box-shadow: 0 10px 25px rgba(var(--color-primary-rgb), 0.2);
  animation: fadeInUp 0.6s ease-out, float 6s ease-in-out infinite;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.intro-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: badge-shine 3s ease-in-out infinite;
}

@keyframes badge-shine {
  0% {
    left: -100%;
  }
  20%, 100% {
    left: 100%;
  }
}

.intro-text {
  animation: fadeInUp 0.8s ease-out;
}

.intro-heading {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-xl);
  line-height: 1.2;
}

.intro-greeting {
  font-size: var(--font-scale-lg);
  font-weight: var(--font-weight-medium);
  color: #555;
  margin-bottom: var(--space-sm);
  animation: fadeInRight 0.8s ease-out;
}

.intro-name {
  font-size: var(--font-scale-4xl);
  font-weight: var(--font-weight-bold);
  background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light), var(--color-primary));
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.05);
  animation: fadeInLeft 1s ease-out, gradientFlow 8s ease infinite;
  margin-bottom: var(--space-md);
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.intro-description {
  color: #555;
  font-size: var(--font-scale-md);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
  animation: fadeInRight 1.2s ease-out;
  position: relative;
}

/* .intro-description::before {
  content: '';
  position: absolute;
  width: 3px;
  height: 100%;
  background: var(--color-primary);
  opacity: 0.3;
  right: -15px;
  border-radius: 3px;
} */

.intro-description p {
  margin-bottom: var(--space-sm);
  position: relative;
  /* padding-right: var(--space-lg); */
}

/* .intro-description p::before {
  content: '•';
  position: absolute;
  right: 0;
  top: 0;
  color: var(--color-primary);
  font-size: 1.2rem;
  opacity: 0.7;
} */

.intro-credentials {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 1.4s ease-out;
  position: relative;
}

/* Add a subtle separator line above the credentials */
.intro-credentials::before {
  content: '';
  position: absolute;
  top: -20px;
  right: 0;
  width: 50%;
  height: 1px;
  background: linear-gradient(to left, var(--color-primary), transparent);
  opacity: 0.3;
}

.intro-credential {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-md);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-right: 1px solid rgba(var(--color-primary-rgb), 0.1);
}

.intro-credential:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.intro-credential-number {
  font-size: var(--font-scale-3xl);
  font-weight: var(--font-weight-bold);
  background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: var(--space-xs);
  line-height: 1;
}

.intro-credential-text {
  font-size: var(--font-scale-xs);
  color: #555;
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.intro-buttons {
  display: flex;
  gap: var(--space-md);
  animation: fadeInUp 1.6s ease-out;
  position: relative;
  z-index: var(--z-elements);
}

.intro-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-scale-base);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.intro-button--primary {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 8px 20px rgba(var(--color-primary-rgb), 0.3);
  padding: 0.85rem 1.75rem;
}

.intro-button--primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(var(--color-primary-rgb), 0.4);
}

.intro-button--primary span {
  color: white;
}

.intro-button--primary::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: 0.5s;
}

.intro-button--primary:hover::before {
  left: 100%;
}

.intro-button--primary svg {
  transition: all 0.3s ease;
}

.intro-button--primary:hover svg {
  transform: translateX(5px);
}

.intro-button--secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  padding: 0.75rem 1.5rem;
}

.intro-button--secondary:hover {
  background: rgba(var(--color-primary-rgb), 0.05);
  transform: translateY(-3px);
}

.intro-image-wrapper {
  position: relative;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1.2s ease-out;
  z-index: var(--z-default);
}

.intro-image-decoration {
  position: absolute;
  width: 130%;
  height: 130%;
  top: -15%;
  left: -15%;
  z-index: -1;
}

.intro-blob {
  width: 100%;
  height: 100%;
  opacity: 0.2;
  animation: rotate 30s linear infinite, pulse 10s ease-in-out infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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

.intro-image-container {
  position: relative;
  width: 85%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transform: rotate(-3deg);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 4px solid rgba(255, 255, 255, 0.2);
}

/* Add accent color to the image border */
.intro-image-container::after {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40%;
  height: 40%;
  border-top: 4px solid var(--color-primary);
  border-right: 4px solid var(--color-primary);
  opacity: 0.3;
  border-radius: 0 12px 0 0;
}

.intro-image-container:hover {
  transform: rotate(0deg) scale(1.02);
}

.intro-image-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(var(--color-primary-rgb), 0.3), transparent);
  z-index: 1;
  opacity: 0.3;
  transition: opacity 0.5s ease;
}

.intro-image-container:hover::before {
  opacity: 0.1;
}

.intro-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.7s ease;
  transform: scale(1.05);
  object-position: top;
}

.intro-image-container:hover .intro-image {
  transform: scale(1.1);
}

.intro-image-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 10px 10px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  z-index: 2;
  opacity: 0.3;
  mix-blend-mode: overlay;
}

.intro-image-badge {
  position: absolute;
  bottom: -1.2rem;
  right: -1rem;
  background: white;
  color: var(--color-primary);
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-scale-base);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: rotate(-3deg);
  animation: fadeInUp 1.6s ease-out, float 6s ease-in-out infinite;
  z-index: var(--z-elements);
  border-right: 3px solid var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-10px) rotate(-3deg);
  }
}

.intro-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: fadeInUp 1.8s ease-out, float 4s ease-in-out infinite;
}

.intro-scroll a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-primary);
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.intro-scroll a:hover {
  transform: translateY(-3px);
}

.intro-scroll-text {
  margin-bottom: 0.75rem;
  position: relative;
  font-size: 0.9rem;
}

.intro-scroll-text::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}

.intro-scroll a:hover .intro-scroll-text::after {
  transform: scaleX(1);
  transform-origin: left;
}

.intro-scroll-icon {
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  position: relative;
}

.intro-scroll-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-top: -1px;
  margin-left: -3px;
  border-left: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  transform: rotate(-45deg);
  animation: scroll-arrow 2s infinite;
}

@keyframes scroll-arrow {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(5px, 5px);
    opacity: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive design for the intro section */
@media screen and (max-width: 1200px) {
  .intro-inner {
    width: 95%;
  }
  
  .intro-name {
    font-size: var(--font-scale-3xl);
  }
  
  .intro-credential-number {
    font-size: var(--font-scale-2xl);
  }
  
  .intro-image-container {
    width: 80%;
  }
}

@media screen and (max-width: 992px) {
  .intro-inner {
    flex-direction: column-reverse;
    gap: var(--space-3xl);
    padding-top: 80px;
  }
  
  .intro-content, .intro-image-wrapper {
    width: 100%;
    max-width: 600px;
  }
  
  .intro-content {
    align-items: center;
    text-align: center;
  }
  
  .intro-heading {
    align-items: center;
  }
  
  .intro-description {
    text-align: center;
  }
  
  .intro-description::before {
    display: none;
  }
  
  .intro-description p {
    padding-right: 0;
  }
  
  .intro-description p::before {
    display: none;
  }
  
  .intro-image-container {
    width: 70%;
  }
  
  .intro-credentials {
    justify-content: center;
  }
  
  .intro-credentials::before {
    width: 80%;
    right: 10%;
  }
}

@media screen and (max-width: 768px) {

  body .intro-scroll {
    position: relative;
    bottom: 0px;
    left: 0px;
    margin: 2rem auto;
}

.site-sections {
    padding: 1rem;
}

  .intro-name {
    font-size: var(--font-scale-2xl);
  }
  
  .intro-greeting {
    font-size: var(--font-scale-lg);
  }
  
  .intro-description {
    font-size: var(--font-scale-md);
  }
  
  .intro-credential {
    padding: var(--space-md);
  }
  
  .intro-credential-number {
    font-size: var(--font-scale-3xl);
  }
  
  .intro-credential-text {
    font-size: var(--font-scale-xs);
  }
}

@media screen and (max-width: 576px) {
  .intro-badge {
    font-size: var(--font-scale-xs);
    padding: 0.5rem 1.25rem;
  }
  
  .intro-name {
    font-size: var(--font-scale-2xl);
  }
  
  .intro-image-container {
    width: 85%;
  }
  
  .intro-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .intro-button {
    width: 100%;
    justify-content: center;
  }
  
  .intro-credentials {
    flex-wrap: wrap;
    gap: var(--space-sm);
  }
  
  .intro-credential {
    width: calc(50% - 0.5rem);
  }
}

.mobile-header{
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.75rem 2rem;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: var(--z-header);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mobile-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 2rem;
}

.mobile-header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.mobile-header .logo-container {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.mobile-header .logo-container:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--color-primary) 50%, 
    transparent 100%);
  animation: logo-underline 3s ease-in-out infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-header .logo-container:hover:before {
  opacity: 1;
}

@keyframes logo-underline {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.mobile-header .mobile-logo {
  max-height: 64px;
  width: 100%;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.mobile-header .btn-primary {
  font-size: 16px;
  padding: 10px 20px !important;
  margin-inline: 1rem;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background: var(--color-primary);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(var(--color-primary-rgb), 0.3);
}

.mobile-header .btn-primary:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 6px 20px rgba(var(--color-primary-rgb), 0.4);
  transform: translateY(-2px);
}

.mobile-header .btn-primary: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: 0.5s;
}

.mobile-header .btn-primary:hover:before {
  left: 100%;
}

/* Desktop Menu Styling */
ul.desktop-menu {
  display: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  ul.desktop-menu {
    display: flex;
  }
}

.desktop-menu li {
  position: relative;
  list-style: none;
}

.desktop-menu li a {
  display: block;
  position: relative;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

.desktop-menu li a:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.5s ease;
  z-index: -1;
}

.desktop-menu li a:hover:before {
  transform-origin: left;
  transform: scaleX(1);
}

.desktop-menu li a:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--color-primary-rgb), 0.05);
  border-radius: 4px;
  transform: scale(0.85);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: -1;
}

.desktop-menu li a:hover:after {
  transform: scale(1);
  opacity: 1;
}

.desktop-menu li a:hover {
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* Active menu item */
.desktop-menu li.active a {
  color: var(--color-primary);
}

.desktop-menu li.active a:before {
  transform: scaleX(1);
}

/* Dropdown indicator */
.desktop-menu li.has-dropdown > a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}

.desktop-menu li.has-dropdown:hover > a:after {
  transform: translateY(-50%) rotate(-135deg);
}

/* Hamburger Menu */
.hamburger {
  cursor: pointer;
  position: fixed;
  left: 20px;
  z-index: 110;
  top: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
}

.hamburger input {
  display: none;
}

.hamburger svg {
  height: 1.8em;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
  fill: none;
  stroke: var(--color-primary);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
              stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
  stroke-dasharray: 12 63;
}

.hamburger input:checked + svg {
  transform: rotate(-45deg);
}

.hamburger input:checked + svg .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}

/* Main Overlay Menu */
.main-overlay-menu {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  position: fixed;
  height: 100vh;
  width: 100vw;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  clip-path: circle(0% at 25px 25px);
}

.main-overlay-menu.visible {
  opacity: 1;
  visibility: visible;
  clip-path: circle(150% at 25px 25px);
}

.main-overlay-menu ul {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0 0 3rem 0;
}

.main-overlay-menu ul li {
  margin: 1em 0;
  overflow: hidden;
  position: relative;
  display: block;
}

.main-overlay-menu.visible ul li a {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
}

.main-overlay-menu ul li a {
  font-size: 2.5em;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
  display: inline-block;
  transform: translateY(50px);
  opacity: 0;
  filter: blur(10px);
  color: #333;
  text-decoration: none;
  font-weight: 600;
}

.main-overlay-menu ul li a:hover {
  color: var(--color-primary);
}

.main-overlay-menu ul li a:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transform-origin: right;
}

.main-overlay-menu ul li a:hover:before {
  transform: scaleX(1);
  transform-origin: left;
}

.main-overlay-menu.visible .fade-last {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.main-overlay-menu .fade-last {
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
  opacity: 0;
  transform: translateY(20px);
  filter: blur(5px);
}

.main-overlay-menu ul li:nth-child(1) a {
  transition-delay: 0.1s;
}

.main-overlay-menu ul li:nth-child(2) a {
  transition-delay: 0.2s;
}

.main-overlay-menu ul li:nth-child(3) a {
  transition-delay: 0.3s;
}

.main-overlay-menu ul li:nth-child(4) a {
  transition-delay: 0.4s;
}

.main-overlay-menu .menu-bg-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.03;
  background: 
    linear-gradient(45deg, var(--color-primary) 25%, transparent 25%) -40px 0,
    linear-gradient(-45deg, var(--color-primary) 25%, transparent 25%) -40px 0,
    linear-gradient(45deg, transparent 75%, var(--color-primary) 75%) -40px 0,
    linear-gradient(-45deg, transparent 75%, var(--color-primary) 75%) -40px 0;
  background-size: 80px 80px;
}

.menu-decoration {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--color-primary-rgb), 0.03) 0%, rgba(var(--color-primary-rgb), 0) 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: -1;
}

.menu-decoration:nth-child(1) {
  top: 10%;
  right: 10%;
  animation: float 8s ease-in-out infinite;
}

.menu-decoration:nth-child(2) {
  bottom: 10%;
  left: 10%;
  width: 200px;
  height: 200px;
  animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Theme Switcher */
.theme-switch {
  position: relative;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-left: 10px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.theme-switch:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.5);
}

.theme-switch svg {
  width: 22px;
  height: 22px;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.theme-switch svg path {
  transition: all 0.3s ease;
}

.theme-switch:hover svg {
  transform: rotate(30deg);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .mobile-header {
    padding: 0.5rem 1rem 0.5rem 4rem;
  }
  
  .mobile-header .btn-primary {
    font-size: 14px;
    padding: 8px 16px !important;
  }
  
  .main-overlay-menu ul li a {
    font-size: 2em;
  }
}

@media (min-width: 992px) {
  .hamburger {
    display: none;
  }
  
  .mobile-header {
    padding: 0.75rem 3rem;
  }
  
  .mobile-header .mobile-logo {
    max-height: 70px;
  }
  
  body ul.desktop-menu {
    display: flex;
    gap: 2rem;
  }
  
  .desktop-menu li a {
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
  }
}

#pencet{
  display:flex;
  align-items:center;
  /* margin-top:50vh; */
  flex-direction:column;
  cursor:pointer;
}

#pencet span{
  background-color:ghostwhite;
  width: 1.7em;
  height: .1em;
  margin:0.26em 0;
  display:block;
  transition: all .4s ease;
  transform-origin:0 0;
}

.Diam span:nth-child(1) {
  transform: rotate(45deg) translate(1px, -1px);
}

.Diam span:nth-child(2) {
  Transform: scaleX(0);
}

.Diam span:nth-child(3) {
  transform: rotate(-45deg) translate(1px, 0);
}



#scroll-down-button{
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  background: #2b2c30;
  padding: 16px 32px;
  border-radius: 16px;
  box-shadow: 1px 3px 12px #333;
  border-radius: 50%;
  /* width: 60px; */
  /* height: 60px; */
/* From https: //css.glass */
  background: rgb(45 41 41 / 55%);
  box-shadow: 1px 1px 15px #484848;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid #333131;
  border: 0px;
  background: transparent;
  box-shadow: 0px 0px;
}
#scroll-down-button a {
  /* padding-top: 80px; */
  display: block;
  position: relative;
  height: 34px;
  width: 4px;
}
#scroll-down-button a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-left: 1px solid #333;
  border-bottom: 1px solid #333;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb07 2s infinite;
  animation: sdb07 2s infinite;
  opacity: 0;
  box-sizing: border-box;
  margin-top: -6px;
}
#scroll-down-button a span:nth-of-type(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
#scroll-down-button a span:nth-of-type(2) {
  top: 16px;
  -webkit-animation-delay: .15s;
  animation-delay: .15s;
}
#scroll-down-button a span:nth-of-type(3) {
  top: 32px;
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}
@-webkit-keyframes sdb07 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb07 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}


a {color: #fff;text-decoration: none;}

.gradient-text-container {
  background: linear-gradient(to right, #5ec9db, var(--color-primary-light), #5ec9db, var(--color-primary-light));
  background-size: 200% 200%;
  animation: gradient-animation 10s ease infinite;
  background-clip: text;
  -webkit-background-clip: text;
  display: block;
  /* margin: .5rem; */
}

.gradient-text {
  /* font-size: 3rem; */
  font-weight: bold;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent !important;;
  /* padding: 20px; */
  display: inline-block;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }

}

.intro-inner {
  /* display: flex; */
  align-items: center;
  gap: 1rem;
  /* direction: ltr; */
  text-align: left;
}

img.main-doctor-image{
  transition:  all 0.6s ease 0s;
  opacity: 0.8;
  transform: translateX(-60%);
  /* -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent); */
  /* mask: linear-gradient(90deg, transparent, white 60%, white 80%, transparent); */
  opacity: 0.8;
  /* border-radius: 0px 0px 50% 50%; */
  /* -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent); */
  /* mask: linear-gradient(179deg, transparent, #472323 10%, white 90%, transparent); */
  height: 80vh;
}


.intro-inner .text {
  font-size: 20px;
  min-width: 50%;
  transform: translate(-10% ,-40%);
  position: absolute;
  left: 50%;
  top: 50%;
  /* text-shadow: 1px 3px 10px #dddddd54; */
}

.intro-inner .text >div{
  text-align: center;
  text-align-last: center;
  font-size: 20px;
  line-height: 1.5;
}

.spacer{


  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}

#word-container{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  /* margin-top: 8rem; */
  height: 100lvh;
  position: relative;
}

#word-body span {
opacity: 0;
font-size: 20px;
margin: .3rem;
font-size: 2rem;
}


.container{margin: auto;width: auto !important;}

div#word-container i {
  font-size: 50px;
  /* position: absolute; */
}

div#word-container i.quote-top {
  top: 20%;
  right: 16px;
}

div#word-container i.quote-bottom {
  left: 16px;
  transform: rotate(180deg);
  bottom: 25%;
}
div#word-container .credit {
  margin-top: 2rem;
}

div#word-container .credit h3 {
  color: #333;
  font-size: 24px;
  margin-bottom: .5rem;
}

div#word-container .credit span {
  color: #444;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75em;
  /* word-spacing: 2px; */
}


.section-title span {
  display: inline-block;
  margin-right: .25rem;
  /* margin-left: .25rem; */
}


p {
  line-height: 2.4rem;
}

.content__img-wrap {
	grid-area: layout;
  overflow: hidden;
}

.content__img {
	--img-width: 60vw;
	--img-height: 40vh;
	--img-ar: auto;
	--img-inner-margin-x: 0px;
	--img-inner-margin-y: 0px;
	position: relative;
	overflow: hidden;
	display: grid;
	place-items: center;
	width: var(--img-width);
	height: var(--img-height);
	aspect-ratio: var(--img-ar);
}
.content {
	flex: none;
	display: grid;	
	place-items: center;
	line-height: 1.2;
	grid-template-areas: 'title' 'layout' '...';
	grid-template-rows: 3.5vw auto 3.5vw;
	gap: 1rem;
}



.content__text {
	/* font-family: 'AlphaLyrae', sans-serif; */
	position: relative;
	z-index: 100;
	grid-area: title;
	text-transform: uppercase;
	font-size: clamp(2rem, 6vw, 4rem);
	margin: 0;
	display: flex;
	flex-direction: column;
	font-weight: 400;
	line-height: 1.2;
}

.content__text span span {
	display: inline-block;
}

.content__text span span.whitespace {
	white-space: pre;
}

.content__text span:nth-child(3n) {
	font-feature-settings: 'ss01' 1;
}

.content__text--large {
	font-size: clamp(2rem, 7vw, 6rem);
}

.content__text--center {
	text-align: center;
	align-self: stretch;
	justify-content: space-between;
	grid-row: 1 / span 3;
}

.content__text--left {
	justify-self: start;
	padding: 3rem;
	grid-area: layout;
	align-self: center;
}

.content__text-tiny {
	text-transform: none;
	font-size: 1.5rem;
	font-weight: 300;
	/* max-width: 400px; */
	line-height: 1.2;
	margin-top: 10vh;
}

.content__img--3 {
	--img-width: 100vw;
	--img-height: 200vh;
}

.content__text-tiny {
	text-transform: none;
	font-size: 1.2rem;
	font-weight: 300;
	/* max-width: 400px; */
	line-height: 1.8;
	margin-top: 2vh;
	text-align: justify;
	text-align-last: right;
}
.content__img-inner {
	grid-area: 1 / -1;
	width: calc(100% + var(--img-inner-margin-x) * 2);
	height: calc(100% + var(--img-inner-margin-y) * 2);
	background-size: cover;
	background-position: 50% 50%;
}

.content__img-inner--hidden {
	/* opacity: 0.5; */
	opacity: 1;
}
.content__img--2 {
	--img-width: 100vw;
	--img-height: 100vh;
}

li {
  list-style: none;
}

.achievements-list li {
  margin: 1.25rem 0px;
  font-size: 18px;
  padding-right: 50px;
  position: relative;
}

.achievements-list li i {
  background: var(--color-primary-dark);
  padding: 8px 9px;
  border-radius: 50%;
  display: inline-block;
  margin-left: .5rem;
  color: #fff;
  font-size: 14px;
  position: relative;
  z-index: 10;
  /* opacity: 0; */
  transform: scale(0);
  transition: all 0.3s ease 0s;
  /* right: -40px; */
  position: absolute;
  right: 0px;
  top: 0px;
  /* transform: translateY(-50%); */
  line-height: 1px;
}

.achievements-list .achievements-list-line {
  content: "";
  right: 14px;
  top: 0px;
  background: var(--color-primary-dark);
  height: 0pc;
  width: 4px;
  position: absolute;
  border-radius: 5px;
}

.achievements-list {
  position: relative;
  margin: 1.5rem 0px;
}


/*  sticky contents */


.content--sticky {
	width: 100vw;
	position: sticky;
	top: 0;
	--offset: 0px;
	top: var(--offset);
	height: calc(100vh - var(--offset));
}

.content--grid,
.content--grid .content__inner {
	display: flex;
	overflow: hidden;
	grid-column-gap: 5vw;
	grid-row-gap: 2vh;
	align-content: center;
	grid-template-areas:
		'content-img'
		'content-title'
		'content-text';
	justify-items: center;
	flex-direction: column;
}

.content--grid:has(.content__inner) {
	display: block;
	padding: 0;
}
.bg-1 {
    background: #233746;
}

.bg-2 {
    background: #0c202f;
}

.bg-3 {
    background: #000e1c;
}
.bg-4 {
    background: #000614;
}

.bg-5 {
    background: #777;
}

.bg-6 {
    background: #888;
}


/* scroller */

.scroller {
  max-width: 90vw !important;
  margin: 0px auto;
  direction: ltr;
}

.scroller__inner {
  padding-block: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.scroller[data-animated="true"] {
  overflow: hidden;
  -webkit-mask: linear-gradient(
    90deg,
    transparent,
    white 20%,
    white 80%,
    transparent
  );
  mask: linear-gradient(90deg, transparent, white 5%, white 95%, transparent);
}

.scroller[data-animated="true"] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 40s)
    var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
  --_animation-duration: 35.5s;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 60s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

/* end scroller */


.rating-item {
  max-width: min(50vw,460px);
  text-align: right;
  border: 1px solid #9999994f;
  padding: 12px 16px;
  border-radius: 12px;
  background: #ffffff6b;
  margin: 0px;
}


.testimonial-grid {
  display: grid;
  flex-wrap: wrap;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  margin-top: 1rem;
}

.testimonial-grid > div {
  gap: .5rem;
  flex: 1 1 50%; /* Allows columns to grow and shrink equally */
}
.rating-item p {
  color: #444;
  line-height: 30px;
  font-size: 14px;
  text-align: justify;
  text-align-last: right;
}

.rating-item h4 {
  margin-bottom: 0rem;
  color: #333;
  font-size: 15px;
}

.site-section {
  margin: 3rem 0px;
}

.site-section {
  margin: 3rem 0px;
}

.rating-item i {
  color: #555;
}


/*  sticky video  */



.sticky-video-container .card {
  height: 100lvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* background-color: #f0f0f0; */
  margin-bottom: 2px;
  color: #ffffff;
  z-index: 10;
  width: 100lvw;
}

.sticky-video-container .card-1 {
  background-color: #3498db;
}

.sticky-video-container .card-2 {
  background-color: #e74c3c;
}

.sticky-video-container .card-3 {
  background-color: #2ecc71;
}

.sticky-video-container .card-content {
  opacity: 0;
  /* Initially hidden */
  font-size: 2rem;
  text-align: center;
  transition: opacity 0.5s ease;
  height: 60%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-around;
}

.sticky-video-container .spacer {
  height: 100lvh;
  width: 100%;
  background: wheat;
}

.sticky-video-container .video-section {
  background-color: #444;
  position: absolute;
  width: 100%;
  height: 100lvh;
  left: 0px;
  bottom: 0px;
  /* bottom: 0px; */
  /* Fullscreen video */
  overflow: hidden;
}

.sticky-video-container .fullscreen-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sticky-video-container .content-background {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  background-color: #000000eb;
}

.sticky-video-container .video-container {
  position: relative;
}


.counter-item span {
    font-size: 3rem;
    color: #fff;
}


.counter-item h3 {
    font-size: 18px;
    color: #ccc;
}

.btn-primary {
    background: var(--color-primary);
    padding: 8px 16px;
    border-radius: 7px;
    font-size: 17px;
    color: #fff;
    text-align: center;
}

.btn-outlined {
    border: 1px solid  var(--color-primary-light);
    padding: 8px 16px;
    border-radius: 7px;
    font-size: 17px;
    color: #444;
    box-shadow: 0 0.625rem 0.75rem rgba(0, 0, 0, .06) !important;
}

.ratings-section {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;
}


.contact-form-section {
  /* min-height: 100vh; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0px;
  padding: 3em 5%;
  border-top: 1px solid #4289795c;
  border-top-left-radius: 20%;
  border-top-right-radius: 20%;
  margin-block: 2rem;
  /* box-shadow: 0 0 22px -2px #0f6573ff, 0 0 30px #ffffff2e; */
  /* padding-top: 8em; */
  /* background: red; */
  /* background: rgb(255 255 255 / 18%); */
  /* border-radius: 16px; */
  /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
  backdrop-filter: blur(5px);
  margin-top: 5rem;
}
.custom-field  input , .custom-field  textarea{
  padding: 8px  16px !important;
  margin: .5rem auto;
  width:100%;
  border: 0px;
  border-radius: 6px !important;
  background: transparent !important;
  box-shadow: 1px 1px 10px #d0c4c473 !important;
  /* border: 1px solid #b9b9b9; */
  box-shadow: 1px 1px 10px #aaa7a738 !important;
}

.custom-field .block {
    margin-bottom: 1em;
}

.custom-field .block .border {
    border: 0px !important;
    box-shadow: 0px 0px  !important;
    
    
    
   
}


.relative{
  position: relative;
}
.z-100{
  z-index: 100 !important;
}
span.color-primary {
    color: #49a1af !important;
}

.testo-gallery .main img {
  border-radius: 12px;
}


.testo-gallery .main {
  /* display: flex; */
  /* flex-wrap: wrap; */
  /* padding: 0 15px; */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.testo-gallery .main a{
  position: relative;
}

.testo-gallery .column {
  /* flex: 25%; */
  max-width: 25%;
  padding: 0 4px;
}

.testo-gallery .column #size {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
  cursor: pointer;
}

.testo-gallery .column img {
  opacity: 0.9;
}

.testo-gallery .column img:hover {
  transform: scale(1.1);
  transition: transform .2s;
  opacity: 1;
}

@media screen and (max-width: 800px) {
  .testo-gallery .column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
    transition: transform .2s;
  }

   body .intro-inner .text >div {
    text-align: right;
    text-align-last: right;
}
}


.galssed-burred-bg {/* From https: //css.glass */
  background: rgb(4 15 21 / 42%);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 0px;
  padding: 2rem 2rem;
  -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
  mask: linear-gradient(90deg, transparent, #472323 10%, white 92%, transparent);
  border-radius: 20px;
  font-weight: bold;
}


.flex-apart {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

 .btn-white  {
  background: var(--color-primary) !important;
  color: #fff;
  padding: 6px !important;
  border-radius: 6px;
  text-align: center;
}

.btn-white span{
	  color: #fff !important;
}

.w-90 {
  width: 90%;

}

.mv-center{
  margin-right: auto;
  margin-left: auto;
}

.mt-2{
  margin-top: 1rem;
}
.mb-2
{
    margin-bottom: 1rem;
}

/* mobile menu  */


.hamburger {
  cursor: pointer;
  position: fixed;
  left: 30px;
  z-index: 110;
  top: 20px;
}

.hamburger input {
  display: none;
}

.hamburger svg {
  /* The size of the SVG defines the overall size */
  height: 2em;
  /* Define the transition for transforming the SVG */
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
  fill: none;
  stroke: #136573;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  /* Define the transition for transforming the Stroke */
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
              stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
  stroke-dasharray: 12 63;
}

.hamburger input:checked + svg {
  transform: rotate(-45deg);
}

.hamburger input:checked + svg .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}

/* end mobile menu  */

.flex-center{
  display: flex;
  justify-content: center;
  align-items: center;
}
.gap-2{
  gap: 1rem;
}



footer {
  /* background-color: #333; */
  padding: 20px;
  box-shadow: 0 -5px 15px rgba(0,0,0,0.1); /* Optional: adds a shadow for depth */
  /* height: 50vh; */
  padding: 0 0;
  color: white;
  /* background-color: #2A2A2A; */
  /* position: fixed; */
  /* z-index: -1; */
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  /* display: flex; */
  /* justify-content: center; */
  /* align-self: center; */
  /* height: 250px; */
  padding: 1rem 10%;
  background: #ffffffb0;
}



#main-content{
  /* padding-bottom: 250px; */
  position: relative;
  z-index: 1;
}

#logo-svg{
  max-width: 198px;
  width: 100%;
  margin: 0px auto;
  stroke: #fff;
  height: 148px;
}

iframe#bannerIframe {
  display: none !important; 
}

.footer-links {
  margin: 0px auto;
  display: block;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  text-align: right;
}

.footer-links a {
  color: #333;
}

.social-icons {
  margin-top: 2em;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-icons a {
  background: #e4e4e4;
  /* padding: 6px 12px; */
  border-radius: 6px;
  color: var(--color-primary);
  width: 36px;
  height: 36px;
  line-height: 36px;
  font-size: 20px;
  text-align: center;
}

.social-icons a i {
  position: relative;
  top: 3px;
}

footer .credit {
    margin-top: 2rem;
    padding-block: 1rem;
    border-top: 1px dashed #485e78a6;
    line-height: 30px;
    grid-column: -1/1;
}

footer .credit a {
    text-decoration: underline;
}
.ml-6{
  margin-left: 3rem;
}



.main-overlay-menu {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    position: fixed;
    height: 100vh;
    width: 100vw;
    background: #ffffff5c;
    /* border-radius: 16px; */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    }


  .main-overlay-menu.visible {
    opacity: 1;
    visibility: visible;
    top: 0px;
    left: 0px;
  }
.main-overlay-menu ul li {
    margin: 1.5em 0px;
    overflow: hidden;
    display: block;
}

.main-overlay-menu ul {display: block;}


.main-overlay-menu.visible ul li a{
    
    top: 0px;
    filter: blur(0px);
} 
.main-overlay-menu ul li a {
    font-size: 2em;
    transition: all .3s ease 0.4s;
    position: relative;
    top: 40px;
    filter: blur(10px);

}



.main-overlay-menu.visible  .fade-last{
    opacity: 1;
    filter: blur(0px);
}
.main-overlay-menu  .fade-last {
    /* transition-delay: 0.6s; */
    transition: all .5s linear 0.8s;
    opacity: 0;
    /* filter: blur(10px); */
}
.main-overlay-menu ul li:nth-child(1) a {
    transition-delay: 0.4s;
}



.main-overlay-menu ul li:nth-child(2) a {
  transition-delay: 0.45s;
}


.main-overlay-menu ul li:nth-child(3) a {
  transition-delay: 0.5s;
}


:root {
  --debug: 0;
  --bg-color: #141414;
  --svg-animation: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 122 116'%3E%3Cpath id='b' stroke='%23fff' stroke-linecap='round' stroke-width='0' d='M17.9256 115C17.434 111.774 13.1701 104.086 13.4282 95.6465C13.6862 87.207 18.6628 76.0721 17.9256 64.3628C17.1883 52.6535 8.7772 35.9512 9.00452 25.3907C9.23185 14.8302 16.2114 5.06512 17.9256 1'%3E%3C/path%3E%3Cpath id='d' stroke='%23fff' stroke-linecap='round' stroke-width='0' d='M84.1628 115C85.2376 112.055 94.5618 98.8394 93.9975 91.1338C93.4332 83.4281 82.5505 73.2615 84.1628 62.5704C85.775 51.8793 96.4803 35.4248 95.9832 25.7826C95.4861 16.1404 87.9113 4.71163 84.1628 1'%3E%3C/path%3E%3Cpath id='f' stroke='%23fff' stroke-linecap='round' stroke-width='0' d='M37.0913 115C37.9604 111.921 44.4347 99.4545 45.3816 92.9773C48.9305 68.7011 35.7877 73.9552 37.0913 62.7781C38.3949 51.6011 47.3889 36.9895 46.9869 26.9091C46.585 16.8286 40.1222 4.88034 37.0913 1'%3E%3C/path%3E%3Cpath id='h' stroke='%23fff' stroke-linecap='round' stroke-width='0' d='M112.443 115C111.698 112.235 108.25 106.542 107.715 93.7582C107.241 82.4286 107.229 83.9543 112.443 66.1429C116.085 44.0408 100.661 42.5908 101.006 33.539C101.35 24.4871 109.843 4.48439 112.443 1'%3E%3C/path%3E%3Cg%3E%3Ccircle r='1.5' fill='%23D9D9D9'%3E%3CanimateMotion dur='12s' repeatCount='indefinite'%3E%3Cmpath href='%23b'%3E%3C/mpath%3E%3C/animateMotion%3E%3C/circle%3E%3C/g%3E%3Cg%3E%3Ccircle r='1' fill='%23fff' fill-opacity='1' shape-rendering='crispEdges'%3E%3CanimateMotion dur='8s' repeatCount='indefinite'%3E%3Cmpath href='%23d'%3E%3C/mpath%3E%3C/animateMotion%3E%3C/circle%3E%3C/g%3E%3Cg%3E%3Ccircle r='.5' fill='%23fff' fill-opacity='1' shape-rendering='crispEdges'%3E%3CanimateMotion dur='10s' repeatCount='indefinite'%3E%3Cmpath href='%23f'%3E%3C/mpath%3E%3C/animateMotion%3E%3C/circle%3E%3C/g%3E%3Cg%3E%3Ccircle r='.8' fill='%23fff' fill-opacity='1' shape-rendering='crispEdges'%3E%3CanimateMotion dur='6s' repeatCount='indefinite'%3E%3Cmpath href='%23h'%3E%3C/mpath%3E%3C/animateMotion%3E%3C/circle%3E%3C/g%3E%3C/svg%3E");
  --btn-radius: 12;
  --animation-timing-function: ease-in-out;
  --transitions: --shadow-scale 0.3s var(--animation-timing-function), --halo-scale 0.3s var(--animation-timing-function), --halo-offset 0.3s var(--animation-timing-function), transform 0.2s var(--animation-timing-function);
  --color-a: var(--color-primary);
  --color-b: var(--color-primary-dark);
  --color-c: var(--color-primary-light);
}
@supports (color: color(display-p3 0 0 0)) {
  body {
      --color-a:  var(--color-primary);
      --color-b: var(--color-secondary);
      --color-c:  var(--color-primary);
 }
}


.glowing-button-container button {
  --halo-scale: 1;
  --shadow-scale: 1;
  --halo-offset: -70;
  all: unset;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  color: white;
  max-height: 46px;
  font-size: 22px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: calc(var(--btn-radius) * 1px);
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  position: relative;
  transition: var(--transitions);
}
.glowing-button-container button > div {
  overflow: hidden;
  position: relative;
  border-radius: calc(var(--btn-radius) * 1px);
}
.glowing-button-container button .inner {
  display: block;
  background: var(--color-primary-dark);
  position: relative;
  width: calc(100% - 1px);
  height: calc(100% - 1px);
  top: 1px;
  left: 1px;
  border-radius: calc(var(--btn-radius) * 1px);
}
.glowing-button-container button .inner:before, .glowing-button-container button .inner:after {
  content: "";
  display: block;
  position: absolute;
  width: 70%;
  height: 1px;
  top: -1px;
  left: 50%;
  background: linear-gradient(90deg, var(--color-primary) 0%, rgba(255, 255, 255, 0.25) 50%, var(--color-primary) 100%);
  transform: translateX(-50%);
  opacity: 0.6;
  display: none;
}
.glowing-button-container button .inner:before {
  mix-blend-mode: overlay;
}
.glowing-button-container button .inner:after {
  top: calc(100% - 2px);
  opacity: var(--halo-scale);
  background: linear-gradient(90deg, var(--color-primary) 0%, #000, var(--color-primary) 100%);
  filter: brightness(200%) opacity(0.3);
}
.glowing-button-container button .particles {
  background-image: var(--svg-animation), var(--svg-animation);
  background-repeat: no-repeat, repeat;
  background-position: center, center top 100%;
  background-size: 100% 100%, 50%;
  -webkit-mask-image: linear-gradient(to top, transparent, #8a1111, transparent);
  border-radius: calc(var(--btn-radius) * 1px);
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: var(--halo-scale);
 /* Since having the blurry filter creates a weird artefact on safari I decided to doulbe the particles background in a pseudo-element And apply the blur filter on it. */
}
.glowing-button-container button .particles:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: var(--svg-animation), var(--svg-animation), var(--svg-animation);
  background-repeat: no-repeat, repeat, repeat;
  background-position: center, center top 100%, center center;
  background-size: 100% 100%, 50%, 120%;
  filter: blur(1px);
  border-radius: calc(var(--btn-radius) * 1px);
  will-change: filter;
}
.glowing-button-container button .text {
  position: relative;
  z-index: 2;
  padding: 0.545em 1.455em;
  width: max-content;
  display: block;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
  /* font-size: 1rem; */
}
.glowing-button-container button .halo {
  border-radius: calc(calc(var(--btn-radius)+1) * 1px);
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: calc(var(--btn-radius) * 1px);
}
.glowing-button-container button .halo:before {
  content: "";
  display: block;
  width: 80%;
  height: 60%;
  position: absolute;
  top: 80%;
  left: 50%;
  background: linear-gradient(180deg, var(--color-a) 0%, var(--color-b) 39.33%, var(--color-c) 59%);
  filter: blur(12px) saturate(1.2);
  transform: translateX(-50%) translateY(calc(var(--halo-offset) * 1%)) scale(var(--halo-scale));
  will-change: filter;
}
.glowing-button-container button:hover {
  --halo-scale: 1;
  --shadow-scale: 1;
  --halo-offset: -70;
}
.glowing-button-container button:active {
  --halo-scale: 1.1;
  --halo-offset: -80;
  --shadow-scale: 1.2;
  transform: translateY(calc(var(--halo-scale) * 1px));
}
.glowing-button-container .shadow {
  position: absolute;
  width: 60%;
  height: 20%;
  bottom: -26%;
  z-index: -1;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 1e 5%;
 /* let's reuse the same variable */
  transform: scale(var(--shadow-scale));
  opacity: calc(var(--halo-scale) / 2);
  background: linear-gradient(to bottom, var(--color-c), var(--color-b), var(--color-a));
  filter: blur(8px) opacity(0.7);
  will-change: filter;
}


.galssed-burred-bg span {
  margin: .25rem 0px;
  display: inline-block;
  color: #fff;
}

.galssed-burred-bg h3 {
  color: #fff;
}
.home-services-section {
  margin-top: 7em;
}

.services-sticky-grid img {
    width: 198px;
    height: auto;
    border-radius: 20px;
    margin-top: 3em;
    aspect-ratio: 1/1.25;
    object-fit: cover;
    object-position: center;
}

.services-sticky-grid p {
    font-size: 1.2em;
    color: #ddd;
    text-align: justify;
    text-align-last: center;
    line-height: 35px;
    padding: 2em;
}

.services-sticky-grid h2 {
    font-size: 2.5rem;
    color: #fff;
}

.services-sticky-grid .btn-white {
  font-size: 25px;
  padding: 12px 16px !important;;
}

.form-group {
    margin-bottom: 1rem;
}


.choose-service-grid img {
    display: block;
    width: 32px;
    margin: .5rem auto;
    filter: brightness(0) invert(-1);
}

.choose-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
    align-items: stretch;
}

.choose-service-grid .item {
    /* text-align: center; */
    /* border: 1px solid #70707096; */
    /* padding: 8px; */
    /* border-radius: 8px; */
}

.form-group label {
    font-size: 18px;
}

.choose-service-grid span {
    font-size: 14px;
}

.choose-service-grid .item.active {
  background: var(--color-primary);
}





.custom-radio input 
{
  display: none;
}

.radio-btn 
{
  /* margin: 10px; */
  /* width: 220px; */
  /* height: 240px; */
  border: 3px solid transparent;
  display: inline-block;
  border-radius: 10px;
  position: relative;
  text-align: center;
  /* box-shadow: 0 0 20px #c3c3c367; */
  cursor: pointer;
  /* padding: 20px; */
  width: 100%;
  /* background: var(--color-primary-light); */
  color: #fff !important;
  text-align: center;
  border: 1px solid #70707096;
  padding: 8px;
  border-radius: 8px;
}

.radio-btn > i {
  color: #ffffff;
  background-color: var(--color-primary);
  font-size: 18px;
  position: absolute;
  top: -18px;
  right: -10px;
  transform: scale(2);
  border-radius: 50px;
  padding: 3px 8px;
  transition: 0.5s;
  pointer-events: none;
  opacity: 0;
}

.radio-btn .hobbies-icon 
{
  /* width: 150px; */
  /* height: 150px; */
  /* position: absolute; */
  /* top: 40%; */
  /* left: 50%; */
  /* transform: translate(-50%, -50%); */
  /* display: none; */
}
.radio-btn .hobbies-icon img
{
  display:block;
  width:100%;
  margin-bottom:20px;
  
}
.radio-btn .hobbies-icon i 
{
  color: #FFDAE9;
  line-height: 80px;
  font-size: 60px;
}

.radio-btn .hobbies-icon h3 
{
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing:1px;
  font-weight: bold;
}

.custom-radio input:checked + .radio-btn 
{
  border: 2px solid var(--color-primary);

}

.custom-radio input:checked + .radio-btn > i 
{
  opacity: 1;
  transform: scale(1);
}


span.radio-btn i {
    position: absolute;
    right: -12px;
    top: -15px;
    background: var(--color-primary);
    padding: 8px;
    border-radius: 50%;
    line-height: 0px;
    opacity: 0;
    filter: blur(10px);
    transition: all 0.2s ease 0s;
    color: #fff;
}

.custom-radio input:checked + .radio-btn  i 
{
  opacity: 1;
  transform: scale(1);
  filter: blur(0px);
}

.custom-radio {

    display: flex;
}


.gallery-container {
  display: grid;
  flex-wrap: wrap;
  gap: 1.5rem.5rem;
  margin: 1rem 0px;
  grid-template-columns: 1fr 1fr ;
}

.gallery-container.results-container > div {
  /* flex: 0 0 33%; */
  flex-grow: 1;
  /* max-width: 50%; */
  border-radius: 16px;
  overflow: hidden;
}

.general-slidshow-item {
  flex: 0 1 31%;
  flex-grow: 1;
}


.gallery-container.show-property .general-slidshow-item {
    flex-grow: 0;
}
.fancybox__caption .btn-primary {
  /* background: #d9d9d9 !important; */
  /* color: #333 !important; */
  min-width: fit-content;
}

.fancybox__caption .flex-apart {
  min-width: 330px;
  align-items: center;
  flex-direction: row-reverse;
  gap: 1rem;
  text-align: center;
  color:#fff;
  width: 90vw;
}





.custom-radio.small span.radio-btn i {
    font-size: 10px;
    padding: 6px;
    top: -11px;
    right: -11px;
}
.flex-grow > * {
  flex-grow: 1;
}
#logo-svg path {
    stroke: #fff;
}
svg#theme-toggle {
  display: inline-block;
  margin-right: .75rem;
  fill: var(--color-primary);
}


.media-container {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: scroll;
  gap: 1rem;
-webkit-mask: linear-gradient(90deg, transparent, white 20%, white 100%);
mask: linear-gradient(90deg, transparent, #472323 10%, white 100%);

}

 .media-item {
  min-width: 168px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 1;
}

 .media-item > button:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  /* background-image: linear-gradient(0deg, #29394e, transparent); */
  background-image: linear-gradient(0deg, #223538, #12657300);
}

.media-item .title , .media-item .play-button {
  position: absolute;
  z-index: 10;
}

.media-item .play-button {
  left: 50%;
  top: 40%;
  transform: translate(-50%,-50%);
  width: 32px;
  opacity: .4;
  display: none;
}

 .media-item .cover {
  object-fit: cover;
  height: 100%;
}

.media-item .title {
  bottom: 10px;
  padding: 8px 16px;
  right: 0px;
  font-size: 14px;
  color: #fff;
  text-align: right;
}
.media-item .title  h4{
	  color: #fff !important;
}



.image-container {
  position: relative;
  overflow: hidden;
  /* background-color: red; */
  width: 100%;
  height: 100%;
}

.image-container img {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 170%;
  object-fit: cover;
  object-position: center;
  padding: 0;
  max-width: none;
}

.achievements-list li p {
  color:#444;
  font-size: 14px;
  margin-top: -.25rem;
}

.achievements-list li h4 {
font-weight: bold;
font-size: 17px;
}

.achievements-list li:first-child {
  margin-top: 0px !important;
}

.achievements-list li:last-child {
  margin-bottom: 0px !important;
}


.certificates-container img {
  aspect-ratio: 1/1.5;
  object-fit: contain;
  border-radius: 4px;
}

.first-section {
  margin-top: 10em !important;
  
  
}


.flex-3 {
    display: flex;
}

.flex-3 > * {
    width: 33%;
    flex-grow: 1;
}

.contact-box-item {
    text-align: center;
    border: 1px solid #11657363;
    border-radius: 16px;
    padding: 16px;
    direction: ltr;
    word-wrap: break-word;
}

.contact-box-item i {
    font-size: 1.5em;
    color: #116573;
}

.contact-box-item .info {
    font-size: 13px;
    color: #333;
    font-weight: bold;
    display: block;
}




.pulse-animation{

  animation: shadow-pulse 1s infinite;
}


@keyframes shadow-pulse
{
0% {
  box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
}
100% {
  box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
}
}



.text-red-600 {
  color: #ea4337 !important;

}


.toast-container {
  background: #fff;
  min-width: 60vw;
  display: block;
}

.toast-container .ml-3 break-words {
  width: 100%;
}

.toast-container button {
  background: #ccc;
}



.toast-container button {
    background: #f8f6f6;
	color:#333;
	/* border:1px solid #eee; */
}

.toast-container .green {
    border-color: #009688;
}

.toast-container .red {
    border-color: #E91E63;
}

.toast-container .orange {
    border-color: #FF5722;
}

.toast-container p {
  font-size: .85em;
  line-height: 2.1em;
  margin-top: .75em;
}

.toast-container h3 {
  font-size: 1em;
}

.info-shadow {
  border: 1px solid #4444443b;
  padding: 16px;
  box-shadow: 0 4px 20px rgb(0 0 0 / 9%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 16px;
}


.services-section {
  display: flex;
  flex-wrap: wrap;
  /* gap: 3.5rem 1rem; */
  align-items: stretch;
  justify-content: stretch;
}

.services-section .service-item {
  flex: 50%;
  width: 50%;
  flex: 0 1 calc(50% - 0.5rem);
  text-align: center;
  border: 1px solid #242a3b99;
  padding: 2rem;
  /* height: 100%; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
}

.services-section .service-item img {
  height: 80px;
  border-radius: 16px;
  aspect-ratio: 1;
  object-fit: cover;
  margin-inline: auto;
  margin-bottom: .5rem;
}

.services-section .service-item h4 {
  font-size: 18px;
  font-weight: bold;
}

.services-section .service-item .btn-primary {
  display: inline-block;
  font-size: 14px;
}

.service-item {}

.services-section .service-item p {
  font-size: 14px;
  line-height: 2.1em;
  margin-block: .5rem;
  color: #ccc;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.services-section {
  margin-inline: 5%;
}

.result-slidshow-item {
    position: relative;
}

.result-slidshow-item span {
    position: absolute;
    bottom: 10px;
    /* left: 0px; */
    padding: 8px 6px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
    width: auto;
    background: rgb(247 247 247 / 59%);
    box-shadow: 0 4px 30px rgb(0 0 0 / 51%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: #111 !important;
    right: 10px;
    border: 1px solid #848282;
}

.cirlce-bg-image img {
    max-width: 256px;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: top;
    position: relative;
    z-index: 2;
    /* border-radius: 50%; */
    -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 100%);
    mask: linear-gradient(0deg, transparent, #472323 50%, white 100%);
}

.cirlce-bg-image {
    position: relative;
    /* display: inline-block; */
    max-width: fit-content;
    /* overflow: hidden; */
    margin: 1.5rem auto;
    /* position: sticky; */
    /* top: 20vh; */
    margin-top: 0px;
    margin-bottom: -1.5rem;
}

.cirlce-bg-image:before {
    content: "";
    width: 100%;
    height: auto;
    /* background: var(--color-primary); */
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    aspect-ratio: 1;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0px;
    transform: translateX(-50%) scale(1);
}


.guarantee-item {
  padding:16px;
  background: rgb(255 255 255 / 82%);
  /* border-radius: 16px; */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  margin: 8px;
  }

.guarantee-item img {max-width: 50%;display: block;margin: 1rem auto;border-radius: 16px;aspect-ratio: 1;object-fit:cover;height: auto;width: 256px;}

.guarantee-item h4 {font-size: 24px;margin-bottom: .75rem;text-align: center;}

.guarantee-item p {font-size: 14px;margin:16px;margin-bottom: 1rem;color: #555;line-height: 1.7;text-align:justify;text-align-last: right;margin-top: 0px;}

.splide__slide {
  width: auto;
}

.splide {
  max-width: 100%; /* Prevents overflow */
  overflow: hidden; /* Optional: hides excess if needed */
}

.services-slider {
  margin-bottom: 2rem;
}


.stars-container {
    display: flex;
    gap: .15rem;
    flex-direction: row;
    margin-bottom: 0px;
}

.stars-container img {
    width: 12px;
}


.rating-item .item-header >  img {
  width: 32px;
  /* height: 32px; */
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  aspect-ratio: 1;
}

.rating-item .item-header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  direction: rtl;
  gap: 1rem;
  text-align: right;
  margin-bottom: .5rem;
}



img.view-service-thumbnail {
  border-radius: 50px 50px 0px 0px;
  /* width: 192px; */
}

.section-title.small {
  font-size: 1.25em;
}

.view-service-results .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.view-service-results .grid img {
  border-radius: 8px;
}


.services-grid {
    gap: 1rem;
    display: flex;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    
	flex-wrap: wrap;
}
.services-grid > div {
    flex: 0 0 calc(50% - 1rem);
    margin: 0px;
}

.services-grid > div.guarantee-item a {
  font-size: 13px;
  margin-top: 1rem;
}

div#word-body {
  line-height: 1.6;
}

@media screen and (min-width:765px) {

  body .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
  body .gallery-container {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
	body .testimonial-grid{
		grid-template-columns:1fr 1fr 1fr 1fr;
	}

  body .testo-gallery .main {
    grid-template-columns: 1fr 1fr  1fr 1fr ;
  }
  img.main-doctor-image {
    transform: none;
    position: relative;
}

.intro-inner {
    display: flex;
    justify-content: space-around;
    padding-top: 10rem;
}

.intro-inner .text {
    transform: none;
    position: relative;
    top: 0px;
    left: 0px;

    max-width: 50%;
}

body .intro-inner .text >div{
  font-size: 1.5em;
  line-height: 1.7;
}

body section.main-intro-section {
  padding-right: 5%;
  padding-left: 5%;
}
body span.content__text-tiny {
  font-size: .35em;
  width: 100%;
  display: block;
}

body .content__text.content__text--left {
  width: 70vw;
  text-align: center;
}

body .testo-gallery .column {
  /* width: 50% !important; */
  /* max-width: 50%; */
}

body .testo-gallery .galssed-burred-bg {
  padding-inline: 6rem;
}



body .galssed-burred-bg {
  background: rgb(4 15 21 / 68%);
}
body .sticky-video-container .card-content {flex-direction: row;justify-content: space-around;width: 100%;/* font-size: 40px; */}

body .counter-item span {
    font-size: 3.05em;
}

body .counter-item h3 {
    font-size: .75em;
    margin-top: 10PX;
}

body footer {
  /* display: grid; */
  /* grid-template-columns: 1fr 2fr 1fr; */
  /* align-items: center; */
}

body footer .credit {
  margin-top: 0px;
}

body .contact-form-section
{
  border-top-left-radius: 5vw;
border-top-right-radius: 5vw;
}




  body .media-container .media-item {
    min-width: 198px;
}

body .media-container {
    margin-top: 2rem;
}

body .media-container .title {
    font-size: 16px;
    line-height: 1.5;
    /* text-align: right; */
}

body .media-container .play-button {
    width: 42px;
}

body .choose-service-grid span {
    font-size: 18px;
}

body .footer-links a {
    font-size: 18px;
}

body .footer-links {
    gap: 1rem;
}

body .galssed-burred-bg h3 , body .galssed-burred-bg h3 span {
  font-size: 2rem;
  margin-bottom: .5rem;
}

body .galssed-burred-bg span {
  font-size: 1rem;
}

body .hamburger {
  display: none;
}

body .mobile-header {
  font-size: 19px;
  padding-left: 0px;
}

body .mobile-header .btn-primary {
  font-size: 19px;
  padding: 8px 16px !important;
}
body .mobile-header .mobile-logo {
  max-height: 98px;
}



body ul.desktop-menu { 
  display: flex;
  gap: 1rem;

}



}

.content__text--left {
  justify-self: center;
}

.splide__pagination {
  position: relative !important;
}
.coming-soon-component {
  background: #fff;
  box-shadow: 1px 4px 10px #eee;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}

.coming-soon-component h2 {
  color: #555;
  font-size: 2em;
  margin-top: 3rem;
}

div#animation-container {}

.lottie-container dotlottie-player {
  margin: 1rem  auto;
  width: 80%;
}

.dotlottie-container dotlottie-player {
  margin: 1rem auto;
  max-width: 100%;
  width: 256px;
  height: 256px;
}

.no-data-animation {
  text-align: center;
}

.error-page {
  background: white;
}




.mobile-header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 98;
}


ul.desktop-menu {
  display: none;
}



ul{
  margin:0;
  padding:0;
  /* display:flex; */
}

ul.blur-on-hover li{
  list-style:none;

  transition:0.5s;
}

ul.blur-on-hover li a{
  display: block;
  position:relative;
  text-decoration:none;
  padding:5px;
  font-size:18px;
  font-family: sans-serif;

  text-transform:uppercase;
  transition:0.35s;
}

ul.blur-on-hover:hover li a{
  transform:scale(.9);
  opacity:0.8;
  filter:blur(1px);
}

ul.blur-on-hover li a:hover{
  transform:scale(1.1);
  opacity:1;
  filter:blur(0);
  text-decoration:none;
  color:#fff;
}

ul.blur-on-hover li a:before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: var(--color-primary);
  transition:0.5s;
  transform-origin:right;
  transform:scaleX(0);
  z-index:-1;
  border-radius: 4px;
}
ul.blur-on-hover li a:hover:before{
  transition:transform 0.5s;
  transform-origin:left;
  transform:scaleX(1);
}

 .media-item > button {
  height: 100%;
  z-index: 100;
  position: relative;
}


@keyframes rotate {
  0% {
    transform: rotate(0deg);
 }
  100% {
    transform: rotate(360deg);
 }
}
.gradient {
  --size: 750px;
  --speed: 50s;
  --easing: cubic-bezier(0.8, 0.2, 0.2, 0.8);
  width: var(--size);
  height: var(--size);
  filter: blur(calc(var(--size) / 5));
  background-image: linear-gradient(#4377ef, #7befd0);
  animation: rotate var(--speed) var(--easing) alternate infinite;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  position: absolute;
}
@media (min-width: 720px) {
  .gradient {
    --size: 500px;
 }
}



.embed-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}



/* Modern Services Section Styles */
.services-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.services-heading {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}

.services-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--primary-color, #147e94);
}

.services-title__line {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, rgba(20,126,148,0) 0%, rgba(20,126,148,1) 100%);
  margin-right: 1rem;
  border-radius: 5px;
}

.services-title__text {
  position: relative;
  font-weight: 700;
}

.services-title__text::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, rgba(20,126,148,1) 0%, rgba(20,126,148,0) 100%);
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 5px;
}

.services-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
  position: relative;
  z-index: 2;
}

.services-grid__item {
  /* list-style: none; */
  /* padding: 0.75rem; */
}

/* Service Card Styles */
.service-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  /* transform-style: preserve-3d; */
  /* perspective: 1000px; */
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-card:hover .service-card__image {
  transform: scale(1.08);
}

.service-card:hover .service-card__overlay {
  opacity: 0.6;
}

.service-card__image-container {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
  opacity: 0.4;
  transition: opacity 0.4s ease;
}

.service-card__content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #333;
  position: relative;
  padding-bottom: 0.75rem;
}

.service-card__title:after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-color, #147e94);
  border-radius: 3px;
}

.service-card__description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-card__footer {
  margin-top: auto;
}

.service-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--primary-color, #147e94);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 4px 15px rgba(20, 126, 148, 0.2);
  position: relative;
  overflow: hidden;
}

.service-card__button:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.6s ease;
}

.service-card__button:hover {
  background: var(--primary-dark, #036377);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(20, 126, 148, 0.3);
}

.service-card__button:hover:before {
  transform: translateX(100%) skewX(-15deg);
}

.service-card__button-icon {
  transition: transform 0.3s ease;
}

.service-card__button:hover .service-card__button-icon {
  transform: translateX(4px);
}

/* Make the slider dots more modern */
.splide__pagination {
  bottom: -2.5rem !important;
}

.splide__pagination__page {
  background: #ccc !important;
  opacity: 1 !important;
  width: 10px !important;
  height: 10px !important;
  margin: 0 6px !important;
  transition: all 0.3s ease !important;
}

.splide__pagination__page.is-active {
  transform: scale(1.3) !important;
  background: var(--primary-color, #147e94) !important;
}

/* Responsive styles for the services section */
@media screen and (max-width: 768px) {
  .services-title {
      font-size: 2rem;
  }
  
  .services-subtitle {
      font-size: 1rem;
  }
  
  .service-card__image-container {
      height: 180px;
  }
  
  .service-card__content {
      padding: 1.25rem;
  }
  
  .service-card__title {
      font-size: 1.3rem;
  }
}

@media screen and (max-width: 480px) {
  .services-section {
      padding: 3rem 0;
  }
  
  .services-heading {
      margin-bottom: 2.5rem;
  }
  
  .services-title {
      font-size: 1.8rem;
  }
  
  .services-grid__item {
      padding: 0.5rem;
  }
}

/* Modern Results Section Styles */
.results-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.results-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.03) 0%, rgba(0,0,0,0) 100%);
  z-index: 0;
}

.results-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* Results Header */
.results-header {
  margin-bottom: 4rem;
  position: relative;
}

.results-header::after {
  content: '';
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-color, #147e94);
  border-radius: 5px;
}

.results-header__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.results-header__badge {
  display: inline-block;
  background: rgba(20, 126, 148, 0.1);
  color: var(--primary-color, #147e94);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
}

.results-header__badge::before,
.results-header__badge::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--primary-color, #147e94);
  opacity: 0.3;
}

.results-header__badge::before {
  left: -40px;
}

.results-header__badge::after {
  right: -40px;
}

.results-header__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  position: relative;
}

.results-header__subtitle {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.results-header__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.results-header__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  min-width: 180px;
}

.results-header__button--primary {
  background: var(--primary-color, #147e94);
  color: white;
  box-shadow: 0 4px 15px rgba(20, 126, 148, 0.2);
  position: relative;
  overflow: hidden;
}

.results-header__button--primary:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.6s ease;
}

.results-header__button--primary:hover {
  background: var(--primary-dark, #036377);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(20, 126, 148, 0.3);
}

.results-header__button--primary:hover:before {
  transform: translateX(100%) skewX(-15deg);
}

.results-header__button--secondary {
  background: transparent;
  color: #333;
  border: 2px solid #eaeaea;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.results-header__button--secondary:hover {
  background: rgba(0, 0, 0, 0.03);
  transform: translateY(-3px);
  border-color: #d1d1d1;
}

.results-header__button-icon {
  transition: transform 0.3s ease;
}

.results-header__button:hover .results-header__button-icon {
  transform: translateX(4px);
}

/* Results Gallery */
.results-gallery {
  position: relative;
}

.results-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.results-gallery__item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 220px;
  position: relative;
}

.results-gallery__item--large {
  grid-column: span 2;
  grid-row: span 1;
  height: 280px;
}

.results-gallery__item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.results-gallery__image-container {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.results-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.results-gallery__item:hover .results-gallery__image {
  transform: scale(1.08);
}

.results-gallery__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.results-gallery__item:hover .results-gallery__overlay {
  opacity: 1;
}

.results-gallery__overlay-text {
  color: white;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.results-gallery__item:hover .results-gallery__overlay-text {
  transform: translateY(0);
}

.results-gallery__more {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.results-gallery__more-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  color: var(--primary-color, #147e94);
  font-weight: 600;
  background: rgba(20, 126, 148, 0.05);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.results-gallery__more-button:hover {
  background: rgba(20, 126, 148, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.results-gallery__more-button svg {
  transition: transform 0.3s ease;
}

.results-gallery__more-button:hover svg {
  transform: translateY(-3px);
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
  .results-gallery__grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media screen and (max-width: 768px) {
  .results-section {
    padding: 4rem 0;
  }

  .results-header {
    margin-bottom: 3rem;
  }

  .results-header__title {
    font-size: 2rem;
  }

  .results-gallery__grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }

  .results-gallery__item {
    height: 240px;
  }
}

@media screen and (max-width: 640px) {
  .results-header__title {
    font-size: 1.75rem;
  }

  .results-header__subtitle {
    font-size: 1rem;
  }

  .results-gallery__item--large {
    grid-column: span 1;
    grid-row: span 1;
    height: 240px;
  }
}

@media screen and (max-width: 480px) {
  .results-section {
    padding: 3rem 0;
  }

  .results-header__badge {
    font-size: 0.75rem;
  }

  .results-header__actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .results-header__button {
    width: 100%;
  }

  .results-gallery__grid {
    grid-template-columns: 1fr;
  }

  .results-gallery__item {
    height: 220px;
  }
}

/* Modern Media Section Styles */
.media-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.media-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  background: white;
  height: 100%;
}

.media-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.media-card__button {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  height: 100%;
  text-align: left;
}

.media-card__image-container {
  position: relative;
  height: 140px;
  overflow: hidden;
}

.media-card__thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.media-card:hover .media-card__thumbnail {
  transform: scale(1.05);
}

.media-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
  z-index: 1;
}

.media-card__play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  z-index: 2;
  transition: all 0.3s ease;
  opacity: 0.85;
  backdrop-filter: blur(3px);
}

.media-card:hover .media-card__play-button {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  background: rgba(20, 126, 148, 0.8);
}

.media-card__content {
  padding: 1rem;
}

.media-card__title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: #333;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media screen and (max-width: 768px) {
  .media-container {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
  }
  
  .media-card__image-container {
    height: 110px;
  }
  
  .media-card__content {
    padding: 0.75rem;
  }
  
  .media-card__title {
    font-size: 0.9rem;
  }
}

/* Modern Contact Form Styles */
.contact-form-section {
  /* background: rgba(255, 255, 255, 0.03); */
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(5px);
  padding: 3rem;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  /* background: rgba(20, 126, 148, 0.05); */
  border-radius: 50%;
  top: -100px;
  right: -100px;
  z-index: -1;
}

.contact-form-section::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(20, 126, 148, 0.05);
  border-radius: 50%;
  bottom: -75px;
  left: -75px;
  z-index: -1;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #444;
}

.custom-field input, 
.custom-field textarea {
  width: 100%;
  padding: 12px 16px !important;
  background: rgba(255, 255, 255, 0.8) !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03) !important;
  transition: all 0.3s ease;
}

.custom-field input:focus, 
.custom-field textarea:focus {
  border-color: var(--primary-color, #147e94) !important;
  background: white !important;
  box-shadow: 0 6px 15px rgba(20, 126, 148, 0.1) !important;
}

.choose-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.btn-white {
  background: var(--primary-color, #147e94);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(20, 126, 148, 0.2);
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.btn-white:hover {
  background: var(--primary-dark, #036377);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(20, 126, 148, 0.3);
}

.info-shadow {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  margin-top: 1.5rem;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .contact-form-section {
    padding: 2rem;
  }
  
  .choose-service-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.75rem;
  }
}

@media screen and (max-width: 480px) {
  .contact-form-section {
    padding: 1.5rem;
  }
  
  .choose-service-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.5rem;
  }
}

/* Unique Media Cards Design */
.media-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.media-card {
  position: relative;
  height: 100%;
  perspective: 1000px;
}

.media-card__wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.media-card:hover .media-card__wrapper {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.media-card__gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(145deg, rgba(20, 126, 148, 0.7) 0%, rgba(3, 99, 119, 0.9) 100%);
  opacity: 0;
  z-index: 1;
  transition: opacity 0.4s ease;
  border-radius: 16px;
}

.media-card:hover .media-card__gradient {
  opacity: 0.85;
}

.media-card__button {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
  text-align: right;
  z-index: 2;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
}

.media-card__image-container {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.media-card__thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  border-radius: 16px;
}

.media-card:hover .media-card__thumbnail {
  transform: scale(1.1);
}

.media-card__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  z-index: 3;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.media-card:hover .media-card__content {
  opacity: 1;
  transform: translateY(0);
}

.media-card__title {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.media-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--primary-color, #147e94);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-delay: 0.1s;
}

.media-card:hover .media-card__badge {
  opacity: 1;
  transform: translateY(0);
}

.media-card__play-icon {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
}

.media-card:hover .media-card__play-icon {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.media-card__play-circle {
  fill: rgba(255, 255, 255, 0.15);
  stroke: white;
  stroke-width: 2;
}

.media-card__play-triangle {
  fill: white;
}

@media screen and (max-width: 768px) {
  .media-container {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    margin: 1rem;
  }
  
  .media-card__image-container {
    height: 180px;
  }
  
  .media-card__content {
    padding: 1rem;
  }
  
  .media-card__title {
    font-size: 1rem;
  }
  
  .media-card__play-icon {
    width: 50px;
    height: 50px;
  }
}

/* Modern Footer Styles */
.site-footer {
  background: linear-gradient(to right, #1e293b, #0f172a);
  color: #e2e8f0;
  padding: 0;
  position: relative;
  z-index: 10;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, 
    var(--primary-color, #147e94), 
    var(--primary-dark, #036377),
    var(--primary-color, #147e94)
  );
  opacity: 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.footer-primary {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  max-width: 160px;
  margin-bottom: 1.5rem;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin: 0;
}

.footer-heading {
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-color, #147e94);
  border-radius: 3px;
}

.footer-links {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary-color, #147e94);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-contact-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: #cbd5e1;
}

.footer-contact-list svg {
  margin-left: 0.75rem;
  flex-shrink: 0;
  color: var(--primary-color, #147e94);
}

.footer-contact-list span {
  font-size: 0.9rem;
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-copyright p {
  margin: 0;
  font-size: 0.9rem;
  color: #94a3b8;
}

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

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background-color: var(--primary-color, #147e94);
  transform: translateY(-3px);
}

@media screen and (max-width: 992px) {
  .footer-primary {
    grid-template-columns: 1fr 1fr;
    row-gap: 3rem;
  }
  
  .footer-brand {
    grid-column: span 2;
    text-align: center;
    align-items: center;
  }
  
  .footer-description {
    max-width: 500px;
  }
}

@media screen and (max-width: 768px) {
  .footer-content {
    padding: 3rem 1.5rem;
  }
  
  .footer-primary {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-brand {
    grid-column: 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}

/* Enhanced Booking Form Styles */
.booking-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  /* background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(20, 126, 148, 0.05)); */
}

.booking-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.booking-header {
  text-align: center;
  margin-bottom: 3rem;
}

.booking-badge {
  display: inline-block;
  background: rgba(20, 126, 148, 0.1);
  color: var(--primary-color, #147e94);
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
}

.booking-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color, #147e94);
  margin-bottom: 1rem;
}

.booking-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.booking-form-wrapper {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

.booking-form-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
}

.booking-form-shape {
  position: absolute;
  border-radius: 50%;
}

.booking-form-shape--1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(20, 126, 148, 0.1) 0%, rgba(3, 99, 119, 0.05) 100%);
  top: -150px;
  left: -150px;
}

.booking-form-shape--2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(20, 126, 148, 0.1) 0%, rgba(3, 99, 119, 0.05) 100%);
  bottom: -100px;
  right: -100px;
}

.booking-form {
  position: relative;
  z-index: 1;
  padding: 3rem;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.booking-form-group {
  margin-bottom: 2rem;
  position: relative;
}

.booking-label {
  display: flex;
  align-items: center;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #444;
}

.booking-label-icon {
  margin-left: 0.5rem;
  color: var(--primary-color, #147e94);
}

.booking-input-wrapper {
  position: relative;
}

.booking-input-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color, #147e94);
  opacity: 0.6;
}

.booking-input input {
  width: 100%;
  padding: 0.8rem 2.5rem 0.8rem 1rem !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 8px !important;
  background-color: #f9f9f9 !important;
  transition: all 0.3s ease;
}

.booking-input input:focus {
  border-color: var(--primary-color, #147e94) !important;
  box-shadow: 0 0 0 3px rgba(20, 126, 148, 0.1) !important;
  background-color: white !important;
}

.booking-service-selector,
.booking-subservice-selector {
  background-color: rgba(249, 249, 249, 0.7);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid #eee;
}

.booking-options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.booking-form-submit {
  text-align: center;
  margin-top: 3rem;
}

.booking-submit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--primary-color, #147e94);
  color: white;
  border: none;
  padding: 1rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(20, 126, 148, 0.3);
}

.booking-submit-button:hover {
  background: var(--primary-dark, #036377);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(20, 126, 148, 0.4);
}

.booking-submit-button svg {
  transition: transform 0.3s ease;
}

.booking-submit-button:hover svg {
  transform: translateX(5px);
}

.booking-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #777;
}

.booking-error {
  color: #e53e3e;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

@media screen and (max-width: 768px) {
  .booking-form-grid {
    grid-template-columns: 1fr;
  }
  
  .booking-form {
    padding: 2rem;
  }
  
  .booking-service-selector,
  .booking-subservice-selector {
    padding: 1.5rem;
  }
  
  .booking-title {
    font-size: 2rem;
  }
}

/* Enhanced Footer Styles */
.site-footer {
  background: linear-gradient(to bottom, #1e293b, #0f172a);
  color: #e2e8f0;
  padding: 0;
  position: relative;
  z-index: 10;
  margin-top: 6rem;
}

.footer-wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  overflow: hidden;
  transform: rotate(180deg);
}

.footer-wave svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.footer-wave-fill {
  fill: #1e293b;
}

.footer-content {
  max-width: 90%;
  margin: 0 auto;
  padding: 4rem 1.5rem 2rem;
}

.footer-primary {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  max-width: 160px;
  margin-bottom: 1.5rem;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 2rem;
  text-align: right;
}

.footer-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.footer-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color, #147e94);
  margin-bottom: 0.25rem;
}

.footer-stat-label {
  font-size: 0.85rem;
  color: #cbd5e1;
}

.footer-links-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0rem;
}

.footer-heading {
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
  text-align: right;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-color, #147e94);
  border-radius: 3px;
}

.footer-links {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  font-size: 0.95rem;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary-color, #147e94);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-contact-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
  color: #cbd5e1;
}

.footer-contact-list svg {
  margin-left: 0.75rem;
  flex-shrink: 0;
  color: var(--primary-color, #147e94);
}

.footer-contact-list span {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #fff;
}

.footer-secondary {
  /* display: grid; */
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-newsletter-text {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.footer-newsletter-form {
  width: 100%;
}

.footer-newsletter-input-wrapper {
  display: flex;
  position: relative;
  height: 50px;
}

.footer-newsletter-input {
  flex-grow: 1;
  padding: 0 1rem;
  border: none;
  border-radius: 8px 0 0 8px;
  font-size: 0.95rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
}

.footer-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
}

.footer-newsletter-button {
  width: 50px;
  border: none;
  background-color: var(--primary-color, #147e94);
  color: white;
  border-radius: 0 8px 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-newsletter-button:hover {
  background-color: var(--primary-dark, #036377);
}

.footer-social-extended {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-link i {
  margin-left: 0.75rem;
  font-size: 1.25rem;
}

.footer-social-link:hover {
  background-color: var(--primary-color, #147e94);
  transform: translateY(-3px);
}

.footer-app-text {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

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

.footer-app-link img {
  height: 40px;
  border-radius: 8px;
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1.5rem;
}

.footer-copyright p {
  margin: 0;
  font-size: 0.9rem;
  color: #94a3b8;
}

.footer-legal {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1.5rem;
}

.footer-legal li a {
  color: #94a3b8;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal li a:hover {
  color: white;
}

.footer-payment {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-payment span {
  font-size: 0.9rem;
  color: #94a3b8;
}

.footer-payment-icons {
  display: flex;
  gap: 0.75rem;
}

.footer-payment-icons img {
  height: 24px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-payment-icons img:hover {
  opacity: 1;
}

@media screen and (max-width: 1200px) {
  .footer-primary {
    grid-template-columns: 1fr 1fr;
    row-gap: 3rem;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
  
  .footer-secondary {
    grid-template-columns: 1fr 1fr;
    row-gap: 3rem;
  }
  
  .footer-newsletter {
    grid-column: span 2;
  }
}

@media screen and (max-width: 768px) {
  .footer-wave {
    top: -50px;
    height: 50px;
  }
  
  .footer-content {
    padding: 3rem 1.5rem 2rem;
  }
  
  .footer-primary {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-brand {
    grid-column: 1;
  }
  
  .footer-links-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-secondary {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-newsletter {
    grid-column: 1;
  }
  
  .footer-stats {
    justify-content: space-around;
    width: 100%;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  .footer-payment {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* Enhanced intro context section */
.intro-context {
  position: relative;
  margin-bottom: var(--space-xl);
  /* padding-right: var(--space-lg); */
  /* border-right: 3px solid rgba(var(--color-primary-rgb), 0.15); */
  max-width: 90%;
}

.intro-context::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: var(--space-lg);
  width: 30%;
  height: 1px;
  /* background: linear-gradient(to left, var(--color-primary), transparent); */
}

/* Stats section with improved hierarchy */
.intro-stats {
  margin-bottom: var(--space-xl);
  position: relative;
}

.intro-stats-heading {
  font-size: var(--font-scale-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  padding-bottom: var(--space-xs);
  opacity: 0.9;
}

.intro-stats-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
}

/* Decorative dots for the image to enhance hierarchy */
.intro-image-dots {
  position: absolute;
  top: 10%;
  right: 10%;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  z-index: var(--z-elements);
}

.intro-image-dots span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0.6;
}

.intro-image-dots span:nth-child(1) {
  animation: pulseDot 2s infinite;
}

.intro-image-dots span:nth-child(2) {
  animation: pulseDot 2s infinite 0.4s;
}

.intro-image-dots span:nth-child(3) {
  animation: pulseDot 2s infinite 0.8s;
}

@keyframes pulseDot {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}

/* Mobile adaptations for the new elements */
@media screen and (max-width: 992px) {
  .intro-context {
    border-right: none;
    padding-right: 0;
    max-width: 100%;
    text-align: center;
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.1);
  }
  
  .intro-context::after {
    right: 35%;
    width: 30%;
  }
  
  .intro-stats-heading {
    text-align: center;
    display: block;
  }
  
  .intro-stats-heading::after {
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
  }
  
  .intro-image-dots {
    display: none;
  }
}

/* Enhanced Services Section Styles */
.services-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.services-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  background-image: 
    linear-gradient(to right, var(--color-primary) 1px, transparent 1px),
    linear-gradient(to bottom, var(--color-primary) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.services-accent {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  filter: blur(60px);
}

.services-accent--1 {
  top: -15%;
  right: -10%;
  width: 40%;
  height: 60%;
  background: var(--color-primary);
  opacity: 0.03;
}

.services-accent--2 {
  bottom: -10%;
  left: -5%;
  width: 25%;
  height: 30%;
  background: var(--color-secondary);
  opacity: 0.02;
}

.services-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
  width: 1200px;
}

.services-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: var(--font-scale-xs);
  font-weight: var(--font-weight-semibold);
  background: rgba(var(--color-primary-rgb), 0.08);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  position: relative;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.services-badge::before,
.services-badge::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 20px;
  background: var(--color-primary);
  top: 50%;
  opacity: 0.4;
}

.services-badge::before {
  right: -30px;
}

.services-badge::after {
  left: -30px;
}

.services-heading {
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
}

.services-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  font-size: var(--font-scale-3xl);
  font-weight: var(--font-weight-bold);
  position: relative;
}

.services-title__line {
  display: inline-block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, rgba(var(--color-primary-rgb), 0) 0%, var(--color-primary) 100%);
  margin-left: var(--space-sm);
  border-radius: 3px;
  position: relative;
}

.services-title__text {
  position: relative;
  padding-bottom: var(--space-sm);
}

.services-title__text::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary) 0%, rgba(var(--color-primary-rgb), 0) 100%);
  right: calc(-40px - var(--space-sm));
  top: 50%;
  transform: translateY(-50%);
  border-radius: 3px;
}

.services-subtitle {
  max-width: 600px;
  margin: 0 auto;
  font-size: var(--font-scale-md);
  color: #555;
  line-height: 1.6;
}

.services-wrapper {
  position: relative;
  margin-bottom: var(--space-2xl);
}

.services-controls {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
  padding: 0 var(--space-sm);
}

.services-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  color: var(--color-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.services-arrow:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(var(--color-primary-rgb), 0.2);
}

.services-arrow--prev {
  left: 0;
}

.services-arrow--next {
  right: 0;
}

.services-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

.services-view-all {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(var(--color-primary-rgb), 0.05);
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-scale-base);
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.services-view-all:hover {
  background: rgba(var(--color-primary-rgb), 0.1);
  transform: translateY(-3px);
}

.services-view-all svg {
  transition: transform 0.3s ease;
}

.services-view-all:hover svg {
  transform: translateX(5px);
}

@media screen and (max-width: 768px) {
  .services-section {
    padding: 4rem 0;
  }
  
  .services-title {
    font-size: var(--font-scale-2xl);
  }
  
  .services-controls {
    display: none;
  }
  
  .services-arrow {
    width: 40px;
    height: 40px;
  }
}

/* Enhanced Testimonials Section Styles */
.testimonials-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.testimonials-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  background-image: radial-gradient(var(--color-primary) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}

.testimonials-accent {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  filter: blur(80px);
}

.testimonials-accent--1 {
  top: -20%;
  right: -15%;
  width: 50%;
  height: 70%;
  background: var(--color-primary);
  opacity: 0.03;
}

.testimonials-accent--2 {
  bottom: -20%;
  left: -10%;
  width: 40%;
  height: 50%;
  background: var(--color-secondary);
  opacity: 0.02;
}

.testimonials-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
}

.testimonials-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: var(--font-scale-xs);
  font-weight: var(--font-weight-semibold);
  background: rgba(var(--color-primary-rgb), 0.08);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  position: relative;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.testimonials-badge::before,
.testimonials-badge::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 20px;
  background: var(--color-primary);
  top: 50%;
  opacity: 0.4;
}

.testimonials-badge::before {
  right: -30px;
}

.testimonials-badge::after {
  left: -30px;
}

.testimonials-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  font-size: var(--font-scale-3xl);
  font-weight: var(--font-weight-bold);
  position: relative;
}

.testimonials-title__line {
  display: inline-block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, rgba(var(--color-primary-rgb), 0) 0%, var(--color-primary) 100%);
  margin-left: var(--space-sm);
  border-radius: 3px;
  position: relative;
}

.testimonials-title__text {
  position: relative;
  padding-bottom: var(--space-sm);
}

.testimonials-title__text::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary) 0%, rgba(var(--color-primary-rgb), 0) 100%);
  right: calc(-40px - var(--space-sm));
  top: 50%;
  transform: translateY(-50%);
  border-radius: 3px;
}

.testimonials-subtitle {
  max-width: 600px;
  margin: 0 auto;
  font-size: var(--font-scale-md);
  color: #555;
  line-height: 1.6;
}

.testimonials-summary {
  margin-bottom: var(--space-2xl);
}

.testimonials-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  margin: 0 auto;
  max-width: 800px;
  background: rgba(255, 255, 255, 0.5);
  padding: var(--space-lg);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonials-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}

.testimonials-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 10%;
  right: calc(-1 * var(--space-xl));
  height: 80%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(var(--color-primary-rgb), 0.2), transparent);
}

.testimonials-stat-number {
  font-size: var(--font-scale-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
  line-height: 1;
}

.testimonials-stat-label {
  font-size: var(--font-scale-sm);
  color: #666;
  text-align: center;
}

.testimonials-wrapper {
  margin-bottom: var(--space-2xl);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.testimonial-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  padding: var(--space-lg);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: rgba(var(--color-primary-rgb), 0.1);
}

.testimonial-card__header {
  display: flex;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.testimonial-card__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: var(--space-md);
  flex-shrink: 0;
  position: relative;
}

.testimonial-card__avatar::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid rgba(var(--color-primary-rgb), 0.1);
  border-radius: 50%;
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card__meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-card__name {
  font-size: var(--font-scale-lg);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-xs);
  color: #333;
}

.testimonial-card__stars {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-card__date {
  font-size: var(--font-scale-xs);
  color: #999;
}

.testimonial-card__body {
  position: relative;
  z-index: 1;
}

.testimonial-card__content {
  font-size: var(--font-scale-base);
  line-height: 1.7;
  color: #555;
  margin-bottom: var(--space-md);
  position: relative;
}

.testimonial-card__service {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: var(--space-sm);
  font-size: var(--font-scale-sm);
}

.testimonial-card__service-label {
  color: #777;
  margin-left: var(--space-xs);
}

.testimonial-card__service-name {
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
}

.testimonial-card__quote-icon {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  width: 80px;
  height: 80px;
  opacity: 0.05;
  z-index: 0;
  color: var(--color-primary);
  transform: rotate(180deg);
}

.testimonials-cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

.testimonials-cta-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-primary);
  color: white;
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-scale-base);
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(var(--color-primary-rgb), 0.2);
}

.testimonials-cta-button:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(var(--color-primary-rgb), 0.3);
}

@media screen and (max-width: 992px) {
  .testimonials-stats {
    flex-direction: column;
    gap: var(--space-lg);
    padding: var(--space-md);
  }
  
  .testimonials-stat {
    width: 100%;
  }
  
  .testimonials-stat:not(:last-child)::after {
    content: none;
  }
  
  .testimonials-stat:not(:last-child)::before {
    content: '';
    position: absolute;
    bottom: calc(-1 * var(--space-md));
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(var(--color-primary-rgb), 0.2), transparent);
  }
}

@media screen and (max-width: 768px) {
  .testimonials-section {
    padding: 4rem 0;
  }
  
  .testimonials-title {
    font-size: var(--font-scale-2xl);
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card__avatar {
    width: 50px;
    height: 50px;
  }
}

/* Enhanced Service Card Styles */
.service-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(var(--color-primary-rgb), 0.08);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(var(--color-primary-rgb), 0.15);
  border-color: rgba(var(--color-primary-rgb), 0.15);
}

.service-card:hover .service-card__image {
  transform: scale(1.08);
}

.service-card:hover .service-card__overlay {
  opacity: 0.7;
}

.service-card:hover .service-card__accent--1 {
  transform: translateY(-10px) scale(1.2);
  opacity: 0.12;
}

.service-card:hover .service-card__accent--2 {
  transform: translateX(10px) scale(1.1);
  opacity: 0.08;
}

.service-card__accents {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  border-radius: 18px;
}

.service-card__accent {
  position: absolute;
  border-radius: 50%;
  background: var(--color-primary);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 0;
}

.service-card__accent--1 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  right: -100px;
  opacity: 0.07;
}

.service-card__accent--2 {
  width: 120px;
  height: 120px;
  top: -60px;
  left: -60px;
  opacity: 0.05;
  background: var(--color-secondary);
}

.service-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 5;
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.service-card:hover .service-card__badge {
  transform: rotate(15deg) scale(1.1);
  background: var(--color-primary);
  color: white;
  box-shadow: 0 6px 20px rgba(var(--color-primary-rgb), 0.2);
}

.service-card__image-container {
  position: relative;
  height: 220px;
  overflow: hidden;
  z-index: 1;
}

.service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, 
    rgba(var(--color-primary-rgb), 0.1) 0%, 
    rgba(var(--color-primary-rgb), 0.8) 100%);
  opacity: 0.5;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.service-card__content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.service-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #333;
  position: relative;
  padding-bottom: 0.75rem;
}

.service-card__title:after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, rgba(var(--color-primary-rgb), 0.3), var(--color-primary));
  border-radius: 3px;
}

.service-card__description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.service-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed rgba(var(--color-primary-rgb), 0.15);
}

.service-card__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #555;
  font-size: 0.85rem;
}

.service-card__feature svg {
  color: var(--color-primary);
  opacity: 0.8;
}

.service-card__footer {
  margin-top: auto;
}

.service-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--color-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 4px 15px rgba(var(--color-primary-rgb), 0.2);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.service-card__button:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.6s ease;
}

.service-card__button:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(var(--color-primary-rgb), 0.3);
  color: white;
}

.service-card__button:hover:before {
  transform: translateX(100%) skewX(-15deg);
}

.service-card__button-icon {
  transition: transform 0.3s ease;
}

.service-card__button:hover .service-card__button-icon {
  transform: translateX(4px);
}

/* Service card responsive styles */
@media screen and (max-width: 768px) {
  .service-card__image-container {
    height: 180px;
  }
  
  .service-card__content {
    padding: 1.25rem;
  }
  
  .service-card__title {
    font-size: 1.3rem;
  }
  
  .service-card__features {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media screen and (max-width: 480px) {
  .service-card__image-container {
    height: 160px;
  }
  
  .service-card__badge {
    width: 30px;
    height: 30px;
  }
}

/* Service Card Category */
.service-card__category {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--color-primary-dark);
  font-weight: var(--font-weight-medium);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 3;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px);
  border: 1px solid rgba(var(--color-primary-rgb), 0.1);
}

.service-card:hover .service-card__category {
  color: white;
  transform: translateY(-3px) scale(1.05);
  border-color: transparent;
  letter-spacing: 0.03em;
  padding-left: 1rem;
  padding-right: 1rem;
  animation: categoryPulse 2s infinite;
}

/* Make service card button more elegant */
.service-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--color-primary);
  color: white;
  padding: 0.65rem 1.25rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(var(--color-primary-rgb), 0.2);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  letter-spacing: 0.02em;
  width: auto;
  margin: 0 auto;
}

/* Update view all services link */
.services-view-all {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.5rem 1rem;
  background: rgba(var(--color-primary-rgb), 0.05);
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
  font-size: 0.9rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(var(--color-primary-rgb), 0.05);
}

.services-view-all:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(var(--color-primary-rgb), 0.15);
}

.services-view-all svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.services-view-all:hover svg {
  transform: translateX(5px);
  stroke: white;
}

/* Update testimonials CTA button */
.testimonials-cta-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.6rem 1.2rem;
  background: var(--color-primary);
  color: white;
  font-weight: var(--font-weight-medium);
  font-size: 0.95rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(var(--color-primary-rgb), 0.2);
  letter-spacing: 0.02em;
}

.testimonials-cta-button:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(var(--color-primary-rgb), 0.3);
}

.testimonials-cta-button svg {
  width: 16px;
  height: 16px;
}

/* Enhanced Category Animation */
.service-card__category {
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.service-card__category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  opacity: 0;
  transform: translateX(-100%) rotate(10deg);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s ease;
  z-index: -1;
}

.service-card:hover .service-card__category {
  color: white;
  transform: translateY(-3px) scale(1.05);
  border-color: transparent;
  letter-spacing: 0.03em;
  padding-left: 1rem;
  padding-right: 1rem;
}

.service-card:hover .service-card__category::before {
  transform: translateX(0) rotate(0);
  opacity: 1;
}

/* Category pulse animation */
@keyframes categoryPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--color-primary-rgb), 0.4);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(var(--color-primary-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--color-primary-rgb), 0);
  }
}

/* Update hover animation */
.service-card:hover .service-card__category {
  color: white;
  transform: translateY(-3px) scale(1.05);
  border-color: transparent;
  letter-spacing: 0.03em;
  padding-left: 1rem;
  padding-right: 1rem;
  animation: categoryPulse 2s infinite;
}

/* Services Title Text Animation */
.services-title__text {
  position: relative;
  padding-bottom: var(--space-sm);
  transition: color 0.5s ease;
  background-image: linear-gradient(90deg, var(--color-primary-dark), var(--color-primary), var(--color-primary-light));
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: titleGradientShift 6s ease-in-out infinite, titleEntrance 1.2s cubic-bezier(0.17, 0.67, 0.29, 1) forwards;
  opacity: 0;
  transform: translateY(20px);
}

.services-title:hover .services-title__text {
  animation: titlePulse 1s ease-in-out infinite;
  letter-spacing: 0.02em;
}

.services-title__text::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary) 0%, rgba(var(--color-primary-rgb), 0) 100%);
  right: calc(-40px - var(--space-sm));
  top: 50%;
  transform: translateY(-50%);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.services-title:hover .services-title__text::after {
  width: 60px;
  background: linear-gradient(90deg, var(--color-primary-light) 0%, rgba(var(--color-primary-rgb), 0) 100%);
  opacity: 0.8;
}

/* Keyframes for services title animations */
@keyframes titleGradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes titlePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

@keyframes titleEntrance {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



.footer-social-link span , .footer-social-link i {
  color: #fff;
}

footer.site-footer span {
  color: #fff;
}
body  .side-menu {
  margin-left: 2.5rem !important;
}

