* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: black;
    background-color: white;
}

a {
    text-decoration: none;
    color: black;
    transition: color 0.3s ease;
}

a:hover {
    font-size: 103%;
}

h1, h2, h3 {
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px;
}

/* Header */
header {
    background-color: #faca22;
    /* background: linear-gradient(135deg, #faca22, #ff4500); */
    /* padding: 10px 20px; */
    /* padding: 5px 5px; */
    position: fixed;
    z-index: 10000;
    width: 100vw;
    padding: 1vh 0px;
    min-height: 8vh;
}

.logo-img {
    height: 75px;
    width: auto;
    object-fit: cover;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border-bottom: 1px solid black; */
    flex-grow: 1;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: #ffffff;
}

.nav-links a:hover {
    scale: 110%;
}

.nav-links a {
    font-weight: bold;
}

.logo-link:hover {
    scale: 105%;
}

/* Hero Section */
.hero {
    display: flex;
    background-color: #faca22;
    color: white;
    text-align: center;
    padding: 50px 20px;
    width: 100%;
    position: relative;
    min-height: 100vh;
    z-index: 0;
    align-items: center;
    justify-self: center;
}

.hero * {
    margin: 0 auto;
}

.hero div h1 {
    margin-bottom: 20px;
    font-weight: bold;
    font-size: clamp (1rem, 2.5rem, 3rem);
    text-shadow: black 1px 0 10px;}

.hero h1 {
    font-size: 2.5rem;
}

.hero button {
    /* background: linear-gradient(135deg, #faca22, #ffffff); */
    color: black;
    
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.hero button:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* background: rgba(0, 0, 0, 0.1); */

}

.brain {
    height: 50px;
    width: auto;
    filter: contrast(2) brightness(2);
}

.schedule-session {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.session {
    height: 25px;
    width: auto;
}

/* Sections */
section {
    padding: 50px 20px;
    text-align: center;
}

section img {
    max-width: 100%;
    height: auto;
}

.about {
    background-color: #f9f9f9;
    background: linear-gradient(135deg, #faca22, #103565);
    background: linear-gradient(135deg, #faca22, #008080);
    /* background: linear-gradient(135deg, #faca22, #ff6f61);
    background: linear-gradient(135deg, #faca22, #6a0dad);
    background: linear-gradient(135deg, #faca22, #2ecc71);
    background: linear-gradient(135deg, #faca22, #2c3e50);
    background: linear-gradient(135deg, #faca22, #ff4500);
    background: linear-gradient(135deg, #faca22, #6a5acd); */
    color: #ffffff;

}

.about-container {
    display: flex;
    flex-grow: 1;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.about-container div {
    flex-basis: 50%;
    margin: 0 auto;
    padding: 20px;
}

.about-container div h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-container div p {
    font-size: 1.2rem;
}


/* Image Styling */
.image-container {
    position: relative;
    display: inline-block;
}

.image-container img {
    border-radius: 10px;
    width: 100%;
    height: auto;
    max-width: 500px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Heart Icon Styling */
.heart-icon {
    position: absolute;
    top: 42%;
    left: 42%;
    transform: translate(-50%, -50%); /* Centers the heart */
    font-size: 2.5rem;
    color: #ff4500; /* Red heart color */
    filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.5));
    z-index: 10;
    background: transparent;
    border-radius: 50%;
    padding: 10px;  
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Keyframe animation for the heart pulse */
@keyframes pulse {
    0% {
      transform: scale(1) translate(-50%, -50%);
    }
    50% {
      transform: scale(1.3) translate(-50%, -50%);
    }
    100% {
      transform: scale(1) translate(-50%, -50%);
    }
  }
  
  .heart-icon {
      position: absolute;
      top: 42%;
      left: 42%;
      transform: translate(-50%, -50%);
      font-size: 2.5rem;
      color: #ff4500;
      filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.5));
      z-index: 10;
      background: transparent;
      border-radius: 50%;
      padding: 10px;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0; /* Start invisible */
      transition: opacity 0.5s ease-out;
  }
  
  /* Add the animation class when visible */
  .heart-visible {
      opacity: 1; /* Fade in */
      animation: pulse 5s ease-out infinite;
  }
  

.services {
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    padding: 60px 20px;
    text-align: center;
  }
  
  .section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #faca22;
    margin-bottom: 40px;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .service-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .service-card img {
    width: 50%;
    height: auto;
    border-radius: 5px 5px 0 0;
  }

  .service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
  
  .service-card h3 {
    font-size: 1.5rem;
    color: #103565;
    margin-bottom: 10px;
  }
  
  .service-card p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
  }
  
  .learn-more-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #faca22;
    color: #103565;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, filter 0.3s;
  }
  
  .learn-more-btn:hover {
    color: black;
    filter: brightness(1.1);
  }
  
  .testimonials {
    background: linear-gradient(45deg, #ff9a8b, #f7c7a3);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.testimonial-content {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.client-img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
    border: 2px solid #fff;
}

.client-info h4 {
    margin: 5px 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.client-info span {
    font-size: 1rem;
    color: #dcdcdc;
}


/* Contact Section */.contact {
    background-color: #f9f9f9;
    padding: 30px 20px 60px 20px;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #103565;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 20px;
    font-size: 1rem;
}

.contact-details a {
    color: #103565;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #103565;
}

.submit-btn {
    background-color: #faca22;
    color: #fff;
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    filter: brightness(1.1);
}

.consultation-link {
    display: flex;
    background: linear-gradient(45deg, #ff9a8b, #f7c7a3);
    padding: 12px 24px;
    margin-top: 20px;
    width: 40%;
    margin: 20px auto;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    margin-bottom: -20px;
}

.consultation-link:hover {
    scale: 1.01;
}

.cta-linker {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    font-weight: bold;
    color: #103565;
    text-decoration: underline;
    transition: color 0.3s ease;
    flex-basis: 200px;
    text-align: center;
    justify-content: center;
    align-items: center;
    text-decoration:wavy;
    border-radius: 10px;
}

.cta-linker img {
    height: 35px;
    width: auto;
    border-radius: 10px;
}

.cta-linker:hover {
    color: white;
}

.contact-img {
    width: 70px;
    height: 100%;
}

#contact .section-title {
    display: flex;
    margin: 10px auto;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* Footer */
footer {
    background-color: #faca22;
    color: white;
    text-align: center;
    padding: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
}

.developer {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.developer a {
    color: #ffffff;
}

.facebook:hover, .instagram:hover {
    scale: 103%;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 10px;
    }
    .nav-links {
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    .hero h1 {
        font-size: 2rem;
        margin-top: 120px;
        margin-left: auto;
        margin-right: auto;
        padding-right: 10px;
        padding-left: 10px;
    }
    .hero {
        min-height: 640px;
    }
    .consultation-link {
        width: 100%;
        margin-top: 20px;
        margin-bottom: -40px;
    }
    .about-container {
        display: block;
        text-align: center;
    }
    #about {
        padding-top: 10px;
    }
    #about div div {
        padding: 0px 0px;
    }
    img.brain {
        margin-left: -30px;
        padding-left: 5px;
        margin-bottom: -10px;
    }
    .hero div .title {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}


body {
    /* font-family: Arial, sans-serif; */
    /* line-height: 1.6; */
    /* margin: 20px; */
    /* padding: 20px; */
    background-color: #f9f9f9;
}
h2 {
    color: #333;
}
ul {
    list-style-type: none;
    padding: 0;
}
li {
    margin-bottom: 10px;
}