:root {
    --primary: #094227;
    --primary-dark: #094227;
    --accent: #094227;
    --bg-soft: #f4f8f6;
    --text: #1f2937;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;

}

html {
    overflow-x: hidden;
}

.section-padding {
    padding: 50px 0;
}

/* --- Header --- */
.main-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 250px;
    ;
}

.btn-call {
    background: var(--primary);
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(#094227, #094227), url('../images/slider.jpg');
    background-size: cover;
    background-position: center;
    padding: 150px 0;
    color: white;
}

.bg-soft-light {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    font-size: 14px;
    padding: 8px 16px;
}

.btn-primary-custom {
    background: var(--accent);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-primary-custom:hover {
    background: #094227;
    color: white;
    transform: translateY(-2px);
}

/* --- Form Section --- */
.form-card {
    background: #fff;
    border-radius: 16px;
    border-top: 5px solid var(--primary);
    padding: 1rem !important;
}

.custom-input {
    border: 1px solid #e1e1e1;
    padding: 12px 15px;
    border-radius: 8px;
    background: #fdfdfd;
}

.custom-input:focus {
    border-color: var(--primary);
    box-shadow: none;
    background: #fff;
}

/* --- Service Cards --- */
.service-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(74, 95, 115, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
    font-size: 24px;
}

/* --- Footer --- */
.footer-dark {
    background: #1a1a1a;
    color: #999;
}

.footer-form .form-control {
    background: #2a2a2a;
    border: 1px solid #333;
    color: white;
}

/* --- Add these to your style.css --- */

.bg-soft-primary {
    background-color: #f0f4f8;
}

.service-card {
    background: white;
    border-radius: 15px;
    transition: 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    color: var(--primary);
}

.testimonial-card {
    background: white;
    border-left: 5px solid var(--primary);
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: var(--primary);
    color: white;
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

.italic {
    font-style: italic;
}

.mobile-sticky-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent);
    color: white;
    text-align: center;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    z-index: 999;
}

/* Fix Hero for Mobile Ads */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 20px 100px;
    }

    /* Space at bottom for sticky button */
    .section-padding {
        padding: 40px 0;
    }
}

/* --- Mobile Specifics --- */
.mobile-sticky-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--accent);
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    z-index: 2000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }

    .hero-section h1 {
        font-size: 1.75rem;
    }

    .section-padding {
        padding: 50px 0;
    }

    .main-header .logo img {
        width: 200px;
    }
}

/* = modal popup  css */
:root {
    --primary-orange: #094227;
    --text-dark: #ffff;
    /* Dark teal/blue for the heading */
    --text-muted: #094227;
}

/* Background Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Darkens the background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Modal Box */
.popup-content {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Close Button (X) */
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
}

.emoji-container {
    font-size: 50px;
    margin-bottom: 20px;
}

.popup-title {
    color: #094227;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.popup-text {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* The Big Orange Button */
.call-button {
    display: inline-block;
    background-color: var(--primary-orange);
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    padding: 18px 0;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px #7ea4c7;
    transition: transform 0.2s, background-color 0.2s;
}

.call-button:hover {
    color: #094227;
    background-color: white;
    transform: translateY(-2px);
}

.popup-footer {
    color: #777;
    font-size: 14px;
    margin-top: 20px;
}

@media (max-width: 550px) {
    .emoji-container {
        font-size: 35px;
        margin-bottom: 0px;
    }

    .popup-content {
        padding: 30px 20px;
        width: 85%;
        max-width: 500px;

    }

    .popup-title {
        font-size: 22px;
        font-weight: 700;
    }

    .popup-text {
        color: var(--text-muted);
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 25px;
    }

    /* The Big Orange Button */
    .call-button {
        font-size: 15px;
        padding: 14px 0;
    }

    .mg-faq {
        margin-top: 40px !important;
    }

    .mg-faq h2 {
        text-align: left !important;
    }
}

.hero-section {
    background-image: url(../images/slider.jpg);
    background-size: cover;
}

.sec-heading {
    color: #094227;
    font-size: 30px;
    font-weight: bold;
}

.why-choose {
    background-color: #f0f4f8 !important;
    margin-top: 50px;
}

.why-choose i {
    color: black !important;
}

.faq-heading {
    font-size: 40px;
    text-align: left;
}

.footer-logo img {
    filter: brightness(0) invert(1);
}

.why-choose span {
    border-radius: 20px;
    padding: 30px 20px;
    background-color: white;
    color: #094227;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.582);

}

.why-choose span:hover {
    transform: translateY(-10px);

}

.why-choose-heading {
    color: white !important;
}

.footer-btn {
    color: #094227 !important;
    background-color: white !important;
    border: none;
}

.footer-call {
    color: white !important;

}

/* FLOATING BUTTONS */

.floating-buttons {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 25px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.floating-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #094227;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 8px 20px #094227;
    transition: 0.3s;
}

.floating-btn i {
    color: #fff;
}

.floating-btn:hover {
    transform: translateY(-5px);
}

/* Mobile */
@media(max-width:768px) {

    .floating-buttons {
        left: 15px;
        right: 15px;
    }

    .floating-btn {
        width: 52px;
        height: 52px;
        font-size: 24px;
    }

    .contact-btn {
        margin-bottom: 20px;
    }
}

.bg-dark {
    background-color: #094227 !important;
}

.text-muted {
    color: white !important;
}

.consultation-section {
    background: #f8fbfd;
    overflow: hidden;
}

.consultation-image {
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    min-height: 550px;
}

.consultation-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 25px;

}

.form-card {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    position: relative;
    margin-left: -80px;
    z-index: 2;
}

.custom-input {
    height: 55px;
    border-radius: 12px;
    border: 1px solid #dfe5eb;
}

textarea.custom-input {
    height: 120px;
}

.btn-primary-custom {
    border-radius: 12px;
}

@media (max-width: 991px) {
    .form-card {
        margin-left: 0;
        margin-top: -50px;
    }

    .consultation-image img {
        height: auto;
    }
}



.bg-blue {
    background-color: #094227;
}

.bg-light {
    background-color: white !important;
}

.why-choose-section {
    position: relative;
    padding: 50px 0;
    background: #094227;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: -120px;
    left: -120px;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-heading {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
}

.heading-line {
    width: 80px;
    height: 4px;
    background: #fff;
    margin: auto;
    border-radius: 50px;
}

.choose-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    transition: all .4s ease;
    height: 100%;
}

.choose-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.18);
}

.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #fff;
    color: #094227;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.choose-card span {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    display: block;
}

@media(max-width:768px) {

    .why-choose-heading {
        font-size: 32px;
    }

    .choose-card {
        padding: 25px 15px;
    }
}

.testimonial-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(126, 194, 182, 0.15);
    border-radius: 50%;
    top: -120px;
    right: -100px;
}

.section-title-wrap {
    text-align: center;
    margin-bottom: 60px;
}

.title-line {
    width: 80px;
    height: 4px;
    background: #094227;
    margin: 15px auto 0;
    border-radius: 50px;
}

.testimonial-card {
    background: #fff;
    border-radius: 25px;
    padding: 35px;
    height: 100%;
    position: relative;
    transition: all .4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    border: 1px solid rgba(0, 0, 0, .05);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #094227, #094227);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    margin-bottom: 25px;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    min-height: 90px;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.user-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #eef7f6;
    color: #094227;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

@media(max-width:768px) {

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-card p {
        min-height: auto;
    }

    .consultation-image {
        min-height: 350px !important;
    }
}

.services-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff, #f4fbfa);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(126, 194, 182, .15);
    border-radius: 50%;
    top: -120px;
    left: -120px;
}

.services-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(26, 79, 118, .08);
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
}

.section-title-wrap {
    text-align: center;
    margin-bottom: 60px;
}

.title-line {
    width: 80px;
    height: 4px;
    background: #094227;
    margin: 15px auto 0;
    border-radius: 50px;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px 15px;
    text-align: center;
    transition: all .4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    border: 1px solid rgba(255, 255, 255, .8);
    position: relative;
    overflow: hidden;
    height: auto;
}

.service-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    left: 0;
    top: 0;
    background: linear-gradient(90deg, #094227, #094227);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, #094227, #094227);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    box-shadow: 0 10px 25px rgba(26, 79, 118, .25);
}

.service-card h5 {
    font-weight: 700;
    color: #094227;
    margin: 0;
    line-height: 1.6;
}

@media(max-width:768px) {

    .services-section {
        padding: 70px 0;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        width: 75px;
        height: 75px;
        font-size: 28px;
    }
}

.faq-premium-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff, #f4fbfa);
    position: relative;
    overflow: hidden;
}

.faq-premium-section::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(126, 194, 182, 0.12);
    border-radius: 50%;
    top: -120px;
    right: -100px;
}

.faq-premium-section::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(26, 79, 118, 0.08);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
}

/* Left Side */

.faq-left-panel {
    background: #094227;
    border-radius: 30px;
    padding: 70px 50px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 25px 60px rgba(26, 79, 118, 0.18);
    position: relative;
    overflow: hidden;
}

.faq-left-panel::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: -70px;
    right: -70px;
}

.faq-left-panel::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    bottom: -60px;
    left: -60px;
}

.faq-heading {
    color: #fff !important;
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-btn {
    background: #fff;
    color: #094227 !important;
    border-radius: 50px;
    padding: 14px 35px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all .4s ease;
}

.contact-btn:hover {
    transform: translateY(-5px);
}

/* Right Side */

.faq-right-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 45px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
    border: 1px solid rgba(255, 255, 255, .8);
}

.faq-right-panel .sec-heading {
    position: relative;
    margin-bottom: 50px !important;
}

.faq-right-panel .sec-heading::after {
    content: '';
    width: 70px;
    height: 4px;
    background: #094227;
    display: block;
    margin: 15px auto 0;
    border-radius: 50px;
}

/* Accordion */

.custom-accordion .accordion-item {
    border: none;
    border-radius: 20px !important;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.custom-accordion .accordion-button {
    padding: 22px 25px;
    font-size: 18px;
    font-weight: 600;
    color: #094227;
    background: #fff;
    box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: #094227;
    color: #fff;
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
}

.custom-accordion .accordion-body {
    padding: 25px;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

/* Responsive */

@media (max-width: 991px) {

    .faq-left-panel {
        min-height: auto;
        padding: 45px 30px;
    }

    .faq-heading {
        font-size: 38px;
    }

    .faq-right-panel {
        padding: 25px;
    }
}

.premium-footer {
    position: relative;
    padding: 90px 0 30px;
    background: linear-gradient(135deg, #094227, #143B59);
    overflow: hidden;
}

.premium-footer::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(126, 194, 182, .08);
    border-radius: 50%;
    top: -120px;
    left: -120px;
}

.premium-footer::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, .05);
    border-radius: 50%;
    bottom: -120px;
    right: -120px;
}

/* Titles */

.footer-title {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-text {
    color: rgba(255, 255, 255, .8);
    line-height: 1.9;
    margin-bottom: 0;
}

/* Logo */

.footer-logo img {
    max-width: 300px;
}

/* Call Box */

.footer-contact-box {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 40px 30px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, .08);
}

.footer-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #094227, #ffffff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #094227;
    font-size: 28px;
}

.footer-call {
    color: #094227;
    font-size: 30px;
    font-weight: 700;
    margin: 0;
}

/* Form Box */

.footer-form-box {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, .08);
}

.footer-input {
    height: 52px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, .95);
}

.footer-input:focus {
    box-shadow: none;
    border: none;
}

.footer-btn {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 12px;
    background: #094227;
    color: #094227;
    font-weight: 700;
    transition: .4s;
}

.footer-btn:hover {
    transform: translateY(-3px);
}

/* Bottom */

.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, .7);
    margin: 0;
}

/* Mobile */

@media(max-width:991px) {

    .footer-form-box {
        margin-top: -30px;
    }

    .footer-call {
        font-size: 24px;
    }

    .premium-footer {
        padding: 70px 0 25px;
    }
}

.footer-title a {
    color: white;
    text-decoration: none;
}