
:root {
  --default-font: "Roboto", system-ui, -apple-system, sans-serif;
  --heading-font: "Oswald", sans-serif;
  --nav-font: "Oswald", sans-serif;
}


:root { 
  --background-color: #ffffff; 
  --default-color: #555555; 
  --heading-color: #2c3e40; 
  --accent-color: #35a79c; 
  --surface-color: #ffffff; 
  --contrast-color: #ffffff; 
}


:root {
  --nav-color: #2c3e40;  
  --nav-hover-color: #35a79c; 
  --nav-mobile-background-color: #ffffff; 
  --nav-dropdown-background-color: #ffffff; 
  --nav-dropdown-color: #2c3e40; 
  --nav-dropdown-hover-color: #35a79c; 
}


.light-background {
  --background-color: #ebf5f3; 
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1a2526; 
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #2c3e40;
  --contrast-color: #ffffff;
}


:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}


.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% { transform: scale(0.6, 0.6); opacity: 1; }
  100% { transform: scale(1, 1); opacity: 0; }
}


.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/*--------------------------------------------------------------
#  HEADER 
--------------------------------------------------------------*/
.header {
  z-index: 997; 
  background-color: transparent !important;
  padding: 25px 0 !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: none !important;
  box-shadow: none !important;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}


.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}


@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }
  .header .cta-btn {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }
  .header .navmenu {
    order: 3;
  }
}


.fancy-branding {
  background: rgba(255, 255, 255, 0.70);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 50px;
  padding: 12px 30px !important;
  box-shadow: 0 10px 30px rgba(53, 167, 156, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.4s ease;
}


.scrolled .header {
  padding: 10px 0 !important;
}

.scrolled .fancy-branding {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}


@media (max-width: 1199px) {
  .header {
    padding: 12px 0 !important;
  }
  .fancy-branding {
    padding: 10px 20px !important;
    border-radius: 50px; 
    display: flex;
    flex-wrap: nowrap !important; 
    align-items: center;
  }
  
  .header .logo h1 {
    font-size: 20px !important;
    white-space: nowrap; 
  }
  .mobile-nav-toggle {
    font-size: 28px !important;
    margin-left: 15px;
  }
}



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }
  .navmenu>ul>li:last-child {
    padding-right: 0;
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }
  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }
  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu .dropdown ul li {
    min-width: 200px;
  }
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }
  .navmenu .dropdown ul a i {
    font-size: 12px;
  }
  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }
  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }
  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }
  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }
  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }
  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
#  FOOTER 
--------------------------------------------------------------*/
.fancy-footer {
  background-color: var(--heading-color); 
  color: #ffffff;
  position: relative;
  overflow: hidden;
  padding-top: 60px;
  border-top: 5px solid var(--accent-color); 
}


.fancy-footer::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(53, 167, 156, 0.15);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}

.fancy-footer .container {
  position: relative;
  z-index: 1;
}

.fancy-footer .logo span {
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.fancy-footer .footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
}

.fancy-footer .footer-contact p {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  display: flex;
  align-items: center;
}

.fancy-footer .footer-contact i {
  color: var(--accent-color);
  font-size: 18px;
}

.fancy-footer h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 15px;
  margin-bottom: 20px;
  position: relative;
}


.fancy-footer h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
  border-radius: 50px;
}

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

.fancy-footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05); 
}

.fancy-footer .footer-links ul li:last-child {
  border-bottom: none;
}

.fancy-footer .footer-links ul i {
  padding-right: 8px;
  color: var(--accent-color);
  font-size: 14px;
}

.fancy-footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
  display: inline-block;
}

.fancy-footer .footer-links ul a:hover {
  color: #ffffff;
  transform: translateX(5px); 
}


.fancy-footer .footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  background: rgba(0, 0, 0, 0.15); 
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.fancy-footer .copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.fancy-footer .copyright strong {
  color: #ffffff;
}


.fancy-footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 16px;
  margin-left: 10px;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fancy-footer .social-links a:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(53, 167, 156, 0.4);
}


#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 72px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section (NEW BLOB DESIGN)
--------------------------------------------------------------*/
#hero {
  background-color: var(--background-color);
  overflow: hidden;
  width: 100%;
  position: relative;
}

.hero .welcome h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  text-shadow: 0px 0px 15px rgba(255, 255, 255, 0.9), 0px 0px 5px rgba(255, 255, 255, 1);
}

.hero .welcome p {
  font-size: 24px;
  margin: 0;
  font-weight: 500;
  text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.9);
}

/* Blob Animation */
.hero-blob-img {
  width: 100%;
  max-width: 500px;
  height: 500px;
  object-fit: cover;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: morph 8s ease-in-out infinite;
  box-shadow: 0 20px 40px rgba(53, 167, 156, 0.2);
}

@keyframes morph {
  0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  34%      { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
  67%      { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
}

.btn-get-started:hover {
  background: var(--heading-color) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(44, 62, 64, 0.3) !important;
}

.btn-learn-more:hover {
  color: var(--accent-color) !important;
  transform: translateX(5px);
}


.hero .content {
  margin-top: 40px;
}

.hero .content .why-box {
  color: var(--contrast-color);
  background: rgba(53, 167, 156, 0.85); 
  padding: 30px;
  border-radius: 4px;
  backdrop-filter: blur(4px); 
  -webkit-backdrop-filter: blur(4px);
}

.hero .content .why-box h3 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.hero .content .why-box p {
  margin-bottom: 30px;
}

.hero .content .why-box .more-btn {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  display: inline-block;
  padding: 6px 30px 8px 30px;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.hero .content .why-box .more-btn i {
  font-size: 14px;
}

.hero .content .why-box .more-btn:hover {
  background: var(--surface-color);
  color: var(--accent-color);
}

.hero .content .icon-box {
  text-align: center;
  border-radius: 10px;
  background: color-mix(in srgb, var(--surface-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  width: 100%;
}

.hero .content .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
}

.hero .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0 20px 0;
}

.hero .content .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}


/*--------------------------------------------------------------
# FANCY ABOUT SECTION 
--------------------------------------------------------------*/

.about-image-wrapper {
  position: relative;
  padding: 20px;
  z-index: 2;
}

.about-img {
  border-radius: 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-img {
  transform: translateY(-5px);
}

.about-img-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;
  height: 90%;
  background: var(--accent-color);
  opacity: 0.1;
  border-radius: 40px;
  transform: rotate(4deg);
  z-index: 1;
  transition: all 0.5s ease;
}

.about-image-wrapper:hover .about-img-backdrop {
  transform: rotate(0deg) scale(1.05);
  background: rgba(53, 167, 156, 0.2);
}

.about-glass-badge {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 20px 25px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(53, 167, 156, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.8);
  z-index: 3;
  animation: floatBadge 4s ease-in-out infinite;
}

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

.badge-icon {
  font-size: 36px;
  color: var(--accent-color);
  margin-right: 15px;
  line-height: 1;
}

.badge-title {
  display: block;
  font-size: 14px;
  color: var(--default-color);
  font-weight: 500;
}

.badge-subtitle {
  display: block;
  font-size: 18px;
  color: var(--heading-color);
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
}

/* -- Κείμενα -- */
.about-pre-title {
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.about-title {
  color: var(--heading-color);
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  margin-bottom: 20px;
}

.about-description {
  color: var(--default-color);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}


.fancy-list-item {
  display: flex;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 15px;
  border: 1px solid rgba(53, 167, 156, 0.1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.fancy-list-item:hover {
  transform: translateX(10px); 
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 25px rgba(53, 167, 156, 0.1);
  border-color: rgba(53, 167, 156, 0.3);
}

.fancy-list-item .icon-box {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(53, 167, 156, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  transition: all 0.3s ease;
}

.fancy-list-item:hover .icon-box {
  background: var(--accent-color);
}

.fancy-list-item .icon-box i {
  font-size: 20px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.fancy-list-item:hover .icon-box i {
  color: #fff;
}

.fancy-list-item h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.fancy-list-item p {
  font-size: 14px;
  color: var(--default-color);
  margin: 0;
  line-height: 1.5;
}


@media (max-width: 991px) {
  .about-glass-badge {
    left: 20px;
    bottom: 20px;
    padding: 15px 20px;
  }
  .fancy-list-item:hover {
    transform: translateY(-5px); 
  }
}
/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  border: 2px solid var(--background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  background-color: var(--surface-color);
  margin-top: -27px;
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 32px;
  display: block;
  margin: 10px 0;
  font-weight: 700;
  color: var(--heading-color);
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Services Section 
--------------------------------------------------------------*/
.services {
  position: relative;
  overflow: hidden;
}


.services::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(53, 167, 156, 0.12); 
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.services::after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: rgba(44, 62, 64, 0.08); 
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

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


.services .service-item {
  background: rgba(255, 255, 255, 0.6); 
  backdrop-filter: blur(12px); 
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  text-align: center;
  padding: 50px 20px;
  border-radius: 24px; 
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
}


.services .service-item .icon {
  margin: 0 auto;
  width: 70px;
  height: 70px;
  background: rgba(53, 167, 156, 0.1); 
  border-radius: 50%; 
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s ease;
}

.services .service-item .icon i {
  color: var(--accent-color);
  font-size: 32px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.services .service-item p {
  line-height: 24px;
  font-size: 15px;
  margin-bottom: 0;
  color: var(--default-color);
}


.services .service-item:hover {
  transform: translateY(-15px); 
  background: rgba(255, 255, 255, 0.95); 
  box-shadow: 0 25px 45px rgba(53, 167, 156, 0.15); 
  border-color: rgba(53, 167, 156, 0.4);
}


.services .service-item:hover .icon {
  background: var(--accent-color);
  transform: scale(1.1); 
  box-shadow: 0 10px 20px rgba(53, 167, 156, 0.3);
}

.services .service-item:hover .icon i {
  color: #fff;
}
/*--------------------------------------------------------------
# Appointment Section
--------------------------------------------------------------*/
.appointment .php-email-form {
  width: 100%;
}

.appointment .php-email-form .form-group {
  padding-bottom: 8px;
}

.appointment .php-email-form input,
.appointment .php-email-form textarea,
.appointment .php-email-form select {
  color: var(--default-color);
  background-color: transparent;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 10px !important;
}

.appointment .php-email-form input:focus,
.appointment .php-email-form textarea:focus,
.appointment .php-email-form select:focus {
  border-color: var(--accent-color);
}

.appointment .php-email-form input::placeholder,
.appointment .php-email-form textarea::placeholder,
.appointment .php-email-form select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.appointment .php-email-form input,
.appointment .php-email-form select {
  height: 44px;
}

.appointment .php-email-form textarea {
  padding: 10px 12px;
}

.appointment .php-email-form button[type=submit] {
  background: var(--accent-color);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.appointment .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Departments Section (Interactive Tabs)
--------------------------------------------------------------*/
.departments {
  overflow: hidden;
}


.custom-nav-tabs {
  border: 0;
  gap: 10px; 
}

.custom-nav-tabs .nav-link {
  border: 0;
  padding: 15px 20px;
  transition: all 0.3s ease;
  color: var(--heading-color);
  border-radius: 12px; 
  background-color: var(--surface-color);
  font-weight: 600;
  font-size: 15px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.custom-nav-tabs .nav-link:hover {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateX(5px); 
}


.custom-nav-tabs .nav-link.active {
  color: var(--contrast-color) !important;
  background-color: var(--accent-color) !important;
  box-shadow: 0 8px 20px rgba(53, 167, 156, 0.3);
  transform: translateX(10px);
}

.departments .tab-pane {
  animation: fadeInRight 0.6s ease-out; 
}


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

.departments .details h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.departments .details p.fst-italic {
  color: var(--accent-color);
  font-size: 18px;
  margin-bottom: 20px;
}

.departments .details p {
  color: var(--default-color);
  line-height: 1.8;
  font-size: 16px;
}


@media (max-width: 992px) {
  .custom-nav-tabs {
    flex-direction: row !important;
    overflow-x: auto;
    flex-wrap: nowrap;
    margin-bottom: 30px;
    padding-bottom: 10px;
  }
  .custom-nav-tabs .nav-link {
    white-space: nowrap;
    text-align: center;
  }
  .custom-nav-tabs .nav-link:hover,
  .custom-nav-tabs .nav-link.active {
    transform: translateY(-5px); 
  }
}

/*--------------------------------------------------------------
# Doctors Section
--------------------------------------------------------------*/
.doctors .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 5px;
  transition: 0.5s;
  padding: 30px;
  height: 100%;
}

@media (max-width: 468px) {
  .doctors .team-member {
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
  }
}

.doctors .team-member .pic {
  overflow: hidden;
  width: 150px;
  border-radius: 50%;
  flex-shrink: 0;
}

.doctors .team-member .pic img {
  transition: ease-in-out 0.3s;
}

.doctors .team-member:hover {
  transform: translateY(-10px);
}

.doctors .team-member .member-info {
  padding-left: 30px;
}

@media (max-width: 468px) {
  .doctors .team-member .member-info {
    padding: 30px 0 0 0;
    text-align: center;
  }
}

.doctors .team-member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
}

.doctors .team-member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.doctors .team-member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  bottom: 0;
  left: 0;
}

@media (max-width: 468px) {
  .doctors .team-member span::after {
    left: calc(50% - 25px);
  }
}

.doctors .team-member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.doctors .team-member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
}

@media (max-width: 468px) {
  .doctors .team-member .social {
    justify-content: center;
  }
}

.doctors .team-member .social a {
  background: color-mix(in srgb, var(--default-color), transparent 94%);
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 36px;
  height: 36px;
}

.doctors .team-member .social a i {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  margin: 0 2px;
}

.doctors .team-member .social a:hover {
  background: var(--accent-color);
}

.doctors .team-member .social a:hover i {
  color: var(--contrast-color);
}

.doctors .team-member .social a+a {
  margin-left: 8px;
}



.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
#  CONTACT 
--------------------------------------------------------------*/

.contact .info-item {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(53, 167, 156, 0.15);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.contact .info-item + .info-item {
  margin-top: 25px; 
}

.contact .info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(53, 167, 156, 0.15);
  background: rgba(255, 255, 255, 0.9);
}

.contact .info-item i {
  color: #fff;
  background: var(--accent-color);
  font-size: 22px;
  min-width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
  box-shadow: 0 5px 15px rgba(53, 167, 156, 0.3);
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 15px;
  color: var(--default-color);
}


.contact .php-email-form {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(53, 167, 156, 0.15);
  height: 100%;
}


.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 15px;
  padding: 15px 20px;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.02);
  border-radius: 12px !important; 
  color: var(--heading-color);
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(53, 167, 156, 0.2);
  transition: all 0.3s ease;
}


.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(53, 167, 156, 0.15); 
  outline: none;
}

.contact .php-email-form input::placeholder,
.contact .php-email-form textarea::placeholder {
  color: #a0a0a0;
}


.contact .php-email-form button[type=submit] {
  color: #fff;
  background: var(--accent-color);
  border: 0;
  padding: 14px 40px;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(53, 167, 156, 0.3);
  margin-top: 10px;
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--heading-color);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(44, 62, 64, 0.3);
}


@media (max-width: 576px) {
  .contact .php-email-form {
    padding: 25px 20px;
  }
}

/*--------------------------------------------------------------
# Mobile 
--------------------------------------------------------------*/
.mobile-action-bar {
  position: fixed;
  bottom: 15px; 
  left: 10px;
  right: 10px;
  width: auto;
  background: rgba(255, 255, 255, 0.9); 
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 9998;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  border-radius: 50px; 
  border: 1px solid rgba(53, 167, 156, 0.3);
}

.mobile-action-bar .action-item {
  display: flex;
  flex-direction: row; 
  align-items: center;
  justify-content: center;
  color: var(--heading-color);
  text-decoration: none;
  font-family: var(--default-font);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 10px;
  transition: 0.3s;
}

.mobile-action-bar .action-item i {
  font-size: 18px;
  margin-right: 6px; 
  color: var(--accent-color);
}

.mobile-action-bar .action-item:hover,
.mobile-action-bar .action-item:active {
  color: var(--accent-color);
}


.mobile-action-bar .action-item.appointment-btn {
  background: var(--accent-color);
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(53, 167, 156, 0.3);
}

.mobile-action-bar .action-item.appointment-btn i {
  color: #fff;
}

@media (max-width: 767px) {
  body {
    padding-bottom: 90px; 
  }
}


/*--------------------------------------------------------------
# Schedule 
--------------------------------------------------------------*/
#schedule {
  position: relative;
  background-color: var(--background-color);
}

.schedule-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(53, 167, 156, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
  border-radius: 24px;
  padding: 40px;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.schedule-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(53, 167, 156, 0.1);
}

.schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px dashed rgba(53, 167, 156, 0.3);
  font-size: 16px;
}

.schedule-item .day {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 18px;
  display: flex;
  align-items: center;
}

.schedule-item .time {
  color: var(--default-color);
  text-align: right;
  font-weight: 500;
  line-height: 1.4;
}


.schedule-item.closed .day {
  color: #999;
}

.schedule-item.closed .day i {
  color: #df1529 !important; 
}

.schedule-item.closed .time {
  color: #df1529; 
  font-weight: 600;
  background: rgba(223, 21, 41, 0.1);
  padding: 4px 12px;
  border-radius: 50px;
}


@media (max-width: 576px) {
  .schedule-card {
    padding: 20px;
  }
  .schedule-item {
    font-size: 15px;
  }
  .schedule-item .day {
    font-size: 16px;
  }
}

/* =======================================================
  MOBILE MENU
======================================================== */


body.mobile-nav-active .fancy-branding {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;

  justify-content: center !important; 
}


body.mobile-nav-active .logo {
  position: absolute; 
  left: 50%;
  top: 20px;
  transform: translateX(-50%); 
  z-index: 9999;
}

body.mobile-nav-active .logo h1 {
  color: #ffffff !important;
  font-size: 24px !important; 
  text-shadow: 0 4px 12px rgba(0,0,0,0.3); 
  letter-spacing: 1px; 
  white-space: nowrap;
}


body.mobile-nav-active .mobile-nav-toggle {
  position: absolute; 
  right: 20px;
  top: 15px;
  z-index: 99999; 
  color: #ffffff !important;
  
 
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15); 
  border: 1px solid rgba(255,255,255,0.3); 
  border-radius: 50%; 
  font-size: 22px !important;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}


body.mobile-nav-active .mobile-nav-toggle:hover,
body.mobile-nav-active .mobile-nav-toggle:active {
    background: var(--accent-color); 
    border-color: var(--accent-color);
    transform: rotate(90deg) scale(1.1); 
}


@media (max-width: 1199px) {
  .mobile-nav-active .navmenu > ul {
    inset: 90px 25px auto 25px !important; 
    background-color: rgba(255, 255, 255, 0.98); 
    backdrop-filter: blur(20px); 
    border-radius: 30px; 
    padding: 30px 20px; 
    box-shadow: 0 20px 60px rgba(0,0,0,0.3); 
    border: 1px solid rgba(53, 167, 156, 0.2);
    overflow: hidden;
 
    animation: mobileMenuSlideUp 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  }
}


@keyframes mobileMenuSlideUp {
  from { opacity: 0; transform: translateY(40px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}


@media (max-width: 1199px) {
  .navmenu ul li {
     margin-bottom: 12px;
     opacity: 0; 
     animation: fadeInItem 0.5s ease forwards;
  }


  .navmenu ul li:nth-child(1) { animation-delay: 0.1s; }
  .navmenu ul li:nth-child(2) { animation-delay: 0.15s; }
  .navmenu ul li:nth-child(3) { animation-delay: 0.2s; }
  .navmenu ul li:nth-child(4) { animation-delay: 0.25s; }
  .navmenu ul li:nth-child(5) { animation-delay: 0.3s; }
  .navmenu ul li:nth-child(6) { animation-delay: 0.35s; }

  .navmenu a,
  .navmenu a:focus {
    background-color: #f2fcfb;
    color: var(--heading-color);
    border-radius: 50px;
    padding: 15px 25px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 17px;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid transparent;
  }


  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    background-color: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
    transform: translateY(-3px) scale(1.02); 
    box-shadow: 0 8px 20px rgba(53, 167, 156, 0.3);
  }


  .navmenu a i { display: none; }
}


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

/*--------------------------------------------------------------
# Doctors Profile
--------------------------------------------------------------*/
.doctor-img-wrapper {
  position: relative;
  padding: 10px; 
  z-index: 2;
  max-width: 350px;
  width: 100%;
  margin: 0 auto;
}

.doctor-img {
  border-radius: 20px; 
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease;
}

.doctor-img-wrapper:hover .doctor-img {
  transform: translateY(-5px); 
}


.doctor-img-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-color);
  opacity: 0.12;
  border-radius: 25px;
  transform: rotate(-4deg);
  z-index: 1;
  transition: transform 0.5s ease;
}

.doctor-img-wrapper:hover .doctor-img-backdrop {
  transform: rotate(0deg) scale(1.02);
}


.doctor-info-glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px; 
  padding: 35px 40px;
  box-shadow: 0 10px 30px rgba(53, 167, 156, 0.08);
  position: relative;
  left: -35px; 
  z-index: 3;
}

.doctor-title {
  color: var(--accent-color);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px; 
  display: block;
  margin-bottom: 5px;
}

.doctor-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 28px; 
  color: var(--heading-color);
  margin-bottom: 15px; 
}

.doctor-quote {
  position: relative;
  margin-bottom: 20px; 
  padding-left: 15px;
  border-left: 3px solid var(--accent-color);
}

.doctor-quote p {
  font-style: italic;
  font-size: 16px; 
  color: var(--heading-color);
  margin: 0;
  line-height: 1.5;
}

.doctor-quote .quote-icon {
  position: absolute;
  top: -12px;
  left: 5px;
  font-size: 30px;
  color: var(--accent-color);
  opacity: 0.2;
}

.doctor-bio {
  color: var(--default-color);
  font-size: 15px; 
  line-height: 1.7;
  margin-bottom: 25px; 
}


.doctor-socials {
  display: flex;
  gap: 10px;
}

.doctor-socials .social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface-color);
  border: 1px solid rgba(53, 167, 156, 0.2);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px; 
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-decoration: none;
}

.doctor-socials .social-btn:hover {
  background: var(--accent-color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(53, 167, 156, 0.3);
}

@media (max-width: 991px) {
  .doctor-info-glass {
    left: 0; 
    margin-top: -30px; 
    padding: 25px 20px;
  }
  .doctor-name {
    font-size: 24px;
  }
  .doctor-img-wrapper {
    max-width: 350px;
    margin: 0 auto;
  }
}

/*--------------------------------------------------------------
# Reviews & Results Section (Fancy Glassmorphism)
--------------------------------------------------------------*/
/* Η κάρτα του Slider */
.testimonial-item {
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 30px;
  margin: 10px;
  border: 1px solid rgba(53, 167, 156, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.testimonial-item:hover {
  transform: translateY(-5px);
}

/* Τα αστεράκια */
.testimonial-item .stars i {
  color: #ffc107;
  margin: 0 2px;
}

/* Το κείμενο της κριτικής */
.testimonial-item p {
  font-style: italic;
  color: var(--default-color);
  font-size: 16px;
  line-height: 1.6;
}

/* Το όνομα του πελάτη */
.testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  color: var(--heading-color);
}

/*--------------------------------------------------------------
# Google Reviews Action Button
--------------------------------------------------------------*/
.btn-google-reviews {
  background: #ffffff;
  color: #3c4043 !important;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Roboto', sans-serif; /* Google-style font */
  font-weight: 500;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  border: 1px solid #e8eaed;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-google-reviews img {
  width: 20px;
  margin-right: 12px;
}

.btn-google-reviews:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  color: #1a73e8 !important; /* Google Blue */
  border-color: #d2e3fc;
}

/* Responsive για κινητά: Κεντράρισμα του Google Block */
@media (max-width: 991px) {
  .google-reviews-action .d-flex {
    justify-content: center !important;
  }
}


/*--------------------------------------------------------------
# FANCY ABOUT SECTION (Clinic Info - Εικόνα Δεξιά)
--------------------------------------------------------------*/

.about-pre-title {
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.about-title {
  color: var(--heading-color);
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  margin-bottom: 20px;
}

.about-description {
  color: var(--default-color);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.fancy-list-item {
  display: flex;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 15px;
  border: 1px solid rgba(53, 167, 156, 0.1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.fancy-list-item:hover {
  transform: translateX(10px); 
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 25px rgba(53, 167, 156, 0.1);
  border-color: rgba(53, 167, 156, 0.3);
}

.fancy-list-item .icon-box {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(53, 167, 156, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  transition: all 0.3s ease;
}

.fancy-list-item:hover .icon-box {
  background: var(--accent-color);
}

.fancy-list-item .icon-box i {
  font-size: 20px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.fancy-list-item:hover .icon-box i {
  color: #fff;
}

.fancy-list-item h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.fancy-list-item p {
  font-size: 14px;
  color: var(--default-color);
  margin: 0;
  line-height: 1.5;
}


.about-image-wrapper {
  position: relative;
  padding: 20px;
  z-index: 2;
}

.about-img {
  border-radius: 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-img {
  transform: translateY(-5px);
}

.about-img-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;
  height: 90%;
  background: var(--accent-color);
  opacity: 0.1;
  border-radius: 40px;
  transform: rotate(4deg);
  z-index: 1;
  transition: all 0.5s ease;
}

.about-image-wrapper:hover .about-img-backdrop {
  transform: rotate(0deg) scale(1.05);
  background: rgba(53, 167, 156, 0.2);
}

.about-glass-badge {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 20px 25px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(53, 167, 156, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.8);
  z-index: 3;
  animation: floatBadge 4s ease-in-out infinite;
}

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

.badge-icon {
  font-size: 36px;
  color: var(--accent-color);
  margin-right: 15px;
  line-height: 1;
}

.badge-title {
  display: block;
  font-size: 14px;
  color: var(--default-color);
  font-weight: 500;
}

.badge-subtitle {
  display: block;
  font-size: 18px;
  color: var(--heading-color);
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
}

@media (max-width: 991px) {
  .about-glass-badge {
    left: 20px;
    bottom: 20px;
    padding: 15px 20px;
  }
  .fancy-list-item:hover {
    transform: translateY(-5px); 
  }
}


/*--------------------------------------------------------------
# Clinic Tour Button 
--------------------------------------------------------------*/
.clinic-tour-btn {
  position: absolute;
  top: 30px;
  right: -10px; /* Βγαίνει ελαφρώς έξω από την εικόνα για ωραίο 3D εφέ */
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 25px;
  border-radius: 50px;
  color: var(--heading-color);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid rgba(53, 167, 156, 0.2);
  z-index: 5;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.clinic-tour-btn i {
  color: var(--accent-color);
  font-size: 20px;
  transition: all 0.3s ease;
}

.clinic-tour-btn:hover {
  background: var(--accent-color);
  color: #fff;
  transform: translateY(-5px); /* Αναπήδηση προς τα πάνω */
  box-shadow: 0 15px 35px rgba(53, 167, 156, 0.3);
  border-color: var(--accent-color);
}

.clinic-tour-btn:hover i {
  color: #fff;
}

/* Responsive: Μαζεύει όμορφα στα κινητά */
@media (max-width: 991px) {
  .clinic-tour-btn {
    top: 15px;
    right: 15px;
    padding: 10px 20px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Team Fancy Cards (Για τους Βοηθούς)
--------------------------------------------------------------*/
.team-fancy-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(53, 167, 156, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 100%;
}

.team-fancy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(53, 167, 156, 0.15);
  border-color: rgba(53, 167, 156, 0.3);
}

.team-fancy-card .pic {
  overflow: hidden;
  height: 240px; 
  position: relative;
}

.team-fancy-card .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-fancy-card:hover .pic img {
  transform: scale(1.05); 
}

.team-fancy-card .member-info {
  padding: 25px 20px;
  text-align: left; 
  background: #fff;
}

.team-fancy-card .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: var(--heading-color);
  font-family: 'Oswald', sans-serif;
}

.team-fancy-card .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--default-color);
  opacity: 0.7;
}