*{
    padding: 0;
    margin: 0;
    font-family: sans-serif, "Poppins";
    box-sizing: border-box;
}
.topbar {
    background-color:  #ddc8ff;
    color: rgb(150, 150, 150);
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .contact-info {
    display: flex;
  }
  
  .contact-info span {
    margin-right: 20px;
  }
  
  .social-icons a {
    color: #fff;
    text-decoration: none;
    margin-left: 10px;
  }
  
  .social-icons a:hover {
    color: #ccc;
  }
 
  nav {
    z-index: 1;
    position: sticky;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 8vh;
    background-color: #ffffff;
    font-family: "Poppins", sans-serif;
}

.logo {
    color: rgb(150, 150, 150);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 20px;
}

.nav-links {
    display: flex;
    justify-content: space-around;
    width: 30%;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color:#4d4d4d;
    text-decoration: none;
    letter-spacing: 3px;
    font-weight: bold;
    font-size: 17px;
}

.burger {
    display: none;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: rgb(226, 226, 226);
    margin: 5px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 1024px) {
    .nav-links {
        margin-top: 50px;
      }
    .topbar{
      font-size: 13px;
        display: none;
        flex-direction: row;
    }
    .topbar .contact-info{
        display: flex;
        flex-direction: column;
    }
    .nav-links {
        width: 60%;
    }
}

@media screen and (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .nav-links {
        z-index: 1000; /* Măriți valoarea z-index */
        position: absolute;
        margin-top: 80px;
        right: 0px;
        height: 40vh;
        top: 8vh;
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }
    
    .nav-links li {
        opacity: 0;
    }
    
    .burger {
        display: block;
        cursor: pointer;
    }
}

.nav-active {
        transform: translateX(0%);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-active {
        transform: translateX(0%);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}
.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 */
  }

  /* Existing CSS styles */

.nav-links {
    width: 850px;
    list-style: none;
    padding: 0;
    display: flex;
  }
  
  .nav-links li {
    margin-right: 15px;
  }
  
  .nav-links li a {
    text-decoration: none;
    position: relative;
  }
  
  .nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color:#ddc8ff;
    transition: width 0.3s ease;
  }
  
  .nav-links li a:hover::after {
    width: 100%;
  }
  
  /* Add this animation for the underline effect */
  @keyframes underline {
    from { width: 0; }
    to { width: 100%; }
  }
  .video-section {
    background-color: black;
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
  }
  .video-section-img{
    width: 125%;
    height: 125%;
    object-fit: contain;
    margin-left: 68px;
  }
  .video-section video {
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 50%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
  }
  
  .content   {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    padding: 0 20px; /* adaugăm puțin spațiu pe margini */
  }
  
  .content  h1 {
    color: #ffffff;
    font-size: 3em;
    margin-bottom: 20px;
  }
  
  .content  p  {
    color: #ffffff;
    font-size: 50px;
  }
  
  /* Stiluri pentru dispozitive mobile */
  @media screen and (max-width: 768px) {
    .content  {
      padding: 0 10px; /* Reducem spațiul pe margini pentru ecranele mici */
    }
  
    .content  h1 {
        font-size: 21px;
        color: #ffffff;
        margin-bottom: 20px;
      }
      
      .content  p  {
        font-size: 16px;
        color: #ffffff;
      }
  }
 
  .btn {
    border-radius: 4px;
    border: 2px solid transparent; /* Adăugăm un border initial transparent */
    margin: 20px;
    width: 140px;
    height: 40px;
    color: #ffffff;
    background-color: #ddc8ff;
    transition: all 0.3s ease; /* Adăugăm o tranziție pentru efectul de hover */
    position: relative; /* Adăugăm pentru a controla overlay-ul */
    overflow: hidden; /* Adăugăm pentru a controla overlay-ul */
  }
  
  .btn:hover {
    border-color:  #ddc8ff; /* Schimbăm culoarea border-ului la hover */
    color: black; /* Schimbăm culoarea textului la hover */
    background-color: #ffffff;
  }
  
  .btn a {
    text-decoration: none;
    color: black;
    display: block; /* Adăugăm pentru a face pseudo-elementul ::after să acopere butonul complet */
    position: relative; /* Adăugăm pentru a controla overlay-ul */
  }
  
  .btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%; /* Mărim lățimea pentru a acoperi complet butonul */
    height: 300%; /* Mărim înălțimea pentru a acoperi complet butonul */
    background-color: rgba(255, 255, 255, 0.2); /* Adăugăm un overlay semi-transparent */
    transition: all 0.3s ease; /* Adăugăm o tranziție pentru overlay */
    z-index: -1; /* Aducem overlay-ul în spatele conținutului butonului */
    transform: translate(-50%, -50%) rotate(45deg); /* Rotim overlay-ul și îl poziționăm la mijlocul butonului */
    pointer-events: none; /* Facem overlay-ul transparent pentru evenimente de click */
  }
  
  .btn:hover::after {
    width: 0; /* Reducem lățimea overlay-ului la hover pentru a crea efectul de dispariție */
    height: 0; /* Reducem înălțimea overlay-ului la hover pentru a crea efectul de dispariție */
  }
  
/* Existing CSS styles */
.typing-animation {
    overflow: hidden; /* Pentru a ascunde textul care depășește dimensiunile containerului */
    white-space: nowrap; /* Pentru a asigura ca textul este afisat pe o singura linie */
    border-right: 2px solid transparent; /* Adaugăm un border initial transparent */
    animation: typing 2s steps(40, end); /* Animatie pentru simulara scrierii textului */
  }
  
  @keyframes typing {
    from {
      width: 0;
    }
    to {
      width: 100%;
    }
  }
  .coaching-section {
    background-color:  #ddc8ff;
    padding: 40px 20px;
  }
  
  .container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .headline {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .description {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .life-coaching-section {
    padding: 20px;
  }
  
  .container1 {
    justify-content: center;
    align-items: center;
    align-self: center;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }
  
  .content1 {
    display: flex;
    flex-direction: row;
  }
  
  .text {
    flex: 1 1 50%;
    padding: 20px;
  }
  
  .image {
    flex: 1 1 50%;
    margin-bottom: 20px;
  }
  
  .image img {
    max-height: 100%;
    max-width: 100%;
    height: auto;
  }
  
  .text h2 {
    margin-top: 10px;
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .text p {
    font-size: 16px;
    line-height: 1.6;
  }
  
  /* Stiluri pentru dispozitive mobile */
  @media screen and (max-width: 768px) {
    .content1 {
      flex-direction: column;
    }
  }

  /* Form gmail */

.box-form {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 5px;
}

input,
textarea {
  margin-bottom: 10px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background-color: var(--global-color);
  color: #ffffff;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #000000;
}

.box-form {
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
}

.contact-us-section {
  flex: 1 1 100%;
  margin-top: 20px;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
}

.contact-item {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.contact-item p{
  margin-bottom: 0px;
}

.contact-item i {
  margin-right: 10px;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .box-form {
    flex-direction: column;
  }

  .box-form .contact-image{
    display: none;
  }

  .contact-us-section {
    margin-top: 20px;
  }

  .contact-item {
    flex: 1 1 100%;
  }
}
 /* Stilizare casetă de bifare */
 .custom-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Stilizare checkbox și marcaj (checkmark) */
.custom-checkbox input[type="checkbox"] + .checkmark {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #eee;
  border-radius: 3px;
  margin-right: 10px;
}

/* Stilizare marcaj (checkmark) */
.custom-checkbox input[type="checkbox"]:checked + .checkmark:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}



.content {
  width: 94%;
  margin: 4em auto;
  font-size: 20px;
  text-align: justify;
}

/* Stilizare imagine */
.contact-image {
max-width: 30%; /* Asigură că imaginea nu depășește lățimea containerului */
height: auto; /* Face imaginea responsive pe bază de lățime */
margin-bottom: 20px; /* Adaugă spațiu între imagine și text */
margin: 40px;
}

/* Stilizare text */
.contact-text {
text-align: center; /* Aliniază textul în centru */
font-size: 24px; /* Mărimea fontului */
font-weight: bold; /* Textul bold */
margin-bottom: 20px; /* Adaugă spațiu între text și formular */
}

/* Media query pentru dispozitive mobile */
@media (max-width: 768px) {
.contact-image {
    max-width: 80%; /* Reducerea lățimii imaginii pe dispozitive mobile */
}
.contact-text {
    font-size: 18px; /* Reducerea mărimii fontului pe dispozitive mobile */
}
}
.footer {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
  background-color: #ffffff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-media {
  display: flex;
}

.icon {
  margin-right: 10px;
  color: #333;
  text-decoration: none;
}

.copyright {
  color: #666;
}

@media (max-width: 600px) {
  .logo1{
    margin-bottom: 10px;
  }
  .footer {
    flex-direction: column;
    text-align: center;
  }
  
  .social-media {
    margin-bottom: 10px;
  }
  .copyright{
    margin-bottom: 10px;
  }
}
.icon {
  margin-right: 10px;
  color: #333;
  text-decoration: none;
  transition: color 0.3s; /* Adăugăm o tranziție pentru o animație mai lină */
}

.icon:hover {
  color:#ddc8ff /* Schimbăm culoarea la hover */
}
.icon {
  margin-right: 10px;
  color: #333;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s; /* Adăugăm o tranziție pentru o animație mai lină */
}

.icon:hover {
  color:#ddc8ff; /* Schimbăm culoarea la hover */
  transform: scale(1.1); /* Mărim iconița la hover */
}
.container-info {
  max-width: 800px;
  margin: 50px auto;
  padding: 0 20px;
  text-align: center;
}
.row-info {
  margin: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.text-info {
  flex: 0 0 100%;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .text-info {
    flex: 0 0 50%;
    margin-bottom: 0;
  }
  .text-info:nth-child(2) {
    text-align: left;
  }
}
.container-info {
  margin: 50px auto;
  text-align: center;
}
.row-info {
  display: inline-block;
}
.text-info {
  display: inline-block;
  font-size: 24px;
  margin: 10px;
}
.hidden {
  display: none;
}
.side-side{
  align-items: center;
  justify-content: center;
  width: 92.5%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}
/* Info section */
.container-descriere {
  flex-direction: column;
  display: flex;
  flex: 1 1 50%;
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  background-color: #ddc8ff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: justify;
}

h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: left;
}

ul {
  list-style-type: disc;
  margin-left: 20px;
}

li {
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .container-descriere  {
    padding: 10px;
  }

  h2 {
    font-size: 20px;
  }
}
.gallery {
  justify-content: center;
  align-items: center;
  align-content: center;
  overflow: hidden;
  position: relative;
  display: flex;
  flex: 1 1 50%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
  padding: 10px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 54px;
  cursor: pointer;
  z-index: 1;
}
.prev {
  color: #ddc8ff;
  left: 10px;
}
.next {
  color: #ddc8ff;
  right: 10px;
}
@media screen and (max-width: 768px) {
  .side-side{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;

  }
  .gallery {
    display: flex;
  }
  .container-descriere{
display: flex;
  }
}

.container-t {
  max-width: 75%;
  margin: 50px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: justify;
}

p {
  margin-bottom: 15px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .container-t {
    max-width: 95%;
    padding: 10px;
  }
}
.container-t {
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 10px;
  text-align: justify;
  transition: background-color 0.5s ease;
}

.container-t:nth-child(odd) {
  background-color: #ddc8ff; /* culoarea rosu */
}

.container-t:nth-child(even) {
  background-color: #fff; /* culoarea alba */
}

/* Testimonial */

.container-testimonial {
  margin-bottom: 40px;
  padding: 40px;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  color: black;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-color: #ddc8ff;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.description {
  text-align: center;
  width: 90%;
}

.clientImage {
  display: none;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.clientImage span {
  margin-left: 10px;
}

.clientImage img {
  display: none;
  width: 70px;
}

.reviewSection {
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}

.reviewItem {
  width: 300px;
  padding: 10px;
  margin: 1rem;
  cursor: pointer;
  border-radius: 10px;
  background-color: #ddc8ff;
  border: 1px solid #ddc8ff;
  transition: all .2s linear;
}

.reviewItem:hover {
  border-color: black;
  transform: scale(1.01);
  background-color: #ddc8ff;
  box-shadow: 0 0px 5px 0px#ddc8ff;
}

.top {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.top ul {
  display: flex;
  list-style: none;
}

.top ul li {
  padding-left: 4px;
}

article p {
  font-size: 15px;
  font-weight: 100;
  margin-bottom: 1rem;
  font-family: system-ui;
}


@media screen and (max-width:700px) {
  .container {
      height: auto;
  }

  .description {
      width: 90%;
  }
}

@media screen and (max-width:375px) {
  .reviewSection {
      padding: 0;
  }

  .reviewItem {
      width: 100%;
  }

  .clientImage {
      margin-bottom: 0.6rem;
  }

  .top {
      align-items: center;
      flex-direction: column;
      justify-content: center;
  }
}