* {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 400;
    font-size: large;
    color: rgb(55, 55, 55);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

a:hover {
    padding: 10px;
    background-color: #5858580d;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(120, 120, 120, 0.378);
}


:focus {
    outline: none !important;
}

button:focus {
    outline: none;
}

a:focus {
    outline: none;
}

body {
    background-color: #fefefe;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 2rem 1rem 4rem 1rem;
    /* box-shadow: 0 2px 5px rgba(120, 120, 120, 0.403); */
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navimage a {
    margin-left: 20px;
    box-shadow: 0 4px 5px rgba(92, 92, 92, 0.112);
}

.navbar>div:first-child {
    width: 150px;
}

.center-list {
    flex: 1;
    display: flex;
    justify-content: center;
}

.navPages {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.navPages li a {
    text-decoration: none;
    color: inherit;
}

.right-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    width: 150px;
}

.signup {
    background-color: #e05d1b;
    padding: 10px 20px;
    color: #fdfdfd;
    border: none;
    border-radius: 10px;
    font-size: larger;
    font-weight: 400;
    cursor: pointer;
    box-shadow: 0 4px 5px rgba(125, 125, 125, 0.445);
    margin-right: 50px;
}

.signup:hover {
    background-color: #e05d1b5f;

}

.desktop-signup {
    display: inline;
}

.mobile-signup {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding-right: 50px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: black;
    margin: 4px 0;
}

.cancel-icon {
    display: none;
    font-size: 2.5rem;
    cursor: pointer;
    color: black;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: #f7f7f7;
    transition: right 0.3s ease;
    z-index: 1100;
    padding: 2rem 1rem;
    flex-direction: column;
    align-items: center;
}

.mobile-menu.active {
    right: 0;
}

.mobile-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.mobile-header .mobile-signup {
    display: inline-block;
}

.mobile-menu .navPages {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    text-align: center;
}

/* Container Body Sizing */
.containerBody {
    margin-top: 10px;
    max-width: 1200px;
    margin: 50px auto 0 auto;
    padding: 6rem 2rem 2rem 2rem;
}

/* Header Content: Text and Image */
.containerfirst {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.headerContainer h1 {
    font-weight: 500;
    font-size: 50px;
}



.headerpng img {
    height: 100%;
    max-width: 100%;
    display: block;
    /* width: 100%; */
}

/* Extra dummy content */
.extra-content {
    margin-top: 2rem;
}

.navbar.scrolled {
    background-color: #f7f7f7;
}



/* Download Buttons */

.download-app {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    /* space between icon and text */
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    height: 30%;
}

.download-btn.android {
    background-color: #E05D1B;
    color: white;
}

.download-btn.ios {
    background-color: #4B1F09;
    color: white;

}

.download-btn.android:hover {
    background-color: #e05d1b5f;
}

.download-btn.ios:hover {
    background-color: #4b1f0958;
}

/* Style for the icons */
.download-btn .icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* .feature-Icon {
    background-color: #ffaf85;
    padding-top: 5px;
    width: 8%;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 4px 5px rgb(167, 167, 167);
    margin-right: 10px;

} */
.feature-Icon .icon {
    width: 150px;
    height: 150px;
    object-fit: cover;
    /* fill the box nicely */
    border-radius: 5px;
    /* optional rounding */
}

/* lay out the expert cards in a responsive grid */
.expert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* style each card */
.expert-card {
    text-align: center;
}

/* passport-style photo */
.expert-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    margin-bottom: 0.5rem;
}

/* expert name */
.expert-name {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0.25rem 0;
}

/* italicized years of experience */
.expert-exp {
    font-size: 0.9rem;
    color: #555;
    font-style: italic;
    margin: 0;
}




.features {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    margin-top: 40px;
}

.features h3 {
    font-size: 20px;
    font-weight: 500;
}

.navSecond {

    width: 100%;
    background-color: #702F0E;
    padding: 2rem 1rem 4rem 1rem;
    /* box-shadow: 0 2px 5px rgba(120, 120, 120, 0.403); */
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navflex {
    margin-left: 10% !important;
}


.containers {
    background-color: #f7f7f7;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(36, 36, 36, 0.403);
    margin-right: 10%;
    border-radius: 20px;
    margin-top: 10px;
}


.centerdiv h1 {
    text-align: center;
    margin-top: 90px;
    font-size: 2.5rem;
    font-weight: 500;
    color: #E57841;
}


/* Containers for app use sample */

.gridContainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 2;
    gap: 70px;
}



.grids {
    position: relative;
    display: block;
    width: 100%;
    box-shadow: 0 2px 5px rgba(36, 36, 36, 0.403);
    padding-top: 100px;
    border-radius: 20px;
}

.grids img {
    display: block;
    width: 100%;
    height: auto;
}

.gridsP {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.5);
    color: #000000;
    border: 2px solid #fff;
    border-radius: 15px;
    box-sizing: border-box;
    text-align: center;
}

.faq-item {
    border: 1px solid #ccc;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(120, 120, 120, 0.403);
}

.faq-question {
    cursor: pointer;
    padding: 15px;
    display: flex;
    align-items: center;
}

/* Dropdown icon on the left */
.faq-question::before {
    content: '\25B6';
    /* right arrow */
    display: inline-block;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::before {
    transform: rotate(90deg);
    /* rotate arrow when active */
}

.faq-answer {
    display: none;
    padding: 15px;
    border-top: 1px solid #eee;
    background: #fafafa;
}

.faq-item.active .faq-answer {
    display: block;
}

.black-blick-container {
    background-color: black;
    text-align: center;
    border-radius: 20px;
    border: none;
    padding: 1% 10% 1% 10%;
    box-shadow: 0 2px 5px rgba(120, 120, 120, 0.403);

}

.white-head h1 {
    color: #f7f7f7;
}

.black-blick-container p {
    color: rgb(128, 128, 128);

}

.footer {
    background-color: rgba(0, 0, 0, 0.789);
    display: flex;
    gap: 50px;
}

.footers p,
h3 {
    color: #ccc;
}

.footers a {
    color: #ccc;
}

.buttons-footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 2;
    gap: 10px;

}

.buttons-footer a {
    color: #ccc;
    padding: 10px;
    background-color: #525252;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(120, 120, 120, 0.403);

}

.buttons-footer a:hover {
    background-color: #52525225;

}

.container-update {
    display: flex;
}


.footers img {
    width: 30%;
    /* box-shadow: 0 4px 5px rgba(169, 169, 169, 0.573); */
}

.footers div {
    margin-left: 10px;
}

input {
    border-radius: 10px;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    border: none;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(120, 120, 120, 0.403);
}

.contact-icon {
    display: flex;
    gap: 15px;
}

.contact-icon img {
    width: 7%;
}

.signup-page {
    width: 50%;
}



/* Alert box styling */
#pageAlert {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #fff;
    border: 1px solid #702F0E;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.551);
    padding: 15px 20px;
    border-radius: 4px;
    opacity: 0;
    display: none;
    transition: opacity 0.5s ease-in-out;
    z-index: 1000;

}

/* When visible, opacity is set to 1 */
#pageAlert.show {
    opacity: 1;
}

.pricingContainer p {
    color: #ccc;
}

.pro {
    font-weight: bolder !important;
    font-size: 22px;
}

.pricingContainer {
    background-color: #020202;
    padding: 30px;
    border-radius: 20px;
}

.badget {
    padding: 10px;
    background: #ff7b00;
    width: 40%;
    border-radius: 10px;
}

.pricetag {
    display: flex;
    gap: 40%;
}

.listbenefit {
    display: flex;
    gap: 10px;
}


.security {
    width: 50%;
}


/* Signup */

.form-container {
    /* background: #fff; */
    max-width: 400px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}



.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input:focus {
    outline: none;
    border-color: #000 !important;
    /* change blue to black */
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label {
    top: -8px;
    font-size: 12px;
    color: #000 !important;
    /* change label color to black */
}

.form-group img.icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

/* Input styling */
.form-group input {
    padding: 20px 20px 20px 70px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #000000;
}

/* Floating label styling */
.form-group label {
    position: absolute;
    left: 40px;
    top: 12px;
    background: #fff;
    padding: 0 5px;
    color: #999;
    transition: all 0.2s ease;
    pointer-events: none;
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label {
    top: -8px;
    font-size: 12px;
    color: #007bff;
}

/* Error styling */
.form-group input.error {
    border-color: #d9534f;
}

.error-msg {
    font-size: 13px;
    color: #d9534f;
    margin-top: 5px;
    padding-left: 40px;
    display: none;
}

/* Shaking animation */
@keyframes shake {
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-5px);
    }

    40% {
        transform: translateX(5px);
    }

    60% {
        transform: translateX(-5px);
    }

    80% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(0);
    }
}

.shake {
    animation: shake 0.3s ease;
}

/* Button styling */

.signu-inputs button:disabled {
    cursor: not-allowed;
}

/* Modal styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    width: 300px;
    position: relative;
}

.modal-content h2 {
    margin-top: 0;
}

.modal-content p {
    margin: 10px 0 0;
}

.modal-content img {
    margin-top: 15px;
    cursor: pointer;
}





/* Responsive styles for screens 768px and below */

@media (min-width: 768px) {
    .speak {
        width: 20% !important;
    }

    .headerContainer {
        width: 70%;
    }

    .navflex {
        display: flex;
        margin-left: 10%;
    }

    .featureContainer {
        display: flex;
    }

    .form-group input {
        width: 70%;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 2rem 0.5rem 1.5rem 1rem;

    }

    .hamburger {
        margin-left: 25%;
    }

    .center-list {
        display: none;
    }

    .desktop-signup {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .cancel-icon {
        display: block;
    }

    /* On small screens, stack text and image vertically */
    .containerfirst {
        flex-direction: column;
        align-items: center;
    }

    /* Adjust containerBody to full width with smaller padding */
    .containerBody {
        width: 100%;
        padding: 6rem 1rem 2rem 1rem;
    }

    .download-app {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
    }

    .centerdiv h1 {
        font-size: 30px;
    }

    .gridContainer {
        position: relative;
        height: 300px;
        /* adjust height as needed */
        overflow: hidden;
        grid-template-columns: 1fr;
        /* override grid layout for slider */
    }

    .grids {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        /* start hidden */
        clip-path: circle(0% at 0 50%);
    }

    .grids.active {
        clip-path: circle(150% at 0 50%);
        transition: clip-path 2s;
    }

    .footer {
        display: block;
    }

    .footers img {
        box-shadow: 0 4px 5px rgba(169, 169, 169, 0.573);
        width: 50%;
    }

    .buttons-footer {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 2;
        gap: 10px;

    }

    .container-update {
        display: block;
    }

    .footer {
        display: inline-block !important;
    }

    .contact-icon img {
        width: 20px;
    }

    .security {
        width: 100%;
    }

    .signup-page {
        display: none;
    }
}


.testimonial-section {
    position: relative;
    display: flex;
    align-items: center;
}

.testimonial-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 1rem 2rem;
    scrollbar-width: none;
    /* hide Firefox scrollbar */
}

.testimonial-container::-webkit-scrollbar {
    display: none;
    /* hide Chrome scrollbar */
}

.testimonial-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.client-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.client-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.rating {
    color: #f5a623;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.client-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}

/* Scroll buttons */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 0 0.5rem;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.left-btn {
    left: 0.5rem;
}

.right-btn {
    right: 0.5rem;
}

.testimonials h1 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #333;
}

/* put this in your style.css AFTER all your other rules */
.whatsapp-float {
    position: fixed !important;
    bottom: 15px !important;
    right: 15px !important;
    width: 60px !important;
    height: 60px !important;
    z-index: 2147483647 !important;
    /* top of the world */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background-color: #25D366 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
    cursor: pointer !important;
    transition: transform 0.2s !important;
}

.whatsapp-float:hover {
    transform: scale(1.1) !important;
}

.whatsapp-float img {
    width: 35px !important;
    height: 35px !important;
}

/* Redundant mobile override just in case */
@media (max-width: 768px) {
    .whatsapp-float {
        display: flex !important;
        bottom: 10px !important;
        right: 10px !important;
    }
}