@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
    
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
}
 /* Top Bar Styles */
        .top-bar {
            background: linear-gradient(135deg, #009bdd 0%, #007bb8 100%);
            padding: 12px 0;
            color: white;
            font-size: 14px;
            position: relative;
            overflow: hidden;
        }

        .top-bar::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: shimmer 6s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .top-bar-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .top-info {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .info-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .info-icon {
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }

        .info-text p {
            margin: 0;
            line-height: 1.2;
        }

        .info-text p:first-child {
            font-size: 12px;
            opacity: 0.9;
        }

        .info-text p:last-child {
            font-weight: 600;
        }

        .appointment-btn {
            background: #fff;
            color: #009bdd;
            padding: 10px 20px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .appointment-btn:hover {
            background: #f0f8ff;
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0, 155, 221, 0.3);
        }

        /* Navbar Styles */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 155, 221, 0.1);
            border-bottom: 1px solid rgba(0, 155, 221, 0.1);
        }

        .navbar-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #009bdd;
        }

        .logo-text {
            font-size: 24px;
            font-weight: 700;
            color: #009bdd;
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: #009bdd;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::before {
            width: 100%;
        }

        .nav-link:hover {
            color: #009bdd;
            background: rgba(0, 155, 221, 0.05);
        }

        /* Dropdown Styles */
        .dropdown {
            position: relative;
        }

        .dropdown-toggle::after {
            content: '\f282';
            font-family: 'bootstrap-icons';
            margin-left: 5px;
            transition: transform 0.3s ease;
        }

        .dropdown:hover .dropdown-toggle::after {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 220px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 155, 221, 0.2);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 155, 221, 0.1);
            z-index: 100;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu a {
            display: block;
            padding: 12px 16px;
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
            border-radius: 8px;
            margin: 4px 8px;
        }

        .dropdown-menu a:hover {
            background: #009bdd;
            color: white;
            transform: translateX(5px);
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
            gap: 4px;
        }

        .hamburger-line {
            width: 25px;
            height: 3px;
            background: #009bdd;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn.active .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

        .mobile-menu-btn.active .hamburger-line:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, #009bdd 0%, #007bb8 100%);
            z-index: 999;
            padding: 80px 20px 20px;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        .mobile-nav-menu {
            list-style: none;
            padding: 0;
        }

        .mobile-nav-item {
            margin-bottom: 20px;
        }

        .mobile-nav-link {
            color: white;
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
            padding: 15px 20px;
            display: block;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .mobile-nav-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateX(10px);
        }

        .mobile-dropdown-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            margin-top: 10px;
        }

        .mobile-dropdown-menu.active {
            max-height: 300px;
        }

        .mobile-dropdown-menu a {
            display: block;
            padding: 10px 15px;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-size: 16px;
            margin-left: 20px;
            border-left: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .mobile-dropdown-menu a:hover {
            color: white;
            border-left-color: white;
            padding-left: 25px;
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .close-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }

        /* Contact Info in Mobile */
        .mobile-contact {
            margin-top: 40px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            backdrop-filter: blur(10px);
        }

        .mobile-contact h3 {
            color: white;
            margin-bottom: 15px;
            font-size: 18px;
        }

        .mobile-contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 10px;
            font-size: 14px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .top-bar {
                display: none;
            }

            .nav-menu {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .mobile-menu {
                display: block;
            }

            .navbar-container {
                padding: 0 15px;
            }

            .logo img {
                width: 50px;
                height: 50px;
            }

            .logo-text {
                font-size: 20px;
            }
        }

        @media (max-width: 480px) {
            .top-info {
                flex-direction: column;
                gap: 10px;
            }

            .info-item {
                font-size: 12px;
            }
        }

        /* Demo Content */
        .demo-content {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .demo-content h1 {
            color: #009bdd;
            font-size: 48px;
            margin-bottom: 20px;
        }

        .demo-content p {
            font-size: 18px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

/* Imagini reclama */
.container {
    margin: 20px 100px 30px 150px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .box {
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 200px;
    overflow: hidden;
  }
  
  .box img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    transition: opacity 0.3s ease;
  }
  
  .box:hover .overlay {
    opacity: 1;
  }
  
  @media screen and (max-width: 600px) {
    .container {
      align-items: center;
      justify-content: center;
      justify-items: center;
      align-content: center;
      display: flex;
      flex-wrap: wrap;
      margin: auto; /* Margini reduse pentru dispozitivele mobile */
    }
    .box {
      box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
      position: relative;
      width: 100%;
      max-width: 175px;
      height: 100px;
      overflow: hidden;
    }
    .numardetelefon{
      display: none;
    }
  }
  .box:hover .price {
    opacity: 1;
  }
  
  .box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0); /* Transparent la început */
    transition: background-color 0.3s ease;
  }
  
  .box:hover::after {
    background-color: rgba(0, 0, 0, 0.5); /* Opac la hover */
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  /* Counting */
  .counting-numb{
    margin-bottom: 15px;
    background-color: #0086c0;
    color: #fff;
    font-family: "Roboto Mono", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    overflow: hidden;
  }
  .counter-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin: 30px 50px;
  }
  .text-counter{
    font-size: 30px;
  }
  .counter {
    font-size: 60px;
    margin-top: 10px;
  }
  
  @media (max-width: 580px) {
    .counting-numb {
        flex-direction: row;
    }
    .counter-container {
        margin: 10px 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .counter {
        font-size: 20px;
        margin-top: 5px;
    }
    svg {
        width: 25px;
        height: 25px;
    }
    span {
        font-size: 20px;
    }
    .text-counter{
      font-size: 15px;
    }
}
  .section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7; /* Reduce visibility of the image */
}

.image-overlay .overlay-i {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 91, 188, 0.5); /* Alabaster color overlay */
}
.text-content a{
  background-color: rgb(1, 108, 154);
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  text-decoration: none;
    color:  rgb(255, 255, 255);
    padding: 10px 20px; /* Adaugă padding pentru a arăta ca un buton */
    border-radius: 5px; /* Colțuri rotunjite pentru buton */
    display: inline-block; /* Asigură-te că padding-ul și bordura sunt aplicate corect */
    transition: background-color 0.3s, color 0.3s; /* Tranziție lină pentru efectul de hover */
}

.text-content a:hover{
  background-color: rgb(1, 108, 154); /* Fundal colorat la hover */
    color: white; /* Text alb la hover */
}

.image-overlay .text-content {
    position: absolute;
    top: 20%;
    left: 10%;
    color: white;
    max-width: 500px;
}

@media (max-width: 768px) {
    .image-overlay .text-content {
        top: 10%;
        left: 5%;
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .image-overlay .text-content {
        top: 5%;
        left: 5%;
        max-width: 90%;
    }
}
/* General Styles */
.site-footer {
  background-color: #009bdd;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  padding-top: 40px;
}

.footer-container {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 40px;
}

.footer-logo img {
  width: 60px;
  margin-bottom: 10px;
}

.footer-logo h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
}

.footer-logo p {
  margin: 5px 0 0;
  font-size: 14px;
  opacity: 0.9;
}

.footer-links, .footer-contact {
  flex: 1 1 200px;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 18px;
  margin-bottom: 15px;
  border-bottom: 2px solid white;
  padding-bottom: 5px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #cceeff;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-contact i {
  margin-right: 8px;
}

.footer-btn {
  display: inline-block;
  background-color: white;
  color: #009bdd;
  padding: 10px 18px;
  margin-top: 15px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s;
}

.footer-btn:hover {
  background-color: #e0f7ff;
}

.footer-bottom {
  background-color: #ffffff;
  color: #016c9a;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}

.footer-bottom a {
  color: #009bdd;
  font-weight: bold;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links,
  .footer-contact {
    margin-top: 20px;
  }
}
  .section-title {
    margin-left: 30px;
    margin-bottom: 30px;
    position: relative; /* Este necesar pentru a poziționa linia subtitlului */
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px; /* Ajustează înălțimea liniei în funcție de preferințele tale */
    width: 100%;
    height: 2px; /* Grosimea liniei */
    background-color: rgb(1, 108, 154); /* Culoarea albastru deschis */
    transition: width 0.3s ease; /* Efect de tranziție pentru animație */
  }
  
  .section-title:hover::after {
    width: 50%; /* Lungimea la care se va extinde linia când se plasează cursorul pe titlu */
  }
  /* Program cabinet*/
  .schedule{
    margin-top: 20px;
    border-radius: 12px ;
    display: flex;
    margin: auto;
    justify-content: center;
    align-items: center;
    max-width: 1300px;
    flex-wrap: wrap;
    color: rgb(1, 108, 154);
    background-color:rgb(245, 245, 245);
  }
  .schedule-table{
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
  }
  .p{
    margin: 10px;
  }
    /* Program cabinet*/
    /* Form program */
    .contactForm {
      margin: auto;
      justify-content: center;
      align-items: center;
      max-width: 1500px;
      background-color: #0086c0;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: row;
      align-items: center;
    }

    .contactForm iframe {
      width: 100%;
      height: 500px;
      border: none;
      margin-bottom: 20px;
    }

    .contact-text {
      padding: 15px;
      align-items: center;
      justify-content: center;
      margin: auto;
      font-family: "Poppins", sans-serif;
      width: 100%;
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .contact-text label {
      display: flex;
      width: 100%;
      margin-bottom: 5px;
      color: white;
    }
    .form-tit{
      color: white;
      font-family: sans-serif, "Poppins";
      letter-spacing: 2px;
      font-size: 30px;
    }
    .contact-text input,
    .contact-text textarea {
      font-family: "Poppins", sans-serif;
      width: 100%;
      max-width: 500px;
      padding: 10px;
      border: 2px solid transparent;
      background-color: #ffffff;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease-in-out;
    }

    .contact-text textarea {
      height: 100px;
      resize: none;
    }

    .contact-text input:focus,
    .contact-text textarea:focus {
      border-color: #005f8a;
      box-shadow: 0 0 10px rgba(0, 134, 192, 0.5);
      outline: none;
      transform: scale(1.05);
    }

    .contact-text input::placeholder,
    .contact-text textarea::placeholder {
      color: rgba(0, 0, 0, 0.5);
    }

    .send .checkbox-1{
      font-size: 7px;
      width: auto;
      box-shadow: none;
    }
    .send .checkbox-1 label {
      display: flex;
      font-size: 7px;
      margin: auto;
      justify-content: center;
      align-items: center;
    }
    .send {
      display: flex;
      flex-direction: column;
      width: 500px;
      text-align: center;
    }

    .send label {
      color: white;
    }

    .send input[type="checkbox"] {

    }

    .send button {
      margin: auto;
      justify-self: center;
      align-items: center;
      width: 120px;
      height: 40px;
      margin-top: 20px;
      padding: 10px 20px;
      background-color: #005f8a;
      border: none;
      border-radius: 25px;
      color: white;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .send button:hover {
      background-color: #004568;
    }

    @media (max-width: 600px) {
      .contactForm{
        padding: 0px;
        flex-direction: column-reverse;
        display: flex;
        flex-wrap: wrap;
      }
      .contactForm iframe {
        height: 200px;
        width: 360px;
      }
      .send {
        display: flex;
        flex-direction: column;
        width: 100%;
        text-align: center;
      }

      .contact-text input,
      .contact-text textarea {
        display: flex;
        font-family: "Poppins", sans-serif;
        width: 100%;
        max-width: 360px;
        padding: 10px;
        border: 2px solid transparent;
        background-color: #ffffff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease-in-out;
        max-width: 100%;
      }
      .contact-text{
        pad: 20px;
      }
      .informatii img{
        margin: auto;
        width: 380px;
      }
      .informatii{
        flex-wrap: wrap;
        display: flex;
        flex-direction: column-reverse;
      }
    }
     /* Form program */
     /* informatii suplimentare */
     .informatii{
      display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    height: auto;
     }
     .informatii img{
      justify-content: center;
      align-items: center;
      align-self: center;
      padding: 20px;
      display: flex;
      flex-wrap: wrap;
     }
     .info-sup{
      flex: 1 1 50%;
      display: flex;
      flex-wrap: wrap;
      flex-direction: column;
      padding: 20px;
     }
     .info-gif{
      width: 130px;
     }
     .info-contact{
      padding: 10px;
      display: flex;
      flex-wrap: wrap;
      flex-direction: row-reverse;
     }
     .info-info{
      display:flex;
      flex-wrap: wrap;
      flex-direction: column;
     }
     .info-text{
      margin: 10px;
      flex-wrap: wrap;
      flex-direction: column;
      display: flex;
     }
     .info-text a{
      text-decoration: none;
      color: #0086c0;
     }
     .buton-info a{
      width: 300px;
      height: 40px;
      border-radius: 12px;
      background-color: #0086c0;
      text-decoration: none;
      padding: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
     }
     /* informatii suplimentare */
     .google-review {
      display: flex;
      margin: auto;
      justify-content: center;
      align-items: center;
     }
     .google-review img{
      display: flex;
      margin: auto;
      justify-content: center;
      align-items: center;
      height: 175px;
     }
     .google-review {
      cursor: pointer; /* Schimbă cursorul pentru a arăta că este ceva pe care se poate da click */
    }
     .carousel-container {
      padding: 20px;
      margin: auto;
      justify-content: center;
      align-items: center;
      position: relative;
      width: auto;
      max-width: 900px;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  }
  .carousel-item img{
    border-radius: 20px;
  }
  .carousel {
      display: flex;
      transition: transform 0.5s ease-in-out;
  }
  
  .carousel-item {
      padding: 20px;
      background-color: #fff;
      text-align: center;
  }
  .testimonial-text {
      font-size: 18px;
      margin-bottom: 10px;
      color: #333;
  }
  
  .testimonial-author {
      font-size: 16px;
      color: #666;
  }
  
  .carousel-button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(0, 0, 0, 0.5);
      color: #fff;
      border: none;
      padding: 10px;
      cursor: pointer;
  }
  
  .carousel-button.prev {
      left: 10px;
  }
  
  .carousel-button.next {
      right: 10px;
  }
  
  .carousel-button:focus {
      outline: none;
  }
  
  @media (max-width: 600px) {
      .testimonial-text {
          font-size: 16px;
      }
  
      .testimonial-author {
          font-size: 14px;
      }
      .carousel-item {
        max-width:auto;
        background-color: #fff;
        text-align: center;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    }
    .carousel-container {
      padding: 0px;
      margin: auto;
      justify-content: center;
      align-items: center;
      position: relative;
      width: auto;
      max-width: 900px;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  }
  
  }
  .panel-group {
    width: 80%;
    margin: auto;
    max-width: 800px;
}

.panel {
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
    overflow: hidden;
}

.panel-header {
  color: white;
    width: 100%;
    background-color: #0086c0;
    border: none;
    padding: 15px;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.panel-header:hover {
    background-color: #00b3ff;
}

.panel-content {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.panel-content p {
    margin: 10px 0;
}

.panel-content.open {
    max-height: 500px; /* Large enough to accommodate the content */
    padding: 15px;
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 600px) {
    .panel-group {
        width: 95%;
        margin: 10px auto;
    }

    .panel-header {
        padding: 12px;
        font-size: 14px;
    }

    .panel-content {
        padding: 0 12px;
    }

    .panel-content p {
        margin: 8px 0;
    }

    .panel-content.open {
        padding: 12px;
    }
}
.section-title {
  margin-left: 30px;
  margin-bottom: 30px;
  position: relative; /* Este necesar pentru a poziționa linia subtitlului */
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px; /* Ajustează înălțimea liniei în funcție de preferințele tale */
  width: 30%;
  height: 2px; /* Grosimea liniei */
  background-color: #0086c0; /* Culoarea albastru deschis */
  transition: width 0.3s ease; /* Efect de tranziție pentru animație */
}

.section-title:hover::after {
  width: 50%; /* Lungimea la care se va extinde linia când se plasează cursorul pe titlu */
}

.blinking {
  display: inline-block;
  animation: blink 3s linear infinite;
}

@keyframes blink {
  0%, 50%, 100% {
      opacity: 1;
  }
  25%, 75% {
      opacity: 0;
  }
}
.whatsapp-button {
  position: fixed;
  bottom: 20px; /* Poziționează butonul în partea de jos a paginii */
  right: 20px; /* Poziționează butonul la marginea dreaptă a paginii */
  background-color: #25d366; /* Culorile brandului WhatsApp */
  color: #fff;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  z-index: 9999; /* Asigură că butonul este afișat deasupra altor elemente */
  transition: transform 0.3s ease; /* Adaugă o tranziție pentru o animație lină */

}

.whatsapp-button:hover {
  transform: scale(1.1); /* Face butonul mai mare la interacțiunea cu mouse-ul */
}

.custom-section {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  background-color: rgb(248, 248, 248);
}

.image-container {
  position: absolute;
  top: -50px; /* Ajustează după cum este necesar */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.image-container img {
  width: 100px; /* Ajustează dimensiunea după cum este necesar */
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.content-container {
  display: flex;
  width: 100%;
  max-width: 1200px;
  gap: 20px;
  flex-direction: row;
  padding-top: 60px; /* Ajustează pentru a face loc imaginii suprapuse */
}

.image-half,
.text-half {
  flex: 1 1 50%;
  box-sizing: border-box;
}

.image-half img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.text-half {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-half h2 {
  margin: 0 0 20px;
}

.text-half p {
  margin: 0;
}

/* Media queries pentru responsivitate */
@media (max-width: 768px) {
  .content-container {
    flex-direction: column;
    align-items: center;
  }

  .image-half,
  .text-half {
    flex: 1 1 100%;
  }

  .image-container {
    top: -30px; /* Ajustează după cum este necesar pentru ecrane mai mici */
  }

  .image-container img {
    width: 80px; /* Ajustează dimensiunea după cum este necesar pentru ecrane mai mici */
  }
}
.container-boxes {
  margin: 20px;
  display: flex;
  gap: 20px;
}

.box-1 {
  position: relative;
  width: 300px;
  height: 200px;
  overflow: hidden;
}

.box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-overlay {
  cursor: pointer;
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: bottom 0.3s ease;
}

.box:hover .text-overlay {
  bottom: 0;
}
@media (max-width: 600px){
  .container-boxes {
padding: 10px;
    justify-content: center;
    align-items: center;
    margin: auto;
    flex-wrap: wrap;
    display: flex;
    gap: 20px;
  }
}

.container-intrebari {
  color: #004568;
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  gap: 20px;
}

.column {
  flex: 1;
  min-width: 300px;
}

.dropdown-btn {
  width: 100%;
  padding: 15px;
  font-size: 18px;
  cursor: pointer;
  border: none;
  color: white;
  text-align: left;
}

.dropdown-btn:focus {
  outline: none;
}

.dropdown-content {
  display: none;
  padding: 15px;
  border-top: none;
}

.dropdown-content p {
  margin: 0;
}

@media (max-width: 768px) {
  .container {
      flex-direction: column;
  }
}
.container-coloana {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  max-width: 1800px;
  margin: auto;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
}

.column-c {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
}

.column-c:nth-child(odd) {
  background-color: #0086c0;
  color: white;
}

.column-c:nth-child(even) {
  background-color: #0086c0;
  color: white;
}

h2 {
  margin-top: 0;
}

@keyframes slideInLeft {
  from {
      transform: translateX(-100%);
      opacity: 0;
  }
  to {
      transform: translateX(0);
      opacity: 1;
  }
}

@keyframes slideInRight {
  from {
      transform: translateX(100%);
      opacity: 0;
  }
  to {
      transform: translateX(0);
      opacity: 1;
  }
}

.column-c:nth-child(odd) {
  animation: slideInLeft 1s ease-in-out;
}

.column-c:nth-child(even) {
  animation: slideInRight 1s ease-in-out;
}

@media (max-width: 768px) {
      .container-coloana {
        display: flex;
        flex-wrap: wrap;
        width: 95%;
        max-width: 900px;
        margin: auto;
        background-color: white;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        overflow: hidden;
        flex-direction: column;
      }

  .column-c {
      animation: none; /* Disable animation on mobile for better performance */
  }
}