@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Pliant:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: poppins, sans-serif;
}



nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5px;
    position: relative;
    z-index: 99;
}

.home-page header {
    background-color: rgba(92, 90, 90, 0.5);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(15px);
}

.logo a {
    text-decoration: none;
}



.logo-img {
    width: 230px;
    margin-right: 20px;


}

.nav-container .links {
    display: flex;
    gap: 25px;
    margin: auto;
    transition: ease-out 0.5s;

}

/* .links.active {
    display: flex;
}  */

/* .links a:hover {
    color: #f4b400;
    border-bottom: 2px solid #f4b400;
    transition: all 0.5s;
} */
.links a::after {
    content: '';
    width: 0;
    height: 3px;
    background: #f4b400;
    position: absolute;
    left: 0;
    bottom: -3px;
    border-radius: 2px;
    transition: all 0.5s;
}
.links a:hover::after{
    width: 100%;
}

.links a {
    text-decoration: none;
    color: black;
    font-weight: 600;
    font-size: 16px;
    position: relative;
}

.toggle-button {
    display: none;
    flex-direction: column;

}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background: black;


}


/* buttons */
.btnn {
    background-color: #f4b400;
    text-decoration: none;
    font-weight: 600;
    color: black;
    padding: 7px 30px;
    border-radius: 5px;
    transition: ease-in 0.1s;
    position: relative;

}

.btnn:hover {
    background-color: white;
    color: #f4b400;
    transition: ease-in 0.4s;

}

.btnn:hover .arrow {
    background-color: white;
    color: #f4b400;
    transition: ease-in 0.4s;
    transform: translateX(30px);

    opacity: 0;
}

.arrow {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}




.landing-btns {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.home-btn {
    outline: 1px solid white;
    color: white;
    text-decoration: none;
    padding: 7px 30px;
    border-radius: 5px;
    transition: ease-in 0.1s;

}

.home-btn:hover {
    background-color: #f4b400;
    color: white;
    outline: none;
    transition: ease-in 0.1s;
}


/* buttons */



.home-img {
    /* background-image: url(./images/slide-img-1.webp); */
    background-image: url(./images/new-home.jpg);
    background-position: center;
    background-size: cover;
    height: 100vh;
    position: relative;

}

.home-text {
    position: absolute;
    top: 40%;
    width: 50%;
    z-index: 0;


}

.home-text h1 {
    color: white;
    font-size: 60px;
    font-weight: 700;


}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}


.over-lap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1e1f20;
    color: white;
    padding: 10px 70px;
    font-weight: 700;
    border-radius: 10px;
    justify-self: center;
    width: 100%;


}

/* .over-details p {
    font-size: small;
} */
.over-details p {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.over-details h1 {
    font-size: 58px;
    font-weight: 700;
}

.stars span {
    color: #f4b400;
    font-size: 16px;
}





.landing-img2 {
    border-radius: 10px;
    width: 100%;
}

.gen-text {
    color: rgba(111, 110, 110, 0.9);
    line-height: 1.8;
}


.sec-headings {
    text-align: center;
}


.heading-icon {
    width: 40px;
    margin-top: 35px;
}

.head1 {
    font-size: 70px;
    color: rgba(113, 112, 112, 0.3);
    letter-spacing: 25px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    margin: 10px 0;




}

.service-section {
    background-color: rgba(247, 227, 165, 0.3);
    padding-bottom: 30px;


}

.img-c {
    width: 300px;
    border-radius: 10px;
}

.img3 {
    width: 400px;
}

.serv {
    padding: 0 20px;
}

.service-card {
    width: 30%;

}


/* service cards */
.flex-parent {
    display: flex;
    gap: 30px;
    margin-top: 40px;


}


.crd-image {
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.child1 {
    width: 33%;
    background-color: white;
    border-radius: 10px;
    transition: transform 0.3s ease,
        box-shadow 0.3s ease;
}

.child1:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.crd-head {
    background-color: rgb(249, 227, 168);
    width: 100%;
    padding: 10px 20px;
}

.crd-head h3 {
    font-weight: 700;
}

.crd-info {
    padding: 5px 15px;

}

/* service cards */




/* project cards */
.projects-card {
    background-color: rgba(247, 227, 165, 0.5);
    padding: 27px;
    text-align: center;
    border-radius: 10px;
    transition: ease-out 0.8s;
}

.projects-card:hover {
    background-color: black;
    transform: scale(1.05);
    transition: ease-in 0.8s;
}

.projects-card:hover h4 {
    color: white;
    transition: ease-in 0.8s;
}

.projects-card:hover h4+p {
    color: white;
    transition: ease-in 0.8s;
}

.projects-icons {
    width: 60px;
    margin-top: 10px;
}

.projects-card h4 {
    font-weight: bold;
    margin: 15px 10px;
    transition: ease-out 0.8s;
}

.projects-card h4+p {
    color: rgb(96, 96, 96);
    transition: ease-out 0.8s;
}

.flex-parent2 {
    display: flex;
    justify-content: center;
    gap: 25px;
}



/* project cards */


/* booking section */
.booking-section {
    background-color: rgba(247, 227, 165, 0.3);
    padding-bottom: 60px;
    margin-top: 60px;
}

/* form */

/* booking form */
.form-section {
    background: #f9f7f2;
    padding: 40px 20px;
}

.form-container {
    max-width: 560px;
    margin: 0 auto;
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
}

.form-tag {
    color: #f4b400;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
}

.form-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.input-group {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
    padding-bottom: 8px;
    flex: 1;
}


.input-group span {
    color: red;
    font-size: 12px;
    display: block;
}

.input-group span:empty {
    display: none;
    /* only hides span when it has no text */
}

input.notValid,
textarea.notValid {
    border-bottom: 1px solid red;
}

.icon {
    margin-right: 10px;
    color: #999;
    font-size: 16px;
}

/* this removes the outline and borders inputs normally have */
.input-group input,
.input-group select,
.input-group textarea {
    border: none;
    outline: none;
    width: 100%;
    font-size: 15px;
    color: #333;
    background: transparent;
    z-index: inherit;

}



.input-group select {
    /* appearance: none; this is to remove the arrow on select */
    cursor: pointer;
    color: #999;
}

.textarea-group {
    align-items: flex-start;
    border-bottom: 1px solid #ccc;
}

.textarea-group textarea {
    /* resize: vertical; */
    min-height: 120px;
    font-size: 15px;
    color: #333;
    padding-top: 4px;
}

input::placeholder,
textarea::placeholder {
    font-size: 18px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #555;
}

.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #f4b400;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    background: #f4b400;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 700;
    padding: 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #d4a000;
}

/* form validation contact form */
#c-nameError,
#c-lastError,
#c-emailError,
#c-phoneError,
#c-messageError {
    color: red;
    font-size: 12px;
    display: block;
}


.form-flex {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 35px;
}


/* mine */
.flex-parent3 {
    display: flex;
    gap: 25px;
    margin-top: 50px;
}

.booking-img {
    width: 50%;
    overflow: hidden;
    border-radius: 10px;
}

.booking-img:hover .form-pic {
    transform: scale(1.1);
}

.booking-form {
    width: 50%;


}

.form-pic {
    width: 100%;
    height: 79%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.4s ease;
    /* height: 100vh;  */
}

.size-6 {
    width: 20px;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 2px;
}

/* booking section ends*/





















/* sliding section */
.logo-strip {
    background: #faf8f2;
    padding: 50px 0;
    overflow: hidden;
    width: 100%;
    margin: 70px 0;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: slide-logos 18s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-slide {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo-slide img {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: opacity 0.3s, filter 0.3s;
}

.logo-slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes slide-logos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* sliding section */


/* payment cards */

.card-section {
    margin-top: 30px;
    /* overflow: hidden; */
}

.credit-card {
    width: 20px;
    margin-top: 25px;

}

.price {
    text-align: center;
    margin-top: 30px;
}

.price h1 {
    font-size: 65px;
    font-weight: 700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.payment-btn {
    text-align: center;
    margin: 15px 5px;
    background-color: rgba(244, 180, 0, 0.2);
    padding: 10px;
    border-radius: 15px;
    transition: ease-out 0.7s;
}

.payment-btn:hover {
    background-color: #f4b400;
    transition: ease-in 0.7s;
}



.payment-btn a {
    color: black;
    font-weight: 600;
    text-decoration: none;

}

.standard-btn {
    text-align: center;
    margin: 15px 5px;
    background-color: #f4b400;
    padding: 10px;
    border-radius: 15px;
}

.standard-btn a {
    color: black;
    font-weight: 600;
    text-decoration: none;
}



.card-flex {
    margin: 40px;
    display: flex;
    justify-content: center;
    gap: 25px;

}




.basic-card {
    /* background-color: whitesmoke; */

    box-shadow: 1px 1px 6px 1px;
    padding: 20px;
    border-radius: 10px;
    transition: ease-out 0.7s;

}

.basic-card:hover {
    outline: 1px solid #f4b400;
    transform: scale(1.01);
    transition: ease-in 0.5s;
}

.standard-card {
    /* background-color: #fff; */
    box-shadow: 1px 1px 6px 1px;
    padding: 25px;
    border-radius: 10px;
}

.standard-card:hover {
    outline: 1px solid #f4b400;
    transform: scale(1.01);
    transform: translateY(-2px);
    border-bottom: 6px solid #f4b400;
    transition: ease-in 0.5s;
}

.premium-card {
    box-shadow: 1px 1px 6px 1px;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    z-index: 0;

}

.premium-card:hover {
    outline: 1px solid #f4b400;
    transform: scale(1.01);
    transition: ease-in 0.5s;
}

.card-infos {
    margin-top: 25px;
    margin-bottom: 25px;
}

.card-infos span {
    color: #f4b400;
}

.card-type {
    margin-top: 15px;
}

.card-type h1 {
    font-size: 20px;
    font-weight: 700;
}

.card-type p {
    font-weight: 600;
}

/* payment card ends */



/* process cards */
.process-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 25px;
    width: 100%;
    padding-bottom: 60px;
}

.first-process h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 27px 0 15px 0;
}

.first-process {
    text-align: center;
}

.first-process p {
    padding: 0 15px;
    color: rgb(155, 154, 154);


}

/* process cards ends */


/* footer */
.footer {
    background-color: #292828;
    background-image: repeating-linear-gradient(135deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.03) 10px,
            rgba(255, 255, 255, 0.03) 20px);
    padding-top: 25px;

}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.child-one {
    padding-bottom: 20px;
}

.child-one h2 {
    color: white;
    font-size: 17px;
    font-weight: 600;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 20px 0;
}

.child-one h2>span {
    font-size: 17px;
    font-style: italic;
    color: #f5a623;
}

.child-one h3 {
    color: white;
    margin-top: 20px;
    font-size: 22px;
}

.phone {
    text-decoration: none;
    color: white;
    font-size: 22px;
    margin-top: 15px;
}

.img-flex {
    display: flex;
    gap: 10px;
}

.footer-links a {
    text-decoration: none;
    color: white;
}

.footer-links ul {
    list-style-type: none;
}

.footer-links ul li {
    padding-bottom: 10px;
}

.child-two h2 {
    color: #f4b400;
    font-size: 20px;
}

.footer-img {
    width: 25px;
}





/* footer card */


.footer-card {
    border: 1px solid white;
    text-align: center;
    padding: 40px;
    border-radius: 8px;
    background-color: rgb(44, 43, 43);
}

.footer-card h1 {
    color: white;

}

.footer-card p {
    font-weight: 600;
    color: white;

}

.phone {
    font-size: 20px;
    color: #f4b400;
    font-weight: 700;
}

.card-deets {
    display: flex;
    border: 1px solid black;
    width: 100%;
    box-sizing: border-box;
    border-radius: 10px;
    /* rounds the wrapper */
    overflow: hidden;
    /* clips children to that radius */
    background: #2a2d38;
}

.card-deets input {
    flex: 1;
    min-width: 0;
    /* prevents input from overflowing */
    border: none;
    outline: none;
    padding: 0.75rem 1rem;
    background: transparent;
}

.card-deets button {
    flex-shrink: 0;
    /* stops button from squishing */
    border: none;
    padding: 0.75rem 1.2rem;
    background: #f5a623;
    cursor: pointer;
}

.footer-links a:hover {
    color: #f4b400;
    transition: all 1s;
}

/* footer ends */






/* about page */
.about-page header {
    background-color: rgba(247, 227, 165, 0.3);
    position: sticky;
    width: 100%;
    top: 0;
    backdrop-filter: blur(20px);
    z-index: 1000;
}

.about-page nav {
    z-index: 99 !important;
}

.about-page .heading-icon {
    width: 30px;
}

.about-landing {
    background-color: rgba(247, 227, 165, 0.3);
    padding: 5px 0 40px 0;

}

.about1-pic {
    height: 500px;
    width: 450px;
    border-radius: 10px;

}

.about-section1 {
    padding: 60px 0;
}

.about-section1 h1 {
    font-weight: 700;

}

.team-img {
    width: 100%;
    border-radius: 10px 10px 0 0;
    object-fit: cover;
    object-position: center;
    transition: ease-out 0.5s;
}

.team-img:hover {
    transform: scale(1.02);
    transition: ease-in 0.5s;
}

.team-row1 {
    width: 100%;
    display: flex;
    gap: 20px;
    justify-content: space-around;

}

.team-row2 {
    width: 100%;
    display: flex;
    gap: 20px;
    justify-content: space-around;
    margin: 45px 0;
}

.team-card {
    text-align: center;
    border-radius: 10px;
    width: 33%;
}

.team-info {
    background-color: #f4b400;
    border-radius: 0 0 10px 10px;
}

.team-info p {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

.team-info h2 {
    font-weight: 700;
}




/* circle stats */
.radial {
    position: relative;
    width: 80px;
    margin: 0 auto;
}

.radial span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    font-size: 0.9rem;
}

.circles {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.radial circle {
    position: relative;
    z-index: 0 !important;
}

.first-circ p {
    font-size: 18px;
    font-weight: 700;
}

/* circle stats ends*/

.more-about {
    background-color: black;
    padding: 20px 50px;
}

.more-about h1 {
    color: white;
    font-size: 60px;
    font-weight: 700;
    padding: 10px;
}

.more-about p {
    color: white;
    font-size: 30px;
    padding: 20px 60px;

}

.more-content a {
    text-decoration: none;
    color: black;
    background-color: #f4b400;
    padding: 10px 35px;
}

.more-btn {
    margin-bottom: 25px;
}



/* testimonial starts */
.testimonial-section {
    position: relative;
    z-index: 0;
}

.section-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 100vh;
    margin-top: 40px;
}

.slider-container {
    width: 100%;
    position: relative;
    /* arrows position relative to this */
    overflow: hidden;
    padding: 0 40px;
    /* room for arrows */
}

.testimonial-container {
    display: flex;
    width: 100%;
    transition: transform 0.4s ease;
    margin-bottom: 30px;
    /* smooth slide */
}

.testimonial-box {
    background-color: grey;
    border: 1px solid black;
    flex: 0 0 calc(50% - 20px);
    /* 2 cards at a time, accounts for margin */
    text-align: center;
    margin: 0 10px;
    padding: 20px;
    border-radius: 20px;
    transition: transform 0.5s ease-out;
}

.testimonial-sdevices .testimonial-box {
    width: 300px;
    margin: 10px auto;
    display: none;
}


.testimonial-box:hover {
    transform: scale(1.01);
    transition: transform 0.5s ease-in;
}

.test-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.quote {
    font-weight: 600;

}

.customer {
    font-size: 1.2rem;
    font-weight: bold;
    color: rgb(210, 206, 206);
    /* color: #f4b400; */
}

.testimonial-box p {
    line-height: 1.5rem;
}

.go-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 24px;
    color: #f5a623;
    z-index: 10;
    user-select: none;
}

.go-icon.left {
    left: 0;
}

.go-icon.right {
    right: 0;
}

/* testimonial ends */

/* about page ends */




/* services page starts */
.services-page header {
    background-color: rgba(247, 227, 165, 0.3);
    position: sticky;
    width: 100%;
    top: 0;
    backdrop-filter: blur(15px);
    z-index: 1000;
}

.services-page .heading-icon {
    width: 30px;
}

.services-landing {
    background-color: rgba(247, 227, 165, 0.3);
    padding: 5px 0 40px 0;
}

.services-page .child1 {
    width: 33%;
    background-color: grey;
    border-radius: 10px;

}

.service-page.child1:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.service-head1 {
    font-weight: 700;
    margin: 45px 0 20px 0;
}

.service-head1 p {
    color: grey;
}

.service-img1 {
    padding-bottom: 50px;
}


/* accordion questions */
.questions-section {
    padding: 25px 0 50px 0;
}

.accordion {
    width: 75%;
    margin: 30px auto;
}

.accordion a {
    text-decoration: none;
    color: #f4b400;
    font-weight: 600;
}

.accordion-button h4 {
    font-size: 16px;
    font-weight: 700;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
    outline: none;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(247, 227, 165, 0.3);
    color: #1a1a1a;
    box-shadow: none;
}

.accordion-button {
    /* background-color: rgba(247, 227, 165, 0.3); */
    background-color: rgba(247, 227, 165, 0.3);

}

.acr-flex {
    display: flex;
}



/* service page ends */


/* booking page */
/* .booking-page header {
    background-color: rgba(247, 227, 165, 0.3);
    position: sticky;
    width: 100%;
    top: 0;
    backdrop-filter: blur(20px);
    z-index: 1000;
}

.booking-page nav {
    z-index: 99 !important;
} */

.booking-page .heading-icon {
    width: 30px;
}

.booking-landing {
    background-color: rgba(247, 227, 165, 0.3);
    padding: 5px 0 40px 0;
}

.bookingpage-content {
    display: flex;
}

/* .contact-detail1,.contact-detail2{
    display: flex;
    justify-content: space-between;
    align-items: center;
} */
.contact-detail1 h4,
.contact-detail2 h4 {
    font-size: 17px;
    font-weight: bold;

}

.contact-number a {
    text-decoration: none;
    font-size: 35px;
    color: #f4b400;
    font-weight: 600;
}

.contact-email a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 17px;
    font-weight: 300;
}

.booking-left {
    width: 50%;
}

.booking-right {
    width: 50%;
}

.booking-form-inner {
    background-color: rgba(247, 227, 165, 0.3);
    padding: 30px;
    border-radius: 10px;
}

.booking-page .form-flex {
    gap: 30px;
}

.booking-page .flex-parent3 .booking-img {
    margin-top: 28px;
}

.booking-page .booking-img span {
    color: #f4b400;
}

.booking-page .booking-img h1+p {
    margin: 30px 0;
}

.wcu-section {
    background-color: rgba(247, 227, 165, 0.3);
    padding: 30px 0;
}

.wcu-section li {
    list-style-type: none;
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 8px;
}

.wcu-section h1 {
    font-weight: bold;
}

.wcu-img {
    width: 370px;
    border-radius: 10px;
}

/* booking page ends */

/* contact Us page starts */
.contact-page {
    padding-bottom: 45px;
    margin-top: 30px;
}

.contact-page nav {
    z-index: 99 !important;
}

.contact-landing {
    background-color: rgba(247, 227, 165, 0.3);
    padding: 5px 0 40px 0;
}

.contact-page .heading-icon {
    width: 30px;
}

.contact-page .booking-form {
    background-color: rgba(246, 243, 243, 0.5);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 1px 1px 6px 1px;
}

.contact-page .form-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    /* height: 100vh;  */
}

.contact-page .booking-form h1 {
    font-weight: 700;
    color: #f4b400;
}

.contact-page .booking-form p {
    font-size: 18px;

}

.contact-top {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.ggg {
    display: flex;
    gap: 25px;
}

.ggg .fff {
    background-color: rgba(247, 227, 165, 0.3);
    border-radius: 5px;
    padding: 13px;
    text-align: center;
}

.ggg .fff svg {
    width: 33px;
    background-color: #f4b400;
    padding: 5px;
    border-radius: 50%;
}

.map-container iframe {
    border-radius: 10px;
}

.map-container {
    margin: 45px 0;
}

/* contact Us page ends */













@media(max-width:750px) {

    /* home page */
    nav {
        width: 100%;

    }

    .logo-img {
        width: 200px;
    }


    .links {
        text-align: center;
    }

    .nav-container .links {
        display: flex;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.5);
        position: absolute;
        width: 300px;
        top: 65px;
        left: -12px;
        padding: 10px 0;
        height: 100vh;
        opacity: 0;
        z-index: -1;
        visibility: hidden;
        transform: translateX(-100%);
        transition: transform 0.5s ease, opacity 0.5s ease, visibility 0.5s ease;
    }


    .nav-container .links.active {
        /* flex-direction: column; */
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        z-index: 999;

    }


    .links a {
        padding: 15px 0;
        display: block;
        color: white;
    }

    .links a:hover {
        color: #f4b400;
        border-bottom: unset;
        transition: all 0.5s;
    }

    .nav-btn {
        display: none;
    }

    .toggle-button {
        display: block;

    }

    .home-text {
        width: 85%;

    }

    .home-text h1 {
        font-size: 40px;
    }



    .head1 {
        letter-spacing: 10px;
        font-size: 40px;

    }



    .flex-parent {
        display: block;
        margin-top: 10px;
    }

    .child1 {
        width: 100%;
        margin-bottom: 10px;
    }


    .flex-parent2 {
        flex-direction: column;
    }

    .go-to-service {
        text-align: center;
        margin: 5px 0;
    }



    .flex-parent3 {
        display: block;
        gap: 10px;

    }

    .booking-img {
        width: 100%;

    }

    .booking-form {
        width: 100%;
    }


    .over-lap {
        flex-direction: column;

    }

    /* footer overlap */
    .overlap-footer {
        display: block;
    }


    .process-flex {
        display: block;
    }

    /* about page starts here */
    .about-landing {
        background-color: rgba(247, 227, 165, 0.3);
        padding: 5px 0;
    }

    .circles {
        display: block;
        text-align: center;
    }

    .first-circ {
        margin: 15px 0;
    }

    .team-row1 {
        display: block;
    }

    .team-row2 {
        display: block;
    }

    .team-card {
        text-align: center;
        border-radius: 10px;
        width: 100%;
    }

    /* more about on about page */
    .more-about {
        background-color: black;
        padding: 10px 20px;
    }

    .more-about h1 {
        color: white;
        font-size: 40px;
        font-weight: 600;
        /* padding: 5px; */
    }

    .more-about p {
        color: white;
        font-size: 20px;
        padding: 10px 30px;

    }

    /* testimonial */
    .slider-container {
        display: none;
    }

    .testimonial-sdevices .testimonial-box {
        display: block;
    }

    /* about page ends here */


    /* payment cards for both home and about page */
    .card-flex {
        display: block;
    }

    .standard-card {
        margin: 15px;
    }



    /* services page starts here */
    .services-landing {
        background-color: rgba(247, 227, 165, 0.3);
        padding: 5px 0;
        margin-bottom: 20px;
    }

    .services-page .child1 {
        width: 100%;
        background-color: grey;
        border-radius: 10px;


    }

    /* booking page */
    .booking-page .form-flex {
        display: block;
    }

    .booking-page .booking-img {
        width: 80%;
        margin: 0 auto;
    }

    .wcu-section {
        justify-content: center;
    }

    .wcu-section .col-md-4 {
        margin-bottom: 20px;
    }



    /* contact us page starts here */
    .contact-top {
        display: block;
    }

    .ggg {
        display: block;
    }

    .bbb {
        margin: 10px 0;
    }

    .ooo {
        text-align: center;
    }

    .ooo h1 {
        font-size: 30px;
    }

    .contact-page .flex-parent3 .booking-img {
        margin-bottom: 10px;

    }























    /* footer */
    .footer-flex {
        display: block;
        /* text-align: center; */
    }

}







.section-divider {
    width: 100%;
    height: 2px;
    background: #f4b400;
    border-radius: 2px;
    margin: 0 auto 20px;
}