html {
    scroll-behavior: smooth;
}

/* Main Banner */

.banner-content-block {
    gap: 30px;
    background-color: var(--bold-blue);
}

.banner-content {
    flex: 0 0 48%;
	padding: 45px 0 65px 55px;
}

.banner-image img {
	border-radius: 0 35px 35px 0 !important;
}

.banner-content h4, 
.banner-content h4 a,
.banner-content h1,
.banner-content p {
	color: #fff !important;
}

.search-title {
	font-weight: 500;
	margin-top: 20px;
	font-size: 18px;
}

.banner-content img.review-rating {
	margin-top: 40px !important;
	margin-bottom: 0 !important;
}

.banner-image a {
	right: 0;
	bottom: 0;
	border: 0;
	border-top: 6px solid #fff;
	border-left: 6px solid #fff;
}

.down-arrow {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #fff;
    border: 5px solid var(--bold-blue);
    position: absolute;
    left: calc(50% - 28px);
    bottom: -28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.down-arrow img {
    width: 16px;
    transform: rotate(135deg);
}

.main-banner form button,
.main-banner .gform_footer{
    display: none !important;
}

.main-banner form {
    max-width: 510px;
}

.main-banner form .search-field input[type=text]::placeholder {
	color: #7988eb !important;
}

.main-banner form .search-field input[type=text] {
    border-radius: 40px !important;
    padding: 12px 25px !important;
}

.main-banner form .search-field input[type=text]:focus-visible {
	outline: none !important;
}

.main-banner form .search-field {
	position: relative;
}

.main-banner form .search-field::after {
    content: "";
    background: url('/wp-content/uploads/2025/12/Search-Bar-Icon.png') no-repeat center center;
    background-size: 22px;
    position: absolute;
    right: 20px;
    width: 26px;
    height: 26px;
	top: 12px;
    pointer-events: none;
}

/* Faq Section */

section.faq-section {
    padding: 3em 0 1em;
}

.faq-section .section-heading-block {
	text-align: center;
}

.faq-section .section-heading-block .section-heading {
    font-weight: 600;
}

.faq-section .section-heading-block a {
    color: var(--theme-green);
    font-weight: 600;
}

.faq-section .section-heading-block .section-subtitle {
    margin-top: 30px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
    padding: 40px;
    border-radius: 40px;
    background: var(--bg-light-gray);
}

.faq-card {
    border-radius: 30px 30px 24px 30px;
    overflow: hidden;
}

.image-section {
    position: relative;
    width: 100%;
    height: 180px;
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.icon-overlay {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.card-content {
    background: var(--bold-blue);
    padding: 50px 20px 30px;
    min-height: 120px;
	position: relative;
}

.faq-card:nth-child(4) .card-content,
.faq-card:nth-child(5) .card-content,
.faq-card:nth-child(6) .card-content {
    background: #54597f;
}

.card-content h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

.scroll-button {
    width: 60px;
    height: auto;
    position: absolute;
    bottom: 0;
    right: -1px;
    border-top: 5px solid #fff;
    border-left: 5px solid #fff;
    border-radius: 17px 0 0 0;
	cursor: pointer;
}

.scroll-button:hover img {
	content: url('/wp-content/uploads/2025/11/Down-Button-Hover.png');
}

/* Accordian Container */

.accordian-container {
    max-width: 980px;
    margin: 50px auto;
}

.accordian-container .header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.accordian-container .header .icon {
    width: 70px;
    height: 70px;
    background: #4a5a8a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.accordian-container .header h2 {
    font-size: 32px;
    font-weight: 600;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item .question {
    background: #54597f;
    color: white;
    padding: 10px 10px 10px 30px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item.active .question {
    background: var(--bold-blue);
	position: relative;
	z-index: 1;
}

.faq-item .question .toggle-btn {
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
	border: 3px solid var(--theme-green);
}

.faq-item.active .toggle-btn {
    background: #00c49d;
    border: 3px solid #fff;
}

.faq-item .question .toggle-btn img {
    width: 18px;
    height: 18px;
	display: block;
}

.faq-item .answer {
    display: none;
    overflow: hidden;
    background: var(--bg-light-gray);
    border-radius: 0 0 25px 25px;
    margin-top: -15px;
    padding: 0 30px;
}

.faq-item.active .answer {
    max-height: 500px;
	padding: 40px 30px 30px;
}

.accordian-container .btn-center-block {
    margin-top: 60px;
}

.faq-divider {
    border-top: 2px dashed #4f5a7f;
    margin: 40px 0;
    width: 100%;
}

@media (max-width: 767px) {
    .banner-content-block {
        flex-direction: column;
        padding: 20px 40px 16px;
        gap: 0;
        border-radius: 0;
    }

    .main-banner>.container.full-width {
        padding-left: 0;
        padding-right: 0;
    }

    .banner-content {
        text-align: center;
		padding: 0;
    }

    .banner-content h4 {
        font-size: 0.875rem;
        justify-content: center;
        margin-bottom: 0;
    }

    .banner-content h1 {
        font-size: 2.5rem;
        margin: 10px 0 0;
        line-height: 1.2em;
    }

    .banner-content img.review-rating {
        margin: 30px auto 20px !important;
    }

    .banner-image {
        left: -40px;
        width: calc(100% + 80px);
    }

    .banner-image img {
        border-radius: 0 !important;
    }

    .banner-image a {
        border-bottom-right-radius: 0;
        border-top-left-radius: 25px;
    }
	
	.gform_wrapper {
		height: auto !important;
	}
	
	.main-banner form {
		max-width: 100%;
		width: 100%;
	}

	.main-banner form .search-field input[type=text] {
		padding: 10px 18px !important;
		font-size: 14px !important;
		border-radius: 35px !important;
	}

	.main-banner form .search-field::after {
		right: 15px;
		top: 16px;
		width: 20px;
		height: 20px;
		background-size: 18px;
	}

	.main-banner form .search-field input[type=text]::placeholder {
		font-size: 14px;
	}
	
/* 	Faq Section */
	
	.faq-section .container.full-width {
		padding-left: 15px;
		padding-right: 15px;
	}
	
	.faq-section .section-heading-block .section-heading {
        font-size: 1.75rem;
        text-wrap: balance;
        margin-top: 15px;
	}
	
	.faq-grid {
		grid-template-columns: 1fr;
		padding: 20px;
		gap: 20px;
	}

	.image-section {
		height: 140px;
	}

	.icon-overlay {
		width: 70px;
		height: 70px;
		bottom: -35px;
	}

	.card-content {
		padding: 35px 15px 20px;
		min-height: auto;
	}

	.card-content h3 {
		font-size: 1rem;
	}

	.scroll-button {
		width: 50px;
	}
	
/* 	Accordian Container */
	
	.accordian-container {
		margin: 30px 10px;
	}
	
	.accordian-container .header {
		margin-bottom: 20px;
	}

	.accordian-container .header .icon {
		width: 50px;
		height: 50px;
	}

	.accordian-container .header h2 {
		font-size: 24px;
		line-height: 1.2;
	}
	
	.faq-item .question {
		padding: 10px 15px 10px 20px;
		font-size: 0.95rem;
	}

	.faq-item .question .toggle-btn {
		width: 30px;
		height: 30px;
	}

	.faq-item .question .toggle-btn img {
		width: 16px;
		height: 16px;
	}

	.faq-item .answer,
	.faq-item.active .answer {
		padding: 30px 20px 20px;
	}

	.faq-divider {
		margin: 30px 0;
	}

	.accordian-container .btn-center-block {
		margin-top: 40px;
	}

}