@import url('https://fonts.googleapis.com/css2?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&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@200..800&display=swap');
:root {
    --color-01: #F8FAFF;
    --color-02: #ef001e;
    --color-03: #000;
    --color-04: #0D274E;
    --color-05: #c2c2c2;
    --color-06: #ffffff;
    --color-07: #727272;

    --color-08: #fbfaee;
    --color-09: #e4eff0;
    --color-10: #f5f5f5;
    
    --font-01:'Poppins', sans-serif;
    --font-02:"Oxanium", sans-serif;
}
*{margin: 0;padding: 0;box-sizing: border-box;}
.w{width: 1200px;margin: 0 auto;}
.fsb{display: flex;justify-content: space-between;}
.fsa{display: flex;justify-content: space-around;}
.fcc{display: flex;justify-content:center; align-items: center;}
.fccc{display: flex;flex-direction: column; align-items: center; text-align: center;}
.d {display: flex;}
select {
    text-transform: capitalize;
}
select:focus {
  outline: none;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #ffffff inset !important;
  -webkit-text-fill-color: #761b1b !important;
  color: #761b1b !important;
}


body {
    background-color: var(--color-06);
}

a {
    font-family: var(--font-01);
    text-decoration: none;
}

p {
    color: var(--color-05);
    font-family: var(--font-01);
    font-weight: 300;
}
h3, h2 {
    font-family: var(--font-02);
}
span {
    font-family: var(--font-01);
}

.i1 {
    width: 130px;
    height: auto;
    margin-top:10px;
}
.i2 {
    width: 19px;
    height: 19px;
}
 .i20{
    border-radius: 50%;
    width: 100%;
    transition: 0.5s all;
 }
 .i20:hover{
    border-color: #f1c1c1;
    box-shadow: 0px 0px 7px 2px rgba(239, 0, 30, 0.2);
 }
.d2 {
    max-width: 1200px;
    margin: 0 auto; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    background-color: white;
    border-radius: 12px;
    padding: 5px 15px;
}
.ul1 {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}
.l1 {
    position: relative;
}
.l1 .u1 {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-06);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    min-width: 220px;
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    flex-direction: column;
    gap: 0;
    z-index: 1000;
    list-style:none;
}
.l1:hover .u1 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.l1 .u1 .l1 {
    width: 100%;
    margin: 0;
}
.l1 .u1 .a1 {
    display: block;
    padding: 12px 20px;
    color: var(--color-03);
    text-transform: none;
    font-weight: 400;
    border-bottom: 1px solid var(--color-10);
    transition: all 0.3s ease;
}
.l1 .u1 .a1:last-child {
    border-bottom: none;
}
.l1 .u1 .a1:hover {
    background: var(--color-10);
    color: var(--color-02);
    padding-left: 25px;
}
.d3 {
    justify-content: flex-end;
    display: flex;
    gap: 25px;
}
.a1 {
    text-decoration: none;
    font-weight: 500;
    color: var(--color-03);
    text-transform: uppercase;
}
.a1:hover {
    color: var(--color-02);
}
.a3 {
    display: flex;
    transition: opacity 0.3s ease-in-out;
    border-radius: 50%;
    background: var(--color-04);
    height: 33px;
    padding: 7px;
    width: 33px;
}
.a3:hover {
    background: var(--color-02);
}
.a30{
    width: 33px;
    height: 33px;
}
.a2 {
    display: flex;
}
.i3 {
    width: 30px;
    height: 30px;
    display: none;
    cursor: pointer;
    z-index: 1001;
}
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px; 
    height: 100%;
    background-color: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.4s ease-in-out; 
    padding-top: 80px;
    /* Remove display: block from here if you have it */
}
.mobile-menu.active {
    transform: translateX(0);
}
.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-menu ul li a {
    display: block;
    padding: 15px 30px;
    text-decoration: none;
    color: var(--color-03);
    font-weight: 500;
    text-transform: uppercase;
    border-bottom: 1px solid #eee;
}
.mobile-menu-contact {
    padding: 20px 30px;
    display: flex;
    gap: 15px;
    border-top: 1px solid #eee;
}
body.no-scroll {
    overflow: hidden;
}
.i345 {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 20px;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000; 
    background-color: var(--color-06);
    transition: all 0.3s ease; 
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

}


/* footer  */
.footer-section {
    background-color: var(--color-04);
    color: var(--text-color-light);
    border-radius: 40px 40px 0px 0px;
    padding: 80px 0 0;
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.i456 {
    width: 20px;
    height: 20px;
}

.footer-top {
    text-align: center;
    padding-bottom: 60px;
}

.footer-tagline {
    font-size: 16px;
}

.p100 {
    font-size: 16px;
}

.footer-links-grid {
    display: flex;
    justify-content: space-between;
    padding: 60px 0;
    border-bottom: 2px solid #283655;
    border-top: 2px solid #283655;
}
.i145 {
    width: 22px;
    height: 22px;
}

.footer-col {
    width: 25%;
    padding: 0 15px;
}

.footer-col:last-child {
    width: auto;
}

.footer-col h3 {
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 25px;
    color: var(--color-06);
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 15px;
    color: var(--color-05);
}

.footer-list a {
    color: var(--text-color-faded);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-list a:hover {
    color: var(--color-02);
}

.contact-item {
    display: flex;
    align-items: center;
    color: var(--text-color-faded);
    font-size: 14px;
    margin-bottom: 15px;
}

.contact-item i {
    font-style: normal;
    margin-right: 10px;
    color: var(--orange);
    font-size: 16px;
    line-height: 1.5;
}

.contact-item a {
    font-size: 16px;
    color: var(--color-05);
    text-decoration: none;
    margin-left: 5px;
}

.social-icons {
    display: flex;
    gap: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background-color: var(--color-05);
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    color: var(--text-color-light);
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s;
}

.social-link:hover {
    background-color: var(--color-02);
}

.footer-bottom {
    background-color: var(--light-blue);
    padding: 20px 0;
    font-size: 13px;
    color: var(--text-color-faded);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom a {
    color: var(--text-color-faded);
    text-decoration: none;
}

.i100 {
    width: 240px;
    height: auto;
}

.review-box {
    width: 175px;
    padding: 15px 20px;
    text-align: center;
    background-color: white;
    border: 2px solid var(--color-02);
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.business-name {
    font-size: 20px;
    font-weight: bold;
    color: var(--color-03);
    margin-bottom: 15px;
    text-decoration: underline;
    text-decoration-color: var(--color-03);
}

.rating-dots {
    font-size: 0;
    margin-bottom: 5px;
    margin-top: 5px;
}

.rating-dots .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 2px;
    background-color: var(--color-03);
    border-radius: 50%;
}

.review-count {
    font-size: 16px;
    color: #888;
    margin-bottom: 15px;
    font-family: var(--font-01);
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.i102 {
    width: 80px;
}

.feedback-button {
    display: inline-block;
    padding: 10px 15px;
    color: var(--color-02);
    border: 3px solid var(--color-02);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: background-color 0.3s, color 0.3s;
    margin-top: 10px;
}

.feedback-button:hover {
    background-color: var(--color-02);
    color: #222222;
}
.z5i1 {
    width: 50px;
    height: 50px;
}
.d120 {
    width: 35%;
}
.d121 {
    width: 20%;
}

.contact-info{transition: 0.3s all;}

.contact-info:hover {
    color: var(--color-02);
}

/* Form Errors */

.ko1{
    color: red;
    font-size: 14px;
    margin-top: 5px;
    font-family: var(--font-01);
}

.w3l1{font-family: var(--font-01);}

/* Dropdown direction helpers (mirrors the x2 form styles) */
.w3u1.open-up {
    top: auto;
    bottom: 45px;
    /* border-top: 1px solid #ccc;
    border-bottom: 0; */
    border-radius: 14px;
    /* border-radius: 5px 5px 0 0; */
    z-index: 10000 !important;
}

.w3u1.open-down {
    top: 45px;
    bottom: auto;
    /* border-top: 0; */
    /* border-radius: 0 0 5px 5px; */
    border-radius: 14px;
    z-index: 10000 !important;
}

.w3u1.open-up::before,
.w3u1.open-down::before {
    display: none;
}

/* Calendar/hour pickers: mirror the x2 dropdown direction helpers */
.w1d1,
.w2d1 {
    transition: top 200ms ease, border-radius 200ms ease;
}

.w1d1.open-down,
.w2d1.open-down {
    top: calc(100% + 12px);
    bottom: auto;
    border-radius: 0 0 5px 5px;
}

.w1d1.open-up,
.w2d1.open-up {
    top: auto;
    bottom: calc(100% + 12px);
    border-radius: 5px 5px 0 0;
}
#topBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: transparent;
    color: #007bff;
    cursor: pointer;
    font-size: 50px;
    padding: 0;
    transition: color 0.3s;
}

#topBtn:hover {
    color: #0056b3;
}
.i3456 {
    width: 50px;
}

/* start typing effect */
#typing::after {
    content: "|";
    margin-left: 5px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}
/* end typing effect */


         /* responsive  */
      
        @media screen and (max-width: 1240px) {
            .w {
                width: 96%;
                margin: 0 auto;
            }
        }

        @media screen and (max-width: 992px)  {
            .footer-links-grid {
                flex-wrap: wrap;
                row-gap: 40px;
            }
            .footer-col {
                width: 50%;
            }
            .footer-col:last-child {
                width: 50%;
            }
            .social-icons {
                display: flex;
            }

            /* header  */
            .ul1,
            .d3 {
                display: none;
            }

            .i3 {
                display: block; 
            }
            
            .l1 .u1 {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                margin-top: 0;
            }
        }

        @media screen and (max-width: 768px) {
            .footer-col , .footer-col:last-child {
                width: 48%;
            }
        }

        @media screen and (max-width: 630px) {
            .footer-col , .footer-col:last-child {
                width: 100%;
                text-align: center;
                align-items: center;
                justify-content: center;
                display: flex;
                flex-direction: column;
            }
            .footer-bottom-content {
                justify-content: center;
                text-align: center;
            }
            .i3456 {
                width: 35px;
            }
            #topBtn {
                bottom: 10px;
                right: 10px;
            }

        }

        @media screen and (max-width: 400px) {
            .d2 {
                padding: 0 20px;
            }
        }



