/* ------------------------------------------------
------------------- Variables ---------------------
--------------------------------------------------- */
:root {
/* colors */
    --white-color: rgb(255,255,255);
    --grey-color: rgb(230,239,237);
    --accent-color-dark: rgb(21,60,51);
    --accent-color-light: rgb(97,158,144);

/* sizes */
    --social-media-icon: 22px;
    --profile_image_small_size: 300px;
}
  
@font-face {
    font-family: 'Poppins';
    src: url('../include/fonts/Poppins-Regular.ttf') format('ttf');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Poppins', sans-serif;
}

.background-color-dark {
    background-color: var(--accent-color-dark);
}

.background-color-light {
    background-color: var(--accent-color-light);
}

.background-color-grey {
    background-color: var(--grey-color);
}

.background-color-white {
    background-color: var(--white-color);
}

.color-dark {
    color: var(--accent-color-dark);
}

.color-light {
    color: var(--accent-color-light);
}

.color-light-hover:hover {
    color: var(--accent-color-light);
}

.color-grey {
    color: var(--grey-color);
}

.color-white {
    color: var(--white-color);
}

.color-white-hover:hover {
    color: var(--white-color);
}

.socialMediaIconSize {
    height: var(--social-media-icon);
}

a {
    text-decoration: none !important;
} 

.fw-500 {
    font-weight: 500;
} 

.fw-600 {
    font-weight: 600;
} 

.containerPadding {
    padding: 100px 10px; 
}

.alert {
    display: none; /* Hide alerts by default */
  }

/* ------------------------------------------------
--------------------  Header ----------------------
--------------------------------------------------- */
#secondaryHeader {
    height: 50px;
}

#primaryHeader {
    height: 115px;
}

.secondaryHeaderDetail {
    margin: 0 15px;
}

.secondaryHeaderDetailText {
    padding-left: 5px;
}


.customButtonWrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background: var(--accent-color-light);
    border-radius: 32px;
    color: var(--white-color);
    padding: 9px 9px 9px 20px;
    position: relative; 
    overflow: hidden; 
}

.customButtonWrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    bottom: 0;
    width: 100%; 
    border-radius: 32px; 
    background-color: var(--accent-color-dark); 
    transition: left 1s ease; 
    z-index: 0;
}

.customButtonWrapper:hover::before {
    left: 0;
}

.customButtonWrapper .customButtonText,
.customButtonWrapper .customButtonWrapperIcon {
    position: relative;
    z-index: 1; 
}

.customButtonWrapperIcon {
    height: 36px;
    width: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center; 
    color: var(--white-color);
    background-color: var(--accent-color-dark);
    transition: all 0.4s ease-in-out;
}

.customButtonWrapper:hover .customButtonWrapperIcon {
    color: var(--white-color);
    background-color: var(--accent-color-light);
    transition-delay: 0.5s;
}

#mobileMenuHeader {
    height: 40px;
    width: 40px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center; 
    color: var(--white-color);
    background-color: var(--accent-color-dark);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%; 
    height: 100%;
    background-color: var(--accent-color-dark);
    color: var(--white-color); 
    transition: left 0.3s ease; 
    z-index: 9999;
}

.mobile-menu.open {
    left: 0;
}

.menu-content {
    padding: 20px;
}

.menu-content i {
    cursor: pointer;
    font-size: 36px;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin: 15px 0;
}

ul li a {
    color: var(--white-color);
    text-decoration: none;
    font-size: 18px;
}

/* ------------------------------------------------
--------------------- Intro -----------------------
--------------------------------------------------- */
.lineUp {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-in-out;
}

.triggerAnimationLineUp {
    opacity: 1;
    transform: translateY(0);
}

/* For elements moving from right to left */
.lineRight {
    opacity: 0;
    transform: translateX(50px); /* Start off 50px to the right */
    transition: all 0.6s ease-in-out;
}

.triggerAnimationLineRight {
    opacity: 1;
    transform: translateX(0); /* Move to the original position */
}

/* For elements moving from left to right */
.lineLeft {
    opacity: 0;
    transform: translateX(-50px); /* Start off 50px to the left */
    transition: all 0.6s ease-in-out;
}

.triggerAnimationLineLeft {
    opacity: 1;
    transform: translateX(0); /* Move to the original position */
}

.slideLeftElementAnimation {
    display: inline-block;
    animation: slideLeft 1s linear forwards; /* Add 'forwards' to retain the final state */
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

@keyframes slideLeft {
    0% {
        opacity: 0;
        transform: translateX(200px);
    }
    25% {
        opacity: 0.25;
        transform: translateX(150px);
    }
    50% {
        opacity: 0.5;
        transform: translateX(100px);
    }
    75% {
        opacity: 0.75;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0); /* Final position */
    }
}
/* General reset and section styling */
#homeHero {
    position: relative;
    width: 100%;
    background-color: var(--grey-color);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 0 20px; /* Responsive padding */
}

#introWrapper {
    max-width: 1200px;
    padding-top: 160px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Ensure wrapping on smaller screens */
    z-index: 1; /* Make sure it's above the background */
}

#intro {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    z-index: 2; /* Ensures text is above the background */
}

#introTextWrapper {
    max-width: 600px;
    padding-right: 160px;
    text-align: left;
}

.introHeading {
    font-size: 3rem; /* Large heading */
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--accent-color-dark);
    line-height: 1.2;
}

#introSubheading {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--accent-color-dark);
}

#buttonIntroPrimary {
    background: var(--accent-color-light); /* Background for the first button */
}

#buttonIntroPrimary::before {
    background-color: var(--accent-color-dark); /* Hover color for the first button */
}

/* Background for second button */
#buttonIntroSecondary {
    color: var(--accent-color-dark);
    background: var(--white-color); /* Background for the second button */
}

#buttonIntroSecondary:hover {
    color: var(--white-color);
    transition-delay: 0.3s;
}

#buttonIntroSecondary::before {
    background-color: var(--accent-color-light); /* Hover color for the second button */
}


#introButtonsWrapper {
    padding-bottom: 40px;
    margin-bottom: 20px;
    border-bottom: solid 1px var(--accent-color-light);
}

.introButtonWrapper {
    width: 180px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background: var(--accent-color-light);
    border-radius: 32px;
    color: var(--white-color);
    padding: 9px 9px 9px 20px;
    position: relative; 
    overflow: hidden; 
    margin-right: 40px;
}

.introButtonWrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    bottom: 0;
    width: 100%; 
    border-radius: 32px; 
    transition: left 1s ease; 
    z-index: 0;
}

.introButtonWrapper:hover::before {
    left: 0;
}

.introButtonWrapper .customButtonText,
.introButtonWrapper .introButtonIconWrapper {
    position: relative;
    z-index: 1; 
}

.introButtonIconWrapper {
    height: 36px;
    width: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center; 
    color: var(--white-color);
    background-color: var(--accent-color-dark);
    transition: all 0.4s ease-in-out;
}

#buttonIntroPrimary:hover .introButtonIconWrapper {
    color: var(--white-color);
    background-color: var(--accent-color-light);
    transition-delay: 0.5s;
}

#buttonIntroSecondary:hover .introButtonIconWrapper {
    color: var(--accent-color-dark);
    background-color: var(--white-color);
    transition-delay: 0.5s;
}

#introNumbersWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.introNumbers {
    text-align: start;
    min-width: 100px;
    margin: 0 10px;
    display: flex;
    flex-direction: column;
}

.introNumber {
    font-weight: 700;
    line-height: 1em;
    font-size: 32px;
    color: var(--accent-color-light);
}

.introNumberText {
    font-weight: 500;
    line-height: 1.4em;
    font-size: 16px;
    padding-top: 8px;
    text-transform: capitalize;
    color: var(--accent-color-dark);
}

#introImage {
    max-width: 500px;
    width: 100%;
    border-radius: 30px 30px 30px 30px;
    height: auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


@media (max-width: 1200px) {
    #introTextWrapper {
        padding-right: 100px;
    }
}

@media (max-width: 992px) {
    #intro {
        flex-direction: column;
    }
    #introImage {
        max-width: 400px;
        margin: auto;
    }
    #introWrapper {
        padding-top: 100px;
        flex-direction: column-reverse;
        text-align: center;
    }
    #introTextWrapper {
        padding-left: 100px;
        padding-bottom: 100px;
        max-width: 100%;
    }
    #introHeading {
        font-size: 3rem;
    }
    #introSubheading {
        font-size: 1.2rem;
    }

}

@media (max-width: 576px) {
    #introWrapper {
        padding-top: 80px;
    }
    #introTextWrapper {
        padding: 0px;
    }
    #introImage{
        max-width: 300px;
    }
    .introButtonWrapper {
        margin: 10px 0;
    }
    #introButtonsWrapper {
        flex-direction: column;
    }
    #introHeading {
        font-size: 30px;
    }
    #introSubheading {
        font-size: 1rem;
    }
    #introNumbersWrapper {
        padding-bottom: 40px;
    }
    .introNumbers {
        padding: 10px 20px;
        margin: 0;
        font-size: 1rem;
    }
}


#homeBanner {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accent-color-dark);
}

#homeBannerWrapper {
    width: 100%;
    padding: 40px 10px;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap; 
    text-align: left;
}

.homeBannerTextWrapper {
    display: flex;
    flex-direction: column;
}

.homeBannerIcon {
    width: 64px;
    height: 64px;
    margin-right: 32px;
    display: flex;
    justify-content: center;
    align-items: center; 
    background-color: var(--accent-color-dark);
    filter: brightness(1.3);
    border-radius: 16px;
    flex-shrink: 0; /* Prevents the icon from being resized */
}

.homeBannerIcon:hover {
    filter: brightness(0.9);
    background-color: var(--grey-color);
    transition: all 0.4s linear;
}

.homeBannerElement {
    display: flex;
    flex-direction: row;
    padding: 20px;
}

.homeBannerTextWrapper {
    display: flex;
    flex-direction: column;
}

.homeBannerIcon {
    width: 64px;
	min-width: 64px;
	font-size: 30px;
    height: 64px;
    margin-right: 32px;
    display: flex;
    justify-content: center;
    align-items: center; 
    background-color: var(--accent-color-dark);
    filter: brightness(1.3);
    border-radius: 16px;
}

.homeBannerIcon:hover {
    filter: brightness(0.9);
    background-color: var(--grey-color);
    transition: all 0.4s linear;
}

/* Heading and subheading styles */
.homeBannerHeading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 10px;
}

.homeBannerSubheading {
    font-size: 1rem;
    color: var(--white-color);
    line-height: 1.6;
}

/* Responsive design for smaller screens */
@media (max-width: 992px) {
    #homeBannerWrapper {
        padding: 40px 20px;
        flex-direction: column; /* Stack elements vertically on smaller screens */
    }
    .homeBannerElement {
        align-items: center;
        margin: 20px 0;
        padding: 0;
    }
}

@media (max-width: 576px) {
    .homeBannerElement {
        padding: 0 15px;
    }
    .homeBannerHeading {
        font-size: 1.25rem;
    }
    .homeBannerSubheading {
        font-size: 0.9rem;
    }
    .homeBannerIcon {
        width: 60px;
        height: 60px; /* Smaller icons for smaller screens */
    }
}


/* ------------------------------------------------
-----------------  Testimonials -------------------
--------------------------------------------------- */
#carouselTestimonialIndicators {
    min-height: 500px;
    /* display: flex;
    align-items: center; */
}

/* General styles for the testimonial section */
#clientTestimonials {
    padding: 60px 0;
    background-color: #f9f9f9;
    background-image: url('https://demo.awaikenthemes.com/physiocare/wp-content/uploads/2024/07/testimonial-bg.svg');
    text-align: center;
}

.testimonialsHeader {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--accent-color-dark);
}

.testimonialsWrapper {
    padding: 10px;
    display: flex;
    gap: 20px; /* Keep the space between cards */
}

.testimonialCard {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--white-color);
    border-radius: 30px;
    border: solid 2px var(--grey-color);
    padding: 40px;
    width: 30%; /* Ensure cards take full width */
    text-align: left;
    margin: 0 auto; /* Center cards */
}

.testimonialIndicator {
    width: 12px !important;
    height: 12px !important;
    background-color: var(--accent-color-light) !important; /* Green color for inactive indicators */
    border-radius: 50%; /* Make them round */
    border: none; /* Remove border */
}

.testimonialIndicator.active {
    background-color: var(--accent-color-dark); /* Green color for the active indicator */
}

/* Client image styling */
.clientImage {
    width: 56px;
    height: 56px;
    margin-right: 10px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonialClientName {
    font-size: 20px;
    line-height: 1em;
    font-weight: 600;
    color: var(--accent-color-dark);
}

.testimonialClientDescription {
    color: var(--accent-color-dark);
    opacity: 50%;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7em;
}

.clientFeedback {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7em;
    margin: 0px 0px 40px 0px;
    color: var(--accent-color-dark);
}

/* Responsive styles */
@media (max-width: 992px) {
    .testimonialsWrapper {
        flex-direction: column;
        align-items: center;
    }
    .testimonialsHeader {
        font-size: 44px;
    }
    .testimonialCard {
        width: 80%;
    }
    #carouselTestimonialIndicators {
        height: 980px;
    }
}

@media (max-width: 576px) {
    .testimonialCard {
        padding: 20px;
        width: 100%;
    }
    .testimonialsHeader {
        font-size: 24px;
    }
    #carouselTestimonialIndicators {
       height: 1000px;
    }
}

/* ------------------------------------------------
------------------- Despre noi --------------------
--------------------------------------------------- */
#aboutUsIntroDescription {
    border-bottom: solid 1px var(--accent-color-light);
}

#aboutUsButton {
    max-width: 280px;
}

.aboutUsBannerNumbers {
    width: 100%;
    background-color: var(--accent-color-dark);
}

.aboutUsBannerNumbersInner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-basis: auto;
    flex-grow: 1;
    flex-shrink: 1;
    align-self: auto;
    flex-direction: row;
    gap: 0 20px;
    margin: 0 auto;
    padding: 40px 0;
    height: 100%;
    max-width: min(100%, 1300px);
}

.aboutUsNumbers {
    width: calc(25% - 15px);
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
}

.aboutUsNumbersInner {
    width: calc(25% - 15px);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-left: 10px;
}

.aboutUsNumberText {
    font-weight: 500;
    line-height: 1.4em;
    font-size: 16px;
    padding-top: 8px;
    text-transform: capitalize;
    color: var(--grey-color);
}

.aboutUsNumber {
    font-size: 32px;
    font-weight: 700;
    line-height: 32px;
    color: var(--white-color);
}

.aboutUsNumbersIcon {
    width: 64px;
    height: 64px;
    font-size: 56px;
    color: var(--accent-color-light);
}

#aboutUsValues {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 10px;
    padding-right: 10px;
    overflow: visible;
}

#valuesWrapperInner {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 30px;
    flex-direction: row;
    justify-content: center;
}

/* TO DO hoverEffectLineUp */


/* ------------------------------------------------
-------------------- Contact ----------------------
--------------------------------------------------- */
#submitContact {
    background: none;
    border: none !important;
    padding: 0;
    cursor: pointer;
}

.contactInfoIcon {
    margin: 0px 0px 20px 0px;
    padding: 10px;
    width: 52px;
    height: 52px;
    background-color: var(--grey-color);
    border-radius: 10px;
    display: flex;
    justify-content: center; /* Centers the icon horizontally */
    align-items: center; /* Centers the icon vertically */
}

.contactInfoTitle {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-color-dark);
    margin-bottom: 20px;
}

.contactInfoDescription {
    font-size: 16px;
    font-weight: 400;
    color: var(--accent-color-dark);
    filter: brightness(1.3);
    margin-bottom: 20px;

}

.contactInfoContainer {
    display: flex;
    flex-direction: column;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: var(--grey-color);
    border-radius: 30px 30px 30px 30px;
    padding: 30px;
}

@media (min-width: 992px) {
    .contactInfoContainer {
        width: calc(25% - 22.5px) !important;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .contactInfoContainer {
        width: calc(50% - 15px);
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .contactInfoTitle {
        font-size: 18px;
        font-weight: 600
    }
    .contactInfoContainer {
        width: 100%;
    }
}

.contactInfoImageWrapper {
    width: 50%;
    padding: 10px;
}

.contactInfoImageContainer {
    position: relative;
    overflow: hidden;
}

#contactInfoImage {
    width: 100%;
    max-width: 100%;
    border-radius: 30px 30px 30px 30px;
    object-fit: cover;
}


#contactFormTitle {
    font-size: 54px;
    font-weight: 700;
    color: var(--accent-color-dark);
}

#contactFormWrapper {
    display: flex;
    flex-direction: column;
    width: 50%;
    height: initial;
    flex-grow: 0;
    align-self: initial;
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 45px;
    padding-right: 10px;
    overflow: visible;
}

#contactFormContainer {
    display: flex;
    flex-wrap: wrap;
}

.inputForm {
    padding-left: 15px;
    padding-right: 15px;
}

.inputContact {
    border-radius: 10px;
    border-width: 2px;
    border-color: var(--grey-color);
    padding: 15px 55px 15px 20px;
    width: 100%;
}

.smallInputContact {
    height: 50px;
}

.largeInputContact {
    height: 154px;
}

.bannerPage {
    width: 100%;
    background-color: var(--grey-color);
    display: flex;
    flex-direction: column;
    padding-top: 90px;
    padding-bottom: 90px;
    padding-left: 10px;
    padding-right: 10px;
    overflow: visible;
}

.bannerPageInner {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    flex-basis: auto;
    flex-grow: 1;
    flex-shrink: 1;
    align-self: auto;
}

.bannerSubheading a {
    font-size: 16px;
    font-weight: 500;
    color: var(--accent-color-dark);
    text-decoration: none;
}

.bannerSubheading:hover a {
    color: var(--accent-color-light);
    text-decoration: none;
}

#contactInfoWrapper {
    padding-top: 100px;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
}

#contactInfoWrapperInner {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 30px 30px;
    height: 100%;
    flex-basis: auto;
    flex-grow: 1;
    flex-shrink: 1;
    align-self: auto;
    max-width: min(100%, 1300px);
}

#contactPageDetailsWrapper {
    padding-top: 50px;
    padding-bottom: 100px;
    padding-left: 10px;
    padding-right: 10px;
}

#contactPageDetailsWrapperInner {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    max-width: min(100%, 1300px);
    height: 100%;
    margin: auto;
    justify-content: center;
}

@media (max-width: 992px) {
    .contactInfoImageWrapper {
        width: 100%;
        padding: 20px;
    }
    #contactFormWrapper {
        width: 100%;
        padding-top: 45px;
        padding-left: 10px;
    }
}

@media (max-width: 767px) {
    .contactInfoTitle {
        font-size: 18px;
        font-weight: 600
    }
    .contactInfoContainer {
        width: 100%;
    }
    #contactFormTitle {
        font-size: 30px;
        font-weight: 700;
    }
} 
 
.map {
    width: 100%;
    height: 340px;
    margin-bottom: -10px;
}


/* ------------------------------------------------
-------------------- Servicii ---------------------
--------------------------------------------------- */
#servicesWrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: initial;
    -flex-grow: 0;
    align-self: initial;
    flex-wrap: wrap;
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 10px;
    padding-right: 10px;
    overflow: visible;
}

#servicesWrapperInner {
    gap: 20px 20px;
    width: 100%;
    justify-content: center;
    max-width: min(100%, 1300px);
    margin: 0 auto;
    padding-inline-start: 0;
    padding-inline-end: 0;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px 30px;
    overflow: visible;
}

#serviceWrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 70vw;
    height: initial;
    -flex-grow: 0;
    align-self: initial;
    flex-wrap: wrap;
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 10px;
    padding-right: 10px;
    overflow: visible;
}

#serviceWrapperInner {
    gap: 20px 20px;
    width: 100%;
    max-width: min(100%, 1300px);
    margin: 0 auto;
    padding-inline-start: 0;
    padding-inline-end: 0;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px 30px;
    overflow: visible;
}

.serviceCard {
    width: calc(25% - 22.5px);
    display: flex;
    flex-direction: column;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: var(--grey-color);
    border-radius: 30px 30px 30px 30px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    justify-content: space-between;
}

.serviceCardIcon {
    position: relative;
    z-index: 2;
    font-size: 16px;
    font-weight: 400;
    margin: 0px 0px 20px 0px;
    padding: 10px;
    width: 52px;
    height: 52px;
    background-color: var(--grey-color);
    border-radius: 10px;
    display: flex;
    justify-content: center; 
    align-items: center;
    transition: transform 0.3s ease, background-color 0.4s ease;
    overflow: hidden; /* Ensures the pseudo-element stays inside the icon */

}

.serviceCardTitle {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-color-dark);
    margin-bottom: 20px;
}

.serviceCardDescription {
    font-size: 16px;
    font-weight: 400;
    color: var(--accent-color-dark);
    filter: brightness(1.3);
    margin-bottom: 20px;

}

.serviceCardButton {
    margin-top: 20px;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center; 
    color: var(--white-color);
    background-color: var(--accent-color-dark);
}

.serviceCardButton:hover {
    filter: brightness(1.3);
}

.serviceCard::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -100%; /* Start from bottom */
    width: 100%;
    height: 100%;
    background-color: var(--accent-color-light);
    z-index: 0;
    transition: bottom 0.5s ease;
}

.serviceCard:hover::before {
    bottom: 0;
}

.serviceCardIcon,
.serviceCardTitle,
.serviceCardDescription,
.serviceCardButton {
    position: relative;
    z-index: 1; /* Keep content above the hover effect */
}


.serviceCardIcon::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -100%; /* Start from the bottom */
    width: 100%;
    height: 100%;
    background-color: var(--white-color); /* The color for the hover effect */
    transition: bottom 0.2s ease; /* No delay for the non-hover state */
    z-index: 0; /* Ensure it stays behind the content inside the icon */
}

.serviceCard:hover .serviceCardIcon::before {
    bottom: 0; /* Move to the top on hover */
    transition: bottom 0.2s ease 0.3s; /* Apply delay only on hover */
}

.serviceCardIcon i {
    position: relative;
    z-index: 1; /* Ensure the icon stays above the hover effect */
    color: var(--accent-color-dark);
    transition: color 0.3s ease;
}

.serviceCardButton {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.serviceCardButton i {
    color: var(--white-color);
    transition: transform 0.3s ease;
}


@media (min-width: 768px) and (max-width: 992px) {
    .serviceCard {
        width: calc(50% - 15px);
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .serviceCardTitle {
        font-size: 18px;
        font-weight: 600
    }
    .serviceCard {
        width: 100%;
    }
}


.serviciuDescriptionContent {
    margin-left: 100px;
    margin-right: 100px;
}

#servicesWrapperInner {
    width: 100%;  /* Ensure the parent div takes full width */
    overflow: hidden;  /* Hide anything that overflows (optional) */
}

.mainImageServiceWrapper {
    width: 100%; /* Ensure the wrapper takes full width */
}

.secondaryImageServiceWrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%; /* Take full width of the parent container */
    border-radius: 30px; /* Optional: border radius for the wrapper */
    gap: 30px;
    margin-left: 100px;
    margin-right: 100px;
}

.imageServiceSecondary {
    width: 48%; /* Make each image take 48% of the wrapper width */
    height: auto; /* Maintain the aspect ratio */
}

.imageService {
    width: calc(100% - 200px);   /* Full width with 100px margin on each side */
    height: 500px;               /* Fixed height for cropping effect */
    object-fit: cover;           /* Crop the image to fit the specified dimensions */
    margin-left: 100px;
    margin-right: 100px;
    border-radius: 30px;         /* Rounded corners */
}


.imageServiceSecondary {
    border-radius: 30px;
}


#openingHours {
    display: flex;
    border-width: 2px 2px 2px 2px;
    border: solid 2px var(--grey-color);
    border-radius: 30px;
    margin-top: 0px;
    margin-bottom: 20px;
    margin-left: 0px;
    margin-right: 0px;
    padding: 30px;
    overflow: visible;
}
/* ------------------------------------------------
--------------------- Footer ----------------------
--------------------------------------------------- */
#footerFirstRow {
    padding-top: 100px;
    margin-bottom: 20px;
    justify-content: center;
}

#footerSecondRow {
    margin-top: 20px;
    padding: 20px 10px 30px 10px;
    width: 1120px;
    border-top: solid 1px var(--accent-color-light);
}

.footerHeading {
    color: var(--accent-color-light);
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1em;
    margin-bottom: 20px;
}

.footerColumn {
    padding: 10px;
    width: 280px;
}

.footerColumnExtraPadding {
    padding: 10px 10px 10px 60px;
    width: 280px;
}

.footerText {
    color: var(--white-color);
    margin-bottom: 15px;
    max-width: 240px;
}

.footerLogo {
    margin-bottom: 15px;
    max-width: 240px;
}

.footerSocialMedia {
    padding-right: 20px;
}

@media (max-width: 1200px) {
    .footerText {
        max-width: 200px;
    }
    .footerLogo {
        max-width: 240px;
    }
    .footerColumnExtraPadding {
        padding: 10px 10px 10px 60px;
        width: 240px;
    }
    .footerColumn {
        padding: 10px;
        width: 240px;
    }
    #footerFirstRow {
        width: 960px;
    }
    #footerSecondRow {
        width: 960px;
    }
}

@media (max-width: 992px) {
    .footerColumn {
        max-width: 30%;
    }
    .footerColumnExtraPadding {
        padding: 10px 10px 10px 40px;
        max-width: 30%;
    }
    .footerText {
        max-width: 80%;
    }
    .footerLogo {
        max-width: 240px;
    }
    #footerFirstRow {
        width: 90%;
    }
    #footerSecondRow {
        width: 90%;
    }
    .footerHeading {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .footerColumnExtraPadding {
        padding: 20px;
        max-width: 100%;
    }
    .footerColumn {
        max-width: 100%;
        padding: 20px;
    }  
    .footerText {
        max-width: 300px;
    }      
}

@media (max-width: 576px) {
    .footerColumn {
        width: 100%;
        padding: 10px;
    }  
    .footerColumnExtraPadding {
        width: 100%;
        padding: 10px;
    } 
     
}

/* 
.squareDiv::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, var(--hover-color) 10%, transparent 50%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease-out;
    border-radius: 50%;
}

.squareDiv:hover::before {
    transform: translate(-50%, -50%) scale(1);
} */