.myNav_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
}

.logo {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.logo img {
    width: 120px;
}

.menu ul {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.menu ul li a {
    text-transform: capitalize;
    font-size: 18px;
    color: var(--black-color);
    font-weight: 500;
}

/* banner_wrapper */
.banner_wrapper {
    background-color: #FFEBE2;
    padding: 150px 0;

}

.banner_content h2 {
    font-weight: 600;
    font-size: 52px;
}

.banner_content ul {
    padding-left: 2rem !important;
}

.banner_content ul li::marker {
    color: var(--main-color);
}

.banner_content ul li {
    list-style: disc !important;
    margin-top: 1rem;
    font-size: 18px;
}

.myBtn {
    margin-top: 2rem;
}

.banner_form {
    background-color: var(--main-color);
    padding: 2rem;
    border-radius: 10px;
    height: 100%;
    color: var(--white-color);
}

.banner_form h3 {
    font-size: 28px;
}

.banner_form__info {
    margin-top: 1.2rem;
}

.banner_form__info input,
.banner_form__info textarea,
.form_input input,
.form_input textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

.banner_form__info button {
    background-color: var(--black-color);
    color: var(--white-color);
    font-weight: 600;
    width: 100%;
}

/* about */
.global_wrapper {
    padding: 80px 0;
}

.about_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.about_img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about_content h3 {
    font-size: 36px;
    font-weight: 600;
    color: var(--main-color);
}

.about_content ul {
    padding-left: 2rem !important;
}

.about_content ul li {
    margin-top: 10px;
    list-style: disc !important;
    font-size: 18px;
}

.about_content p {
    margin-top: 1rem;
    font-size: 18px;
    line-height: 30px;
}

/* project */
.back_bg {
    background-color: whitesmoke;
}

.main_heading h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 600;
    color: var(--main-color);
}

.global_content {
    margin-top: 3rem;
}

.project_box {
    margin: 0 12px;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.project_box__img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.project_box__content {
    background-color: var(--white-color);
    padding: 1rem;
    border-radius: 0 0 10px 10px;
}

.project_box__content h6 {
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    color: #000;
}

.project_box__content p {
    margin-bottom: 1rem !important;
    margin-top: 10px;
    color: #434343;
}


.slick-dots li.slick-active button:before {
    display: none !important;
}

.slick-dots li {
    width: 6px !important;
    height: 6px !important;
    aspect-ratio: 1 !important;
    margin: 0 2px !important;
}

.slick-dots li button {
    transition: all 0.5s ease-in;
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 32px;
    background: rgba(182, 182, 182, 0.5) !important;
}

.slick-dots li.slick-active button {
    background: var(--main-color) !important;
    width: 1.5rem !important;
    transition: all 0.5s ease-in;
}

.slick-dots li.slick-active {
    width: 1.5rem !important;
}

.slick-dots li button::before {
    display: none !important;
}

.slick-dots {
    bottom: -3rem !important;
}

/* cta_wrapper */
.cta_wrapper {
    text-align: center;
    color: #fff;
    padding: 50px 0;
    background-color: var(--main-color);
}

.cta_wrapper h2 {
    font-size: 55px;
    font-weight: 600;
}

.cta_wrapper p {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 1rem !important;
    font-size: 18px;
    line-height: 30px;
}

.cta_wrapper button {
    background-color: var(--black-color);
    color: var(--white-color);
}


/* testimonial_box */
.testimonial_box {
    margin: 0 12px;
    border: 1px solid #ccc;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    background-color: whitesmoke;
}

.quaote {
    display: flex;
    justify-content: center;
    align-items: center;
}

.quaote img {
    width: 44px;
}

.testimonial_box p {
    margin-top: 12px;
    text-align: justify;
}

.testimonial_box h3 {
    font-weight: 700;
    font-size: 24px;
    color: var(--main-color);
    margin-top: 1rem;
}

.testimonial_box span {
    color: #333;
    font-weight: 500;
    font-style: italic;
}

/* contact_wrapper__content */
.contact_wrapper__content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 2rem;
}

.contact_wrapper__content p {
    font-size: 18px;
    margin-top: 1rem;
    max-width: 510px;
}

.house_img img {
    width: 421px;
    object-fit: contain;
}

.banner_form h3 {
    text-align: center;
    font-size: 42px;
    font-weight: 600;
}

.modal-body .banner_form__info {
    margin-top: 0;
}

.footer {
    background-color: var(--black-color);
    padding: 40px 20px 4rem 20px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
}

.footer-column {
    flex: 1 1 250px;
    margin: 10px 20px;
}

.footer-column h2 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}


.logo span {
    color: #f44366;
}

.footer-column h3 {
    margin-bottom: 15px !important;
    color: #fff;
}

.footer-column p {
    margin: 8px 0 !important;
    font-size: 15px;
    color: #d1d1d1;
    max-width: 300px;
    text-transform: capitalize;
}

.footer-column i {
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background-color: #1e3c50;
    color: #fff;
    text-align: center;
    line-height: 35px;
    border-radius: 4px;
    transition: background 0.3s;
}

.social-icons a:hover {
    background-color: var(--main-color);
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #bbb;
    padding-top: 20px;
}

.table-wrapper {
    overflow-x: auto;
}

table {
    border-collapse: collapse;
    width: 100%;
    min-width: 800px;
}

th,
td {
    border: 1px solid #ccc !important;
    padding: 15px;
    text-align: center;
    vertical-align: middle;
}

th {
    background-color: #6b4022;
    color: #fff;
    font-weight: bold;
    text-align: center !important;
    text-transform: uppercase;
}

td {
    background-color: #f9f4f1;
    color: #333;
}

td div {
    margin: 5px 0;
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 320px;
}

.payment-table td {
    padding: 15px;
    border: 1px solid #ddd;
    vertical-align: top;
    text-align: left;
}

.payment-table tr:nth-child(even) {
    background-color: #ece4e1;
}

.payment-table tr:nth-child(odd) {
    background-color: #f9f6f5;
}

.payment-table td:first-child {
    font-weight: bold;
    color: #333;
}

.price_list__content {

    display: flex;
    flex-direction: column;
    justify-content: center;

}

.bottom_nav {
    display: none;
}


.form_poppup {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(4px);
    width: 100%;
    height: 100%;
    display: none;
    z-index: 999;
}

.form_poppup.form_poppup__active {
    display: block;
}

.form_poppup__modal {
    display: flex;
    justify-content: center;
    height: 100%;
    align-items: center;
}

.form_poppup__modal .modal_form {
    padding: 2rem;
    background-color: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, .5);
    border-radius: 10px;
    position: relative;
    max-width: 600px;
}

.form_poppup__modal .modal_form .cancel_form {
    position: absolute;
    right: 10px;
    top: 20px;
    max-width: max-content;
}

.banner_form h6,
.form_poppup__modal .modal_form h6 {
    font-size: 20px;
    /* max-width: 350px; */
    margin: 0 auto;
    margin-bottom: 2rem !important;
    /* color: var(--black-color); */
    text-align: center;
    font-weight: 600;
    line-height: 1.46;
    color: var(--main-color);
}

.form_poppup__modal .modal_form .cancel_form i {
    height: 40px;
    width: 40px;
    background: var(--main-color);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 26px;
}



@media(max-width:1440px) {
    .banner_wrapper {
        padding: 80px 0;
    }

    .banner_content h2 {
        font-size: 34px;
    }

    .about_content p,
    .about_content ul li {
        font-size: 16px;
        line-height: 28px;
        margin-top: 10px;
    }

    .about_content h3 {
        font-size: 30px;
    }

    .project_box__img img {
        height: 220px;
    }
}


@media(max-width:992px) {
    .about_content {
        margin-top: 1rem;
    }

    th,
    td {
        font-size: 15px;
    }

    .myflex {
        flex-direction: column-reverse;
    }

    .price_list__content {
        margin-top: 1rem;
    }

    .cta_wrapper h2 {
        font-size: 42px;
    }

    .contact_wrapper__content,
    .banner_content {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .header_btn a {
        font-size: 13px;
    }

    .form_poppup__modal .modal_form {
        padding: 1rem;
        border-radius: 6px;
        margin: 0 12px;
    }

    .form_poppup__modal .modal_form .cancel_form i {
        height: 24px;
        width: 24px;
        border-radius: 100px;
        font-size: 18px;

    }

    .banner_form h6,
    .form_poppup__modal .modal_form h6 {
        margin-bottom: 1rem !important;
    }

    th,
    td {
        font-size: 0.875rem;
        padding: 0.625rem;
    }

    .footer-top {
        flex-direction: column;
        text-align: left;
    }

    .footer-column {
        margin: 12px 0;
        flex: 1 1 75px;
    }

    .logo img {
        width: 75px;
    }

    .testimonial_box h3 {
        font-size: 20px;
    }

    .testimonial_box p {
        font-size: 15px;
    }
}

@media (max-width: 600px) {
    .payment-table td {
        font-size: 14px;
        padding: 10px;
    }

    .bottom_nav {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--main-color);
        z-index: 999;
        box-shadow: 0 0 4px rgba(182, 182, 182, 0.5);
    }

    .bottom_nav a {
        background-color: #000;
        border-top: 1px solid #fff;
        color: #fff;
        text-align: center;
        width: 100%;
        padding: 10px 0;
        outline: none;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        text-transform: uppercase;
        font-size: 18px;
        font-weight: 600;
        border: 1px solid transparent;
    }

    .banner_wrapper {
        padding: 50px 0;
    }

    .banner_content h2 {
        font-size: 24px;
        margin-bottom: 1rem !important;
    }

    .banner_content ul li,
    .about_content p,
    .cta_wrapper p,
    .contact_wrapper__content p,
    .about_content ul li {
        font-size: 15px;
        margin-top: 7px !important;
        line-height: 26px;
    }

    .myBtn {
        margin-top: 1.2rem;
    }

    .about_content h3 {
        font-size: 23px;
    }

    .global_wrapper {
        padding: 40px 0;
    }

    .global_content {
        margin-top: 2rem;
    }

    .main_heading h2,
    .banner_form h3 {
        font-size: 26px;
    }

    .contact_wrapper__content h3 {
        font-size: 22px;
    }

    .cta_wrapper {
        padding: 25px 0;
    }

    .cta_wrapper h2 {
        font-size: 22px;
    }

    .banner_form {
        padding: 1rem;
    }

    .banner_form h4 {
        font-size: 18px;
    }

    .banner_form__info input,
    .banner_form__info textarea {
        margin-bottom: 6px;
        padding: 8px;
    }
}

.ratio video {
    border-radius: 20px;
}

.offer_price{
    background: rgba(0, 0, 0, .1);
    border: 1px solid #ccc;
    padding: 1.5rem 0;
    text-align: center;
    
}

.offer_price h3{
    margin-bottom: 1.5rem !important;
}


.offer_price a{
    background: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    color: white;
    font-size: 16px;
}


.offer_price a:hover{
    color: white;
}

.mobile_call{
    display: none;
}

/* Mobile view styling */
@media (max-width: 576px) {
  .mobile_call {
    display: block;
    position: fixed;
    bottom: 82px;
    right: 20px;
    z-index: 9999;
    background-color: #674832; /* Green button */
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    animation: bounce 2s infinite;
  }

  .mobile_call a {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    padding: 12px 22px;
    text-decoration: none;
  }

  /* Simple bounce animation */
  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
  }

  /* Optional hover effect */
  .mobile_call:hover {
    background-color: #218838;
  }
}
