* {
    margin: 0;
    padding: 0;
    line-height: 1.5rem;
    font-family: "Poppins", sans-serif;
}

.d-flex {
    display: flex;
}

img {
    max-width: 100%;
}

/* nav menu  */

/* hamburger button */
.menu-toggle {
    display: none;
    /* shown only on small screens */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    align-self: center;
}

.menu-toggle .bar {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px 0;
    background: #111;
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
}

/* header  */

header {
    padding: 30px 20px;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 99;
}

#logo img {
    width: 70px;
}

nav {
    align-items: center;
    justify-content: space-between;
}

ul {
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

nav ul {
    font-size: 1.25rem;
    gap: 4rem;
}

.d-none {
    display: none;
}

li {
    list-style: none;
    text-decoration: none;
}

a {
    text-decoration: none;
    color: rgb(55, 55, 55);
}

.container {
    padding: 20px;
    padding-bottom: 50px;
    flex-direction: column;
    gap: 1rem;
}

/* hero section  */

#hero {
    height: 55vh;
    background: url("https://static.wixstatic.com/media/0c2d11194b8042ca9f11f7f681339102.jpg/v1/fill/w_1901,h_500,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/0c2d11194b8042ca9f11f7f681339102.jpg") no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #ff8400;
    line-height: 1;
}

#hero h1 span {
    color: #003266;
}

#second {
    flex-direction: column;
    justify-content: space-evenly;
    height: 30vh;
    text-align: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

#third {
    align-items: center;
    justify-content: space-around;
}

#third img {
    width: 30vw;
}

#second,
#third,
#forth {
    padding-top: 50px;
    padding-bottom: 50px;
}


#fifth {
    justify-content: center;
    align-items: center;
    text-align: center;
}

#left {
    width: 50%;
    flex-direction: column;
    gap: 2rem;
}

#left h3 {
    margin-top: -20px;
    color: grey;
}

#left-para p:last-child {
    text-align: left;
}

#left-para {
    flex-direction: column;
    gap: 1rem;
}

#fifth ul {
    /* flex-direction: column; */
    display: block;
    text-align: start;
    padding: 0 20px;
}

#fifth ul li {
    list-style: circle;
}

.whyZee {
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
}

#right {
    width: 50%;
}

/* About page */

#about {
    padding: 70px 0;
    justify-content: space-around;
    gap: 1rem;
}

#about img {
    width: clamp(400px, 60vw, 650px);
}

#about #content {
    width: 50%;
    align-items: center;
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    gap: 0;
}


/* footer  */

footer {
    background: #fff;
    color: #333;
    width: 100%;
    margin-top: 50px;
}

.footer-main {
    background: #f8f9fa;
    padding: 60px 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    color: #003266;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.footer-logo h3 {
    color: #ff8400;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.company-intro p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-section ul li a {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: block;
}

.footer-section ul li a:hover {
    color: #ff8400;
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    gap: 0;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 50px 0 0 50px;
    font-size: 0.95rem;
    font-family: "Poppins", sans-serif;
    outline: none;
    transition: border-color 0.2s ease;
}

.newsletter-form input:focus {
    border-color: #ff8400;
}

.newsletter-form button {
    background: #ff8400;
    color: #fff;
    border: 2px solid #ff8400;
    border-left: none;
    border-radius: 0 50px 50px 0;
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    background: #e67500;
    border-color: #e67500;
}

.footer-bottom {
    background: #fff;
    padding: 20px 40px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #e0e0e0;
}

.footer-copyright {
    align-items: center;
    gap: 1rem;
}

.phone-icon {
    width: 40px;
    height: 40px;
    background: #ff8400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.footer-copyright p {
    color: #555;
    font-size: 0.9rem;
    margin: 0;
}

.footer-social {
    gap: 1.5rem;
}

.footer-social a {
    color: #555;
    font-size: 1.3rem;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
    color: #ff8400;
    transform: translateY(-2px);
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #555;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1000;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-to-top:hover {
    background: #ff8400;
    transform: translateY(-3px);
}

.scroll-to-top.show {
    display: flex;
}

/* WhatsApp floating button - Sticky */
.whatsapp-float {
    position: fixed !important;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    z-index: 9999 !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 2.5rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.2s ease;
    line-height: 1;
}

.close-modal:hover {
    color: #ff8400;
}

.modal-content h2 {
    color: #003266;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.modal-content > p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.modal-content .form-group {
    margin-bottom: 1.5rem;
}

.modal-content #recaptcha-badge {
    text-align: center;
    padding: 10px 0;
}

.modal-content #recaptcha-badge a {
    text-decoration: none;
}

.modal-content .submit-btn {
    width: 100%;
    margin-top: 1rem;
}



/* Services page  */

#services,
#contact {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

#content {
    align-items: center;
    flex-direction: column;
    gap: 2rem;
}

#services-list {
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

#services-list img {
    width: 30vw;
    aspect-ratio: 16 / 9;
}


/* contact page  */

#contact {
    padding-bottom: 70px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

#contact-wrapper {
    width: 100%;
    gap: 3rem;
    align-items: flex-start;
    margin-top: 2rem;
}

#contact-info {
    flex-direction: column;
    gap: 2rem;
    flex: 1;
    min-width: 300px;
}

.info-item {
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #ff8400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content h4 {
    color: #003266;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-content p {
    color: #555;
    font-size: 0.95rem;
    margin: 0;
}

#contact-form-wrapper {
    flex: 1;
    min-width: 400px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

#contact-form-wrapper h2 {
    color: #003266;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

#contact-form {
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

.required {
    color: #E21C21;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff8400;
    box-shadow: 0 0 0 3px rgba(255, 132, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: #ff8400;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    align-self: flex-start;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    background: #e67500;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 132, 0, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* button  */

ul a{
    transition: all .2s ease-in-out;
}

ul a:hover{
    font-weight: 500;
    color: #003266;
}

.get-started {
    /* border: 2px solid orange; */
    background-color: orange;
    color: #fff;
    padding: 10px 12px;
    border-radius: 7px;
    cursor: pointer;
}

.get-started a{
    transition: all .2s ease-in-out;
}

.get-started:hover a{
    color: #fff;
}




/* MOBILE: collapse menu into toggle */
@media (max-width: 700px) {
    nav {
        position: relative;
    }

    /* show hamburger on small screens */
    .menu-toggle {
        display: block;
        margin-left: 12px;
        order: 3;
        /* keep it to the right */
    }

    /* position get-started to right of logo but left of hamburger */
    .get-started {
        order: 2;
    }


    nav ul {
        position: absolute;
        right: 20px;
        top: 68px;
        width: 220px;
        max-height: 0;
        overflow: hidden;
        background: #fff;
        flex-direction: column;
        align-items: flex-end;
        padding: 0 16px;
        border-radius: 8px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        transition: max-height .32s cubic-bezier(.2, .9, .2, 1), padding .25s;
        gap: 1.5rem;
    }

    /* visible state */
    nav ul.open {
        max-height: 500px;
        padding: 10px 16px;
    }

    nav ul li {
        width: 100%;
        text-align: right;
        padding: 8px 0;
    }

    ul .d-none {
        width: fit-content;
        align-self: self-end;
        display: block;
    }

    nav>.get-started {
        display: none;
    }

    #second {
        height: auto !important;
        gap: 2rem;
    }

    #fifth {
        flex-direction: column-reverse;
    }

    #fifth #left,
    #right {
        width: auto !important;
    }

    #second,
    #third,
    #forth {
        padding: clamp(10px, 7vw, 30px) 0px !important;
        /* padding-bottom: clamp(10px, 5vw, 25px); */
    }

    /* about page  */

    #about {
        padding: clamp(10px, 5vh, 30px) !important;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    #about #content {
        width: auto !important;
        gap: 2rem;
    }

    /* service page  */

    #services-list {
        grid-template-columns: repeat(1, 1fr);
    }

    #services-list img {
        width: 80vw !important;
    }


    /* contact page  */

    #contact-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    #contact-info {
        width: 100%;
        min-width: auto;
    }

    #contact-form-wrapper {
        width: 100%;
        min-width: auto;
        padding: 1.5rem;
    }

    #contact-form-wrapper h2 {
        font-size: 1.25rem;
    }

    .info-item {
        padding: 1rem;
    }

    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    /* footer  */

    .footer-main {
        padding: 40px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-section {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        padding: 20px;
        text-align: center;
    }

    .footer-copyright {
        flex-direction: column;
        gap: 1rem;
    }

    .scroll-to-top {
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }

    .modal-content {
        padding: 1.5rem;
        width: 95%;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }

}

@media (min-width: 701px) and (max-width: 900px) {
    /* nav ul{
    display: flex;
    position: static;
    max-height: none;
    padding: 0;
    box-shadow: none;
    flex-direction: row;
    gap: 1rem;
  }
  .menu-toggle{ display: none; } */

  nav ul{
    gap: 2.5rem;
  }

    #about #content {
        gap: 2rem;
    }

    #services-list {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* Center the contact page and ensure the form is centered */
#contact-page {
    display: flex;
    flex-direction: column;
    align-items: center;      /* horizontal centering */
    justify-content: center;  /* vertical centering */
    gap: 2rem;
    padding: 2rem;
    min-height: calc(100vh - 200px); /* adjust if header/footer sizes differ */
    box-sizing: border-box;
}

#contact-page .contact-info {
    width: 100%;
    max-width: 900px;
    text-align: center;
}

#contact-page .contact-form {
    width: 100%;
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: center; /* center form horizontally */
}

#contact-page .contact-form form {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Keep spacing responsive */
@media (max-width: 900px) {
    #contact-page {
        padding: 1.25rem;
        min-height: auto;
    }
    #contact-page .contact-info,
    #contact-page .contact-form {
        max-width: 100%;
    }
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}