/*==================================================
  REBIRTH FOUNDATION
  GOOGLE ADS LANDING PAGE
==================================================*/

/*==========================
Google Font
==========================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==========================
Reset
==========================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    background: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    transition: .4s;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

button {
    border: none;
    outline: none;
}

input,
textarea,
select {
    outline: none;
    box-shadow: none !important;
}

/*==========================
Typography
==========================*/

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #1b1b1b;
    font-weight: 700;
    line-height: 1.3;
}

p {
    color: #666;
    margin-bottom: 18px;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-divider {
    width: 90px;
    height: 4px;
    background: #2d8f64;
    border-radius: 50px;
    margin: 18px auto 0;
}

/*==========================
Buttons
==========================*/

.btn {
    transition: .35s;
}

.hero-btn-primary,
.submit-btn,
.enquire-btn,
.call-btn-header {

    background: #2d8f64;
    color: #fff;
    border-radius: 50px;
    padding: 15px 36px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    border: 2px solid #2d8f64;

}

.hero-btn-primary:hover,
.submit-btn:hover,
.enquire-btn:hover,
.call-btn-header:hover {

    background: #22714f;
    color: #fff;
    border-color: #22714f;

}

.hero-btn-outline {

    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50px;
    padding: 15px 36px;
    font-weight: 600;

}

.hero-btn-outline:hover {

    background: #fff;
    color: #2d8f64;

}

/*==========================
HEADER
==========================*/

.main-header {

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 10px 0;
    background-color: white;

}

.header-wrapper {

    display: flex;
    align-items: center;
    justify-content: space-between;

}

.logo-area img {

    max-height: 70px;

}

.call-btn-header i {

    margin-right: 8px;

}

/*==========================
HERO
==========================*/

.hero-section {

    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: url("../images/slider.jpg") center center;
    background-size: cover;
    padding: 150px 0px 50px;

}

.hero-overlay {

    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .65);

}

.hero-content {

    position: relative;
    z-index: 10;
    color: #fff;

}

.hero-title {

    font-size: 58px;
    color: #fff;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 25px;

}

.hero-subtitle {

    color: #f5f5f5;
    font-size: 21px;
    max-width: 800px;
    margin: 0 auto 35px;

}

.hero-buttons {

    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 35px;

}

.hero-badge {

    display: inline-block;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 500;
    backdrop-filter: blur(8px);

}

/*==========================
Common Form Styling
==========================*/

.form-control {

    height: 58px;
    border-radius: 12px;
    border: 1px solid #ddd;
    padding-left: 20px;
    font-size: 15px;

}

textarea.form-control {

    height: auto;
    padding-top: 18px;

}

.form-control:focus {

    border-color: #2d8f64;

}

/*==========================
Utilities
==========================*/

.bg-light {

    background: #f8fbfa !important;

}

.text-center {

    text-align: center;

}

.shadow-lg {

    box-shadow: 0 18px 45px rgba(0, 0, 0, .08) !important;

}

.rounded-4 {

    border-radius: 20px !important;

}

/*==========================
Animations
==========================*/

.hero-content {

    animation: fadeUp 1s ease;

}

@keyframes fadeUp {

    from {

        opacity: 0;
        transform: translateY(40px);

    }

    to {

        opacity: 1;
        transform: translateY(0);

    }

}

/*==========================
Responsive
==========================*/

@media(max-width:1200px) {

    .hero-title {

        font-size: 48px;

    }

}

@media(max-width:991px) {

    .section-padding {

        padding: 80px 0;

    }

    .hero-title {

        font-size: 42px;

    }

    .hero-subtitle {

        font-size: 18px;

    }

    .logo-area img {

        max-height: 60px;

    }

}

@media(max-width:767px) {

    .main-header {

        padding: 15px 0;

    }

    .hero-section {

        padding: 120px 0 80px;

        min-height: auto;

    }

    .hero-title {

        font-size: 34px;

    }

    .hero-subtitle {

        font-size: 17px;

    }

    .hero-buttons {

        flex-direction: column;

    }

    .hero-buttons .btn {

        width: 100%;

    }

    .section-title {

        font-size: 32px;

    }

    .call-btn-header {

        padding: 12px 20px;
        font-size: 14px;

    }

}

@media(max-width:576px) {

    .hero-title {

        font-size: 30px;

    }

    .hero-badge {

        font-size: 13px;
        padding: 12px 20px;

    }

    .section-padding {

        padding: 70px 0;

    }

}

/*==================================================
CONSULTATION SECTION
==================================================*/

.consultation-section {
    background: #ffffff;
}

.consultation-image {
    position: relative;
}

.consultation-image img {
    width: 100%;
    border-radius: 20px;
    transition: .4s;
}

.consultation-image img:hover {
    transform: scale(1.02);
}

.consultation-form {
    background: #ffffff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
    border: 1px solid #ececec;
}

.form-heading {
    margin-bottom: 30px;
}

.form-heading h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-heading p {
    color: #666;
    margin-bottom: 0;
}

.consultation-form .form-control {
    height: 58px;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 15px;
    transition: .35s;
}

.consultation-form textarea.form-control {
    min-height: 150px;
    resize: none;
    padding-top: 18px;
}

.consultation-form .form-control:focus {
    border-color: #2d8f64;
    box-shadow: 0 0 0 4px rgba(45, 143, 100, .12) !important;
}

.submit-btn {
    width: 100%;
    border: none;
    border-radius: 50px;
    padding: 16px;
    font-size: 17px;
    font-weight: 600;
    transition: .35s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(45, 143, 100, .30);
}

/*==================================================
WELCOME SECTION
==================================================*/

.welcome-section {
    background: #f8fbfa;
}

.welcome-content {
    padding-right: 20px;
}

.welcome-content .section-title {
    margin-bottom: 25px;
}

.welcome-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.9;
}

.welcome-image {
    position: relative;
}

.welcome-image img {
    width: 100%;
    border-radius: 20px;
    transition: .4s;
}

.welcome-image img:hover {
    transform: scale(1.02);
}

.enquire-btn {
    padding: 15px 36px;
    display: inline-block;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: .35s;
}

/*==================================================
WHO WE ARE SECTION
==================================================*/

.who-we-are {
    background: #ffffff;
}

.who-image {
    position: relative;
}

.who-image img {
    width: 100%;
    border-radius: 20px;
    transition: .4s;
}

.who-image img:hover {
    transform: scale(1.02);
}

.who-content {
    padding-left: 20px;
}

.who-content .section-title {
    margin-bottom: 25px;
}

.who-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 18px;
}

/*==================================================
SECTION BUTTON
==================================================*/

.welcome-content .btn,
.who-content .btn {
    margin-top: 10px;
}

/*==================================================
IMAGE EFFECTS
==================================================*/

.consultation-image,
.welcome-image,
.who-image {
    overflow: hidden;
    border-radius: 20px;
}

.consultation-image img,
.welcome-image img,
.who-image img {
    transition: transform .45s ease;
}

.consultation-image:hover img,
.welcome-image:hover img,
.who-image:hover img {
    transform: scale(1.05);
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1199px) {

    .consultation-form {
        padding: 35px;
    }

    .form-heading h2 {
        font-size: 30px;
    }

}

@media(max-width:991px) {

    .consultation-section,
    .welcome-section,
    .who-we-are {
        text-align: center;
    }

    .consultation-form {
        margin-top: 20px;
    }

    .welcome-content,
    .who-content {
        padding: 0;
    }

    .welcome-image,
    .who-image {
        margin-top: 30px;
    }

}

@media(max-width:767px) {

    .consultation-form {
        padding: 28px;
    }

    .form-heading h2 {
        font-size: 26px;
    }

    .welcome-content .section-title,
    .who-content .section-title {
        font-size: 30px;
    }

    .consultation-form .form-control {
        height: 54px;
    }

    .consultation-form textarea.form-control {
        min-height: 130px;
    }

    .enquire-btn,
    .submit-btn {
        width: 100%;
    }

}

@media(max-width:576px) {

    .consultation-form {
        padding: 22px;
    }

    .form-heading h2 {
        font-size: 24px;
    }

    .welcome-content p,
    .who-content p {
        font-size: 15px;
    }

}

/*==================================================
SERVICES SECTION
==================================================*/

.services-section {
    background: #ffffff;
}

.services-section .section-heading {
    margin-bottom: 60px;
}

.service-box {
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 20px;
    padding: 45px 30px;
    text-align: center;
    transition: .35s;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .10);
    border-color: #2d8f64;
}

.service-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: #2d8f64;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    transition: .35s;
}

.service-box:hover .service-icon {
    transform: rotateY(180deg);
    background: #22714f;
}

.service-box h4 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    color: #222;
    line-height: 1.5;
}

/*==================================================
WHY CHOOSE US
==================================================*/

.why-choose-section {
    background: #f8fbfa;
}

.choose-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 25px;
    text-align: center;
    transition: .35s;
    border: 1px solid #ececec;
    height: 100%;
}

.choose-box:hover {
    transform: translateY(-8px);
    border-color: #2d8f64;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.choose-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: #2d8f64;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: .35s;
}

.choose-box:hover .choose-icon {
    background: #22714f;
    transform: scale(1.08);
}

.choose-box h5 {
    margin: 0;
    font-size: 21px;
    line-height: 1.5;
    font-weight: 600;
}

/*==================================================
TESTIMONIALS
==================================================*/

.testimonial-section {
    background: #ffffff;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 35px;
    border: 1px solid #ececec;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .05);
    transition: .35s;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, .10);
}

.quote-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #2d8f64;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 25px;
}

.testimonial-card p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-user h6 {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
}

.rating {
    font-size: 20px;
    letter-spacing: 2px;
}

/*==================================================
COMMON HOVER
==================================================*/

.service-box,
.choose-box,
.testimonial-card {
    overflow: hidden;
    position: relative;
}

.service-box::before,
.choose-box::before,
.testimonial-card::before {

    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 4px;
    background: #2d8f64;
    transition: .4s;

}

.service-box:hover::before,
.choose-box:hover::before,
.testimonial-card:hover::before {

    width: 100%;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1199px) {

    .service-box,
    .choose-box,
    .testimonial-card {
        padding: 35px 25px;
    }

}

@media(max-width:991px) {

    .services-section .section-heading,
    .why-choose-section .section-heading,
    .testimonial-section .section-heading {
        margin-bottom: 45px;
    }

    .service-box,
    .choose-box,
    .testimonial-card {
        margin-bottom: 10px;
    }

}

@media(max-width:767px) {

    .service-box {
        padding: 30px 20px;
    }

    .choose-box {
        padding: 30px 20px;
    }

    .testimonial-card {
        padding: 30px 22px;
    }

    .service-icon,
    .choose-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .service-box h4,
    .choose-box h5 {
        font-size: 19px;
    }

    .testimonial-card p {
        font-size: 16px;
    }

    .quote-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

}

@media(max-width:576px) {

    .service-box,
    .choose-box,
    .testimonial-card {
        padding: 28px 18px;
    }

    .service-box h4,
    .choose-box h5 {
        font-size: 18px;
    }

    .rating {
        font-size: 18px;
    }

}

/*==================================================
FAQ SECTION
==================================================*/

.faq-section {
    background: #f8fbfa;
}

.faq-left {
    padding-right: 30px;
}

.faq-left .section-title {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 25px;
}

.faq-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
}

.accordion-item {
    border: none;
    margin-bottom: 18px;
    border-radius: 14px !important;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .05);
}

.accordion-button {
    background: #ffffff;
    color: #222;
    font-size: 18px;
    font-weight: 600;
    padding: 22px 25px;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: #2d8f64;
    color: #ffffff;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 25px;
    color: #666;
    line-height: 1.8;
    background: #ffffff;
}

/*==================================================
FOOTER
==================================================*/

.footer {
    background: #121212;
    color: #d8d8d8;
    padding: 90px 0 30px;
}

.footer h4 {
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 24px;
}

.footer p {
    color: #cfcfcf;
    line-height: 1.9;
}

.footer-logo {
    max-height: 180px;
}

.footer img {
    filter: brightness(0)invert(1) !important;
}

.footer .form-control {
    height: 55px;
    border: none;
    border-radius: 12px;
}

.footer .submit-btn {
    width: 100%;
    border: none;
    margin-top: 5px;
}

.footer hr {
    border-color: rgba(255, 255, 255, .12);
    margin: 45px 0 25px;
}

.copyright {
    color: #cfcfcf;
    font-size: 15px;
}

/*==================================================
FLOATING BUTTONS
==================================================*/

.floating-buttons {
    position: fixed;
    right: 25px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, .25);
    transition: .35s;
}

.whatsapp-btn {
    background: #25D366;
}

.call-btn {
    background: #2d8f64;
}

.floating-btn:hover {
    transform: translateY(-6px) scale(1.08);
    color: #ffffff;
}

/*==================================================
MOBILE CALL BUTTON
==================================================*/

.mobile-call-btn {
    display: none;
}

@media(max-width:767px) {

    .mobile-call-btn {

        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #2d8f64;
        color: #ffffff;
        text-align: center;
        padding: 16px;
        font-size: 18px;
        font-weight: 600;
        z-index: 999;
    }

    body {
        padding-bottom: 65px;
    }

}

/*==================================================
POPUP
==================================================*/

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.popup-box {
    width: 95%;
    max-width: 520px;
    background: #ffffff;
    border-radius: 20px;
    padding: 45px;
    text-align: center;
    position: relative;
    animation: popupZoom .45s ease;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 18px;
    width: 38px;
    height: 38px;
    border: none;
    background: #f4f4f4;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
}

.popup-close:hover {
    background: #2d8f64;
    color: #ffffff;
}

.popup-emoji {
    font-size: 55px;
    margin-bottom: 20px;
}

.popup-box h2 {
    margin-bottom: 18px;
    font-size: 34px;
}

.popup-box p {
    color: #666;
    line-height: 1.8;
}

.popup-call-btn {
    display: inline-block;
    background: #2d8f64;
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
}

.popup-call-btn:hover {
    background: #22714f;
    color: #ffffff;
}

@keyframes popupZoom {

    0% {
        transform: scale(.7);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }

}

/*==================================================
SCROLLBAR
==================================================*/

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f2f2f2;
}

::-webkit-scrollbar-thumb {
    background: #2d8f64;
    border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
    background: #22714f;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1199px) {

    .faq-left .section-title {
        font-size: 40px;
    }

    .popup-box {
        padding: 40px;
    }

}

@media(max-width:991px) {

    .faq-left {
        text-align: center;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .faq-box {
        padding: 35px;
    }

    .footer {
        text-align: center;
    }

    .footer .row>div {
        margin-bottom: 35px;
    }

}

@media(max-width:767px) {

    .faq-left .section-title {
        font-size: 34px;
    }

    .faq-box {
        padding: 25px;
    }

    .accordion-button {
        font-size: 16px;
        padding: 18px;
    }

    .accordion-body {
        padding: 20px;
    }

    .popup-box {
        padding: 30px 20px;
    }

    .popup-box h2 {
        font-size: 28px;
    }

    .popup-call-btn {
        width: 100%;
    }

    .floating-buttons {
        right: 18px;
        bottom: 85px;
    }

    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

}

@media(max-width:576px) {

    .section-title {
        font-size: 28px;
    }

    .faq-left .section-title {
        font-size: 30px;
    }

    .footer {
        padding: 70px 0 25px;
    }

    .popup-box h2 {
        font-size: 24px;
    }

    .popup-emoji {
        font-size: 45px;
    }

    .popup-call-btn {
        font-size: 16px;
        padding: 15px 20px;
    }

}

.footer a {
    color: white;
    text-decoration: none;
}