/* ############ */
/* Hero Section */
/* ############ */

.hero-section {
    background-color: var(--clr-primary-30);
    height: 52.5vh;
    border-radius: 35%;
    margin-bottom: 3%;
    max-width: 100%;
}

.hero-section-wib {
    position: relative; /* Ensure child elements can be positioned absolutely */
    background-image: linear-gradient(to right, var(--clr-light-greem-100), var(--clr-dark-green-100)); /* Background gradient */
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.3); /* Bottom shadow */
    height: 50vh;
    overflow: hidden;
}

.svg-container img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    opacity: 0.5;
}

.gorilla img{
    z-index: 2;
    opacity: 1;
    top: 30px;
}


.hero-title {
    position: absolute;
    max-width: 55%;
    left: 5%;
    top: 10%;
    color: white;
    line-height: 1.8;
    letter-spacing: 2px;
    z-index: 2;
}
.highlight {
    color: var(--clr-accent-100);
}


@media (max-width: 675px) {
    .gorilla img{
        display: none; /* Hide gorilla */
    }

}

/* Media query for screen widths 650px and above */
@media (min-width: 675px) {
    .svg-container img {
        left: 15%; /* Move all images 20% left */
    }

    .hero-section-wib {
        border-radius: 0 0 40px 40px;
    }

    .gorilla img {
        left: 20%;
    }
}

@media (min-width: 1000px) {
    .hero-title{
        left: 14%;
    }
}



/* ####################################*/
/* ##########Hero Section ended########*/
/* Matched betting explanation started */
/* ################################### */

.first-two-sections {
    background-color: #e9eff2;
    padding-bottom: 5%;
}

.opening-intro {
    padding: 0 10%;
}
.opening-intro h1 {
    padding-bottom: 2.5%;
}

.brief-explanation {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between items */
    padding-bottom: 5%;
}

.brief-description-mb {
    padding: 0 10%;
}

.brief-explanation-content img{
    border-radius: 0 10% 10% 0;
    width: 85%;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3), /* Bottom shadow */
                5px -5px 5px rgba(0, 0, 0, 0.3); /* Top shadow */

}

.slanted-text {
    font-style: italic; /* Makes the text slanted */
}



@media (min-width: 800px) {
    .brief-explanation {
        flex-direction: row;
        align-items: center;
        gap: 5%;
        padding: 0 10%;
        padding-bottom: 5%;
    }
    .brief-explanation-content{
        max-width: 50%;
    }
    .brief-explanation-content img{
        width: 100%;
    }
    .brief-explanation-content p{
        font-size: .7rem;
    }
    .brief-explanation-content h2 {
        font-size: clamp(1rem, 3vw, 2rem);
    }
    .brief-description-mb {
        padding: 0;
    }
}


@media (min-width: 1050px) {
    .brief-explanation-content p{
        font-size: .8rem;
    }
}


/* ####################################*/
/* ########## Part two ################*/


.expert-button {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between items */
    padding: 5%;
    background-color: pink;
    margin: 0 5%;
    border-radius: 20px;
    background-image: radial-gradient(circle, var(--clr-light-greem-100), var(--clr-dark-green-100));
    color: white;
    box-shadow: inset 0 0 0 1px #60ba8d;
}

.background-glowing {
    position: absolute;
    width: 100%;
    height: auto;
    opacity: 0.5;
    z-index: 1;
    left: 20%;
    top: 30%;
}

.expert-button-flex2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px; /* Space between items */
    margin-inline: auto;
    z-index: 2;
}

.get-started-btn2 img{
    width: 120px;
    height: auto;
    color: var(--clr-green-100);
}

.get-started-btn-gamble {
    width: 120px;
}


@media (min-width: 450px) {
    .expert-button {
        flex-direction: row;
        align-items: center;
        gap: 5%;
        padding: 2%;
    }
    
}

/* ####################################*/
/* ##########Matched Betting explained########*/
/* ########Heads or tails example###### */
/* ################################### */

.heads-or-tails {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #091c2e;
    width: 100%;
}

.heads-or-tails-phone {
    width: 100%;
    max-width: 400px;
}

.heads-or-tails-laptop{
    display: none;
    width: 100%;
    max-width: 1100px;
}




@media (min-width: 600px) {
    .heads-or-tails-phone {
        display: none;
    }
    
    .heads-or-tails-laptop{
        display: block;
    }
    
}





/* ####################################*/
/* ##########Heads or tails ended########*/
/* ########     What you need    ###### */
/* ################################### */

.to-start-mb {
    background-color: #e9eff2;
    max-width: 100%;
    padding-bottom: 5%;
    padding-top: 5%;
}


.to-start-heading {
    padding: 3%;
    padding-top: 0;
    text-align: center;
}

.to-start-icons {
    display: flex;
    flex-direction: row;
    max-width: 100%;
    justify-content: space-evenly;
    background-color: white;
    margin: 0 5%;
    border-radius: 20px;
    align-items: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);

}

.to-start-icons-1 {
    display: flex;
    flex-direction: column;
    gap: 5px;
}


.to-start-icons-flex h6 {
    text-align: center;
    font-weight: bold;
    color: rgb(9, 107, 129);
}

.to-start-icons-flex img {
    height: 100px;
    width: auto;
}
.to-start-icons-flex {
    padding: 5% 0;
}


.need-help-button {
    display: flex;
    justify-content: center;
    gap: 5%;
    flex-direction: row; /* Stack items vertically on small screens */
    align-items: flex-end; /* Center items horizontally */
    padding: 2.5%;
}

.need-help-button a {
    width: 200px; /* Set fixed width */
}

.need-help-button h4{
    font-weight: bold;
}


@media (max-width: 600px) {
    .to-start-icons {
        flex-direction: column;
        margin: 0 25%;
    }
    
}

@media (max-width: 500px) {
    .need-help-button {
        flex-direction: column;
        align-items: center;
    }

    
}





.what-you-need {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    gap: 20px; /* Space between items */
    padding: 1%;
    margin: 0 5%;
    border-radius: 20px;
    background-image: radial-gradient(circle, var(--clr-light-greem-100), var(--clr-dark-green-100));
    color: white;
    box-shadow: inset 0 0 0 1px #60ba8d;
}

.background-glowing2 {
    position: absolute;
    width: 100%;
    height: auto;
    opacity: 0.5;
    z-index: 1;
    left: 20%;
    top: 30%;
}

.what-you-need-flex2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px; /* Space between items */
    margin-inline: auto;
    z-index: 2;
}

.what-you-need-flex {
    max-width: 75%;
    padding: 0 5%;
}

.what-you-need-flex h6 {
    line-height: 2;
}

.get-help-btn img{
    width: 100%;
    height: auto;
    color: var(--clr-green-100);
}



.get-help-btn h4 {
    margin: 0;
}


@media (max-width: 700px) {
    .what-you-need {
        display: none;
    }
    
}




/* ####################################*/
/* ##########what you need end########*/
/* ########    offer types    ###### */
/* ################################### */



.offer-types {
    --offer-feature-margin: 2rem;
    --offer-img-margin: 2rem;
    --offer-feature-height: 300px;
    background: linear-gradient(to bottom, var(--clr-dark-green-100), var(--clr-light-greem-100));
    color: white;
    max-width: 100%;
}

.offer-types-heading {
    text-align: center;
    padding: 5% 10%;
}
.offer-types-heading h1{
    padding-bottom: 2%;
}



.offer-types-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
    margin-inline: auto;
    width: 100%;
    padding: 0;
    padding: 0 5%;
    padding-bottom: 3%;
    max-width: 1800px;
}

.offer-row {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    position: relative;
    width: 100%;
}

/* Zig-zag Layout for Even Rows */
.offer-row:nth-child(even) {
    flex-direction: row-reverse; /* Reverse the order for even rows */
}

/* Zig-zag Layout for Odd Rows (Default Behavior) */
.offer-row:nth-child(odd) {
    flex-direction: row; /* Default order for odd rows */
}




.offer-feature {
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: column;
    width: 100%;
    
}

.offer-img-container {
    width: 70%;
}

.offer-img-container img{
    border-radius: 10%;
}




.offer-img-container-sign-up {
    position: relative; /* Set the parent as a positioning context */
    height: auto; /* Maintain aspect ratio */
}



.offer-img-container-ab {
    position: absolute; /* Positioning context is the parent */
    top: 0; /* Align to the top of the parent */
    left: 0; /* Align to the left of the parent */
    width: 100%; /* Ensures child elements are relative to the parent */
    height: 100%; /* Ensures child elements are relative to the parent */
    pointer-events: none; /* Optional: Prevent blocking interactions with the parent image */
}

.offer-img-container-ab img:first-child {
    position: absolute;
    width: 25%; /* Adjust size as needed */
    left: 15%;
    top: -10%; /* Moves the image up by half its height */
    transform: rotate(-20deg);
}

.offer-img-container-ab img:last-child {
    position: absolute;
    width: 25%; /* Adjust size as needed */
    height: auto;
    right: 10%;
    bottom: -7.5%; /* Moves the image up by half its height */
    transform: rotate(-20deg);
}





.offer-feature-content {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    height: 100%;
    background-color: var(--clr-navy-100);
    border-radius: 32px;
    border: 3px solid; /* Sets the border thickness and style */
    border-color: #096b81; 
}

.offer-feature-learn-more {
    margin-top: auto; /* Pushes this to the bottom of the container */
}




.offer-feature-learn-more {
    color: var(--clr-green-100);
    text-decoration: none;
    font-size: var(--fs-heading-small);
    margin-top: auto;
}

.offer-feature-learn-more::after {
    content: '\2192';
    margin-left: 0.5ch;
}



.get-help-btn-offer-types {
    padding-bottom: 5%;
    display: flex;
    justify-content: center;  /* Centers horizontally */
    align-items: center;
}

.get-started-btn-offer {
    background: linear-gradient(to right, var(--clr-dark-green-100), var(--clr-light-greem-100), var(--clr-dark-green-100));
}
.get-started-btn-offer:hover {
    opacity: 0.7; /* Reduce opacity on hover */
}




@media (max-width: 900px) {
    .offer-row {
        flex-direction: column !important;
        gap: 4rem;
    }

    .offer-img-container {
        width: 100%;
        padding: 0 15%;
    }

    .offer-types-container {
        padding: 0;
        padding-bottom: 3%;
    }

    .offer-right {
        padding-left: 7.5%;
    }

    .offer-left {
        padding-right: 7.5%;
    }

    .offer-left1 {
        border-bottom-left-radius: 0;
        border-top-left-radius: 0;
    }

    .offer-right1 {
        border-bottom-right-radius: 0;
        border-top-right-radius: 0;
    }
    
}


@media (min-width: 1250px) {
    .offer-feature-p{
        font-size: 1.2rem;
    }
    
}



/* ####################################*/
/* ##########what you need end########*/
/* ########    Pricing    ###### */
/* ################################### */


.pricing-parent-container {
    position: relative;
    margin-bottom: var(--pricing-margin-bottom);

}

.pricing-background-container {
    background-color: #e9eff2;
    padding-bottom: 8rem;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.choose-subscription-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    align-items: stretch;
}

.heading-primary {
    text-align: left;
    padding-left: 0;
}

.paragraph-primary {}

/* Individual plan card */
.plan-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #60ba8d;
    padding: 20px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    margin-bottom: 20px;
    flex: 1;
    min-width: 250px;
    background-color: #eaf5f5;
}


.plan-card-head img{
    position: absolute;
    top: 0; /* Align to the top of the parent */
    right: 0; /* Align to the right of the parent */
    width: 20%; /* Adjust the size as needed */
    height: auto; /* Maintain aspect ratio */
}


.premium-subscription {
    background: radial-gradient(circle, var(--clr-primary-100), var(--clr-navy-100));
    color: white;
}

.premium-subscription img{
    filter: brightness(1.5); 
}




.plan-card:hover {
    transform: translateY(-5px);
}

.plan-card-head {
    height: 300px;
    padding-block: 1rem;
    display: flex;
    flex-direction: column;
    position: relative;
}

.plan-card-head h3{
 padding-bottom: 2rem;
}


/* Plan price text */
.plan-price {
    font-size: 32px;
    font-weight: var(--fw-bold);
    margin: 10px 0;
}

.plan-price-frequency {
    font-size: var(--fs-body);
    font-weight: var(--fw-semi-bold);
}

.plan-billing-frequency {
    color: var(--clr-black-75);
    font-weight: var(--fw-light);
}

/* Select Plan button */
.select-plan-button {
    padding: 10px 20px;
    background-color: var(--clr-black-100);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px;
    margin-bottom: 15px;
    display: inline-block;
    width: 100%;
    text-decoration: none;
}

.select-plan-button[data-type='inverted'] {
    background-color: white;
    color: var(--clr-black-100);
    border: 1px solid var(--clr-black-100);
    box-sizing: border-box; /* Ensures border doesn't add extra space */
}

/* Hover effect for Select Plan button */
.select-plan-button:hover {
    background-color: var(--clr-black-50);
}

.select-plan-button[data-type='inverted']:hover {
    border: none;
    color: white;
}

/* Push the footer (buttons) to the bottom */
.plan-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Features list inside the plan */
.plan-features-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 8px;
    font-size: 14px;
}

/* Individual feature in the list */
.plan-features-list > li {
    margin-bottom: 8%;
    font-size: 16px;
    color: var(--clr-black-100);
    margin-left: 12px;
}



/* Icon for each feature */
.plan-features-list li i::before {
    margin-right: 8px;
    color: darkgreen;
    font-weight: bold;
}

.plan-features-extension {

}

.premium-feature-list li{
    color: white;
}

/* Toggle buttons for Monthly/Annual billing */
.billing-toggle {
    z-index: 5;
    margin: 20px 0 20px 24px;
    display: flex;
    justify-content: center;
}

.billing-toggle button {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    background-color: #ddd;
    border: 1px solid #ccc;
    margin-right: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Active billing button */
.billing-toggle button.active {
    background-color: var(--clr-primary-100);
    color: white;
}

/* Hover effect for billing toggle buttons */
.billing-toggle button:hover {
    background-color: var(--clr-primary-40);
    color: white;
}

/* PayPal button container */
.paypal-button-container {
    margin-top: 10px;
}

/* Billing sections (Monthly or Annually) */
.billing-section {
    display: none;
}

/* Show active billing section */
.billing-section.active {
    display: block;
}






/* RESPONSIVE DESIGN */

/* On larger screens, make all plan cards the same size */
@media (min-width: 768px) {
    .plan-card {
        width: 30%; /* Display three plans side by side */
    }
}

.pricing-grey-oval-divider {
    position: absolute;
    bottom: calc(-1 * var(--pricing-margin-bottom));
    z-index: -10;
}

.pricing-glowing-dots-container {
    position: absolute;
    top: 15%;
    left: 50px;
    opacity: 0.5;
    width: 100%;
    min-width: 1000px;
    height: 85%;
    pointer-events: none;
    z-index: -1;
    background-image: url("../../images/landing-page/HomepageSVG-05.svg");
    background-repeat: repeat-y; /* Repeat vertically */
    background-size: auto auto; /* Adjust size if necessary */
    background-position: center; /* Center dots horizontally */

}




/* ####################################*/
/* ########## Pricing end########*/
/* ########    ###### */
/* ################################### */

.free-trial-reinforce {
    background-color: var(--clr-dark-green-100);
    color: white;
    position: relative;
    overflow: hidden;
}



.background-glowing-free-trial img {
    position: absolute; /* Makes the image fixed to the viewport */
    width: 100%; /* Full viewport height */
    opacity: 0.5;
    object-fit: cover; /* Ensures the image scales properly to fill the container */
    pointer-events: none;
    z-index: 1;
    transform: rotate(-90deg); /* Rotates and moves the element */
    top: 30%;
    left: 35%;
    filter: brightness(1.5);
}



.free-trial-reinforce2 {
    position: relative; /* Keeps child elements layered correctly */
    z-index: 2; /* Places it above the glowing dots */
}



.free-trial-heading {
    padding: 4% 10%;
    padding-top: 5%;
}
.free-trial-heading h1{
    padding-bottom: 2%;
}



.free-trial-images {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding-left: 9%;
}

.free-trial-img-laptop {
    width: 100%;
    height: auto;
    max-width: 1600px;
}

.free-trial-img-phone {
    display: none;
    width: 100%;
    max-width: 550px;
}

.free-trial-summary {
    padding: 0 10%;
    padding-top: 4%;
}

.get-help-free-trial {
    padding-top: 5%;
}

@media (max-width: 630px) {
    .free-trial-img-laptop {
        display: none;
    }

    .free-trial-img-phone {
        display: block;
    }

    .background-glowing-free-trial img {
        top: 16%;
        left: 35%;
    }

}




/* ####################################*/
/* ########## FAQs ############# */
/* ##########      ############# */
/* ################################### */

.faq-container-main {
    background-color: var(--clr-primary-20);
}

.faq-container {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 5% 0;
    padding-top: 2%;
}
.faq-item {
    max-width: 70%;
}

.heading-small {
    font-weight: var(--fw-light);
    padding-top: 5%;
    font-size: 2.5rem;
}

@media (max-width: 500px) {
    .faq-item {
        max-width: 90%;
    }

}