

/* NEW */
/* ============================================
   GLOBAL STYLES
============================================ */
body {
    font-family: Arial, sans-serif;
    background: #134b5f no-repeat center 80px;
    background-size: 200px auto;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

/* Layout containers */
.header-container {
    width: 80%;
    max-width: 1100px;
    margin: 10px auto 15px;
    padding: 10px 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    color: #fff;
    border-radius: 10px;
}

/* Website title */
h1 {
    font-size: 20px;
    font-family: 'Black Mango';
}

/* Navigation links */
.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Black Mango';
    padding: 6px 10px;
    border-radius: 5px;
    transition: background 0.3s;
}

.nav-menu a:hover {
    background-color: rgba(255, 255, 255, 0.18);
}

/* LOGO */
.logo-img {
    width: 160px;
    height: auto;
}

/* ============================================
   HOME PAGE CONTAINERS
============================================ */
.main-container {
    width: 80%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 25px 5px;
}

/* Text Section */
.post2 {
    width: 100%;
    text-align: left;
    font-size: 18px;
    color: #fff;
    margin-bottom: 25px;
}

.post2 h2 {
    text-align: center;
    font-size: 28px;
    color: wheat;
    margin-bottom: 20px;
}

.post2 p {
    font-size: 18px;
    line-height: 1.55;
    color: wheat;
}

/* Images Group */
.home-picture {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.left-image,
.right-image {
    width: 300px;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
}



/* ============================================
   MOBILE RESPONSIVE
============================================ */
@media (max-width: 768px) {

    body {
        padding: 0;
        margin: 0;
    }

    /* Header becomes vertical */
    .header-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .logo-img {
        width: 120px;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .nav-menu a {
        font-size: 1.1rem;
    }

    .main-container {
        width: 92%;
        padding: 15px 0;
    }

    .post2 {
        width: 100%;
        padding: 0 5px;
    }

    .post2 h2 {
        font-size: 22px;
    }

    .post2 p {
        font-size: 1rem;
        line-height: 1.45;
    }

    /* Images stack vertical */
    .home-picture {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .left-image,
    .right-image {
        width: 90%;
        max-width: 350px;
        height: auto;
    }
}



/* ============================================
   SMALL PHONES (extra polish)
============================================ */
@media (max-width: 480px) {
    .post2 h2 {
        font-size: 20px;
        
    }
    .post2 p {
        font-size: 0.95rem;
    }
}
/* Center key headings inside post2 */
.post2 h2,
.post2 p1,
.post2 p3,
.post2 p2 {
    text-align: center;
    display: block;
}


/* Contact Section */
.contact-container {
    width: 80%;
    max-width: 800px;
    margin: 20px auto;
    padding: 15px;
    background-color: #7b5c8054;
    border-radius: 10px;
    color: white;
}

.contact-container p {
    line-height: 1.6;
    font-size: 1em;
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 15px 0;
    flex-wrap: wrap;
}
.contact-icons a:hover {
        transform: scale(1.5);
        color: #4CAF50;
    }
.contact-icon {
    width: 50px;
    height: 50px;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form label {
    font-weight: bold;
}

.contact-form input,
.contact-form select {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
}

.checkbox-group-inline,
.radio-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.checkbox-option,
.radio-option {
    display: flex;
    align-items: center;
    gap: 5px;
}

button#submitBtn {
    background-color: #4CAF50;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background 0.3s;
}

button#submitBtn:hover {
    background-color: #45a049;
}

/* Responsive for Mobile Devices */
@media screen and (max-width: 600px) {
    
    .contact-container {
        width: 95%;
        padding: 10px;
    }

    .contact-icons {
        gap: 15px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .contact-form input,
    .contact-form select {
        font-size: 0.95em;
    }

    button#submitBtn {
        font-size: 1em;
        padding: 10px;
    }
}

/* ============================================
   SERVICES PAGE STYLING
============================================ */

.services-section {
    width: 80%;
    max-width: 1100px;
    margin: 20px auto;
    padding: 15px;
    box-sizing: border-box;
    color: white;
}

.services-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.services-container > div {
    background-color: #7b5c8054;
    padding: 15px;
    border-radius: 10px;
    flex: 1 1 30%; /* 3 columns on desktop, shrink on smaller screens */
    box-sizing: border-box;
}

.services-container h3 {
    margin-bottom: 10px;
    font-family: 'Black Mango', cursive;
    color: wheat;
    font-size: 1.3em;
}

.services-container ul {
    list-style-type: disc;
    padding-left: 20px;
}

.services-container li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* CTA Box */
.cta-box {
    text-align: center;
    
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.cta-box p {
    font-size: 1.2em;
    margin-bottom: 15px;
}

.cta-button {
    text-decoration: none;
    color: white;
    background-color: #2d7a3e;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1em;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: #246233;
}

/* ============================================
   MOBILE RESPONSIVE
============================================ */
@media screen and (max-width: 992px) {
    .services-container {
        flex-direction: column;
        gap: 15px;
    }

    .services-container > div {
        flex: 1 1 100%;
    }
}

@media screen and (max-width: 600px) {
    .services-section {
        width: 95%;
        padding: 10px;
    }

    .services-container h3 {
        font-size: 1.1em;
    }

    .services-container li {
        font-size: 0.95em;
    }

    .cta-box p {
        font-size: 1em;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.95em;
    }
}

/* ============================================
   PRICING PAGE STYLING
============================================ */

.pricing-section {
    padding: 60px 20px;
    text-align: center;
}

.pricing-subtitle {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 25px;
    font-weight: 600;
    color: wheat;
    font-family: 'Black Mango';
}


/* Boxes container */
.pricing-boxes {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Each card */
.pricing-card {
    background: #ffffff;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 35px;
    padding: 18px 35px;
    min-width: 240px;
    font-weight: 600;
    box-sizing: border-box;
}

/* Circle number */
.pricing-number {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #0e6072;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    font-weight: 700;
}

/* Text inside card */
.pricing-text {
    font-size: 18px;
    color: #0e6072;
}

/* Notes under cards */
.pricing-note {
    margin-top: 30px;
    font-size: 16px;
    font-weight: 600;
    color: #ddc2bb;
}

.pricing-note-small {
    margin-top: 5px;
    font-size: 15px;
    color: #ddc2bb;
}

.pricing-group-info {
    margin-top: 10px;
    font-size: 16px;
    color: #ddc2bb;
}

/* CTA Box */
.cta-box {
    text-align: center;
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
    width: 80%;
    max-width: 400px;
    box-sizing: border-box;
}

.cta-button {
    text-decoration: none;
    color: white;
    background-color: #2d7a3e;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1em;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: #246233;
}

/* ============================================
   MOBILE RESPONSIVE
============================================ */
@media screen and (max-width: 992px) {
    .pricing-boxes {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .pricing-card {
        min-width: 80%;
        padding: 15px 25px;
    }
}

@media screen and (max-width: 600px) {
    .pricing-section {
        width: 95%;
        padding: 15px 10px;
    }

    .pricing-subtitle {
        font-size: 20px;
    }

    .pricing-text {
        font-size: 16px;
    }

    .pricing-note,
    .pricing-note-small,
    .pricing-group-info {
        font-size: 14px;
    }

    .cta-box {
        width: 95%;
        padding: 15px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.95em;
    }
}


/* Reviews Page - Scrollable */
.reviews-container {
    display: flex;
    flex-direction: column; /* vertical stack */
    gap: 20px;
    max-height: 600px; /* or whatever height fits your design */
    overflow-y: auto; /* vertical scroll */
    padding: 15px;
    background-color:#043f55;
    border-radius: 10px;
    width: 90%;
    max-width: 900px;
    margin: 20px auto;
    box-sizing: border-box;
}

.review-card {
    background-color:#4494b134;
    padding: 15px 20px;
    border-radius: 10px;
    color: wheat;
    box-shadow: 0 2px 1px rgba(0,0,0,0.3);
}

.review-card h4 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.review-card p {
    margin: 5px 0;
    line-height: 1.4;
}

/* Scrollbar styling (optional, nice touch) */
.reviews-container::-webkit-scrollbar {
    width: 8px;
}

.reviews-container::-webkit-scrollbar-thumb {
    background-color: #3bb5e2;
    border-radius: 4px;
}

.reviews-container::-webkit-scrollbar-track {
    background: #abcfb0;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .reviews-container {
        width: 95%;
        max-height: 500px;
    }

    .review-card {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
}






