@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;600;700&display=swap');

:root {
    --primary-color: #014599;
    --secondary-color: #e20612;
    --green-color: #4CAF50;
    --background-color: #fff;
    --text-color: #333;
    --font-family: "Montserrat", sans-serif;
    --Bebas: "Bebas Neue", sans-serif;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
}

ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

.button,
.buttonSec {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 10px 20px;
    border-radius: 8px;
    transition: 0.3s ease;
    border: none;
    color: #fff;
}

.custombtn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 10px 20px;
    border-radius: 8px;
    transition: 0.3s ease;
    border: none;
    color: #fff;
}

.cstm1 {
    background: linear-gradient(#1b478e, #0a2b5c);
    border: 2px solid #3866ad;
    box-shadow: 0 o 5px #0a2b5c;
}

.cstm2 {
    background: linear-gradient(#295aab, #113470);
    border: 2px solid #3d5fa6;
    box-shadow: 0 o 5px #113470;
}

.cstm3 {
    background: linear-gradient(#404045, #232323);
    border: 2px solid #707073;
    box-shadow: 0 o 5px #232323;
}

.cstm4 {
    background: linear-gradient(#408f25, #124c12);
    border: 2px solid #74b157;
    box-shadow: 0 o 5px #124c12;
}

.smdSw {
    display: none;
}

.button {
    background-color: var(--primary-color);
}

.button:hover {
    background-color: var(--secondary-color);
}

.buttonSec {
    background-color: var(--secondary-color);
}

.buttonSec:hover {
    background-color: var(--primary-color);
}

/* ===== Header Top ===== */
.headerUp {
    background: var(--primary-color);
    color: #fff;
    font-size: 14px;
    padding: 10px 0;
}

.headerUp .location {
    display: flex;
    align-items: center;
    gap: 8px;
}

.headerUp .location a {
    color: #fff;
}

.headerUp .socialLink a {
    color: #fff;
    margin-left: 8px;
}

/* ===== Navbar ===== */
.navbar {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand img {
    max-width: 140px;
}

.navbar-nav .nav-item {
    padding: 0 0 !important;
}

.navbar-nav .nav-link {
    font-size: 15px !important;
    font-weight: 600;
    margin-right: 15px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 5px;
}

.signUp a {
    font-size: 14px;
    font-weight: 600;
}



/* heroSlider start */
.heroSlider {
    width: 100%;
    /* height: 80vh; */
    position: relative;
    overflow: hidden;
}

.heroSlider .item {
    width: 100%;
    height: 80vh;
    position: relative;
}

.heroSlider .item>img {
    width: 100%;
    height: 80vh;
    object-fit: top / cover;
}

.heroSlider .item .infoBox {
    position: absolute;
    width: 100%;
    /* padding-bottom: 50px; */
    /* height: calc(100% - 50px); */
    height: 100%;
    top: 0%;
    left: 0%;
    background: #00000033;
    display: flex;
    align-items: center;
    flex-direction: column;
    color: var(--container-color);
    justify-content: center;
}

.title {
    display: block;
    font-family: var(--Bebas);
    letter-spacing: 3px;
    font-size: 48px;
    font-weight: 700;

}

.heroSlider .item .infoBox h5 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 34px;
    text-align: center;
    color: var(--container-color);
}

.heroSlider .item .infoBox h5 img {
    width: 267px;
    height: auto !important;
}

.heroSlider .item .infoBox h5 a img {
    width: 220px;
    height: auto !important;
}

.heroSlider .item .infoBox p {
    text-align: center;
}

    



.heroSlider .slick-next::before,
.heroSlider .slick-prev::before {
    background: var(--secondary-color);
    color: var(--background-color);
    font-size: 15px;
}

.heroSlider .slick-prev:before {
    content: '➜';
    transform: rotate(-180deg);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    color: var(--background-color);
    font-size: 15px;
    opacity: 1;
}

.heroSlider .slick-prev {
    left: 10px !important;
    top: 50%;
}

.heroSlider .slick-next {
    right: 30px;
    top: 50%;
}

[dir=rtl] .heroSlider .slick-next {
    right: auto;
    right: -15px
}

.heroSlider .slick-prev {
    right: 35px !important;
    z-index: 99;
}

.heroSlider .slick-next:before {
    content: '➜';
    background: var(--secondary-color);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    color: var(--background-color);
    font-size: 15px;
    opacity: 1;
}

.butn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

/* heroSlider End*/



/* aboutUs */
.aboutUs {
    padding: 50px 0 50px 0;
}

.aboutUs .abtUp {
    padding: 30px;
    border-radius: 10px;
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
    background: #fff;
    z-index: 9999;
    box-shadow: 0 0 10px #0145991a;
    margin-top: -85px;
    margin-bottom: 30px;
}


.aboutUs .abtUp h5 {
    font-size: 14px;
}




/* === Feature Cards === */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-bottom: 50px;
}

.feature-card {
    background: var(--primary-color);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 1.8rem 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.feature-card:nth-child(2) {
    background: var(--secondary-color);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.15);
}

/* === Icon === */
.feature-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fff, #fff);
    color: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.feature-card:nth-child(2) .feature-icon {
    color: var(--secondary-color);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* === Text === */
.feature-content .featureTitle {
    font-family: var(--Bebas);
    letter-spacing: 1px;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #fff;
}

.feature-content p {
    font-size: 13px;
    color: #fff;
    line-height: 1.6;
}

/* === Animation === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(1) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.6s;
}

/* === Responsive === */
@media (max-width: 768px) {
    .custombtn {
        font-size: 14px;
        width: 100%;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .feature-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-icon {
        margin-bottom: 1rem;
    }

    .nav-link svg {
        width: 25px !important;
    }

    .infoBox svg,
    .infoBox img {
        width: 20px !important;
        height: auto !important;
    }
}

.aboutUs .abtUp a {}

.aboutUs .abtUp img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    z-index: -1;
}



.abtCont {
    padding: 0px 0;
}

.abtCont .left {
    /* display: flex;
    justify-content: space-evenly;
    position: relative;
    padding-bottom: 50px; */
}

.abtCont .left img {
    max-height: 476px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/* .abtCont .left img:nth-child(2) {
    position: absolute;
    right: 0;
    bottom: -0;
    border-top: 10px solid var(--background-color);
    border-left: 10px solid var(--background-color);
    border-radius: 10px;
} */

.abtCont p {
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 0px;
}

.abtCont .right ul li {
    font-size: 13px;
    margin: 5px;
}

.abtCont .right ul li i {
    color: var(--secondary-color);
}

.abtCont .right p,
.abtCont .right img,
.abtCont .right span,
.abtCont .right .call {
    padding: 3px;
}

.abtCont .right .call {}

.abtCont .right .call a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--primary-color);
    border-radius: 40px;
    color: var(--background-color);
    padding-right: 20px;
    background: var(--primary-color);
    transition: 0.5s all ease;
}

.abtCont .right .call a:hover {
    background: var(--secondary-color);
    transition: 0.5s all ease;
}

.abtCont .right .call a i {
    transition: 0.5s all ease;
    display: inline-block;
    background: var(--secondary-color);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--background-color);
    font-size: 19px;
    border-radius: 50%;
    margin: 3px;
}

.abtCont .right .call a:hover i {
    transition: 0.5s all ease;
    background: var(--primary-color);
}

.abtCont .right .call a span {
    font-size: 19px;
    font-weight: 600;
}

/* aboutUs */
/* scheduling */
.scheduling {
    background: var(--primary-color);
    padding: 30px;
}

.scheduling .schedBtn {
    /* position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%); */
    font-family: var(--font-family);
    display: inline-block;
    padding: 10px 30px;
    font-size: 13px;
    font-weight: 800;
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 30px;
}

.scheduling .schedBtn:hover {
    transition: background-color 0.3s ease;
    background-color: var(--background-color);
    color: var(--primary-color);
}

/* ====== INFO CARDS ====== */
.info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    /* padding: 2rem 1.5rem; */
    margin: auto;
}

.info-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.info-card .infoTitle {
    color: #1e3a8a;
    font-size: 28px;
    margin-bottom: 0.5rem;
    font-family: var(--Bebas);
}

.info-card p {
    color: #4b5563;
    font-size: 15px;
}

/* ====== MAIN SECTION ====== */
.marko {
    background: #fff;
    padding: 30px 0;
}

.main-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    padding: 1.5rem;
}

/* Left column: text */
.details {
    background: #fff;
    border-radius: 8px;
    height: 675px;
    /* padding: 20px; */
    box-shadow: inset 0 0px 15px rgba(0, 0, 0, 0.1);
}

.details marquee {
    padding: 10px;
    height: 100%;
    /* background: #10b981; */
}

.details section {
    padding: 20px;
    border-radius: 8px;
    margin: 2px 0 15px 0;
    /* border-top: 1px dashed #cbcbcb; */
    border: 1px dashed #cbcbcb;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    /* border-right: 1px dashed #cbcbcb;
    border-bottom: 1px dashed #cbcbcb;
    border-left: 1px dashed #cbcbcb; */
}

.details .detailsTitle {
    font-size: 24px;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.details p {
    color: #4b5563;
    font-size: 0.95rem;
    text-align: justify;
}

/* Right column: appointment box */
.appointment-box {
    background: #1e3a8a;
    color: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 675px;
}

.appointment-box .appointmentTitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.appointment-box p {
    font-size: 0.9rem;
    color: #dbeafe;
    margin-bottom: 1.5rem;
}

.appointment-box img {
    width: 100%;
    border-radius: 10px;
}

/* .appointment-box button {
    background: #fbbf24;
    border: none;
    color: #111827;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.appointment-box button:hover {
    background: #f59e0b;
} */

@media (max-width: 900px) {
    .main-content {
        grid-template-columns: 1fr;
    }

    .appointment-box {
        order: -1;
    }
}

/* scheduling */
/* Pricing Plan */
.pricingPlan {
    background-color: #f2f4f7;
    margin: 0;
    padding: 40px 0px;
}

p.subtitle {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 50px;
}

/* ===== PRICING CONTAINER ===== */
.pricingPlan .plans {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 95%;
    margin: auto;
}

/* ===== PLAN CARD ===== */
.pricingPlan .plan {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    width: calc(20% - 30px);
    padding: 30px 25px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricingPlan .plan:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

/* ===== RIBBON ===== */
.pricingPlan .ribbon {
    position: absolute;
    top: 35px;
    left: 0;
    right: -50px;
    margin: auto;
    width: 90%;
    height: 38px;
    border-radius: 8px 8px 0 0;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 38px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.pricingPlan .ribbon::after {
    content: "";
    position: absolute;
    bottom: -8px;
    right: 1px;
    width: 11px;
    height: 8px;
    border-bottom-right-radius: 5px;
    /* transform: skewX(-30deg); */
}

.pricingPlan .plan1 .ribbon::after {
    background: #b21807;
}

.pricingPlan .plan2 .ribbon::after {
    background: #c07200;
}

.pricingPlan .plan3 .ribbon::after {
    background: #e1a900;
}

.pricingPlan .plan4 .ribbon::after {
    background: #d7ea09;
}

.pricingPlan .plan5 .ribbon::after {
    background: #aadd03;
}

.pricingPlan .plan6 .ribbon::after {
    background: #b5f769;
}

.pricingPlan .plan7 .ribbon::after {
    background: #95e03e;
}
.pricingPlan .plan8 .ribbon::after {
    background: #84c737;
}
.pricingPlan .plan9 .ribbon::after {
    background: #38ae3e;
}
.pricingPlan .plan10 .ribbon::after {
    background: #006158;
}

/* ===== COLOR THEMES ===== */

.pricingPlan .plan1 .ribbon {
    background: #b21807;
}

.pricingPlan .plan2 .ribbon {
    background: #c07200;
}

.pricingPlan .plan3 .ribbon {
    background: #e1a900;
}

.pricingPlan .plan4 .ribbon {
    background: #d7ea09;
}

.pricingPlan .plan5 .ribbon {
    background: #aadd03;
}

.pricingPlan .plan6 .ribbon {
    background: #b5f769;
}

.pricingPlan .plan7 .ribbon {
    background: #95e03e;
}
.pricingPlan .plan8 .ribbon {
    background: #84c737;
}
.pricingPlan .plan9 .ribbon {
    background: #38ae3e;
}
.pricingPlan .plan10 .ribbon {
    background: #006158;
}



/* ===== PRICE ===== */
.pricingPlan .price {
    margin-top: 50px;
    font-size: 2rem;
    font-weight: 800;
    color: #333;
}

.flg {
    position: absolute;
    top: 5px;
    background: #f00;
    left: 5px;
    font-size: 13px;
    padding: 3px 7px;
    color: #fff;
    border-radius: 5px;
    font-weight: 500;
}

.pricingPlan .price small {
    font-size: 1rem;
    color: #777;
    font-weight: 600;
}

/* ===== FEATURES ===== */
.pricingPlan ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
}

.pricingPlan ul li {
    display: flex;
    align-items: start;
    gap: 10px;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.pricingPlan ul li .check {
    color: #2ecc71;
    font-weight: bold;
}

.pricingPlan ul li .cross {
    color: #e20612;
    font-weight: bold;
}

/* ===== BUTTON ===== */
.pricingPlan a {
    text-decoration: none;
    display: inline-block;
    width: 100%;
    padding: 10px 0;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    text-align: center;
}

.pricingPlan .plan1 a {
    background: #b21807;
}

.pricingPlan .plan2 a {
    background: #c07200;
}

.pricingPlan .plan3 a {
    background: #e1a900;
}

.pricingPlan .plan4 a {
    background: #d7ea09;
}

.pricingPlan .plan5 a {
    background: #aadd03;
}

.pricingPlan .plan6 a {
    background: #b5f769;
}

.pricingPlan .plan7 a {
    background: #95e03e;
}
.pricingPlan .plan8 a {
    background: #84c737;
}
.pricingPlan .plan9 a {
    background: #38ae3e;
}
.pricingPlan .plan10 a {
    background: #006158;
}

.pricingPlan a:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

/* ===== FOOTER ===== */
.pricingPlan .footer-note {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-top: 60px;
}

.pricingPlan .footer-note strong {
    display: block;
    color: #000;
    margin-top: 5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .pricingPlan .plan {
        width: 45%;
    }
}

@media (max-width: 700px) {
    .pricingPlan .plan {
        width: 100%;
    }
}

/* Pricing Plan */
/* PickDrop */
.PickDrop {
    background: var(--primary-color);
    padding: 50px;
}

.PickDrop .title {
    margin-bottom: 40px;
}

.PickDrop .allLoc {
    /* display: flex;
    gap: 20px; */

}

.PickDrop .allLoc .loc_box {
    width: calc(20% - 20px);
    margin: 0 8px;
}

.PickDrop .allLoc .loc_box p {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
}

.PickDrop .allLoc .loc_box iframe {
    height: 200px;
    width: 100%;
}

/* TestiMonial */
.team {
    padding: 70px 0;
    background: #fcfcfc;
}

.team h5 p {
    border-left: 3px solid var(--secondary-color);
    display: inline-block;
}

.team h5 span {
    background: var(--secondary-color);
    display: inline-block;
    margin-left: 5px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    padding: 3px 15px 3px;
    color: #fff;
}

.team span.title {
    text-align: center;
    margin-bottom: 20px;
    color: #000;
}

.team .slider {}

.team .slider .item {
    margin: 0 8px;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
    background: #fff;
}

.team .slider .item .head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.team .slider .item .head img {
    width: 55px;
}

.team .slider .item .head .data {
    margin-left: 8px;
}

.team .slider .item .head .data .dataName {
    font-size: 14px;
    color: #5d6f80;
    font-weight: 600;
    text-align: right;
}

.team .slider .item .head .data ul {
    display: flex;
    justify-content: flex-end;
}

.team .slider .item .head .data ul li {
    color: #ea7000;
}

.team .slider .item .head .data h6 {
    font-size: 10px;
    font-weight: 500;
    text-align: right;
}

.team .slider .item .head img.location {
    width: 20px;
}

.team .slider .item p {
    font-size: 13px;
    line-height: 24px;
    margin-bottom: 0;
}

.team .slick-dots li {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 3px;
    padding: 0;
    cursor: pointer;
}

.team .slick-dots li button {
    padding: 4px;

}

.team .slick-dots li.slick-active button {
    background: var(--secondary-color);

}


.team .slick-next::before,
.team .slick-prev::before {
    background: var(--secondary-color);
    color: var(--background-color);
    font-size: 15px;
}

.team .slick-prev:before {
    content: '➜';
    transform: rotate(-180deg);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    color: var(--background-color);
    font-size: 15px;
    opacity: 1;
}

.team .slick-prev {
    left: 10px !important;
    top: 50%;
}

.team .slick-next {
    right: 30px;
    top: 50%;
}

[dir=rtl] .team .slick-next {
    right: auto;
    right: -15px
}

.team .slick-prev {
    right: 35px !important;
    z-index: 99;
}

.heroSlider .slick-next:before {
    content: '➜';
    background: var(--secondary-color);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    color: var(--background-color);
    font-size: 15px;
    opacity: 1;
}

/* TestiMonial */

/* PickDrop */

/* ===== Footer ===== */
footer.footer {
    background-color: #111;
    color: #fff;
    padding-top: 50px;
}

footer h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

footer p {
    color: #fff;
    margin-bottom: 10px;
    font-size: 14px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

footer ul li a {
    color: #c7c7c7;
}

footer ul li a:hover {
    color: var(--secondary-color);
}

.fSocial ul.socialfa {
    display: flex;
    gap: 10px;
}

.fSocial ul.socialfa li a {
    background: var(--secondary-color);
    color: #fff;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s ease;
}

.fSocial ul.socialfa li a:hover {
    background: var(--primary-color);
}

.copyRight {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #333;
    margin-top: 30px;
    font-size: 13px;
    color: #c7c7c7;
}

.Lic {
    display: none;
}

.xlNone {
    display: none;
}

.smdNone {
    display: inline-block;
}

/* ===== Responsive Styles ===== */
@media (max-width: 991px) {
    .headerUp .container {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .navbar-nav {
        text-align: center;
    }

    .signUp {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }


    .xlNone {
        display: inline-block;
    }

    .smdNone {
        display: none;
    }



    footer .col-md-3 {
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .butn {
        flex-direction: column;
        row-gap: 10px;
    }

    .Lic {
        position: absolute;
        display: block;
        top: 20px;
        right: 10px;
        font-weight: 700;
    }

    .navbar-brand img {
        max-width: 150px;
    }

    .button,
    .buttonSec {
        padding: 8px 20px;
        font-size: 13px;
    }

    .smdSw {
        display: inline-block;
        width: 100%;
        margin-top: 10px;
        text-align: center;
    }
    .xlNone {
        display: inline-block;
    }

    .smdNone {
        display: none;
    }

    .smdNn {
        display: none;
    }


    footer p {
        font-size: 13px;
    }

    footer h4 {
        font-size: 16px;
    }

    .title {
        font-size: 16px;
        font-family: var(--font-family) !important;
        margin-bottom: 25px;
    }

    .headerUp .location {
        gap: 5px;
        font-size: 12px;
    }

    .headerUp .socialLink a {
        font-size: 12px;
        margin-left: 5px;
    }

    .heroSlider .item {
        height: 60vh;
    }

    .heroSlider .item .infoBox h5 {
        font-size: 11px;
        line-height: 24px;
    }

    .heroSlider .item .infoBox h5 img {
        width: 145px !important;
        height: auto !important;
    }

    .heroSlider .item .infoBox h5 a img {
        width: 120px !important;
        height: auto !important;
    }

    .heroSlider .item .infoBox p {
        margin-bottom: 7px;
        display: flex;
        flex-direction: column;
        row-gap: 7px;
    }

    .scheduling .title {
        font-size: 16px !important;
        /* margin-bottom: 0 !important; */
    }

    .scheduling .schedBtn {
        position: relative;
        display: inline-block;
        margin-top: 35px;
    }

    .info-section {
        grid-template-columns: 1fr;
    }

    .appointment-box {
        height: 720px;
    }

    .details {
        height: 400px;
    }

    .slick-dots {
        bottom: -60px;
    }

    .abtSteps .steps,
    .contactUs .contact-info {
        grid-template-columns: 1fr !important;
    }

    .contactUs .form-group {
        flex-direction: column;
    }

    .socialLink {
        display: none;
    }

}