*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.05),rgba(4,9,30,0.05)),url(images/happy.png);
    background-position: center;
    background-size: cover;
    position: relative;
    /* Added for moving image effect */
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h1{
    font-size: 62px;
    padding-top: 250px;
    padding-bottom: 50px;
}

.text-box h2 {
    font-size: 1.3em; /* Adjust font size as needed */
    margin: 30px;
}

.text-box p{
    margin: 10px 0 40px;
    font-size: 14px;
    color: #fff;
}
.hero-btn{
    display: -inline-box;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 14px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #6d8d94;
    background: #6d8d94;
    transition: 1s;
}

/* Style for the 'You Deserve to be Happy' Section */
.happiness-section {
    text-align: center;
    padding: 50px 0;
    background-color: #f0f0f0; /* Change background color as needed */
    color: #333; /* Change text color as needed */
}

.happiness-section h2 {
    font-size: 2.5em; /* Adjust font size as needed */
    margin: 0;
    padding: 20px;
    line-height: 1.2;
}

/*----- service -----*/
.service{
    background-image: url(images/heart.png);
    background-position: center;
    background-size: cover;
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

.services-circle {
    position: relative;
    width: auto; /* Adjust as needed */
    height: 1000px; /* Adjust as needed */
    margin: 0px auto; /* Center the circle */
    display: flex;
    justify-content: center;
    align-items: center;
}
.services-circle p{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.service-item {
    position: absolute;
    top: 330px;
    /* flex-basis: 10%; */
    width: 250px;
    height: 250px;
    background-color: #fff3f3; /* Similar to original service columns */
    border-radius: 50%; /* Rounded corners */
    transition: box-shadow 0.5s, transform 0.5s; /* Smooth transition for box-shadow and transform */
    padding: 20px;
    box-sizing: border-box;
    margin-bottom: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Stacks child elements vertically */
    text-align: center; /* Ensures text is centered horizontally */
}
.service-item h3 {
    font-weight: 600;
    text-align: center;
    color: #333; /* Adjust text color as needed */
}

.service-item:hover {
    box-shadow: 0 0 25px 0 rgba(0,0,0,0.5);
    transform: scale(1.1); /* Optional: Slightly scale up the item on hover for more emphasis */
}

/* Positioning each service item evenly in a circle */
.service-item:nth-child(1) { transform: rotate(-12.9deg) translate(400px) rotate(12.9deg); }
.service-item:nth-child(2) { transform: rotate(38.6deg) translate(400px) rotate(-38.6deg); }
.service-item:nth-child(3) { transform: rotate(90deg) translate(400px) rotate(-90deg); }
.service-item:nth-child(4) { transform: rotate(141.4deg) translate(400px) rotate(-141.4deg); }
.service-item:nth-child(5) { transform: rotate(192.9deg) translate(400px) rotate(-192.9deg); }
.service-item:nth-child(6) { transform: rotate(244.3deg) translate(400px) rotate(-244.3deg); }
.service-item:nth-child(7) { transform: rotate(295.7deg) translate(400px) rotate(-295.7deg); }


h1{
    font-size: 36px;
    font-weight: 600;
    padding-bottom: 10px;
}

/*------testimonials-------*/
.testimonials{
    width: 80%;
    margin: auto;
    padding-top: 50px;
    text-align: center;
}
.testimonials h1{
    font-size: 36px;
    font-weight: 600;
}

.testimonial-col{
    flex-basis: 25%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: #ebbb9c;
    padding: 25px;
    cursor: pointer;
    display: flex;
}
.testimonial-col img{
    height: 50px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 20%;
}
.testimonial-col p{
    padding: 0;
}

.testimonial-col h3{
    margin-top: 5px;
    text-align: left;
}

.testimonial-col .fa{
    color: #f44336;
}

.testimonial-col .far{
    color: #f44336;
}
.testimonial-col .fas{
    color: #f44336;
}

.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}

/* Reach Out Style */
.reach-out-section {
    background: url('images/hand.png') no-repeat center center/cover;
    text-align: center;
    padding: 50px 0;
    color: white; /* Adjust text color if needed */
}

.reach-out-section h2 {
    font-size: 2.5em; /* Adjust font size as needed */
    margin-bottom: 0.5em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.reach-out-section h3 {
    font-size: 2em; /* Adjust font size as needed */
}

/* Contact Form Styles */
.contact {
    text-align: center;
    padding: 50px;
}

.contact-form {
    max-width: 1000px; /* Limiting total width */
    margin: auto;
}

.form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.form-group {
    flex: 0 0 48%; /* Adjusted flex value to prevent overlap */
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-group textarea {
    height: 100px;
}

.submit-btn {
    background-color: #5c5c5c;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #e79b3a;
}

/**** footer -----*/
.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
}

.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}

.icon .fab{
    color: #f44336;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}

/* Ensure Smooth Scrolling with CSS */
html {
    scroll-behavior: smooth;
}
