.cookie-popup {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    width: 90%;
    max-width: 600px;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
  }

  .cookie-text {
    flex: 1;
    margin: 0;
    font-size: 14px;
    white-space: normal;
  }

  .cookie-buttons {
    display: flex;
    gap: 10px;
  }

  .cookie-buttons button {
    padding: 5px 10px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
  }

  .accept-btn {
    background-color: #4caf50;
    color: white;
  }

  .deny-btn {
    background-color: #f44336;
    color: white;
  }

  
.cookie-floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9998;
    background-color: transparent !important;
    color: transparent !important;
    opacity: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.cookie-floating-button i {
    color: transparent !important;
    opacity: 0 !important;
}

  html,
  body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

body {
    background-color: #E7E7E7;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

#dynamic-header h1 {
    color: #0D0D0D;
}

#dynamic-header p {
    color: #0D0D0D;
}

.hero {
    background: url('https://imagedelivery.net/E_BFh2QU2I23Jq68Dk0FXw/a2efbf02-6966-46b9-18de-6d617da93900/public') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 70px 20px;
    text-align: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: brightness(0.4);
    z-index: 1;
}

.hero * {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.5rem;
    margin: 0 0 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero .profile-pic {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 20px auto;
    border: 4px solid white;
    display: block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    style="width: 47%; max-width: 300px;
}


.hero button {
     background-color: #16935c;
    border: none;
    color: #E7E7E7;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

.services {
    text-align: center;
    background-color: #E7E7E7;
    padding: 40px;
}

.services h2 {
    margin-bottom: 20px;
    color: #0d0d0d;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
}

.service {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
     border: 1px solid #cdae18;
    border-radius: 8px;
    background-color: #FEFEFE;
    text-align: center;
    height: 300px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
.service p {
    flex-grow: 1;
    font-size: 0.9rem;
    margin: 10px 0;
    color: #0D0D0D;
}

.service button {
    background-color: #16935c;
    border: none;
    color: #E7E7E7;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    align-self: stretch;
    text-align: center;
    margin-top: 20px;
    transition: background-color 0.3s;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .service {
        height: auto;
        padding: 15px;
    }

    .service button {
        padding: 5px 10px;
        font-size: 0.9rem;
        width: auto;
    }
}
.about {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    background-color: #0D0D0D;
      color: #E7E7E7;
}

.about-content {
    max-width: 600px;
    margin-right: 20px;
}

@media (max-width: 768px) {
    .about-content {
        max-width: 100%;
        margin: 0;
        margin-top: -40px;
        height: auto;
    }
}

.about img {
    border-radius: 5%;
    width: 300px;
    height: 300px;
    width: 50%;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .about img {
        width: 100%;
        height: auto;
    }
}

.testimonials {
    text-align: center;
    padding: 50px 20px;
    background-color: #E7E7E7;
    overflow: hidden;
}

.testimonials h2 {
    font-size: 18px;
    margin-bottom: 30px;
    color: #0D0D0D;
}

.carousels-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.carousel {
    position: relative;
    width: 300px;
    height: 300px;
    transform-style: preserve-3d;
    animation: rotate 10s infinite linear;
}

.carousel .testimonial {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #FEFEFE;
    border-radius: 10px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    backface-visibility: hidden;
}

.carousel .testimonial:nth-child(1) {
    transform: rotateY(0deg) translateZ(150px);
}

.carousel .testimonial:nth-child(2) {
    transform: rotateY(90deg) translateZ(150px);
}

.carousel .testimonial:nth-child(3) {
    transform: rotateY(180deg) translateZ(150px);
}

.carousel .testimonial:nth-child(4) {
    transform: rotateY(270deg) translateZ(150px);
}

@keyframes rotate {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.carousel {
    position: relative;
    width: 300px;
    height: 300px;
    transform-style: preserve-3d;
    animation: rotate 30s infinite linear;
}

.testimonial h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #0D0D0D;
}

.testimonial p {
    font-size: 1rem;
    color: #555;
    text-align: justify;
}

.testimonial .stars {
    color:#F2B705;
    margin: 10px 0;
    font-size: 1.5rem;
}

.mission-vision-values {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
    background-color: #E7E7E7;
    padding: 20px;
}
.card span.material-icons {
    font-size: 3rem;
    color: #cdae18;
    margin-bottom: 10px;
}

.styled-button {
     background-color: #16935c;
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 4px #0D0D0D;
}

.styled-button:hover {
     background-color: #cdae18;
}

.styled-button:active {
    box-shadow: 0 2px #0D0D0D;
    transform: translateY(2px);
}

.service .material-icons {
    font-size: 50px;
    color: #000000;
}

.service button:hover {
    background-color: #cdae18;
}

.hero button,
.service button,
.accordion {
    background-color: #16935c;
    border: none;
     color: #ffffff;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: auto;
    white-space: nowrap;
    transition: background-color 0.3s;
}
.hero button {
    padding: 15px 30px;
    font-size: 1.2rem;
    margin-top: 20px;
}

.accordion:hover,
.accordion.active,
.hero button:hover,
.service button:hover {
    background-color: #cdae18;
}
.footer {
    text-align: center;
    padding: 10px;
    background-color: #0D0D0D;
    color: #E7E7E7;
    font-size: 12px;
}

.card {
    background-color: #FEFEFE;
     border: 1px solid #cdae18;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    width: 30%;
    max-width: 300px;
    min-width: 250px;
}
.card span.material-icons {
    font-size: 3rem;
    color: #cdae18;
    margin-bottom: 10px;
}
.card h3 {
    font-size: 1.5rem;
      color: #0D0D0D;
    margin-bottom: 10px;
}
.card p {
    color: #0D0D0D;
    font-size: 1rem;
}
@media (max-width: 768px) {
    .card {
        width: 100%;
    }
}
.whatsapp-button {
    position: fixed;
    left: 15px;
    bottom: 15px;
    z-index: 1000;
    background-color: #25D366;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#whatsapp-icon {
    font-size: 40px;
    color: white;
}

.call-button {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 1000;
     background-color: #0077cc;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#call-icon {
    font-size: 40px;
    color: white;
}

.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    padding: 15px;
    background: #f9f9f9;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #ccc;
    text-align: center;
    z-index: 999;
    display: none;
}
.cookie-popup.active {
    display: block;
}
.cookie-popup h4 {
    margin: 0 0 10px;
    font-size: 16px;
}
.cookie-popup p {
    margin: 0 0 15px;
    font-size: 13px;
}
.cookie-popup button {
    margin: 5px;
    padding: 8px 12px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.accept-btn {
    background: #4caf50;
    color: #fff;
}
.deny-btn {
    background: #f44336;
    color: #fff;
}
.online-status {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
    text-align: center;
}

.online-icon {
    width: 20px;
    height: 20px;
     background-color: #107224;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

#online-count {
    font-size: 0.9rem;
    color: #0D0D0D;
}

.short-reviews {
    margin-left: 5px;
    color: ##F6BB00;
    display: flex;
    align-items: center;
}

.short-reviews .stars {
    font-size: 1.5rem;
}

.short-reviews p {
    margin: 0;
    font-size: 0.3rem;
    white-space: normal;
}

.stars {
    color:#F2B705;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .online-status {
        flex-direction: column;
        align-items: center;
    }

    .short-reviews {
        width: auto;
        text-align: center;
    }

    .short-reviews p {
        font-size: 1.7rem;
    }

    .stars {
        font-size: 1.2rem;
    }
}
.accordion-container {
    margin: 20px auto;
    max-width: 800px;
}

.accordion-container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #0D0D0D;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.accordion-item {
    margin-bottom: 10px;
     border: 1px solid #cdae18;
    border-radius: 5px;
    overflow: hidden;
}
.accordion {
    background-color: #f9f9f9;
    color: #333;
    cursor: pointer;
    padding: 15px;
    text-align: left;
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.accordion:hover {
      background-color: #cdae18;
    color: #fff;
}

.accordion:hover,
.accordion.active {
    background-color: #cdae18;
}

.panel {
    padding: 15px;
    display: none;
    background-color: #fff;
    font-size: 14px;
    line-height: 1.6;
}

.panel p {
    margin: 0;
}

 .material-icons {
    transition: transform 0.3s;
    color: #525252;
}

.accordion.active .material-icons {
    transform: rotate(180deg);
}

 @media (max-width: 768px) {
    .importance-specialist {
        display: block;
        padding: 20px;
        background-color: #0D0D0D;
        color: #E7E7E7;
        text-align: center;
        margin: 20px 0;
        border-radius: 10px;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    }

    .importance-specialist h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
         color: #E7E7E7;
    }

    .importance-specialist p {
        font-size: 1rem;
        line-height: 1.5;
        text-align: justify;
        color: #E7E7E7;
    }
}

@media (min-width: 769px) {
    .importance-specialist {
        display: none;
    }
}

.importance-specialist h2 {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.importance-specialist p {
    font-size: 1.2rem;
}
    #myMap {
        height: 400px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .content {
        margin: 20px auto;
        max-width: 1200px;
          color: #0D0D0D;
    }
    .social-section {
        text-align: center;
        margin-top: 30px;
    }

    .social-section p {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 20px;
        color: #0D0D0D;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        gap: 30px;
    }

    .social-icons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        text-decoration: none;
        font-size: 30px;
          color: #000000;
        filter: grayscale(100%);
         transition: filter 0.5s, transform 0.5s;
    }

    .social-icons a:hover {
          filter: grayscale(0%);
        transform: scale(1.1);
    }
      @keyframes colorChange {
          0%, 100% {
             filter: grayscale(100%);
          }
          50% {
               filter: grayscale(0%);
          }
      }

       .social-icons a {
          animation: colorChange 2s infinite;
      }
    .tag-cloud {
        background-color: #0D0D0D;
        padding: 10px 0;
         color: #E7E7E7;
        overflow: hidden;
    }

    .tags-container {
        display: flex;
        gap: 8px;
          animation: carousel 15s linear infinite;
    }

    .tag {
        background-color: #cdae18;
        padding: 4px 8px;
        font-size: 0.7rem;
        border-radius: 5px;
          color: #E7E7E7;
        transition: transform 0.5s ease-in-out;
        cursor: pointer;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
        animation: pulse 2s infinite;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 30px;
        width: auto;
        white-space: nowrap;
    }
    @keyframes pulse {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.05);
        }
        100% {
            transform: scale(1);
        }
    }

    @keyframes carousel {
        0% {
            transform: translateX(0);
        }
        100% {
             transform: translateX(-100%);
        }
    }
  .stretch-img {
    width: 300px;
    height: 250px;
    object-fit: cover;
}
.dynamic-header {
    text-align: center;
    margin-bottom: 20px;
}

.dynamic-header .stars {
    font-size: 2rem;
    color:#F2B705;
}

.dynamic-header .dynamic-phrase {
    font-size: 1.5rem;
    color: #0D0D0D;
    margin-top: 10px;
}
.testimonials h3 {
   color: #0D0D0D;
    font-size: 1.2em;
  margin-bottom: 10px;
}
.accordion-container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
      color: #0D0D0D;
    animation: pulse 2s infinite;
}