@charset "UTF-8";
@keyframes fadeUpIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.values-list li {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s ease;
}
.values-list li:nth-child(1) {
  transition-delay: 0.1s;
}
.values-list li:nth-child(2) {
  transition-delay: 0.2s;
}
.values-list li:nth-child(3) {
  transition-delay: 0.3s;
}
.values-list li:nth-child(4) {
  transition-delay: 0.4s;
}
.values-list li:nth-child(5) {
  transition-delay: 0.5s;
}
.values-list li.visible {
  opacity: 1;
  transform: translateX(0);
}

.about-image img {
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.about-image:hover img {
  transform: scale(1.05);
}
.about-image:hover .experience-badge {
  transform: translateY(-5px);
  transition: transform 0.5s ease;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 204, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 204, 0, 0);
  }
}
.btn-cta:hover {
  animation: pulse 1.5s infinite;
}

@keyframes buttonPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 144, 226, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(74, 144, 226, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(74, 144, 226, 0);
  }
}
.service-btn:hover, .portfolio-btn:hover {
  animation: buttonPulse 1.8s infinite;
}

.contact-info .info-item {
  transition: all 0.3s ease;
}
.contact-info .info-item:hover {
  transform: translateX(5px);
}
.contact-info .info-item:hover .icon-wrapper {
  transform: translateY(-3px) rotate(10deg);
}

.animate-on-scroll {
  will-change: transform, opacity;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #4a90e2;
  position: relative;
  margin-bottom: 2rem;
}
h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #ffcc00;
}

p {
  margin-bottom: 1.5rem;
}

ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: #4a90e2;
  transition: all 0.3s ease;
}
a:hover {
  color: rgb(30.8642857143, 105.3642857143, 192.6357142857);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.container.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.03) 0%, rgba(74, 144, 226, 0.01) 70%);
  z-index: 0;
  opacity: 0.7;
}
section:nth-child(odd)::before {
  top: -150px;
  right: -150px;
}
section:nth-child(even)::before {
  bottom: -150px;
  left: -150px;
}
section.hidden, section[style*="display: none"] {
  display: none !important;
  padding: 0 !important;
  border: 0 !important;
  margin: 0 !important;
}
section + section {
  position: relative;
}
section + section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.08));
  z-index: -1;
}

section + section {
  position: relative;
}
section + section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.08));
  z-index: -1;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}
.section-title h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #4a90e2, #ffcc00);
  border-radius: 5px;
}
.section-title p {
  color: #666666;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 1rem auto 0;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}
.fade-in.visible {
  opacity: 1;
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.section-with-pattern-bg {
  position: relative;
  z-index: 0;
}
.section-with-pattern-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/pattern.svg");
  background-repeat: repeat;
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
}

.portfolio-item {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-card {
  border-radius: 16px;
}

.contact-form-container {
  border-radius: 8px;
}

a, button, .btn, .card, .team-member {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
a:active, button:active, .btn:active, .card:active, .team-member:active {
  transform: scale(0.98);
}

section:not(:first-child) {
  border-top: 1px solid rgba(153, 153, 153, 0.1);
}

.scroll-to-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  color: #4a90e2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 999;
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-to-top:hover {
  background-color: #4a90e2;
  color: #ffffff;
  transform: translateY(-5px);
}
.scroll-to-top i {
  font-size: 1.2rem;
}

.page-hero {
  background: linear-gradient(135deg, #4a90e2, rgb(30.8642857143, 105.3642857143, 192.6357142857));
  padding: 100px 0 40px;
  color: #ffffff;
  margin-bottom: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}
.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}
.page-hero .breadcrumb {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-hero .breadcrumb .breadcrumb-item {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}
.page-hero .breadcrumb .breadcrumb-item:not(:first-child)::before {
  content: "/";
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.6);
}
.page-hero .breadcrumb .breadcrumb-item a {
  color: #ffffff;
  text-decoration: none;
}
.page-hero .breadcrumb .breadcrumb-item a:hover {
  text-decoration: underline;
}

/* CSS zum Schutz des Bildes */
.protected-image {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  pointer-events: none; /* Verhindert Maus-Events direkt auf dem Bild */
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
  align-items: flex-start;
}
.footer-links:empty {
  display: none;
}
.footer-links li:not([style*="display: none"]):last-child {
  margin-bottom: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0;
}
.footer-bottom p {
  margin-bottom: 5px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-bottom a {
  color: #ffcc00;
  text-decoration: underline;
}
.footer-bottom a:hover {
  color: #4a90e2;
}

.page-hero {
  background: linear-gradient(135deg, #4a90e2, rgb(30.8642857143, 105.3642857143, 192.6357142857));
  padding: 100px 0 40px;
  color: #ffffff;
  margin-bottom: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}
.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}
.page-hero .breadcrumb {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-hero .breadcrumb .breadcrumb-item {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}
.page-hero .breadcrumb .breadcrumb-item.active {
  color: #ffcc00;
}
.page-hero .breadcrumb .breadcrumb-item a {
  color: #ffffff;
  text-decoration: none;
}
.page-hero .breadcrumb .breadcrumb-item a:hover {
  text-decoration: underline;
}
.page-hero .breadcrumb .breadcrumb-item:not(:first-child)::before {
  content: "/";
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.6);
}

.legal-page {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #f8f9fa;
}
.legal-page h1 {
  margin-bottom: 40px;
}
.legal-page .legal-content {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}
.legal-page .legal-block {
  margin-bottom: 40px;
}
.legal-page .legal-block:last-child {
  margin-bottom: 0;
}
.legal-page .legal-block h2 {
  font-size: 1.5rem;
  color: #4a90e2;
  margin-bottom: 15px;
}
.legal-page .legal-block h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #ffcc00;
  margin-top: 6px;
}
.legal-page .legal-block p {
  margin-bottom: 15px;
  color: #666;
  line-height: 1.7;
}
.legal-page .legal-block p:last-child {
  margin-bottom: 0;
}
.legal-page .legal-block a {
  color: #4a90e2;
}
.legal-page .legal-block a:hover {
  color: #ffcc00;
  text-decoration: underline;
}
.legal-page .legal-block i {
  width: 20px;
  text-align: center;
  margin-right: 8px;
  color: #4a90e2;
}

h1, h2, h3, h4, h5, h6 {
  color: #333333;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.5px;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  position: relative;
  margin-bottom: 2rem;
}
h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #ffcc00;
}
.services h2, .testimonials h2 {
  text-align: center;
}
.services h2::after, .testimonials h2::after {
  left: 50%;
  transform: translateX(-50%);
}

p {
  color: #666666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

a {
  color: #4a90e2;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover, a:focus {
  color: rgb(30.8642857143, 105.3642857143, 192.6357142857);
  text-decoration: underline;
}

.text-small {
  font-size: 0.875rem;
}

.text-large {
  font-size: 1.125rem;
}

.testimonial-card .quote-text {
  font-size: 1.25rem;
}

.service-card p {
  font-size: 1rem;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
  min-height: 44px;
  min-width: 44px;
}
.btn:focus {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .btn {
    padding: 14px 32px;
    font-size: 1rem;
  }
}

.btn-primary {
  background-color: #4a90e2;
  color: #ffffff;
  border-color: #4a90e2;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #3a7bc8;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(74, 144, 226, 0.2);
}

.btn-cta {
  background-color: #ffcc00;
  color: #333333;
  border-color: #ffcc00;
  font-weight: 700;
}
.btn-cta:hover, .btn-cta:focus {
  background-color: #e6b800;
  color: #333333;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(255, 204, 0, 0.3);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid rgba(74, 144, 226, 0.3);
  color: #4a90e2;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 14px 30px;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.btn-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: rgba(74, 144, 226, 0.1);
  z-index: -1;
  transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.btn-outline:hover, .btn-outline:focus {
  transform: translateY(-3px);
  border-color: #4a90e2;
  color: rgb(34.3857142857, 117.3857142857, 214.6142857143);
  box-shadow: 0 7px 14px rgba(74, 144, 226, 0.15);
}
.btn-outline:hover::before, .btn-outline:focus::before {
  width: 100%;
}
.btn-outline i, .btn-outline svg {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.btn-outline:hover i, .btn-outline:hover svg {
  transform: translateX(4px);
}

.service-btn, .portfolio-btn {
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
}

.footer-social .social-icon:hover {
  background-color: #4a90e2;
}

.btn:focus-visible, .btn-cta:focus-visible, .btn-primary:focus-visible, .btn-outline:focus-visible, .btn-outline-light:focus-visible {
  outline: 3px solid #4a90e2;
  outline-offset: 3px;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}
.btn:focus:not(:focus-visible), .btn-cta:focus:not(:focus-visible), .btn-primary:focus:not(:focus-visible), .btn-outline:focus:not(:focus-visible), .btn-outline-light:focus:not(:focus-visible) {
  outline: none;
}
@media (max-width: 768px) {
  .btn, .btn-cta, .btn-primary, .btn-outline, .btn-outline-light {
    min-height: 48px;
    min-width: 48px;
    padding: 16px 36px;
    font-size: 1.1rem;
  }
  .btn:not(:last-child), .btn-cta:not(:last-child), .btn-primary:not(:last-child), .btn-outline:not(:last-child), .btn-outline-light:not(:last-child) {
    margin-bottom: 12px;
  }
}
.btn:active, .btn-cta:active, .btn-primary:active, .btn-outline:active, .btn-outline-light:active {
  transform: translateY(-1px);
  transition-duration: 0.1s;
}
.btn:disabled, .btn.disabled, .btn-cta:disabled, .btn-cta.disabled, .btn-primary:disabled, .btn-primary.disabled, .btn-outline:disabled, .btn-outline.disabled, .btn-outline-light:disabled, .btn-outline-light.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}
.btn:disabled:hover, .btn:disabled:focus, .btn.disabled:hover, .btn.disabled:focus, .btn-cta:disabled:hover, .btn-cta:disabled:focus, .btn-cta.disabled:hover, .btn-cta.disabled:focus, .btn-primary:disabled:hover, .btn-primary:disabled:focus, .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-outline:disabled:hover, .btn-outline:disabled:focus, .btn-outline.disabled:hover, .btn-outline.disabled:focus, .btn-outline-light:disabled:hover, .btn-outline-light:disabled:focus, .btn-outline-light.disabled:hover, .btn-outline-light.disabled:focus {
  transform: none !important;
  box-shadow: none !important;
}

@media (max-width: 768px) {
  .hero .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .hero .cta-buttons .btn, .hero .cta-buttons .btn-outline-light {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

form {
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #333333;
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #dddddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #ffffff;
}
.form-control:focus {
  border-color: #4a90e2;
  box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
  outline: none;
}
.form-control.is-invalid {
  border-color: #dc3545;
}
.form-control.is-invalid:focus {
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.invalid-feedback {
  display: block;
  width: 100%;
  margin-top: 5px;
  font-size: 0.875rem;
  color: #dc3545;
}

.form-check {
  display: flex;
  align-items: center;
}
.form-check input[type=checkbox] {
  margin-right: 10px;
  width: 18px;
  height: 18px;
  accent-color: #4a90e2;
}
.form-check label {
  margin-bottom: 0;
  font-weight: normal;
}

.submit-btn {
  background: linear-gradient(90deg, #4a90e2, rgb(34.3857142857, 117.3857142857, 214.6142857143));
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}
.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}
.submit-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(74, 144, 226, 0.3);
}
.submit-btn:hover::before {
  left: 100%;
}

@media (max-width: 767px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.visually-hidden:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.text-center {
  text-align: center;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

.mb-1 {
  margin-bottom: 0.5rem;
}

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

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

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

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 3rem;
}

.modal, .portfolio-modal {
  display: none;
  position: fixed;
  z-index: 1100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.85);
}

.modal-content {
  background-color: #ffffff;
  margin: 5% auto;
  padding: 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 800px;
  position: relative;
  animation: modalFadeIn 0.4s;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.modal-header h3 {
  margin-bottom: 0;
  color: #4a90e2;
}

.modal-body {
  margin-bottom: 30px;
}
.modal-body img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid #dddddd;
  padding-top: 20px;
}
.modal-footer button {
  margin-left: 10px;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #666666;
  transition: all 0.3s ease;
}
.close-modal:hover {
  color: #333333;
}

@media (max-width: 576px) {
  .modal-content {
    width: 95%;
    padding: 20px;
    margin: 10% auto;
  }
  .modal-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .modal-footer {
    flex-direction: column;
    gap: 10px;
  }
  .modal-footer button {
    margin-left: 0;
    width: 100%;
  }
}
#header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#header.header-transparent {
  background-color: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
  box-shadow: none;
}
#header.header-transparent .navbar {
  padding: 15px 0;
}
#header.header-scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}
#header.header-scrolled .navbar {
  padding: 10px 0;
}
#header.header-scrolled .logo span {
  color: #333333;
}
#header.header-scrolled .nav-links li a {
  color: #333333;
}
#header.header-scrolled .nav-links li a:hover, #header.header-scrolled .nav-links li a:focus {
  color: #4a90e2;
}
#header.header-scrolled .header-contact .contact-item {
  color: #333333;
}
#header.header-scrolled .header-contact .contact-item:hover {
  color: #4a90e2;
}
#header.header-scrolled .menu-toggle span {
  background-color: #333333;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
  transition: all 0.3s ease;
  position: relative;
}
.navbar .logo {
  display: flex;
  align-items: center;
  z-index: 100;
}
.navbar .logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.navbar .logo img {
  height: 40px;
  margin-right: 10px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.navbar .logo span {
  color: #ffffff;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.navbar .logo span strong {
  font-weight: 600;
  letter-spacing: 0.5px;
}
.navbar .header-contact {
  display: flex;
  gap: 20px;
  margin-right: 30px;
}
.navbar .header-contact .contact-item {
  display: flex;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.navbar .header-contact .contact-item i {
  margin-right: 8px;
  font-size: 0.9rem;
  opacity: 0.9;
  color: rgb(139.9357142857, 184.4357142857, 236.5642857143);
}
.navbar .header-contact .contact-item:hover {
  color: rgb(139.9357142857, 184.4357142857, 236.5642857143);
  transform: translateY(-2px);
}
.navbar .menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 100;
  border: none;
  background: transparent;
  outline: none;
}
.navbar .menu-toggle:focus {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}
.navbar .menu-toggle:hover span {
  background-color: #4a90e2;
}
.navbar .menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.navbar .menu-toggle[aria-expanded=true] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.navbar .menu-toggle[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
.navbar .menu-toggle[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.navbar .nav-links {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.navbar .nav-links li {
  margin: 0 5px;
  position: relative;
}
.navbar .nav-links li a {
  display: block;
  padding: 8px 16px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}
.navbar .nav-links li a:focus {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
  background-color: rgba(74, 144, 226, 0.1);
}
.navbar .nav-links li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: #4a90e2;
  transition: all 0.3s ease;
  transform: translateX(-50%);
  opacity: 0;
}
.navbar .nav-links li a:hover, .navbar .nav-links li a:focus {
  color: #ffffff;
}
.navbar .nav-links li a:hover::after, .navbar .nav-links li a:focus::after {
  width: 80%;
  opacity: 1;
}
.navbar .nav-links li.current-page a {
  color: #ffffff;
  font-weight: 600;
}
.navbar .nav-links li.current-page a::after {
  width: 80%;
  opacity: 1;
  background: #ffffff;
}
.navbar .nav-links li.nav-cta {
  margin-left: 10px;
}
.navbar .nav-links li.nav-cta .btn-nav-cta {
  background: linear-gradient(135deg, #4a90e2, rgb(34.3857142857, 117.3857142857, 214.6142857143));
  color: #ffffff;
  border-radius: 50px;
  padding: 10px 20px;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
  border: none;
  transition: all 0.3s ease;
}
.navbar .nav-links li.nav-cta .btn-nav-cta:hover, .navbar .nav-links li.nav-cta .btn-nav-cta:focus {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(74, 144, 226, 0.4);
}
.navbar .nav-links li.nav-cta .btn-nav-cta:hover::after, .navbar .nav-links li.nav-cta .btn-nav-cta:focus::after {
  display: none;
}
.navbar .nav-links li.nav-cta .btn-nav-cta:active {
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .navbar .header-contact {
    display: none;
  }
  .navbar .menu-toggle {
    display: flex;
  }
  .navbar .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 40px;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 99;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
  }
  .navbar .nav-links.active {
    right: 0;
  }
  .navbar .nav-links li {
    margin: 15px 0;
    width: 100%;
  }
  .navbar .nav-links li a {
    font-size: 1.2rem;
    width: 100%;
    padding: 12px 0;
  }
  .navbar .nav-links li a::after {
    height: 1px;
    bottom: 0;
    transform: none;
    left: 0;
  }
  .navbar .nav-links li a:hover::after, .navbar .nav-links li a:focus::after {
    width: 100%;
  }
  .navbar .nav-links li.nav-cta {
    margin-top: 20px;
  }
  .navbar .nav-links li.nav-cta .btn-nav-cta {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }
  #header.header-scrolled .nav-links {
    background: rgba(0, 0, 0, 0.95);
  }
  #header.header-scrolled .nav-links li a {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }
  #header.header-scrolled .nav-links li a:hover, #header.header-scrolled .nav-links li a:focus {
    color: rgb(139.9357142857, 184.4357142857, 236.5642857143) !important;
  }
  #header.header-scrolled .nav-links .nav-cta a {
    color: #ffffff !important;
  }
  #header .menu-toggle span {
    background-color: #ffffff;
  }
  #header.header-scrolled .menu-toggle span {
    background-color: #333333;
  }
  .menu-toggle[aria-expanded=true] #header.header-scrolled .menu-toggle span {
    background-color: #ffffff;
  }
}
body.menu-open {
  overflow: hidden;
}
@media (max-width: 991px) {
  body.menu-open {
    padding-right: 0;
  }
}

@media (max-width: 991px) {
  .nav-links {
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1), visibility 0s linear 0.5s, opacity 0.3s ease;
  }
  .nav-links.active {
    visibility: visible;
    opacity: 1;
  }
  .nav-links.active {
    transition-delay: 0s;
  }
  .nav-links li a {
    padding: 16px 0;
    margin: 8px 0;
  }
  .nav-links li a:focus-visible {
    outline: 2px solid #4a90e2;
    outline-offset: 4px;
    background-color: rgba(74, 144, 226, 0.1);
    border-radius: 4px;
  }
  .nav-links li a:focus:not(:focus-visible) {
    outline: none;
  }
  .menu-toggle {
    padding: 8px;
    margin: -8px;
  }
  .menu-toggle:focus-visible {
    outline: 2px solid #4a90e2;
    outline-offset: 4px;
    border-radius: 4px;
  }
  .menu-toggle:focus:not(:focus-visible) {
    outline: none;
  }
  .menu-toggle span {
    transform-origin: center;
  }
  .menu-toggle[aria-expanded=true] span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .menu-toggle[aria-expanded=true] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .menu-toggle[aria-expanded=true] span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}
.brand {
  color: #ffffff;
  font-size: 12px;
  text-align: center;
  margin-top: 5px;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../images/hero-bg.webp") center center/cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  will-change: transform;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(74, 144, 226, 0.4) 0%, rgba(0, 0, 0, 0) 50%), radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.3) 0%, rgba(0, 0, 0, 0) 60%);
  z-index: 1;
  will-change: transform;
}
.hero .parallax-element {
  position: absolute;
  z-index: 1;
  transform: translate3d(0, 0, 0);
  transition: transform 0.1s linear;
  will-change: transform, opacity;
  animation-fill-mode: both;
}
.hero .parallax-element.element-1 {
  top: 15%;
  left: 5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139.9357142857, 184.4357142857, 236.5642857143, 0.15) 0%, rgba(139.9357142857, 184.4357142857, 236.5642857143, 0) 70%);
  opacity: 0.7;
  animation: float 12s ease-in-out infinite alternate;
}
.hero .parallax-element.element-2 {
  bottom: 10%;
  right: 5%;
  width: 250px;
  height: 250px;
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  background: radial-gradient(circle, rgba(255, 219.3, 76.5, 0.25) 0%, rgba(255, 219.3, 76.5, 0) 70%);
  opacity: 0.6;
  animation: float 15s ease-in-out infinite alternate-reverse;
  filter: blur(1px);
}
.hero .parallax-element.element-3 {
  top: 30%;
  right: 15%;
  width: 150px;
  height: 150px;
  border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.12) 0%, rgba(255, 255, 255, 0.12) 100%);
  opacity: 0.5;
  animation: morph 20s linear infinite alternate;
}
.hero .hero-content {
  position: relative;
  z-index: 3;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition: transform 0.1s ease-out, opacity 0.1s ease-out;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 30px;
  animation: none;
}
.hero .hero-content h1 {
  margin-bottom: 25px;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  color: #ffffff;
  opacity: 0;
  animation: fadeSlideUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}
.hero .hero-content h1 span {
  color: #ffffff;
  position: relative;
  display: inline-block;
}
.hero .hero-content h1 span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: -1;
}
.hero .hero-content p {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  color: #ffffff;
  opacity: 0;
  animation: fadeSlideUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}
.hero .hero-content .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 120px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards;
}
.hero .hero-content .cta-buttons .btn-cta {
  padding: 16px 38px;
  font-size: 1.1rem;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateY(0);
  will-change: transform;
}
.hero .hero-content .cta-buttons .btn-cta::after {
  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;
}
.hero .hero-content .cta-buttons .btn-cta:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.5);
}
.hero .hero-content .cta-buttons .btn-cta:hover::after {
  left: 100%;
}
.hero .hero-content .cta-buttons .btn-outline-light {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.7);
  padding: 14px 36px;
  border-radius: 50px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  text-align: center; /* Sicherstellen, dass der Text zentriert ist */
}
.hero .hero-content .cta-buttons .btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-6px);
}
.hero .hero-content .scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) !important;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 10px 25px;
  color: #ffffff;
  font-weight: 500;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 20;
  opacity: 0;
  will-change: opacity;
  animation: fadeSlideUp 1s ease 1.2s forwards, stableBounce 2s ease-in-out 2.4s infinite;
}
.hero .hero-content .scroll-indicator:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: translateX(-50%) translateY(-5px) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}
.hero .hero-content .scroll-indicator:active {
  transform: translateX(-50%) translateY(-2px) !important;
}
.hero .hero-content .scroll-indicator span {
  display: block;
  text-align: center;
  margin-bottom: 5px;
}
.hero .hero-content .scroll-indicator i {
  display: block;
  text-align: center;
  animation: pulse-down 1.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
  transform-origin: center;
  font-size: 1rem;
}
@keyframes morph {
  0% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  25% {
    border-radius: 40% 60% 60% 40%/70% 30% 70% 30%;
  }
  50% {
    border-radius: 55% 45% 30% 70%/40% 65% 35% 65%;
  }
  75% {
    border-radius: 65% 35% 35% 65%/30% 50% 50% 70%;
  }
  100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
}
@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-15px, 15px);
  }
  50% {
    transform: translate(10px, -10px);
  }
  75% {
    transform: translate(-10px, -15px);
  }
  100% {
    transform: translate(15px, 10px);
  }
}
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-8px);
  }
  60% {
    transform: translateX(-50%) translateY(-4px);
  }
}
@keyframes stableBounce {
  0%, 100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}
@keyframes pulse-down {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  50% {
    transform: translateY(3px);
    opacity: 1;
  }
}
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 767px) {
  .hero {
    min-height: 500px;
  }
  .hero h1 {
    margin-bottom: 15px;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }
  .hero p {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  .hero .brand-powered {
    font-size: 0.9rem;
  }
  .hero-content .scroll-indicator {
    bottom: 20px;
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}
@media (max-width: 576px) {
  .cookie-banner .cookie-buttons {
    flex-direction: column;
    gap: 8px;
  }
  .cookie-banner .cookie-buttons button {
    width: 100%;
    margin: 0;
  }
}
.about {
  padding: 120px 0;
  background: linear-gradient(135deg, #fcfcfc 0%, #f7f9fc 100%);
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .about {
    padding: 80px 0;
  }
}
@media (max-width: 576px) {
  .about {
    padding: 60px 0;
  }
}
.about::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.03) 0%, rgba(74, 144, 226, 0.01) 70%);
  border-radius: 100px;
  transform: rotate(-15deg);
  z-index: 0;
}
@media (max-width: 767px) {
  .about::before {
    width: 350px;
    height: 350px;
    top: -150px;
    right: -50px;
  }
}
@media (max-width: 576px) {
  .about::before {
    width: 250px;
    height: 250px;
    top: -100px;
    right: -30px;
  }
}
.about::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 70%);
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  z-index: 0;
}
@media (max-width: 767px) {
  .about::after {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -50px;
  }
}
@media (max-width: 576px) {
  .about::after {
    width: 200px;
    height: 200px;
    bottom: -80px;
    left: -30px;
  }
}
.about h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}
.about p {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px;
}
.about .mission-vision {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px 0;
}
.about .mission-vision .mission,
.about .mission-vision .vision,
.about .mission-vision .values {
  flex: 1;
  min-width: 300px;
  margin: 10px;
  padding: 25px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.about .mission-vision .mission:hover,
.about .mission-vision .vision:hover,
.about .mission-vision .values:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.about .mission-vision .mission h3,
.about .mission-vision .vision h3,
.about .mission-vision .values h3 {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: #007bff;
  margin-bottom: 15px;
}
.about .mission-vision .mission h3 i,
.about .mission-vision .vision h3 i,
.about .mission-vision .values h3 i {
  color: #4a90e2;
  margin-right: 10px;
}
.about .mission-vision .mission p,
.about .mission-vision .vision p,
.about .mission-vision .values p {
  font-size: 1rem;
  color: #555;
}
.about .section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .about .section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .about .section-title {
    margin-bottom: 30px;
  }
}
.about .section-title h2 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #4a90e2;
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
}
@media (max-width: 767px) {
  .about .section-title h2 {
    font-size: 2.4rem;
    margin-bottom: 14px;
  }
}
@media (max-width: 576px) {
  .about .section-title h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
  }
}
.about .section-title h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #4a90e2, #ffffff);
  border-radius: 2px;
}
@media (max-width: 767px) {
  .about .section-title h2::after {
    width: 60px;
    height: 3px;
    bottom: -8px;
  }
}
.about .section-title p {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  color: #666666;
  line-height: 1.6;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .about .section-title p {
    font-size: 1.1rem;
    max-width: 500px;
  }
}
@media (max-width: 576px) {
  .about .section-title p {
    font-size: 1rem;
    max-width: 90%;
    margin-top: 12px;
    padding: 0 20px;
  }
}
.about .about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}
@media (min-width: 991px) {
  .about .about-content {
    grid-template-columns: 1.1fr 1.3fr;
    gap: 70px;
  }
}
@media (max-width: 767px) {
  .about .about-content {
    gap: 30px;
    margin-top: 20px;
  }
}
@media (max-width: 576px) {
  .about .about-content {
    gap: 25px;
    margin-top: 15px;
  }
}
.about .about-image {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  aspect-ratio: 4/5;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.13);
  background: #f3f6fa;
}
@media (max-width: 991px) {
  .about .about-image {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .about .about-image {
    max-width: 400px;
    border-radius: 18px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 576px) {
  .about .about-image {
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    aspect-ratio: 3/4;
  }
}
.about .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 1.7, 0.7, 1.1);
}
.about .about-image:hover img {
  transform: scale(1.04);
}
@media (max-width: 576px) {
  .about .about-image:hover img {
    transform: scale(1.02);
  }
}
.about .about-image .experience-badge {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: linear-gradient(135deg, #4a90e2, rgb(34.3857142857, 117.3857142857, 214.6142857143));
  color: #ffffff;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(74, 144, 226, 0.22);
  border: 2.5px solid rgba(255, 255, 255, 0.22);
  z-index: 2;
}
.about .about-image .experience-badge .number {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 2px;
  letter-spacing: -1px;
}
.about .about-image .experience-badge .text {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .about .about-image .experience-badge {
    width: 90px;
    height: 90px;
    bottom: 12px;
    right: 12px;
    border: 2px solid rgba(255, 255, 255, 0.22);
  }
  .about .about-image .experience-badge .number {
    font-size: 1.4rem;
    margin-bottom: 1px;
  }
  .about .about-image .experience-badge .text {
    font-size: 0.65rem;
    letter-spacing: 0.3px;
  }
}
@media (max-width: 576px) {
  .about .about-image .experience-badge {
    width: 70px;
    height: 70px;
    bottom: 8px;
    right: 8px;
  }
  .about .about-image .experience-badge .number {
    font-size: 1.2rem;
  }
  .about .about-image .experience-badge .text {
    font-size: 0.55rem;
  }
}
.about .about-text {
  text-align: left;
  position: relative;
  z-index: 1;
  padding: 0;
}
@media (max-width: 991px) {
  .about .about-text {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .about .about-text {
    padding: 0 20px;
  }
}
.about .about-text h3 {
  font-size: 2.1rem;
  margin-bottom: 22px;
  line-height: 1.3;
  font-weight: 700;
  color: #333333;
  letter-spacing: -0.5px;
}
@media (max-width: 767px) {
  .about .about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 18px;
  }
}
@media (max-width: 576px) {
  .about .about-text h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
    line-height: 1.2;
  }
}
.about .about-text h3 .highlight {
  color: #4a90e2;
  position: relative;
}
.about .about-text h3 .highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: rgba(74, 144, 226, 0.13);
  z-index: -1;
  border-radius: 6px;
}
@media (max-width: 576px) {
  .about .about-text h3 .highlight::after {
    height: 8px;
  }
}
.about .about-text p {
  margin-bottom: 22px;
  line-height: 1.7;
  color: #666666;
  font-size: 1.08rem;
}
@media (max-width: 767px) {
  .about .about-text p {
    font-size: 1.05rem;
    margin-bottom: 18px;
  }
}
@media (max-width: 576px) {
  .about .about-text p {
    font-size: 1rem;
    margin-bottom: 16px;
    line-height: 1.6;
  }
}
.about .about-text h4 {
  font-size: 1.3rem;
  margin-bottom: 18px;
  margin-top: 32px;
  color: #4a90e2;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
@media (max-width: 767px) {
  .about .about-text h4 {
    font-size: 1.2rem;
    margin-top: 28px;
    margin-bottom: 16px;
  }
}
@media (max-width: 576px) {
  .about .about-text h4 {
    font-size: 1.1rem;
    margin-top: 24px;
    margin-bottom: 14px;
  }
}
.about .about-text h4::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 3px;
}
@media (max-width: 576px) {
  .about .about-text h4::after {
    width: 30px;
    height: 2px;
  }
}
.about .about-text .stats-container {
  display: flex;
  justify-content: space-around;
  margin: 35px 0;
  padding: 30px 0;
  border-top: 1px solid rgba(153, 153, 153, 0.1);
  border-bottom: 1px solid rgba(153, 153, 153, 0.1);
}
@media (max-width: 576px) {
  .about .about-text .stats-container {
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }
}
.about .about-text .stats-container .stat-item {
  text-align: center;
  padding: 0 10px;
  position: relative;
  transition: transform 0.3s ease;
}
@media (min-width: 577px) {
  .about .about-text .stats-container .stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    height: 50%;
    width: 1px;
    background: rgba(153, 153, 153, 0.1);
  }
}
.about .about-text .stats-container .stat-item:hover {
  transform: translateY(-5px);
}
.about .about-text .stats-container .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #4a90e2;
  line-height: 1;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}
.about .about-text .stats-container .stat-item .stat-text {
  color: #666666;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.about .about-text .values-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 767px) {
  .about .about-text .values-list {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
.about .about-text .values-list li {
  display: flex;
  align-items: flex-start;
  padding: 16px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(74, 144, 226, 0.07);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
@media (max-width: 767px) {
  .about .about-text .values-list li {
    padding: 14px;
    border-radius: 8px;
  }
}
.about .about-text .values-list li:hover {
  box-shadow: 0 8px 28px rgba(74, 144, 226, 0.13);
  background-color: #ffffff;
  border-color: rgba(74, 144, 226, 0.1);
}
.about .about-text .values-list li i {
  color: #4a90e2;
  font-size: 1.2rem;
  margin-right: 14px;
  margin-top: 4px;
  background: rgba(74, 144, 226, 0.09);
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(74, 144, 226, 0.1);
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .about .about-text .values-list li i {
    font-size: 1.1rem;
    width: 30px;
    height: 30px;
    margin-right: 12px;
  }
}
.about .about-text .values-list li:hover i {
  transform: scale(1.1);
  background: rgba(74, 144, 226, 0.12);
}
.about .about-text .values-list li div {
  flex-grow: 1;
}
.about .about-text .values-list li strong {
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
  font-size: 1.05rem;
  color: #333333;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .about .about-text .values-list li strong {
    font-size: 1rem;
    margin-bottom: 3px;
  }
}
.about .about-text .values-list li p {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #666666;
}
@media (max-width: 767px) {
  .about .about-text .values-list li p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
}
.about .about-text .cta-container {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .about .about-text .cta-container {
    gap: 12px;
    margin-top: 25px;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .about .about-text .cta-container {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    align-items: center;
  }
}
.about .about-text .cta-container .btn,
.about .about-text .cta-container .btn-outline {
  min-width: auto;
  max-width: none;
  width: auto;
  padding: 12px 24px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.22s cubic-bezier(0.4, 1.7, 0.7, 1.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 8px rgba(74, 144, 226, 0.07);
}
@media (max-width: 767px) {
  .about .about-text .cta-container .btn,
  .about .about-text .cta-container .btn-outline {
    padding: 11px 20px;
    font-size: 0.95rem;
  }
}
@media (max-width: 576px) {
  .about .about-text .cta-container .btn,
  .about .about-text .cta-container .btn-outline {
    width: 100%;
    max-width: 280px;
    padding: 14px 20px;
    font-size: 1rem;
    border-radius: 10px;
  }
}
.about .about-text .cta-container .btn i,
.about .about-text .cta-container .btn-outline i {
  margin-left: 8px;
  transition: transform 0.25s ease;
}
@media (max-width: 576px) {
  .about .about-text .cta-container .btn i,
  .about .about-text .cta-container .btn-outline i {
    margin-left: 6px;
  }
}
.about .about-text .cta-container .btn:hover,
.about .about-text .cta-container .btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(74, 144, 226, 0.13);
}
@media (max-width: 576px) {
  .about .about-text .cta-container .btn:hover,
  .about .about-text .cta-container .btn-outline:hover {
    transform: translateY(-1px);
  }
}
.about .about-text .cta-container .btn:hover i,
.about .about-text .cta-container .btn-outline:hover i {
  transform: translateX(3px);
}
.about .about-text .cta-container .btn:active,
.about .about-text .cta-container .btn-outline:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}
.about .about-text .cta-container .btn {
  background: #4a90e2;
  color: white;
  border: 1px solid #4a90e2;
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.25);
}
.about .about-text .cta-container .btn:hover {
  background: rgb(43.23, 125.13, 221.07);
  border-color: rgb(43.23, 125.13, 221.07);
  box-shadow: 0 7px 18px rgba(74, 144, 226, 0.3);
}
.about .about-text .cta-container .btn-outline {
  background: transparent;
  border: 2px solid #4a90e2;
  color: #4a90e2;
  box-shadow: none;
}
.about .about-text .cta-container .btn-outline:hover {
  background: rgba(74, 144, 226, 0.07);
  border-color: #4a90e2;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}
.about .about-text .cta-container a {
  display: inline-block;
  text-decoration: none;
}
.about .team-section {
  margin-top: 80px;
  text-align: center;
}
.about .team-section h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.about .team-section > p {
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.about .team-members {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 991px) {
  .about .team-members {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .about .team-members {
    grid-template-columns: 1fr;
  }
}
.about .team-member {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about .team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.about .team-member:hover .social-overlay {
  opacity: 1;
}
.about .team-photo {
  position: relative;
  overflow: hidden;
}
.about .team-photo img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.about .team-photo:hover img {
  transform: scale(1.1);
}
.about .team-photo .social-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(74, 144, 226, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.about .team-photo .social-icon {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a90e2;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.about .team-photo .social-icon:hover {
  background: #ffffff;
  color: #ffffff;
  transform: translateY(-5px);
}
.about .team-info {
  padding: 20px;
  text-align: center;
}
.about .team-info h4 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}
.about .team-info .position {
  color: #666666;
  font-size: 0.9rem;
  margin: 0;
}

.brand-connection {
  margin-bottom: 30px;
  padding: 20px;
  border-left: 4px solid #4a90e2;
  background-color: #ffffff;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.competitive-advantage {
  margin-top: 40px;
}
.competitive-advantage ul {
  margin: 20px 0;
}
.competitive-advantage ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 5px;
}
.competitive-advantage ul li::before {
  content: "•";
  color: #4a90e2;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.competitive-advantage .expert-opinion {
  font-style: italic;
  padding: 20px;
  border-left: 4px solid #ffffff;
  background-color: rgba(255, 204, 0, 0.05);
  margin: 30px 0;
}

.about .cta {
  margin-top: 40px;
}
.about .cta a {
  display: inline-block;
  padding: 15px 30px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.about .cta a:hover {
  background-color: #0056b3;
}

@media (max-width: 991px) {
  .about .mission-vision {
    flex-direction: column;
  }
}
.services {
  padding: 100px 0;
  background-color: #ffffff;
  text-align: center;
  position: relative;
}
.services::before {
  content: "";
  position: absolute;
  top: 60px;
  right: -80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.15), rgba(74, 144, 226, 0.05) 70%);
  z-index: 0;
}
.services::after {
  content: "";
  position: absolute;
  bottom: 100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02) 70%);
  z-index: 0;
}
.services h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #4a90e2;
}
.services .service-item {
  margin: 20px 0;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.services .service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.services .service-item h3 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 10px;
}
.services .service-item p {
  font-size: 1rem;
  color: #555;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 70px;
  position: relative;
  z-index: 1;
}

.service-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #4a90e2, #ffffff);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 16px 16px 0 0;
}
.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 90%, rgba(74, 144, 226, 0.1) 0%, transparent 30%), radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.08) 0%, transparent 35%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.service-card:hover::before {
  opacity: 1;
}
.service-card:hover::after {
  opacity: 1;
}
.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background-color: rgba(74, 144, 226, 0.15);
}
.service-card:hover .service-icon i {
  color: rgb(52.0214285714, 130.5214285714, 222.4785714286);
}
.service-card .service-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(74, 144, 226, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 16px rgba(74, 144, 226, 0.15);
  transform: rotate(-5deg);
}
.service-card .service-icon i {
  font-size: 32px;
  color: #4a90e2;
  transition: all 0.4s ease;
}
.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}
.service-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 3px;
}
.service-card p {
  color: #666666;
  margin-bottom: 25px;
  flex-grow: 1;
}
.service-card .service-cta {
  margin-top: auto;
}
.service-card .service-cta .btn-primary {
  background-color: transparent;
  color: #4a90e2;
  border: 2px solid #4a90e2;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  z-index: 1;
}
.service-card .service-cta .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #4a90e2;
  transition: all 0.3s ease;
  z-index: -1;
}
.service-card .service-cta .btn-primary:hover {
  color: #ffffff;
}
.service-card .service-cta .btn-primary:hover::before {
  width: 100%;
}

.portfolio-item {
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  .service-card {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.portfolio {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px 0;
  background-color: #f8f9fa;
  padding: 100px 0;
  position: relative;
}
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.portfolio__item {
  position: relative;
  width: calc(33.333% - 20px);
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.portfolio__item:hover {
  transform: scale(1.05);
}
.portfolio__item img {
  width: 100%;
  height: auto;
  display: block;
}
.portfolio__item .portfolio__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.portfolio__item .portfolio__overlay:hover {
  opacity: 1;
}

.portfolio-grid {
  display: grid;
  gap: 30px;
  margin-top: 60px;
  justify-content: center;
  justify-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: 1fr;
  place-items: center;
}
.portfolio-grid:has(.portfolio-item:nth-child(2)) {
  grid-template-columns: repeat(3, minmax(300px, 380px));
}
.portfolio-grid.multiple-items {
  grid-template-columns: repeat(3, minmax(300px, 380px));
}
@media (max-width: 1200px) {
  .portfolio-grid:has(.portfolio-item:nth-child(2)), .portfolio-grid.multiple-items {
    grid-template-columns: repeat(2, minmax(300px, 450px));
    max-width: 1000px;
  }
}
@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}
@media (max-width: 480px) {
  .portfolio-grid {
    gap: 20px;
    margin-top: 40px;
    grid-template-columns: 1fr;
    max-width: 350px;
  }
}

.portfolio-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 600px;
}
@supports not (aspect-ratio: 16/9) {
  .portfolio-item {
    height: 350px;
  }
}
.portfolio-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.portfolio-item:hover::before {
  opacity: 1;
}
.portfolio-item:hover img {
  transform: scale(1.08);
}
.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
  transform: translateY(0);
}
.portfolio-item:hover .portfolio-category {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #333333;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 30px;
  z-index: 3;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.4s ease 0.1s;
  backdrop-filter: blur(5px);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.portfolio-overlay h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.portfolio-overlay p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.portfolio-overlay .view-project {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.portfolio-overlay .view-project i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.portfolio-overlay .view-project:hover {
  color: #ffffff;
}
.portfolio-overlay .view-project:hover i {
  transform: translateX(5px);
}

.portfolio-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: #ffffff;
  margin: 3% auto;
  padding: 0;
  border-radius: 16px;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  animation: slideInUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.modal-content img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}
.modal-content h3 {
  font-size: 1.8rem;
  margin: 20px 30px 15px;
  color: #4a90e2;
  font-weight: 700;
}
.modal-content > p {
  margin: 0 30px 25px;
  color: #333333;
  font-size: 1.1rem;
  line-height: 1.6;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #ffffff;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.close-modal:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.modal-details {
  padding: 0 30px 30px;
}
.modal-details h4 {
  color: #4a90e2;
  font-size: 1.3rem;
  margin: 25px 0 15px;
  font-weight: 600;
  border-bottom: 2px solid rgba(74, 144, 226, 0.2);
  padding-bottom: 8px;
}
.modal-details ul {
  list-style: none;
  padding: 0;
}
.modal-details ul li {
  padding: 8px 0;
  color: #333333;
  position: relative;
  padding-left: 20px;
}
.modal-details ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffffff;
  font-weight: bold;
}

.modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
  margin: 1.5% auto;
  padding: 0;
  border: none;
  border-radius: 24px;
  width: 90%;
  max-width: 950px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.4), 0 20px 60px rgba(74, 144, 226, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
  animation: modalSlideIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.modal-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  border-radius: 24px 24px 0 0;
  pointer-events: none;
  z-index: 1;
}
.modal-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(74, 144, 226, 0.03) 1px, transparent 0);
  background-size: 20px 20px;
  border-radius: 24px;
  pointer-events: none;
  z-index: 0;
}
.modal-content::-webkit-scrollbar {
  width: 10px;
}
.modal-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 10px;
  margin: 20px 0;
}
.modal-content::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgb(139.9357142857, 184.4357142857, 236.5642857143) 0%, #4a90e2 50%, rgb(34.3857142857, 117.3857142857, 214.6142857143) 100%);
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.modal-content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #4a90e2 0%, rgb(52.0214285714, 130.5214285714, 222.4785714286) 50%, rgb(30.8642857143, 105.3642857143, 192.6357142857) 100%);
  border-color: rgba(255, 255, 255, 0.5);
}
.modal-content img {
  width: calc(100% - 80px);
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  margin: 50px 40px 30px 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 10px 30px rgba(74, 144, 226, 0.1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.modal-content img:hover {
  transform: scale(1.02) translateY(-2px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25), 0 15px 40px rgba(74, 144, 226, 0.2);
}
.modal-content h3 {
  margin: 0 40px 25px;
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #4a90e2 0%, rgb(117.9571428571, 170.9571428571, 233.0428571429) 30%, rgb(30.8642857143, 105.3642857143, 192.6357142857) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  text-align: center;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 30px rgba(74, 144, 226, 0.3);
}
.modal-content h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #4a90e2 50%, transparent 100%);
  border-radius: 2px;
}
.modal-content > p {
  margin: 0 40px 50px;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #475569;
  text-align: center;
  font-weight: 400;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.close-modal {
  position: absolute;
  top: 25px;
  right: 25px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(74, 144, 226, 0.1);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 300;
  color: #64748b;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(15px);
  z-index: 10;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(74, 144, 226, 0.1);
}
.close-modal::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.2) 0%, rgba(74, 144, 226, 0.05) 50%, rgba(74, 144, 226, 0.2) 100%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.close-modal:hover {
  background: linear-gradient(135deg, #4a90e2, rgb(117.9571428571, 170.9571428571, 233.0428571429));
  color: white;
  border-color: #4a90e2;
  transform: rotate(90deg) scale(1.15);
  box-shadow: 0 15px 40px rgba(74, 144, 226, 0.4), 0 8px 25px rgba(0, 0, 0, 0.15);
}
.close-modal:hover::before {
  opacity: 1;
}
.close-modal:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.25), 0 15px 40px rgba(74, 144, 226, 0.3);
}
.close-modal:active {
  transform: rotate(90deg) scale(1.05);
}

.modal-details {
  padding: 0 40px 50px;
  position: relative;
  z-index: 2;
}
.modal-details h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin: 35px 0 25px;
  position: relative;
  padding-left: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 1.3rem;
}
.modal-details h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 30px;
  background: linear-gradient(135deg, #4a90e2 0%, rgb(161.9142857143, 197.9142857143, 240.0857142857) 50%, #4a90e2 100%);
  border-radius: 3px;
  box-shadow: 0 0 15px rgba(74, 144, 226, 0.3);
}
.modal-details h4::after {
  content: "";
  position: absolute;
  left: 30px;
  bottom: -5px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #4a90e2 0%, rgb(205.8714285714, 224.8714285714, 247.1285714286) 100%);
  border-radius: 1px;
  opacity: 0.6;
}
.modal-details h4:first-child {
  margin-top: 0;
}
.modal-details ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(248, 250, 252, 0.8) 100%);
  border-radius: 16px;
  padding: 25px;
  border: 1px solid rgba(226, 232, 240, 0.5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}
.modal-details ul li {
  padding: 16px 0;
  padding-left: 35px;
  position: relative;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.7;
  border-bottom: 1px solid rgba(226, 232, 240, 0.4);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 8px;
  margin-bottom: 2px;
}
.modal-details ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.modal-details ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 16px;
  color: #4a90e2;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
}
.modal-details ul li:hover {
  padding-left: 42px;
  color: #334155;
  background: rgba(74, 144, 226, 0.02);
  transform: translateX(3px);
}
.modal-details ul li:hover::before {
  transform: scale(1.4) rotate(180deg);
  color: rgb(117.9571428571, 170.9571428571, 233.0428571429);
  text-shadow: 0 0 15px rgba(74, 144, 226, 0.5);
}
.modal-details ul li strong {
  color: #1e293b;
  font-weight: 700;
  background: linear-gradient(135deg, #4a90e2 0%, rgb(34.3857142857, 117.3857142857, 214.6142857143) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.modal-details .technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.03) 0%, rgba(74, 144, 226, 0.01) 100%);
  border-radius: 16px;
  border: 1px solid rgba(74, 144, 226, 0.1);
}
.modal-details .tech-tag {
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.12) 0%, rgba(74, 144, 226, 0.08) 50%, rgba(74, 144, 226, 0.12) 100%);
  color: #4a90e2;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid rgba(74, 144, 226, 0.25);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.modal-details .tech-tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  transition: left 0.6s ease;
}
.modal-details .tech-tag:hover {
  background: linear-gradient(135deg, #4a90e2 0%, rgb(117.9571428571, 170.9571428571, 233.0428571429) 100%);
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(74, 144, 226, 0.4), 0 4px 15px rgba(0, 0, 0, 0.1);
  border-color: #4a90e2;
}
.modal-details .tech-tag:hover::before {
  left: 100%;
}

.project-info {
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.06) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(74, 144, 226, 0.04) 100%);
  border: 1px solid rgba(74, 144, 226, 0.2);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 35px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 4px 20px rgba(74, 144, 226, 0.1);
}
.project-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #4a90e2 0%, rgb(161.9142857143, 197.9142857143, 240.0857142857) 50%, #4a90e2 100%);
  box-shadow: 0 2px 10px rgba(74, 144, 226, 0.3);
}
.project-info::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(74, 144, 226, 0.05) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.3;
}
.project-info .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 12px 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
.project-info .info-item:last-child {
  margin-bottom: 0;
}
.project-info .info-item:hover {
  transform: translateX(8px);
  background: rgba(74, 144, 226, 0.03);
  padding-left: 15px;
  padding-right: 15px;
}
.project-info .info-item strong {
  min-width: 110px;
  color: #4a90e2;
  font-weight: 700;
  margin-right: 20px;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}
.project-info .info-item a {
  color: #4a90e2;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}
.project-info .info-item a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #4a90e2 0%, rgb(161.9142857143, 197.9142857143, 240.0857142857) 100%);
  transition: width 0.3s ease;
}
.project-info .info-item a:hover {
  color: rgb(34.3857142857, 117.3857142857, 214.6142857143);
  transform: translateY(-1px);
}
.project-info .info-item a:hover::after {
  width: 100%;
}

.project-cta {
  text-align: center;
  margin-top: 50px;
  padding: 40px 30px 20px;
  border-top: 1px solid rgba(74, 144, 226, 0.1);
  position: relative;
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-radius: 0 0 24px 24px;
  margin: 50px -40px -50px -40px;
}
.project-cta::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #4a90e2 30%, rgb(161.9142857143, 197.9142857143, 240.0857142857) 50%, #4a90e2 70%, transparent 100%);
  box-shadow: 0 0 20px rgba(74, 144, 226, 0.4);
}
.project-cta::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #4a90e2;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(74, 144, 226, 0.6);
}
.project-cta .btn {
  background: linear-gradient(135deg, #4a90e2 0%, rgb(117.9571428571, 170.9571428571, 233.0428571429) 50%, rgb(52.0214285714, 130.5214285714, 222.4785714286) 100%);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: none;
  box-shadow: 0 12px 35px rgba(74, 144, 226, 0.4), 0 6px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.project-cta .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  transition: left 0.6s ease;
}
.project-cta .btn::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.5) 0%, rgba(74, 144, 226, 0.2) 50%, rgba(74, 144, 226, 0.5) 100%);
  border-radius: 52px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.project-cta .btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 50px rgba(74, 144, 226, 0.5), 0 10px 30px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, rgb(109.1657142857, 165.5657142857, 231.6342857143) 0%, #4a90e2 50%, rgb(38.8342857143, 122.4342857143, 220.3657142857) 100%);
}
.project-cta .btn:hover::before {
  left: 100%;
}
.project-cta .btn:hover::after {
  opacity: 1;
}
.project-cta .btn:active {
  transform: translateY(-2px) scale(1.02);
}
.project-cta .btn i {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-size: 1.1rem;
}
.project-cta .btn:hover i {
  transform: translateX(4px) scale(1.1);
}

@keyframes modalBackdropFadeIn {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(12px);
  }
}
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-80px) scale(0.85) rotateX(10deg);
    filter: blur(5px);
  }
  50% {
    opacity: 0.8;
    transform: translateY(-20px) scale(0.95) rotateX(2deg);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
    filter: blur(0px);
  }
}
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-40px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (max-width: 991px) {
  .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  .modal-content {
    width: 95%;
    margin: 3% auto;
  }
  .modal-content img {
    margin: 40px 30px 25px 30px;
    width: calc(100% - 60px);
    height: 280px;
  }
  .modal-content h3 {
    margin: 0 30px 20px;
    font-size: 2.1rem;
  }
  .modal-content > p {
    margin: 0 30px 40px;
    padding: 0 10px;
  }
  .modal-details {
    padding: 0 30px 40px;
  }
  .project-cta {
    margin: 40px -30px -40px -30px;
  }
}
@media (max-width: 767px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .modal-content {
    width: 96%;
    margin: 5% auto;
    border-radius: 20px;
  }
  .modal-content img {
    margin: 30px 20px 20px 20px;
    width: calc(100% - 40px);
    height: 240px;
    border-radius: 15px;
  }
  .modal-content h3 {
    margin: 0 20px 15px;
    font-size: 1.8rem;
  }
  .modal-content h3::after {
    width: 60px;
  }
  .modal-content > p {
    margin: 0 20px 30px;
    font-size: 1rem;
    padding: 0 5px;
  }
  .modal-details {
    padding: 0 20px 30px;
  }
  .modal-details h4 {
    font-size: 1.2rem;
    margin: 25px 0 20px;
  }
  .modal-details ul {
    padding: 20px;
  }
  .modal-details .technologies {
    padding: 15px;
    gap: 10px;
  }
  .modal-details .tech-tag {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
  .project-info {
    padding: 20px;
    margin-bottom: 25px;
  }
  .project-info .info-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .project-info .info-item strong {
    min-width: auto;
    margin-right: 0;
    margin-bottom: 5px;
  }
  .project-cta {
    margin: 30px -20px -30px -20px;
    padding: 30px 20px 15px;
  }
  .project-cta .btn {
    padding: 15px 30px;
    font-size: 1rem;
  }
  .close-modal {
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .modal-content {
    width: 98%;
    margin: 8% auto;
    max-height: 85vh;
  }
  .modal-content img {
    margin: 25px 15px 15px 15px;
    width: calc(100% - 30px);
    height: 200px;
  }
  .modal-content h3 {
    margin: 0 15px 12px;
    font-size: 1.6rem;
  }
  .modal-content > p {
    margin: 0 15px 25px;
    font-size: 0.95rem;
  }
  .modal-details {
    padding: 0 15px 25px;
  }
  .modal-details ul {
    padding: 15px;
  }
  .modal-details ul li {
    padding: 12px 0;
    padding-left: 25px;
    font-size: 0.95rem;
  }
  .modal-details .technologies {
    padding: 12px;
    gap: 8px;
  }
  .modal-details .tech-tag {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  .project-cta {
    margin: 25px -15px -25px -15px;
    padding: 25px 15px 10px;
  }
  .project-cta .btn {
    padding: 12px 25px;
    font-size: 0.95rem;
    gap: 8px;
  }
}
.testimonials {
  padding-top: 80px;
  padding-bottom: 80px;
  background: linear-gradient(160deg, rgba(205.8714285714, 224.8714285714, 247.1285714286, 0.08) 0%, #ffffff 30%, rgba(255, 107, 107, 0.05) 100%);
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .testimonials {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 576px) {
  .testimonials {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.testimonials::before {
  content: "";
  position: absolute;
  width: 80vw;
  height: 80vw;
  max-width: 1000px;
  max-height: 1000px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 205, 196, 0.04) 0%, rgba(78, 205, 196, 0.02) 30%, transparent 60%);
  top: -40%;
  left: -30%;
  animation: float 25s ease-in-out infinite;
  z-index: 0;
}
.testimonials::after {
  content: "";
  position: absolute;
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  background: conic-gradient(from 45deg, rgba(255, 107, 107, 0.03) 0deg, rgba(205.8714285714, 224.8714285714, 247.1285714286, 0.03) 120deg, rgba(78, 205, 196, 0.03) 240deg, rgba(255, 107, 107, 0.03) 360deg);
  border-radius: 50%;
  bottom: -25%;
  right: -20%;
  animation: spin 40s linear infinite;
  z-index: 0;
}
.testimonials .container {
  position: relative;
  z-index: 1;
}
.testimonials .section-header {
  text-align: center;
  margin-bottom: 8rem;
}
.testimonials .section-header h2 {
  background: linear-gradient(135deg, #4a90e2 0%, rgb(139.9357142857, 184.4357142857, 236.5642857143) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .testimonials .section-header h2 {
    font-size: 2.25rem;
  }
}
.testimonials .section-header .subtitle {
  font-size: 1.25rem;
  color: #666666;
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.testimonials-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.testimonial-slides {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .testimonial-slide {
    padding: 0 1.5rem;
  }
}

.testimonial-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  padding: 3rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(248, 249, 250, 0.3);
  padding: 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 120px;
  font-family: serif;
  color: rgba(78, 205, 196, 0.1);
  font-weight: bold;
  z-index: 0;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.95);
}
.testimonial-card .client-rating {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
.testimonial-card .client-rating .star {
  color: #ffd700;
  font-size: 1.125rem;
  animation: sparkle 2s ease-in-out infinite;
}
.testimonial-card .client-rating .star:nth-child(1) {
  animation-delay: 0s;
}
.testimonial-card .client-rating .star:nth-child(2) {
  animation-delay: 0.2s;
}
.testimonial-card .client-rating .star:nth-child(3) {
  animation-delay: 0.4s;
}
.testimonial-card .client-rating .star:nth-child(4) {
  animation-delay: 0.6s;
}
.testimonial-card .client-rating .star:nth-child(5) {
  animation-delay: 0.8s;
}
.testimonial-card .quote-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #333333;
  font-style: italic;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
  font-weight: 500;
}
@media (max-width: 767px) {
  .testimonial-card .quote-text {
    font-size: 1rem;
  }
}
.testimonial-card .client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 576px) {
  .testimonial-card .client-info {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.testimonial-card .client-info .client-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(78, 205, 196, 0.3);
  flex-shrink: 0;
}
.testimonial-card .client-info .client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-card .client-info .client-details {
  text-align: left;
}
@media (max-width: 576px) {
  .testimonial-card .client-info .client-details {
    text-align: center;
  }
}
.testimonial-card .client-info .client-details .client-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.5rem;
}
.testimonial-card .client-info .client-details .client-position {
  font-size: 0.875rem;
  color: #666666;
  font-weight: 500;
}

.slider-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 6rem;
}
.slider-navigation .slide-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(248, 249, 250, 0.4);
  border-radius: 50%;
  color: #333333;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-navigation .slide-btn:hover {
  background: linear-gradient(135deg, #4a90e2 0%, rgb(139.9357142857, 184.4357142857, 236.5642857143) 100%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  border-color: transparent;
}
.slider-navigation .slide-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.slider-navigation .slide-indicators {
  display: flex;
  gap: 1rem;
}
.slider-navigation .slide-indicators .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(102, 102, 102, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider-navigation .slide-indicators .indicator.active {
  background: #4ecdc4;
  transform: scale(1.2);
}
.slider-navigation .slide-indicators .indicator:hover:not(.active) {
  background: rgba(78, 205, 196, 0.6);
  transform: scale(1.1);
}

.testimonial-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-top: 8rem;
  padding: 4rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  border: 1px solid rgba(248, 249, 250, 0.3);
}
.testimonial-stats .stat-item {
  text-align: center;
}
.testimonial-stats .stat-item .stat-number {
  font-size: 2.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, #4a90e2 0%, rgb(139.9357142857, 184.4357142857, 236.5642857143) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
}
.testimonial-stats .stat-item .stat-label {
  font-size: 0.875rem;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.testimonials-cta {
  text-align: center;
  margin-top: 8rem;
  padding: 6rem;
  background: linear-gradient(135deg, rgba(78, 205, 196, 0.05) 0%, rgba(255, 107, 107, 0.05) 100%);
  border-radius: 24px;
  border: 1px solid rgba(248, 249, 250, 0.3);
}
.testimonials-cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #4a90e2 0%, rgb(139.9357142857, 184.4357142857, 236.5642857143) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  margin-bottom: 2rem;
}
.testimonials-cta p {
  font-size: 1.125rem;
  color: #666666;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.testimonials-cta .cta-button {
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #4a90e2 0%, rgb(139.9357142857, 184.4357142857, 236.5642857143) 100%);
  color: #ffffff;
  font-size: 1.125rem;
  padding: 2rem 4rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}
.testimonials-cta .cta-button:hover {
  text-decoration: none;
  transform: translateY(-2px);
}
.testimonials-cta .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  color: #ffffff;
  text-decoration: none;
}
.testimonials-cta .cta-button i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}
.testimonials-cta .cta-button:hover i {
  transform: translateX(3px);
}

@keyframes sparkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}
@media (max-width: 767px) {
  .testimonials::before, .testimonials::after {
    width: 100vw;
    height: 100vw;
  }
  .testimonial-card {
    padding: 4rem;
  }
  .testimonial-card .quote-text {
    font-size: 1rem;
  }
  .slider-navigation {
    gap: 2rem;
  }
  .slider-navigation .slide-btn {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}
.contact {
  padding-top: 80px;
  padding-bottom: 80px;
  background: linear-gradient(140deg, rgba(205.8714285714, 224.8714285714, 247.1285714286, 0.06) 0%, #ffffff 25%, rgba(255, 107, 107, 0.04) 75%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .contact {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 576px) {
  .contact {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.contact::before {
  content: "";
  position: absolute;
  top: -25%;
  left: -15%;
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, rgba(78, 205, 196, 0.05) 0%, rgba(78, 205, 196, 0.02) 40%, transparent 70%);
  border-radius: 50%;
  animation: float 30s ease-in-out infinite;
  z-index: 0;
}
.contact::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -20%;
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  max-height: 900px;
  background: conic-gradient(from 270deg, rgba(205.8714285714, 224.8714285714, 247.1285714286, 0.04) 0deg, rgba(255, 107, 107, 0.04) 90deg, rgba(78, 205, 196, 0.04) 180deg, rgba(205.8714285714, 224.8714285714, 247.1285714286, 0.04) 270deg);
  border-radius: 50%;
  animation: spin 45s linear infinite;
  z-index: 0;
}
.contact .container {
  position: relative;
  z-index: 1;
}
.contact .section-header {
  text-align: center;
  margin-bottom: 8rem;
}
.contact .section-header h2 {
  background: linear-gradient(135deg, #4a90e2 0%, rgb(139.9357142857, 184.4357142857, 236.5642857143) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .contact .section-header h2 {
    font-size: 2.25rem;
  }
}
.contact .section-header .subtitle {
  font-size: 1.25rem;
  color: #666666;
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  margin-bottom: 8rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 6rem;
  }
}

.contact-form-container {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  padding: 3rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(248, 249, 250, 0.4);
  padding: 6rem;
  position: relative;
  overflow: hidden;
}
.contact-form-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.contact-form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #4a90e2 0%, rgb(139.9357142857, 184.4357142857, 236.5642857143) 100%);
  transform: scaleX(0);
  transform-origin: left;
  animation: progress-bar 2s ease-out 0.5s forwards;
}
.contact-form-container h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 3rem;
  text-align: center;
}
@media (max-width: 767px) {
  .contact-form-container h3 {
    font-size: 1.25rem;
  }
}

.contact-form .form-group {
  margin-bottom: 3rem;
  position: relative;
}
.contact-form .form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-form .form-group .form-control {
  width: 100%;
  padding: 2rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #333333;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(248, 249, 250, 0.6);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  font-family: "Open Sans", sans-serif;
}
.contact-form .form-group .form-control::placeholder {
  color: #999999;
  opacity: 0.7;
}
.contact-form .form-group .form-control:focus {
  outline: none;
  border-color: #4ecdc4;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 4px rgba(78, 205, 196, 0.1);
  transform: translateY(-2px);
}
.contact-form .form-group .form-control:valid {
  border-color: #28a745;
}
.contact-form .form-group .form-control:invalid:not(:placeholder-shown) {
  border-color: #dc3545;
}
.contact-form .form-group textarea.form-control {
  resize: vertical;
  min-height: 120px;
  font-family: "Open Sans", sans-serif;
}
.contact-form .form-group.floating-label .form-control:focus + label,
.contact-form .form-group.floating-label .form-control:not(:placeholder-shown) + label {
  transform: translateY(-150%) scale(0.9);
  color: #4ecdc4;
}
.contact-form .form-group.floating-label label {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background: transparent;
  padding: 0 1rem;
  transition: all 0.3s ease;
  pointer-events: none;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 0;
}
.contact-form .btn {
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #4a90e2 0%, rgb(139.9357142857, 184.4357142857, 236.5642857143) 100%);
  color: #ffffff;
  width: 100%;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.contact-form .btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}
.contact-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  color: #ffffff;
  text-decoration: none;
}
.contact-form .btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}
.contact-form .btn:hover::before {
  width: 300px;
  height: 300px;
}
.contact-form .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.contact-form .btn .spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.contact-form .btn.loading .spinner {
  display: block;
}
.contact-form .btn.loading .btn-text {
  opacity: 0.7;
}

.contact-info .info-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  padding: 3rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(248, 249, 250, 0.4);
  padding: 6rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.contact-info .info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.contact-info .info-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(78, 205, 196, 0.05) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}
.contact-info .info-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.contact-info .info-item:last-child {
  margin-bottom: 0;
}
.contact-info .info-item i {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4a90e2 0%, rgb(139.9357142857, 184.4357142857, 236.5642857143) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.125rem;
  flex-shrink: 0;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}
.contact-info .info-item:hover i {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 35px 60px rgba(0, 0, 0, 0.15);
}
.contact-info .info-item .info-text .info-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.5rem;
}
.contact-info .info-item .info-text p {
  font-size: 1rem;
  color: #666666;
  margin: 0;
  line-height: 1.6;
}
.contact-info .info-item .info-text p a {
  color: #4ecdc4;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.contact-info .info-item .info-text p a:hover {
  color: #ff6b6b;
  text-decoration: underline;
}
.contact-info .social-links {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(248, 249, 250, 0.5);
  position: relative;
  z-index: 1;
}
.contact-info .social-links h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 2rem;
  text-align: center;
}
.contact-info .social-links .social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.contact-info .social-links .social-icons .social-icon {
  width: 50px;
  height: 50px;
  background: rgba(248, 249, 250, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(248, 249, 250, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.contact-info .social-links .social-icons .social-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #4a90e2 0%, rgb(139.9357142857, 184.4357142857, 236.5642857143) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
}
.contact-info .social-links .social-icons .social-icon:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  color: #ffffff;
}
.contact-info .social-links .social-icons .social-icon:hover::before {
  opacity: 1;
}
.contact-info .social-links .social-icons .social-icon i {
  position: relative;
  z-index: 1;
}

.contact-message {
  padding: 2rem;
  border-radius: 16px;
  margin-bottom: 3rem;
  font-weight: 500;
  display: none;
}
.contact-message.success {
  background: rgba(40, 167, 69, 0.1);
  color: rgb(30.1449275362, 125.8550724638, 52);
  border: 1px solid rgba(40, 167, 69, 0.3);
}
.contact-message.error {
  background: rgba(220, 53, 69, 0.1);
  color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
  border: 1px solid rgba(220, 53, 69, 0.3);
}
.contact-message.show {
  display: block;
  animation: slideDown 0.4s ease-out;
}

.map-container {
  margin-top: 8rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 35px 60px rgba(0, 0, 0, 0.15);
  height: 400px;
  position: relative;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%) contrast(1.1);
  transition: filter 0.3s ease;
}
.map-container:hover iframe {
  filter: grayscale(0%) contrast(1);
}
.map-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(74, 144, 226, 0.1);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.map-container:hover::before {
  opacity: 1;
}

.contact-cta {
  background: linear-gradient(135deg, #4a90e2 0%, rgb(139.9357142857, 184.4357142857, 236.5642857143) 100%);
  border-radius: 24px;
  padding: 6rem;
  text-align: center;
  margin-top: 8rem;
  position: relative;
  overflow: hidden;
}
.contact-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.5;
}
.contact-cta .container {
  position: relative;
  z-index: 1;
}
.contact-cta h3 {
  font-size: 1.875rem;
  color: #ffffff;
  margin-bottom: 2rem;
  font-weight: 700;
}
.contact-cta p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.contact-cta .cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-cta .cta-buttons .btn {
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  background: #ffffff;
  color: #4a90e2;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 2rem 4rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}
.contact-cta .cta-buttons .btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}
.contact-cta .cta-buttons .btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.95);
}
.contact-cta .cta-buttons .btn i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}
.contact-cta .cta-buttons .btn:hover i {
  transform: translateX(3px);
}

@keyframes progress-bar {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 991px) {
  .contact-container .contact-form-container {
    order: 2;
  }
  .contact-container .contact-info {
    order: 1;
  }
}
@media (max-width: 767px) {
  .contact::before, .contact::after {
    opacity: 0.5;
  }
  .contact-form-container,
  .contact-info .info-card {
    padding: 4rem;
  }
  .contact-cta {
    padding: 4rem;
  }
  .contact-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 576px) {
  .contact-info .social-links .social-icons {
    gap: 1.5rem;
  }
  .contact-info .social-links .social-icons .social-icon {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(52, 58, 64, 0.95);
  color: #ffffff;
  padding: 20px 0;
  z-index: 999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}
.cookie-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.cookie-banner .cookie-content {
  flex: 1;
  min-width: 300px;
}
.cookie-banner p {
  margin-bottom: 15px;
}
.cookie-banner a {
  color: #ffffff;
  text-decoration: underline;
}
.cookie-banner a:hover {
  color: rgb(229.5, 229.5, 229.5);
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 10px;
}
.cookie-banner .btn-accept {
  background: #4a90e2;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cookie-banner .btn-accept:hover {
  background: rgb(34.3857142857, 117.3857142857, 214.6142857143);
}
.cookie-banner .btn-decline {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cookie-banner .btn-decline:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 576px) {
  .cookie-banner .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-banner .cookie-buttons {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }
  .cookie-banner .cookie-buttons button {
    width: 100%;
    margin: 0;
  }
}
.blog-header {
  background-color: #4a90e2;
  background-image: linear-gradient(135deg, #4a90e2, #ffffff);
  color: #ffffff;
  padding: 6rem 0 3rem;
  text-align: center;
  position: relative;
}
.blog-header:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-image: url("../images/pattern.svg");
  background-repeat: repeat-x;
  background-position: bottom center;
  opacity: 0.6;
}
.blog-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.blog-header p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .blog-header {
    padding: 5rem 0 2rem;
  }
  .blog-header h1 {
    font-size: 2.2rem;
  }
  .blog-header p {
    font-size: 1rem;
  }
}

.blog-categories {
  background-color: #ffffff;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
}
.blog-categories .category-list {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.blog-categories .category-list li {
  margin: 0.5rem 1rem;
}
.blog-categories .category-list li.active a {
  color: #4a90e2;
  font-weight: 600;
  border-bottom: 2px solid #4a90e2;
}
.blog-categories .category-list li a {
  color: #555555;
  text-decoration: none;
  padding-bottom: 3px;
  transition: all 0.3s ease;
  font-size: 1rem;
}
.blog-categories .category-list li a:hover {
  color: #4a90e2;
  border-bottom: 2px solid #4a90e2;
}

.blog-posts {
  padding: 4rem 0;
  background-color: #f5f5f5;
}
.blog-posts .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .blog-posts .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.blog-card .blog-image {
  position: relative;
}
.blog-card .blog-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.blog-card .blog-image .blog-category {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #4a90e2;
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}
.blog-card .blog-content {
  padding: 1.5rem;
}
.blog-card .blog-content .blog-meta {
  display: flex;
  color: #777777;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.blog-card .blog-content .blog-meta span {
  margin-right: 1rem;
}
.blog-card .blog-content .blog-meta span i {
  margin-right: 5px;
  color: #4a90e2;
}
.blog-card .blog-content h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.blog-card .blog-content h2 a {
  color: #333333;
  text-decoration: none;
  transition: color 0.2s ease;
}
.blog-card .blog-content h2 a:hover {
  color: #4a90e2;
}
.blog-card .blog-content p {
  color: #777777;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.blog-card .blog-content .read-more {
  color: #4a90e2;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}
.blog-card .blog-content .read-more i {
  margin-left: 5px;
  transition: transform 0.2s ease;
}
.blog-card .blog-content .read-more:hover i {
  transform: translateX(5px);
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}
.pagination a, .pagination span {
  margin: 0 5px;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  color: #555555;
  transition: all 0.2s ease;
}
.pagination a.active, .pagination span.active {
  background-color: #4a90e2;
  color: #ffffff;
}
.pagination a:not(.active):hover, .pagination span:not(.active):hover {
  background-color: rgb(227.85, 238.35, 250.65);
}
.pagination a.next, .pagination span.next {
  margin-left: 1rem;
  display: inline-flex;
  align-items: center;
}
.pagination a.next i, .pagination span.next i {
  margin-left: 5px;
  transition: transform 0.2s ease;
}
.pagination a.next:hover i, .pagination span.next:hover i {
  transform: translateX(5px);
}

.newsletter {
  padding: 4rem 0;
  background-color: #ffffff;
}
.newsletter .newsletter-inner {
  background-color: rgb(249.8285714286, 251.8285714286, 254.1714285714);
  padding: 3rem;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
@media (max-width: 992px) {
  .newsletter .newsletter-inner {
    flex-direction: column;
    text-align: center;
  }
}
.newsletter .newsletter-content {
  flex: 1;
}
.newsletter .newsletter-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333333;
}
.newsletter .newsletter-content p {
  color: #777777;
  margin-bottom: 1.5rem;
}
.newsletter .newsletter-content .newsletter-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (max-width: 992px) {
  .newsletter .newsletter-content .newsletter-benefits {
    align-items: center;
  }
}
.newsletter .newsletter-content .newsletter-benefits .benefit-item {
  display: flex;
  align-items: center;
}
.newsletter .newsletter-content .newsletter-benefits .benefit-item i {
  color: #4a90e2;
  margin-right: 0.5rem;
  font-size: 1.1rem;
}
.newsletter .newsletter-content .newsletter-benefits .benefit-item span {
  font-size: 0.95rem;
}
.newsletter .newsletter-form {
  flex: 1;
}
.newsletter .newsletter-form .subscription-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.newsletter .newsletter-form .subscription-form .form-row {
  display: flex;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .newsletter .newsletter-form .subscription-form .form-row {
    flex-direction: column;
  }
}
.newsletter .newsletter-form .subscription-form .form-row input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid #f5f5f5;
  border-radius: 4px;
  outline: none;
}
.newsletter .newsletter-form .subscription-form .form-row input:focus {
  border-color: #4a90e2;
}
.newsletter .newsletter-form .subscription-form .form-interests {
  margin-bottom: 0.5rem;
}
.newsletter .newsletter-form .subscription-form .form-interests .interest-heading {
  font-size: 0.9rem;
  color: #333333;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.newsletter .newsletter-form .subscription-form .form-interests .interest-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 992px) {
  .newsletter .newsletter-form .subscription-form .form-interests .interest-options {
    justify-content: center;
  }
}
.newsletter .newsletter-form .subscription-form .form-interests .interest-options label {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #333333;
}
.newsletter .newsletter-form .subscription-form .form-interests .interest-options label input {
  margin-right: 0.4rem;
}
.newsletter .newsletter-form .subscription-form button {
  padding: 0.75rem 1.5rem;
  align-self: flex-start;
}
@media (max-width: 992px) {
  .newsletter .newsletter-form .subscription-form button {
    align-self: center;
  }
}
.newsletter .newsletter-form .privacy-notice {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #777777;
}
.newsletter .newsletter-form .privacy-notice a {
  color: #4a90e2;
  text-decoration: none;
}
.newsletter .newsletter-form .privacy-notice a:hover {
  text-decoration: underline;
}

.blog-single-header {
  background-color: #4a90e2;
  background-image: linear-gradient(135deg, #4a90e2, #ffffff);
  color: #ffffff;
  padding: 7rem 0 3rem;
  position: relative;
  text-align: center;
}
.blog-single-header:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-image: url("../images/pattern.svg");
  background-repeat: repeat-x;
  background-position: bottom center;
  opacity: 0.6;
}
.blog-single-header .blog-category-tag {
  display: inline-block;
  background-color: #ffffff;
  color: #333333;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.blog-single-header .blog-category-tag:hover {
  transform: translateY(-3px);
}
.blog-single-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}
@media (max-width: 768px) {
  .blog-single-header h1 {
    font-size: 2.2rem;
  }
}
.blog-single-header .blog-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.blog-single-header .blog-meta span {
  display: flex;
  align-items: center;
  font-size: 1rem;
}
.blog-single-header .blog-meta span i {
  margin-right: 0.5rem;
}
.blog-single-header .blog-meta .blog-author .author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 0.75rem;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.blog-single-header .blog-meta .blog-author .author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 4rem 0;
  background-color: #ffffff;
}
.blog-content .container {
  max-width: 1200px;
}
.blog-content .blog-main-image {
  margin-bottom: 3rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}
.blog-content .blog-main-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.5));
  z-index: 1;
  pointer-events: none;
}
.blog-content .blog-main-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.blog-content .blog-main-image img:hover {
  transform: scale(1.02);
}
.blog-content .content-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}
@media (max-width: 992px) {
  .blog-content .content-wrapper {
    grid-template-columns: 1fr;
  }
}
.blog-content .blog-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333333;
}
.blog-content .blog-text .lead {
  font-size: 1.35rem;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 2rem;
  font-weight: 300;
}
.blog-content .blog-text h2 {
  font-size: 2rem;
  margin: 2.5rem 0 1.2rem;
  color: #333333;
}
.blog-content .blog-text h3 {
  font-size: 1.6rem;
  margin: 2rem 0 1rem;
  color: #333333;
}
.blog-content .blog-text h4 {
  font-size: 1.3rem;
  margin: 1.5rem 0 0.8rem;
  color: #333333;
}
.blog-content .blog-text p {
  margin-bottom: 1.5rem;
}
.blog-content .blog-text ul, .blog-content .blog-text ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.blog-content .blog-text ul li, .blog-content .blog-text ol li {
  margin-bottom: 0.5rem;
}
.blog-content .blog-text blockquote {
  position: relative;
  margin: 2.5rem 0;
  padding: 2rem 3rem;
  background-color: white;
  border-left: 5px solid #4a90e2;
  font-style: italic;
  border-radius: 5px;
}
.blog-content .blog-text blockquote:before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 4rem;
  color: #4a90e2;
  opacity: 0.3;
  font-family: Georgia, serif;
}
.blog-content .blog-text blockquote p {
  margin: 0;
  position: relative;
  z-index: 1;
}
.blog-content .blog-text blockquote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 600;
  color: #4a90e2;
  font-size: 1rem;
}
.blog-content .blog-text blockquote cite:before {
  content: "— ";
}
.blog-content .blog-text img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem 0;
}
.blog-content .blog-text .info-box, .blog-content .blog-text .tip-box, .blog-content .blog-text .warning-box, .blog-content .blog-text .success-box {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  background-color: #f8f9fa;
  border-left: 5px solid;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}
.blog-content .blog-text .info-box h4, .blog-content .blog-text .tip-box h4, .blog-content .blog-text .warning-box h4, .blog-content .blog-text .success-box h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.blog-content .blog-text .info-box h4:before, .blog-content .blog-text .tip-box h4:before, .blog-content .blog-text .warning-box h4:before, .blog-content .blog-text .success-box h4:before {
  font-family: "Font Awesome 6 Free";
  margin-right: 10px;
  font-size: 1.1em;
}
.blog-content .blog-text .info-box ul, .blog-content .blog-text .tip-box ul, .blog-content .blog-text .warning-box ul, .blog-content .blog-text .success-box ul {
  margin-bottom: 0;
}
.blog-content .blog-text .info-box {
  border-color: #4a90e2;
  background-color: white;
}
.blog-content .blog-text .info-box h4:before {
  content: "\f05a";
  color: #4a90e2;
}
.blog-content .blog-text .tip-box {
  border-color: #ffffff;
  background-color: white;
}
.blog-content .blog-text .tip-box h4:before {
  content: "\f0eb";
  color: #ffffff;
}
.blog-content .blog-text .warning-box {
  border-color: #ff9800;
  background-color: rgb(255, 224.1, 178.5);
}
.blog-content .blog-text .warning-box h4:before {
  content: "\f071";
  color: #ff9800;
}
.blog-content .blog-text .success-box {
  border-color: #4caf50;
  background-color: rgb(252.2111553785, 253.7888446215, 252.2749003984);
}
.blog-content .blog-text .success-box h4:before {
  content: "\f00c";
  color: #4caf50;
}
.blog-content .blog-text table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
  font-size: 1rem;
}
.blog-content .blog-text table th, .blog-content .blog-text table td {
  padding: 0.75rem;
  border-bottom: 1px solid #e9ecef;
}
.blog-content .blog-text table th {
  background-color: #f8f9fa;
  font-weight: 600;
  text-align: left;
  color: #333333;
}
.blog-content .blog-text table tr:nth-child(even) {
  background-color: #f8f9fa;
}
.blog-content .blog-text table tr:hover {
  background-color: white;
}
.blog-content .blog-text pre {
  background-color: #333333;
  color: #ffffff;
  padding: 1.5rem;
  border-radius: 5px;
  overflow-x: auto;
  margin: 2rem 0;
  font-family: monospace;
  line-height: 1.6;
}
.blog-content .blog-text code {
  background-color: #e9ecef;
  padding: 0.2em 0.4em;
  border-radius: 3px;
  font-family: monospace;
}
.blog-content .blog-text .table-of-contents {
  background-color: #f8f9fa;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  margin: 2rem 0;
  border: 1px solid #e9ecef;
}
.blog-content .blog-text .table-of-contents h3 {
  margin-top: 0;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #333333;
}
.blog-content .blog-text .table-of-contents ol {
  counter-reset: item;
  list-style-type: none;
  padding-left: 0;
}
.blog-content .blog-text .table-of-contents ol li {
  margin-bottom: 0.8rem;
}
.blog-content .blog-text .table-of-contents ol li a {
  color: #4a90e2;
  text-decoration: none;
  transition: color 0.2s ease;
  display: flex;
  align-items: baseline;
}
.blog-content .blog-text .table-of-contents ol li a:hover {
  color: rgb(34.3857142857, 117.3857142857, 214.6142857143);
}
.blog-content .blog-text .table-of-contents ol li a:before {
  counter-increment: item;
  content: counter(item) ". ";
  font-weight: 600;
  margin-right: 0.5rem;
  color: #666666;
  min-width: 25px;
}
.blog-content .blog-text .table-of-contents ol li ol {
  padding-left: 2rem;
  margin-top: 0.8rem;
  margin-bottom: 0;
}
.blog-content .blog-text .table-of-contents ol li ol li a:before {
  content: counter(item, lower-alpha) ". ";
}
.blog-content .blog-text .infographic {
  margin: 3rem 0;
  text-align: center;
}
.blog-content .blog-text .infographic img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.blog-content .blog-text .infographic .caption {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #666666;
  font-style: italic;
}
.blog-content .blog-text .chart-container {
  margin: 2.5rem 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.blog-content .blog-text .chart-container img {
  margin: 0;
  border-radius: 0;
}
.blog-content .blog-text .step-by-step {
  margin: 2.5rem 0;
  counter-reset: step;
}
.blog-content .blog-text .step-by-step .step {
  position: relative;
  padding: 1.5rem 2rem 1.5rem 4rem;
  margin-bottom: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  border-left: 3px solid #4a90e2;
}
.blog-content .blog-text .step-by-step .step:before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  width: 30px;
  height: 30px;
  background-color: #4a90e2;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}
.blog-content .blog-text .step-by-step .step h4 {
  margin-top: 0;
}
.blog-content .blog-text .step-by-step .step p:last-child {
  margin-bottom: 0;
}
.blog-content .blog-text .author-box {
  margin-top: 4rem;
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 10px;
  display: flex;
  gap: 1.5rem;
  border-top: 3px solid #4a90e2;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
@media (max-width: 576px) {
  .blog-content .blog-text .author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.blog-content .blog-text .author-box .author-avatar {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.blog-content .blog-text .author-box .author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
}
.blog-content .blog-text .author-box .author-info h3 {
  margin-top: 0;
  font-size: 1.2rem;
  color: #666666;
}
.blog-content .blog-text .author-box .author-info p {
  margin-bottom: 1rem;
}
.blog-content .blog-text .author-box .author-info .author-social {
  display: flex;
  gap: 0.75rem;
}
@media (max-width: 576px) {
  .blog-content .blog-text .author-box .author-info .author-social {
    justify-content: center;
  }
}
.blog-content .blog-text .author-box .author-info .author-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #4a90e2;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.blog-content .blog-text .author-box .author-info .author-social a:hover {
  background-color: rgb(30.8642857143, 105.3642857143, 192.6357142857);
  transform: translateY(-3px);
}
.blog-content .blog-sidebar .sidebar-widget {
  margin-bottom: 2.5rem;
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
}
.blog-content .blog-sidebar .sidebar-widget h3 {
  margin-top: 0;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #dee2e6;
  color: #333333;
}
.blog-content .blog-sidebar .category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-content .blog-sidebar .category-list li {
  margin-bottom: 0.5rem;
}
.blog-content .blog-sidebar .category-list li a {
  display: block;
  padding: 0.5rem 0;
  text-decoration: none;
  color: #333333;
  border-bottom: 1px solid #e9ecef;
  transition: all 0.2s ease;
}
.blog-content .blog-sidebar .category-list li a:hover {
  color: #4a90e2;
  padding-left: 5px;
}
.blog-content .blog-sidebar .category-list li.active a {
  color: #4a90e2;
  font-weight: 600;
}
.blog-content .blog-sidebar .popular-posts .post-item {
  margin-bottom: 1rem;
}
.blog-content .blog-sidebar .popular-posts .post-item:last-child {
  margin-bottom: 0;
}
.blog-content .blog-sidebar .popular-posts .post-item a {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 5px;
  transition: background-color 0.2s ease;
}
.blog-content .blog-sidebar .popular-posts .post-item a:hover {
  background-color: #e9ecef;
}
.blog-content .blog-sidebar .popular-posts .post-item a img {
  width: 70px;
  height: 50px;
  border-radius: 4px;
  object-fit: cover;
  margin-right: 1rem;
}
.blog-content .blog-sidebar .popular-posts .post-item a .post-info h4 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  line-height: 1.3;
  color: #333333;
}
.blog-content .blog-sidebar .popular-posts .post-item a .post-info span {
  font-size: 0.8rem;
  color: #666666;
}
.blog-content .blog-sidebar .sidebar-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.blog-content .blog-sidebar .sidebar-form input {
  padding: 0.75rem;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  outline: none;
}
.blog-content .blog-sidebar .sidebar-form input:focus {
  border-color: #4a90e2;
}
.blog-content .blog-sidebar .tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.blog-content .blog-sidebar .tag-cloud .tag {
  background-color: #e9ecef;
  color: #333333;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.blog-content .blog-sidebar .tag-cloud .tag:hover {
  background-color: #4a90e2;
  color: #ffffff;
}
.blog-content .related-posts {
  margin-top: 4rem;
}
.blog-content .related-posts h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.blog-content .related-posts .related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .blog-content .related-posts .related-posts-grid {
    grid-template-columns: 1fr;
  }
}
.blog-content .comments-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid #e9ecef;
}
.blog-content .comments-section h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
.blog-content .comments-section .comments-list .comment {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e9ecef;
  position: relative;
}
.blog-content .comments-section .comments-list .comment:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.blog-content .comments-section .comments-list .comment.reply-comment {
  margin-left: 3rem;
  padding: 1.5rem;
  background-color: white;
  border-radius: 8px;
  border: 1px solid rgb(227.85, 238.35, 250.65);
}
.blog-content .comments-section .comments-list .comment.reply-comment:before {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: -10px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid white;
}
@media (max-width: 768px) {
  .blog-content .comments-section .comments-list .comment.reply-comment {
    margin-left: 1.5rem;
  }
}
@media (max-width: 576px) {
  .blog-content .comments-section .comments-list .comment {
    flex-direction: column;
  }
}
.blog-content .comments-section .comments-list .comment .comment-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 576px) {
  .blog-content .comments-section .comments-list .comment .comment-avatar {
    margin: 0 auto 1rem;
  }
}
.blog-content .comments-section .comments-list .comment .comment-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-content .comments-section .comments-list .comment .comment-content {
  flex: 1;
}
@media (max-width: 576px) {
  .blog-content .comments-section .comments-list .comment .comment-content {
    text-align: center;
  }
}
.blog-content .comments-section .comments-list .comment .comment-content .comment-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .blog-content .comments-section .comments-list .comment .comment-content .comment-header {
    justify-content: center;
    gap: 0.5rem;
  }
}
.blog-content .comments-section .comments-list .comment .comment-content .comment-header h4 {
  margin: 0;
  color: #333333;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}
.blog-content .comments-section .comments-list .comment .comment-content .comment-header h4 .author-badge {
  display: inline-block;
  margin-left: 0.5rem;
  background-color: #4a90e2;
  color: #ffffff;
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.blog-content .comments-section .comments-list .comment .comment-content .comment-header span {
  color: #666666;
  font-size: 0.9rem;
}
.blog-content .comments-section .comments-list .comment .comment-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}
.blog-content .comments-section .comments-list .comment .comment-content .reply-link {
  color: #4a90e2;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
}
.blog-content .comments-section .comments-list .comment .comment-content .reply-link:before {
  content: "\f3e5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 0.4rem;
  font-size: 0.8rem;
}
.blog-content .comments-section .comments-list .comment .comment-content .reply-link:hover {
  text-decoration: underline;
}
.blog-content .comments-section .comment-form {
  margin-top: 3rem;
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}
.blog-content .comments-section .comment-form h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e9ecef;
}
.blog-content .comments-section .comment-form form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .blog-content .comments-section .comment-form form {
    grid-template-columns: 1fr;
  }
}
.blog-content .comments-section .comment-form form .form-group.full-width {
  grid-column: 1/-1;
}
.blog-content .comments-section .comment-form form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.blog-content .comments-section .comment-form form .form-group label .required {
  color: #ff5252;
}
.blog-content .comments-section .comment-form form .form-group label .form-note {
  font-size: 0.8rem;
  font-weight: normal;
  color: #666666;
  margin-left: 0.3rem;
}
.blog-content .comments-section .comment-form form .form-group input, .blog-content .comments-section .comment-form form .form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  outline: none;
  background-color: #ffffff;
}
.blog-content .comments-section .comment-form form .form-group input:focus, .blog-content .comments-section .comment-form form .form-group textarea:focus {
  border-color: #4a90e2;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}
.blog-content .comments-section .comment-form form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.blog-content .comments-section .comment-form form .form-group .gdpr-consent {
  display: flex;
  align-items: flex-start;
}
.blog-content .comments-section .comment-form form .form-group .gdpr-consent input {
  width: auto;
  margin-top: 0.3rem;
  margin-right: 0.5rem;
}
.blog-content .comments-section .comment-form form .form-group .gdpr-consent label {
  font-size: 0.9rem;
  font-weight: normal;
  line-height: 1.4;
}

.city-hero {
  position: relative;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  color: #ffffff;
}
.city-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.city-hero .hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}
.city-hero .hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  max-width: 800px;
}
@media (max-width: 767.98px) {
  .city-hero .hero-content h1 {
    font-size: 2.5rem;
  }
}
.city-hero .hero-content .hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  max-width: 700px;
}
@media (max-width: 767.98px) {
  .city-hero .hero-content .hero-subtitle {
    font-size: 1.2rem;
  }
}

.berlin-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/assets/images/cities/berlin-hero.jpg");
}

.muenchen-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/assets/images/cities/muenchen-hero.jpg");
}

.hamburg-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/assets/images/cities/hamburg-hero.jpg");
}

.koeln-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/assets/images/cities/koeln-hero.jpg");
}

.frankfurt-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/assets/images/cities/frankfurt-hero.jpg");
}

.duesseldorf-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/assets/images/cities/duesseldorf-hero.jpg");
}

.stuttgart-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/assets/images/cities/stuttgart-hero.jpg");
}

.city-features {
  padding: 2rem 0;
}
.city-features .city-feature-item {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.city-features .city-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.city-features .city-feature-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #4a90e2;
}
.city-features .city-feature-item p {
  color: #495057;
  margin-bottom: 0;
}
.city-features .city-feature-item .feature-icon {
  color: #4a90e2;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.city-districts {
  background-color: #f8f9fa;
  padding: 3rem 0;
}
.city-districts .district-item {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}
.city-districts .district-item h4 {
  font-size: 1.2rem;
  color: #4a90e2;
  margin-bottom: 0.75rem;
}
.city-districts .district-item p {
  font-size: 0.95rem;
  color: #495057;
  margin-bottom: 0.75rem;
}
.city-districts .district-item .btn-district {
  font-size: 0.9rem;
  padding: 0.4rem 0.75rem;
}

.city-blog {
  padding: 4rem 0;
}
.city-blog .city-blog-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.city-blog .city-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.city-blog .city-blog-card .blog-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.city-blog .city-blog-card .blog-content {
  padding: 1.5rem;
}
.city-blog .city-blog-card .blog-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.city-blog .city-blog-card .blog-content h3 a {
  color: #4a90e2;
  text-decoration: none;
}
.city-blog .city-blog-card .blog-content h3 a:hover {
  color: rgb(34.3857142857, 117.3857142857, 214.6142857143);
}
.city-blog .city-blog-card .blog-content .blog-meta {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 0.75rem;
}
.city-blog .city-blog-card .blog-content .blog-meta span {
  margin-right: 1rem;
}
.city-blog .city-blog-card .blog-content .blog-meta span i {
  margin-right: 0.3rem;
}
.city-blog .city-blog-card .blog-content p {
  font-size: 0.95rem;
  color: #495057;
  margin-bottom: 1rem;
}

.city-testimonials .testimonial-item {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 1rem;
}
.city-testimonials .testimonial-item .testimonial-content {
  position: relative;
  padding-left: 2rem;
}
.city-testimonials .testimonial-item .testimonial-content::before {
  content: "“";
  font-family: Georgia, serif;
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 5rem;
  color: #4a90e2;
  opacity: 0.3;
}
.city-testimonials .testimonial-item .testimonial-content p {
  font-style: italic;
  color: #495057;
}
.city-testimonials .testimonial-item .testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}
.city-testimonials .testimonial-item .testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}
.city-testimonials .testimonial-item .testimonial-author h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
  font-weight: 600;
  color: #333333;
}
.city-testimonials .testimonial-item .testimonial-author p {
  font-size: 0.85rem;
  color: #6c757d;
  margin: 0;
}

.related-cities .cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.related-cities .cities-grid .city-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #ffffff;
  color: #4a90e2;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  font-weight: 500;
}
.related-cities .cities-grid .city-link:hover {
  background-color: #4a90e2;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.legal-page {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #f8f9fa;
}
.legal-page h1 {
  margin-bottom: 40px;
}
.legal-page .legal-content {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}
.legal-page .legal-block {
  margin-bottom: 40px;
}
.legal-page .legal-block:last-child {
  margin-bottom: 0;
}
.legal-page .legal-block h2 {
  font-size: 1.5rem;
  color: #4a90e2;
  margin-bottom: 15px;
}
.legal-page .legal-block h2::after {
  width: 40px;
  height: 2px;
  bottom: -8px;
}
.legal-page .legal-block p {
  margin-bottom: 15px;
  color: #666666;
  line-height: 1.7;
}
.legal-page .legal-block p:last-child {
  margin-bottom: 0;
}
.legal-page .legal-block a {
  color: #4a90e2;
  transition: all 0.3s ease;
}
.legal-page .legal-block a:hover {
  color: rgb(30.8642857143, 105.3642857143, 192.6357142857);
  text-decoration: underline;
}
.legal-page .legal-block i {
  width: 20px;
  color: #4a90e2;
  margin-right: 5px;
}
.legal-page .back-to-home {
  text-align: center;
}

@media (max-width: 767px) {
  .legal-page {
    padding-top: 100px;
  }
  .legal-page .legal-content {
    padding: 25px;
  }
}
footer {
  background: linear-gradient(145deg, #1a1a1a 0%, rgb(13.25, 13.25, 13.25) 50%, #1a1a1a 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(78, 205, 196, 0.03) 0%, transparent 50%);
  animation: pulse 15s ease-in-out infinite;
  z-index: 0;
}
footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #4ecdc4 25%, #ff6b6b 75%, transparent 100%);
  z-index: 1;
}
footer .container {
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 6rem;
  padding: 8rem 0;
}
@media (max-width: 991px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}
@media (max-width: 767px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}

.footer-column h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  position: relative;
}
.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #4ecdc4;
  border-radius: 1px;
}
@media (max-width: 767px) {
  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
.footer-column .footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .footer-column .footer-logo {
    align-items: center;
    text-align: center;
  }
}
.footer-column .footer-logo img {
  max-width: 180px;
  height: auto;
  filter: brightness(1.1);
  transition: all 0.3s ease;
}
.footer-column .footer-logo img:hover {
  filter: brightness(1.3);
  transform: scale(1.05);
}
.footer-column .footer-logo .footer-brand {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-column .footer-description p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
.footer-column .footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-column .footer-links li {
  margin-bottom: 1rem;
}
.footer-column .footer-links li:last-child {
  margin-bottom: 0;
}
.footer-column .footer-links li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.footer-column .footer-links li a:hover {
  color: #4ecdc4;
  transform: translateX(5px);
}
.footer-column .footer-links li a i {
  font-size: 0.875rem;
  width: 16px;
  color: #4ecdc4;
}
.footer-column .footer-social {
  margin-top: 3rem;
}
.footer-column .footer-social .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-right: 1.5rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}
.footer-column .footer-social .social-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #4a90e2 0%, rgb(139.9357142857, 184.4357142857, 236.5642857143) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
}
.footer-column .footer-social .social-icon:hover {
  transform: translateY(-3px) scale(1.1);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}
.footer-column .footer-social .social-icon:hover::before {
  opacity: 1;
}
.footer-column .footer-social .social-icon:last-child {
  margin-right: 0;
}
.footer-column .footer-social .social-icon i {
  font-size: 1.125rem;
  position: relative;
  z-index: 1;
}
.footer-column .footer-social .social-icon[href*=linkedin]:hover::before {
  background: #0077b5;
}
.footer-column .footer-social .social-icon[href*=xing]:hover::before {
  background: #026466;
}
.footer-column .footer-social .social-icon[href*=facebook]:hover::before {
  background: #1877f2;
}
.footer-column .footer-social .social-icon[href*=twitter]:hover::before {
  background: #1da1f2;
}
.footer-column .footer-social .social-icon[href*=instagram]:hover::before {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 0;
  text-align: center;
  position: relative;
}
.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: #4ecdc4;
}
.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 1rem 0;
  line-height: 1.6;
}
.footer-bottom p:first-child {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}
.footer-bottom p:last-child {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2rem;
}
.footer-bottom p a {
  color: #4ecdc4;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.footer-bottom p a:hover {
  color: #ff6b6b;
  text-decoration: underline;
}
.footer-bottom p a:not(:last-child)::after {
  content: " | ";
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0.5rem;
}

.footer-newsletter {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 3rem;
  margin-top: 3rem;
}
.footer-newsletter h5 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.footer-newsletter p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}
.footer-newsletter .newsletter-form {
  display: flex;
  gap: 1rem;
}
@media (max-width: 576px) {
  .footer-newsletter .newsletter-form {
    flex-direction: column;
  }
}
.footer-newsletter .newsletter-form input {
  flex: 1;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
.footer-newsletter .newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.footer-newsletter .newsletter-form input:focus {
  outline: none;
  border-color: #4ecdc4;
  background: rgba(255, 255, 255, 0.15);
}
.footer-newsletter .newsletter-form button {
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #4a90e2 0%, rgb(139.9357142857, 184.4357142857, 236.5642857143) 100%);
  color: #ffffff;
  padding: 1.5rem 2rem;
  font-size: 0.875rem;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.footer-newsletter .newsletter-form button:hover {
  text-decoration: none;
  transform: translateY(-2px);
}
.footer-newsletter .newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  color: #ffffff;
  text-decoration: none;
}
@media (max-width: 576px) {
  .footer-newsletter .newsletter-form button {
    width: 100%;
  }
}

.back-to-top {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4a90e2 0%, rgb(139.9357142857, 184.4357142857, 236.5642857143) 100%);
  border: none;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.125rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1030;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 35px 60px rgba(0, 0, 0, 0.15);
}
.back-to-top:active {
  transform: translateY(-1px) scale(1.05);
}
@media (max-width: 767px) {
  .back-to-top {
    bottom: 2rem;
    right: 2rem;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}

@keyframes footerFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer-column {
  animation: footerFadeIn 0.6s ease-out;
  animation-fill-mode: both;
}
.footer-column:nth-child(1) {
  animation-delay: 0.1s;
}
.footer-column:nth-child(2) {
  animation-delay: 0.2s;
}
.footer-column:nth-child(3) {
  animation-delay: 0.3s;
}
.footer-column:nth-child(4) {
  animation-delay: 0.4s;
}

@media (max-width: 767px) {
  footer::before {
    opacity: 0.5;
  }
  .footer-content {
    padding: 6rem 0;
  }
  .footer-bottom {
    padding: 2rem 0;
  }
}
@media (max-width: 576px) {
  .footer-content {
    padding: 4rem 0;
  }
  .footer-column .footer-social {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
  }
  .footer-column .footer-social .social-icon {
    margin: 0;
  }
}
