@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
}

body {
    background-color: white;
    color: black;
    text-align: center;
}

.top-section {
    background: #00AFDC;
    padding: 20px;
}

.logo-block img {
    height: 200px;
    width: auto;
    border-radius: 50%;
    border: 2px solid black;
}

.menu-tabs {
    background: #DCD158;
    margin: 0;
    padding: 0;
    font-size: 20px;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}


.nav-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
}

.nav-item {
    height: 100%;
    width: 120px;
    padding: 14px 13px;
    font-size: 14px;
    text-align: center;
    color: black;
}

.nav-item:hover {
    box-shadow: none;
    background: rgb(59, 67, 19);
    color: white;
    cursor: pointer;
    transition: ease 0.3s;
}

/* Remove the purple hyperlink color */
.nav-item a {
    color: black; /* Set your desired text color */
    text-decoration: none; /* Remove the underline */
}

.Google-Link{
    margin: 10px;
}

.Google-Link a {
    border: 1px solid black;
    border-radius: 0%;
    padding: 8px;
    background-color: #DCD158;
    color: #000000; /* Set your desired text color */
    text-decoration: none; /* Remove the underline */
    box-shadow: 0 2px 2px rgb(0, 0, 0, 0.3);
}

.Google-Link a:hover {
    background-color: rgb(44, 44, 44);
    color: white;
    cursor: pointer;
    transition: ease 0.3s;
    box-shadow: none;
}

/* Ensure visited links don’t change color */
.nav-item a:visited {
    color: black;
}

/* When hovering, change the color */
.nav-item a:hover {
    color: white;
}

/* When clicking, keep it the same */
.nav-item a:active {
    color: black;
}


/* Default Navbar Styles */
.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
}

/* Hide Hamburger Menu by Default */
.hamburger-menu {
    display: none;
    font-size: 30px;
    cursor: pointer;
    padding: 10px;
}


hr {
    height: 43px;
    border-color: rgb(59, 67, 19);
}

.content {
    display: flex;
    justify-content: space-between;
    background: #00AFDC;
    gap: 100px;
    padding: 30px;
    margin: auto;
    text-align: center;
}

.ri-star-fill{
    color: #c3b736;
}

.review-content {
    display: flex;
    justify-content: space-between;
    background: #d3d2c5;
    gap: 100px;
    padding: 50px;
    margin: auto;
    text-align: center;
}

.contact-location2{
    width: 100%;
    gap: 100px;
    padding: 50px;
    margin: auto;
    text-align: center;
}

.contact-location2 h2{
    font-size: 40px;
}

.contact-location2 p{
    margin-top: 3px;
    font-size: 30px;
}

.review{
    margin-top: 20px;
    padding: 20px;
}

.review p{
    margin-bottom: 10px;
}

.description, .slideshow {
    width: 200vh;
    background: #ffffff;
    border: 3px solid black;
    border-radius: 15%;
    box-shadow: 0 10px 10px rgb(0, 0, 0, 0.6);
}

.slideshow{
    padding: 30px;
}

.description{
    padding: 60px;
}

.description h2{
    font-size: 60px;
    border-bottom: 1px solid black ;
}

.description p{
    margin-top: 20px;
    font-size: 40px;
}

.about-us-desc,
.review-desc{
    width:100%;
}

.about-us-desc h2,
.review h2{
    font-size: 50px;
    margin-bottom: 20px;
}



.about-us-desc p,
.review p{
    font-size: 30px;
}

.slideshow-container {
    position: relative;
    background: black;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    border: 3px solid black;
    border-radius: 15%;
    box-shadow: 0 10px 10px rgb(0, 0, 0, 0.6);
}

.slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide img {
    width: 100%;
    height: 75vh;
    border-radius: 10px;
}

.slide.active {
    opacity: 1;
    position: relative;
}

/* Navigation Arrows */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.5s;
}

.prev:hover, .next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Dot Indicators */
.dot-container {
    text-align: center;
    margin-top: 10px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.dot.active {
    background-color: #717171;
}

.map-container {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    border: 3px solid black;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}


.easy-steps {
    background: #b4c3c7;
    padding: 30px;
    font-size: 18px;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}

.easy-steps h2{
    font-size: 60px;
    color: black;
    margin-bottom: 30px;
}

.step-boxes{
    display: flex;
    justify-content: space-between;
}

.step-1, .step-2, .step-3{
    width: 33%;
    margin: 5px;
    padding: 20px;
    border: 2px solid black;
    border-radius: 15%;
    background: white;
    box-shadow: 0 10px 10px rgb(0, 0, 0, 0.6);
}

.step-1 img, .step-2 img, .step-3 img{
    height: 250px;
    margin: 5px;
    border-radius: 50%;
    border: 5px solid black;
    box-shadow: 0 3px 3px rgb(0, 0, 0, 0.6);
}



.contact-location {
    background: #DCD158;
    padding: 30px;
    border-bottom: 1px solid black;
}

footer {
    background: #00AFDC;
    color: white;
    padding: 10px;
}

/* ======== BASE FONT STYLES (Consider adding to the top of your CSS) ======== */
html {
    font-size: 26px; /* Establishes a base for 'rem' units. Adjust as needed. */
}

body {
    background-color: white;
    color: black;
    text-align: center;
    font-size: 1rem; /* Default body text size (16px if html font-size is 16px) */
    line-height: 1.6; /* Improves readability */
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2; /* Consistent line height for headings */
    margin-bottom: 0.75em; /* Spacing below headings */
}

/* Example: Adjusting existing large font sizes */
.description h2 {
    /* Was: font-size: 60px; */
    font-size: 2.5rem; /* Roughly 40px, more scalable */
    border-bottom: 1px solid black;
}

.description p {
    /* Was: font-size: 40px; */
    font-size: 1.25rem; /* Roughly 20px */
    margin-top: 1rem; /* Was 20px */
}

.about-us-desc h2,
.review h2 {
    /* Was: font-size: 50px; */
    font-size: 2.25rem; /* Roughly 36px */
    margin-bottom: 1rem; /* Was 20px */
}

.about-us-desc p,
.review p {
    /* Was: font-size: 30px; */
    font-size: 1.125rem; /* Roughly 18px */
}
.review p b { /* Make reviewer name slightly more prominent */
    font-size: 1.1em; /* Relative to the parent <p> tag's font-size */
}

.easy-steps h2 {
    /* Was: font-size: 60px; */
    font-size: 2.5rem; /* Roughly 40px */
    color: black;
    margin-bottom: 1.5rem; /* Was 30px */
}

.easy-steps h5 { /* Consider if h3 or h4 would be semantically better */
    font-size: 1.125rem; /* Roughly 18px */
}


.contact-location2 h2 {
    /* font-size: 40px; */
    font-size: 2rem; /* ~32px */
}

.contact-location2 p {
    margin-top: 3px;
    /* font-size: 30px; */
    font-size: 1.25rem; /* ~20px */
}

/* ======= MEDIA QUERIES FOR SMALLER SCREENS (Add more specific adjustments here) ======== */

/* Consolidate your existing @media screen and (max-width: 1024px) rules */
@media screen and (max-width: 1024px) {
    /* ... your existing layout rules ... */

    .description h2 {
        font-size: 2rem; /* Adjust down for tablets */
    }
    .description p {
        font-size: 1.1rem;
    }

    .about-us-desc h2,
    .review h2 {
        font-size: 1.8rem;
    }
    .about-us-desc p,
    .review p {
        font-size: 1rem;
    }

    .easy-steps h2 {
        font-size: 2rem;
    }
    .easy-steps h5 {
        font-size: 1rem;
    }

    .contact-location2 h2 {
        font-size: 1.75rem;
    }
    .contact-location2 p {
        font-size: 1.1rem;
    }

    /* Adjust general body font if needed, or target specific elements */
    body {
        font-size: 0.95rem; /* Slightly smaller base for smaller tablets */
    }
}

@media screen and (max-width: 768px) {
    /* ... your existing layout rules ... */

    html {
        font-size: 15px; /* Optionally reduce base for rem calculations on mobiles */
    }

    body {
        font-size: 1rem; /* This will now be 15px */
    }

    .description h2 {
        font-size: 1.8rem; /* Further adjust down */
    }
    .description p {
        font-size: 1rem;
    }

    .about-us-desc h2,
    .review h2 {
        font-size: 1.6rem;
    }
    .about-us-desc p,
    .review p {
        font-size: 0.95rem;
    }

    .easy-steps h2 {
        font-size: 1.8rem;
    }
    .easy-steps h5 {
        font-size: 0.95rem;
    }

    .contact-location2 h2 {
        font-size: 1.5rem;
    }
    .contact-location2 p {
        font-size: 1rem;
    }

    .nav-item {
        /* font-size: 12px; from your code */
        font-size: 0.9rem; /* Example with rem */
    }
}

@media screen and (max-width: 480px) {
    /* ... your existing layout rules ... */
    html {
        font-size: 14px; /* Further reduce base for rem calculations on very small mobiles */
    }

    body {
        font-size: 1rem; /* This will now be 14px */
    }

    .description h2 {
        font-size: 1.5rem;
    }
    .description p {
        /* font-size: 18px; from your code */
        font-size: 0.9rem; /* This would be ~12.6px if html is 14px */
    }

    .about-us-desc h2,
    .review h2 {
        font-size: 1.4rem;
    }
    .about-us-desc p,
    .review p {
        font-size: 0.85rem;
    }

    .easy-steps h2 {
        font-size: 1.5rem;
    }
    .easy-steps h5 {
        font-size: 0.9rem;
    }

    .contact-location2 h2 {
        font-size: 1.3rem;
    }
    .contact-location2 p {
        font-size: 0.9rem;
    }

    .nav-item {
        /* font-size: 12px; from your code */
        font-size: 0.85rem; /* Example with rem */
    }

    footer {
        /* font-size: 12px; from your code */
        font-size: 0.8rem;
    }
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .nav-bar {
        flex-direction: column;
        align-items: flex-start;
        position: relative;
    }

    .hamburger-menu {
        display: block;
        background: #DCD158;
        color: white;
        padding: 10px 20px;
        font-size: 28px;
        font-weight: bold;
        border-radius: 5px;
        cursor: pointer;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #DCD158;
        position: absolute;
        top: 50px;
        left: 0;
        z-index: 1000;
        border-top: 2px solid black;
    }

    .nav-links hr {
        width: 100%;
        border: none;
        height: 2px;
        background: black;
    }

    .nav-links .nav-item {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        font-size: 18px;
        border-bottom: 1px solid black;
    }

    .nav-links .nav-item a {
        color: black;
        text-decoration: none;
        display: block;
    }

    .nav-links .nav-item:hover {
        background: rgb(59, 67, 19);
        color: white;
        cursor: pointer;
        transition: ease 0.3s;
    }

    /* When active, show the menu */
    .nav-links.active {
        display: flex;
    }
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .content {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .description, .slideshow {
        width: 90%;
    }

    .nav-bar {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-item {
        width: 30%;
        padding: 10px;
        font-size: 12px;
    }
    

    .step-boxes {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .step-1, .step-2, .step-3 {
        width: 80%;
    }
}

@media screen and (max-width: 768px) {
    .top-section {
        padding: 10px;
    }

    .logo-block img {
        height: 150px;
    }

    .menu-tabs {
        font-size: 16px;
    }

    .nav-bar {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .nav-item {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }

    .content {
        flex-direction: column;
        text-align: center;
    }

    .description, .slideshow {
        width: 95%;
    }

    .slideshow-container {
        width: 100%;
    }

    .slide img {
        height: auto;
        max-height: 60vh;
    }

    .step-boxes {
        flex-direction: column;
        align-items: center;
    }

    .step-1, .step-2, .step-3 {
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .top-section {
        padding: 5px;
    }

    .logo-block img {
        height: 120px;
    }

    .nav-bar {
        flex-direction: column;
        align-items: center;
    }

    .nav-item {
        width: 100%;
        padding: 8px;
        font-size: 12px;
    }

    .description h2, .slideshow h2 {
        font-size: 24px;
    }

    .description p {
        font-size: 18px;
    }

    .slideshow-container {
        width: 100%;
        border-radius: 10px;
    }

    .slide img {
        height: auto;
        max-height: 50vh;
    }

    .prev, .next {
        font-size: 24px;
        padding: 5px;
    }

    .step-boxes {
        flex-direction: column;
        align-items: center;
    }

    .step-1, .step-2, .step-3 {
        width: 90%;
    }

    footer {
        font-size: 12px;
    }
}
