
/* ==============================
   Header Styling
   ============================== */

    .sf-menu li a {
        padding: 0 20px;
    }
    
    .sf-menu li a span {
        color: #000;
    }

/* ==============================
   CTA Cards Styling
   ============================== */
.cta-cards .wpb_text_column {
    margin-top: -50px; /* Moves the text column 50px upward */
    background: rgba(255, 255, 255, 0.9); /* Semi-transparent background for readability */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 18px;
    max-width: 95%; /* Adjust width as needed */
    margin-left: auto; /* Aligns the element to the right */
    margin-right: 0;
    position: relative;
    z-index: 2;
}

.cta-cards .wpb_text_column p {
    font-size: 16px;
    line-height: 1.6;
}

.cta-cards .wpb_text_column a {
    color: #000;
    font-size: 20px;
    font-weight: 700;
}

/* Responsive adjustments for CTA cards */
@media (max-width: 768px) {
    .cta-cards .wpb_text_column {
        margin-top: 0; /* Reset for mobile */
        max-width: 100%;
        text-align: center;
    }
}

@media (min-width: 768px) {
    .cta-cards .wpb_text_column {
        min-height: 185px;
    }
}

/* Gradient variation for One Day CTA cards */
.cta-cards__oneday .wpb_text_column {
    background: linear-gradient(to bottom, #8fe7e2, #faeae1);
}

/* ==============================
   Gradient Backgrounds
   ============================== */
.gradient-pop .row-bg-wrap, 
#footer-outer,
.btn-gradient__orange {
    background: radial-gradient(circle at center, #ffd858 20%, #ff914d 80%);
}

.bg-gradient__orange--linear .row-bg.using-bg-color {
    background: linear-gradient(to right, #ffd858, #ff914d);
}

.bg-gradient__yellow--linear .row-bg.using-bg-color,
.bg-gradient__yellow--linear.full-width-background::before, 
.bg-gradient__yellow--linear--panel {
    background: linear-gradient(to right, #ffd630, #ffeb97 );
}


.bg-gradient__blue--linear .row-bg.using-bg-color,
.bg-gradient__blue--linear .row-bg.using-image,
.bg-gradient__blue--linear.full-width-background::before {
    background: linear-gradient(to right, #97eade, #b4c5e0 );
}

.bg-gradient__blue-alt--linear .row-bg.using-bg-color,
.bg-gradient__blue-alt--linear .row-bg.using-image,
.bg-gradient__blue-alt--linear.full-width-background::before {
    background: linear-gradient(to right, #68d6ce, #4cb5e6);
}
 
 
.bg-gradient__blue--ring .row-bg.using-bg-color,
.bg-gradient__blue--ring.full-width-background::before {
    background: linear-gradient(to right, #97eade, #b4c5e0 );
}

.bg-gradient__blue--ring .row-bg.using-bg-color::after {
    content: "";
    position: absolute;
    top: -20px; /* Moves it up slightly */
    right: -20px; /* Moves it slightly off-screen */
    width: 300px; /* Adjust as needed */
    height: 300px; /* Adjust as needed */
    background: url(../img/blue_ring.png) no-repeat;
    background-size: contain;
    pointer-events: none; /* Prevents it from blocking clicks */
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
}

.bg-gradient__yellow--linear-vert {
    background: linear-gradient(to bottom, #ffd630, #ffeb97 );
}


.bg-gradient__red--linear .row-bg.using-bg-color,
.bg-gradient__red--linear.full-width-background::before {
    background: linear-gradient(to right, #ff6c57, #ff8757);
}

.bg-gradient__pink--linear .row-bg.using-bg-color,
.bg-gradient__pink--linear.full-width-background::before {
    background: linear-gradient(to right, #ffdff8, #fffbfb );
}

.bg-red .row-bg.using-bg-color,
.bg-red.full-width-background::before {
    background: #ff6c57;
}

.bg-pink--flat {
    background: #ffada2;
}


.btn-gradient__blue {
    background: linear-gradient(to right, #cdffd5, #8fe7e2);
} 

.btn-gradient__blue-alt {
    background: linear-gradient(to right, #68d6ce, #4cb5e6);
} 



.btn-gradient__yellow {
    background: linear-gradient(to right, #ffd630, #ffeb97);
} 


.btn-gradient__blue span, .btn-gradient__orange span {
    color: #000;
}

.bg-gradient__yellow--linear a{
    color: #000;
    font-weight: bold;
} 


/* Bordered Backgrounds */

.bordered__yellow .row-bg.using-bg-color,
.bordered__yellow.full-width-background::before {
    border: 5px solid #ffd630;
}

.nectar-button.btn-gradient__blue--border {
    display: inline-block;
    padding: 2px !important; /* Adjust for desired button size */
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    color: #000; /* Text color */
    background: linear-gradient(90deg, #cefedc 0%, #98b9f6 100%);
    border-radius: 30px;
    border: 2px solid #ffffff; /* Subtle white border */
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

/* Soft shadow for depth */
.btn-gradient__blue--border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: inherit;
    opacity: 0.5;
    transition: opacity 0.3s ease-in-out;
}

/* Hover effect */
.btn-gradient__blue--border:hover {
    color: #000;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

/* Click effect */
.btn-gradient__blue--border:active {
    transform: scale(0.95);
}

.btn-gradient__blue--border span {
    color: #000;
    background-color: #fff;
    display: block;
    padding: 12px 18px;
    border-radius: 30px;
}

/* ==============================
   Background utils
   ============================== */

.full-width-background {
    position: relative;
}

.full-width-background::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100vw; /* Makes the background span the full viewport width */
    height: 100%;
    background: inherit; /* Inherits background set in WPBakery */
    z-index: -1;
}

.left-expand::before {
    left: auto;
    right: 0; /* Extend to the left instead */
}

.right-expand::before {
    left: 0;
}

.rounded-l, .rounded-l:before {
    border-radius: 100px 0 0 100px;
}

.rounded-r, .rounded-r:before  {
    border-radius: 0 100px 100px 0;
}

.rounded-all {
    border-radius: 50px;
}

/* Button styling */

.wpb-project-btn.bg-red {
    background: #ff6c57;
    color: #000;
}

.nectar-button.btn-orange {
    background: #ffa857;
    color: #000;
}



/* Gradient heading styling */
.gradient-pop h2 {
    color: #fff;
    font-size: 93px;
    line-height: 90px;
    margin: 0 auto 50px auto;
    max-width: 700px;
    text-transform: uppercase;
}

/* Gradient button styling */
.gradient-pop a {
    border: 4px solid #fff;
    border-radius: 100px;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    padding: 20px 30px;
    text-transform: uppercase;
}

/* ==============================
   Quote Styling
   ============================== */
.quote-titles h3 {
    align-items: center; /* Aligns the text properly */
    display: flex;
    font-size: 28px;
    gap: 10px; /* Adds spacing between the icon and text */
}

.quote-titles h3::before {
    background-image: url('../img/quotes.svg'); /* Path relative to theme */
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
    display: inline-block;
    height: 47px;
    width: 71px; /* Adjust as needed */
}


/* ==============================
   Title Underline Styling
   ============================== */
.vc_custom_heading.title-underline {
    padding-bottom: 25px;
}

.vc_custom_heading.title-underline span {
    position: relative;
}

.vc_custom_heading.title-underline span::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px; /* Adjust as needed */
    width: 100%;
    height: 10px; /* Adjust as needed */
    background-image: url('../img/underline.svg'); /* Path relative to theme */
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateX(-50%);
}

.vc_custom_heading.title-underline.title-underline--white span::after {
    background-image: url('../img/underline-white.svg'); /* Path relative to theme */
}

.vc_custom_heading.title-underline.title-underline--blue span::after {
    background-image: url('../img/underline-blue.svg'); /* Path relative to theme */
}

.bg-image--logo .row-bg-wrap {
    background-image: url('../img/logo_line.svg'); /* Path relative to theme */
    background-repeat: no-repeat;
    background-position: center left;
    background-size: auto 80%;
}

/* ==============================
   Footer Styling
   ============================== */
.esomar-footer .wpcf7 p {
    color: #000;
    font-size: 18px;
}

.esomar-footer .wpcf7 .wpcf7-email {
    background: none;
    border-bottom: 1px solid #000;
    font-size: 18px;
}

/* Footer submit button styling */
#footer-outer #footer-widgets .col .wpcf7 input[type="submit"] {
    background: #fff !important;
    color: #000;
    font-size: 18px;
}

/* Footer menu layout */
#footer-outer #footer-widgets .col .menu {
    display: flex;
    justify-content: center;
}

#footer-outer #footer-widgets .col .menu li {
    display: flex;
    position: relative;
}

#footer-outer #footer-widgets .col .menu li::after {
    color: #000;
    content: "|";
}

#footer-outer #footer-widgets .col .menu li:last-child::after {
    content: "";
}

#footer-outer #footer-widgets .col .menu li:first-child {
    padding-top: 5px !important;
}

#footer-outer #footer-widgets .col .menu li a {
    color: #000;
    font-size: 18px;
    padding: 0 6px !important;
}

/* Footer Social Links */

#footer-outer #footer-widgets .row {
    align-items: flex-start; /* Ensures they align at the top by default */
    display: flex;
    justify-content: space-between; /* Keeps columns spaced out */
}

#footer-outer #footer-widgets .row .col:last-child {
    align-self: flex-end;
}

.social-links { 
    display: flex; 
    gap: 20px; 
    justify-content: flex-end;
    list-style: none; 
    padding: 0; 
}

.social-links li { 
    display: inline-block; 
}

#footer-outer #footer-widgets .col ul.social-links li:first-child {
    padding-top: 4px !important;
} 

.social-links a { 
    display: block; 
    height: 40px; 
    width: 40px; 
}

.social-links svg { 
    height: 40px; 
    width: 40px; 
}


@media (max-width: 768px) {
    #footer-outer #footer-widgets .row {
        flex-direction: column; /* Stacks items vertically */
        align-items: center; /* Centers them if desired */
    }

    #footer-outer #footer-widgets .col .menu li a {
        font-size: 14px;
    }
}



/* Utils */

.semi-opaque {
    opacity: 0.5 !important;
}

.how-it-works-bg .row-bg {
    background-size: 500px auto !important;
}

@media (max-width: 768px) {
    .how-it-works-bg .row-bg {
        background: none !important;
    }
}

.row-shadow .row-bg-wrap {
    -webkit-box-shadow: 0px -9px 10px 0px rgba(0,0,0,0.02);
    -moz-box-shadow: 0px -9px 10px 0px rgba(0,0,0,0.02);
    box-shadow: 0px -9px 10px 0px rgba(0,0,0,0.02);
}



@media (min-width: 1024px) {
    .blue-border-grid .vc_col-sm-6:first-child{
        border-right: 1px solid #6cd6ce;
    }

    .blue-border-grid .vc_col-sm-6:last-child{
        border-left: 1px solid #6cd6ce;
    }

    
    .image-box-overlap .img-with-aniamtion-wrap {
        position: absolute;
        right: -70px;
        z-index: 1;
    }
}



/* Slick slider */


/* Slick Carousel Arrows */

.slick-initialized .slick-slide {
    margin: 0 10px;
}
.slick-initialized .slick-prev, .slick-initialized .slick-next {
    background-color: #fff;
    color: #98c0c0;
    border: none;
    padding: 10px 15px;
    position: absolute;
    top: 25%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 20px;
    z-index: 100;
    border-radius: 50%;
    border: 1px solid #98c0c0;
}

.slick-initialized .slick-prev { left: -20px; }
.slick-initialized .slick-next { right: -20px; }

.slick-initialized .slick-prev:hover, .slick-initialized .slick-next:hover {
    background-color: #555;
}


/* Hero banner */

@media (min-width: 1024px) {
    .hero-banner > .col {
        flex: 1;
        align-items: center;
        min-height: 275px;
    }
}