 /* Hero */
        .hero-section {
            position: relative;
            background-color: #31264B;
            color: white;
            padding-top: 80px;
            padding-bottom: 160px;
        }
        .container-content h1{
        font-size: 2.5rem;
        }
        
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -105px;
            left: 0;
            width: 100%;
            height: 100px;
            background-color: #EBE9F2; /* Adjust color for below section */
            transform: skewY(-3deg);
            transform-origin: top left;
        }
        
        .container-content {
            position: relative;
            z-index: 1; /* Ensures content stays above the skew effect */
        }

        /* Bird Image Positioning */
        .bird-image {
            position: absolute;
            top: 0;
            right: 0;
            max-width: 600px;
        }



        /* How it works */
        .how-it-works-section {
            background-color: #EBE9F2;
            padding: 60px 0;
        }

        /* Title styling */
        .how-it-works-section {
            background-color: #EBE9F2;
            padding: 60px 0;
        }
        .how-it-works-title {
    font-family: 'Cabin', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #31264B;
    text-transform: uppercase;
    margin-bottom: 40px;
    position: relative; /* Ensures z-index applies */
    z-index: 1; /* Brings text in front of other elements */
}

        
.how-it-works-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    height: 270px; /* Set fixed height for equal boxes */
    position: relative;
}
        .icon-container {
            width: 70px;
            height: 70px;
            background-color: #69CCA2;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
        }
        .icon-container i {
            color: #31264B;
            font-size: 30px;
        }
        .card-title {
    font-family: 'Cabin', sans-serif;
    font-size: 1.25rem; /* Slightly smaller font size for responsiveness */
    font-weight: 700;
    color: #31264B;
    margin: 15px 0 10px;
}

.card-text {
    font-family: 'Cabin', sans-serif;
    font-size: 1rem; /* Slightly smaller font size */
    color: #31264B;
    line-height: 1.5;
    margin-top: 10px;
    flex-grow: 1; /* Allow text to take up remaining space */
    overflow: hidden; /* Prevent text overflow */
    text-overflow: ellipsis; /* Add ellipsis for truncated text */
    
}
        .how-it-works-arrow {
            font-size: 32px;
            color: #948CB0;
            margin: auto;
        }
        .icons-work{
            width: 45px;
            height: 45px;
            background-color: white;
            border-radius: 100%;
        }
        @media (max-width: 767px) {
            .how-it-works-arrow {
                display: none;
            }
        }

        /* Responsive adjustments for smaller screens */
        @media (max-width: 767px) {
            /* Place the bird image on top */
            .bird-image {
                position: relative;
                display: block;
                margin: 0 auto 20px auto; /* Centered on top with space below */
                top: auto;
                right: auto;
                max-width: 250px; /* Resize for mobile */
            }
            .hero-section {
                padding-top: 20px;
                padding-bottom: 100px;
            }
            .container-content h1 {
                font-size: 1.7rem;
                text-align: center;
                line-height: 1.2;
            }
            .phero {
                font-size: 1rem;
                text-align: center;
                line-height: 1.5;
            }
           
            .review-section {
                text-align: center;
                font-size: 0.9rem;
            }
        }

        /* Adjustments for tablet screens (768px - 991px) */
        @media (min-width: 768px) and (max-width: 991px) {
            .bird-image {
                position: absolute;
                top: 20%;
                right: 50px; /* Adjust the horizontal position */
                max-width: 350px; /* Reduce the size to avoid overlap */
            }
            .hero-section {
                padding-top: 60px;
                padding-bottom: 60px;
            }
        }

        
        .customer-recommendation-section {
    background-color: #EBE9F2;
}

.card {
    border: none;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
.ctb-section{
    background-color: #EBE9F2;
    background-image: url('background-pattern.png'); /* Replace with the actual background image if available */
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    color: #31264B;
    background-color: #69CCA2;
} 

.cta-section {
    background-color: #EBE9F2;
    background-image: url('background-pattern.png'); /* Replace with the actual background image if available */
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    color: #31264B;
}

.cta-section h2 {
    font-family: 'Cabin', sans-serif;
    font-size: 1.8rem;
}

.cta-section p {
    font-family: 'Cabin', sans-serif;
    font-size: 1rem;
    color: #31264B;
}

.btn-dark {
    background-color: #31264B;
    color: white;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-dark:hover {
    background-color: #251d3a; /* Darker shade for hover effect */
}
.whychoosecss{
    margin-top: 40px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

 /* Why Choose Us Section */
 .why-choose-us-section {
            background-color: #69CCA2;
            padding: 60px;
        }
        
        .why-choose-us-section h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #31264B;
            margin-bottom: 20px;
        }

        .why-choose-us-section p {
            color: #31264B;
            font-size: 1rem;
            /* margin-bottom: 30px; */
        }

        .step-card {
        background-color: #FFFFFF;
        border-radius: 8px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
        padding: 30px 20px;
        width: 210px; /* Fixed width for consistent box sizes */
        height: 210px; /* Fixed height to ensure all cards are the same size */
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-bottom: 20px;}

        .step-card::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 50px;
            background-color: #69CCA2;
            border-radius: 50%;
            z-index: 1;
        }

        .step-number {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background-color: #FFFFFF;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
            z-index: 2;
        }
        /* .trustpilot-container a img{
    position: absolute;
    top: 112%;
    text-align: right;
    width: 200px;
} */


        .arrow {
            font-size: 2rem;
            color: #948CB0;
            /* margin: 20px; */
            margin-left: 30px;
        }

        @media (max-width: 1000px) {
            .step-card {
                min-height: 150px;
            }
            .why-choose-us-section h2 {
                font-size: 1.6rem;
            }
            .why-choose-us-section p {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 992px) {
            .step-card{
                padding: 20px 10px;
                width: 150px;
                height: 150px;
            }
            .arrow {
                display: none;
            }
            .why-choose-us-section p{
                font-size: 0.7rem;
        
            }
            .hero-section{
                padding-bottom: 150px;
            }
        }
        


        .review-section {
    font-family: Arial, sans-serif;
}

/* .review-section {
    font-family: Arial, sans-serif;
    color: #E7E3E6;
} */
.trust-pilot-widget-wrapper .trustpilot-widget {
        width: 80%; /* Adjust this value to increase the width */
        max-width: 1000px; /* Set a maximum width if needed */
        margin: auto; /* Center align the widget */
    }
   
/* Adjust height for smaller screens */

/* @media (max-width: 480px) {
    .trustpilot-container a img{
        position: absolute;
                top: 103%;
                right: 28% !important;
            }
}
@media (max-width: 390px) {
    .trustpilot-container a img{
        position: absolute;
                top: 103%;
                right: 24% !important;
            }
} */
@media (max-width: 768px) {
    .how-it-works-card {
        height: auto; /* Allow cards to grow naturally on smaller screens */
        padding: 20px;
    }
    .get-started-btn {
        display: block; /* Set to block for mobile view */
        width: 100% !important; /* Optional: Make it span full width */
        text-align: center; /* Center the text inside the button */
        margin: 10px auto; /* Add spacing and center the button */
    }
    .trustpilot-container {
    justify-content: center; /* Center horizontally */
        align-items: center; /* Center vertically */
        flex-direction: column; /* Stack content if needed */
  }
    /* .trustpilot-container a img{
        position: absolute;
                top: 103%;
                right: 31%;
            }
     */

}
@media (max-width: 642px) {
  .step-card{
    width: 300px;
    height: 40px;
    margin-bottom: 30px;}
    .why-choose-us-section p {
        font-size: 0.8rem;
    }
  }
@media (max-width: 446px) {
  .step-card{
    width: 250px;
    height: 40px;
    margin-bottom: 30px;
  }
  }
@media (max-width: 398px) {
  .step-card{
    width: 230px;
    height: 40px;
    margin-bottom: 30px;
  }
  
  }

  .get-started-btn {
    display: inline-block; /* Default inline-block for desktop */
}
/* @media (max-width: 1200px) {
    .bird-image{
        max-width: 500px;
    }
  }
@media (max-width: 992px) {
    .bird-image{
        max-width: 420px;
    }
  } */

  .homeh1 strong{
    font-size: 40px;
  }

  
  .trustpilot-container {
    display: flex;
  
    margin-top: 70px; /* Add spacing from content above */
}

.trustpilot-image {
    max-width: 200px; /* Adjust size as needed */
    height: auto;
}