@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik+Doodle+Shadow&display=swap');

*{
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

body{
    margin: 0;
    padding: 0;
    background: #f8f9fa;
}

nav{
    margin: 0;
    width: 100%;
    height: 60px;
    background-color: #2E294E;
    color: white;
    /* padding: 10px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* position: fixed; */
    top: 0;
    z-index: 5;
}
.logo{
    font-size: 22px;
    letter-spacing: 1px;
    margin-left: 30px;
    display: flex;
    align-items: center;
    /* .brandname{
        height: 38px;
        width: 100px;
        background-image: url(logo.jpg);
        background-position: left center;
        background-repeat: no-repeat;
        background-size: contain;
    } */
    a{
        font-family: "Rubik Doodle Shadow", system-ui;
        font-weight: 400;
        font-size: larger;
        font-style: normal;
        text-decoration: none;
        color: #FFD400;
    }
    i{
        font-size: 28px;
        margin-right: 10px;
    }
}
nav ul{
    list-style: none;
    display: flex;
    gap: 5px;
    margin-right: 30px;
    a{
        text-decoration: none;
        color: inherit;
    }
    li{
        transition: all .3s ease;
        cursor: pointer;
        width: auto;
        padding: 10px;
        border-radius: 5px;
    }
}
nav ul li:hover{
    background-color: white;
    color: black;
}
main {
    display: flex;
    flex-direction: row;
    height: 100vh;
}

.left-side {
    flex: 1;
    padding: 100px;
    background-color: #FFD400; /* Adjust the background color as needed */
    /* Add styles for the left side here */
}

.right-side {
    flex: 2;
    padding: 20px;
    background-color: #f8f9fa;
    background-image: url('../images/p3.svg');
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    /* Add styles for the right side here */
}
.icon {
    margin-right: 5px;
}

  .testimonial-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
  }
  .testimonial {
    font-style: italic;
    color: #555;
  }
  .author {
    text-align: right;
    font-weight: bold;
    margin-top: 20px;
  }
  .get-matched {
    background-color: #D90368;
    color: white;
    text-align: center;
    padding: 10px 0;
    border-radius: 8px;
    text-decoration: none;
    display: block;
    margin-top: 30px;
  }
  .container {
    position: relative;
}

.crisis-helpline {
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
    position: absolute;
    top: 20px;
    right: 20px;
    color: #333;
}

.crisis-helpline label {
    font-weight: bold;
}

.crisis-helpline select {
    padding: 5px;
}
.review-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: #D90368;
    padding: 20px;
    border-radius: 5px;
    width: 400px; /* Increased width */
    max-width: calc(100% - 40px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.review {
    margin: 0;
}

.review-author {
    margin-top: 5px;
    font-style: italic;
    color: #888;
}

.swiper-container {
    width: 300px;
    height: auto;
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-button-next {
    right: 10px;
}

.swiper-button-prev {
    left: 10px;
}