@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');

body {
    font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'ClashGrotesk-Regular';
}

:root {
    --primary-color: #E96069;
    --second-color: #0B4559;
    --third-color: #4A4A4A;
    --black-color: #000000;
    --white-color: #ffffff;

}

.bg-lighblue {
    background-color: #F0F8F7;
}

.btn-lightred {
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 16px;
    border-radius: 50px;
    padding: 5px 10px;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
    max-width: fit-content;
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.btn-lightred:hover {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.btn-transp {
    border: 1px solid var(--primary-color);
    text-decoration: none;
    padding: 5px 10px;
    color: var(--primary-color);
    background: transparent;
    border-radius: 50px;
    transition: all 0.5s ease-in-out;
    max-width: fit-content;
    width: 100%;
    transition: all 0.5s ease-in-out;

}

.btn-transp:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: scale(1.1);
}

/* .btn-yellow:hover,
.btn-transparent:hover {
   
    background: var(--white-color);
    color: var(--primary-color);
} */

.sub-title {
    font-size: 18px;
    color: var(--primary-color);
    text-transform: uppercase;
}


/*********Navigation************/


a.navbar-brand img {
    max-width: 200px;
}
/* ===== NAVBAR BASE ===== */
.navbar-nav .nav-link {
  font-size: 18px;
  color: var(--black-color);
  font-family: 'ClashGrotesk-Regular';
  font-weight: 500;
}
/* Top-level menu spacing only */
.navbar > .container .navbar-nav > li {
  padding: 0 20px;
}
/* ===== DROPDOWN ===== */
.navbar-nav .menu-item-has-children {
  position: relative;
}

/* Submenu hidden by default */
.navbar-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  border-radius: 10px;
  padding: 10px 0;
  z-index: 999;
}

/* Submenu links */
.navbar-nav .sub-menu li a {
  padding: 10px 20px;
  display: block;
  font-size: 16px;
  color: #000;
}

.navbar-nav .sub-menu li a:hover {
  background: #f5f5f5;
  color: var(--primary-color);
}

/* ===== DESKTOP HOVER ===== */
@media (min-width: 992px) {
  .navbar-nav .menu-item-has-children:hover > .sub-menu {
    display: block;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 991px) {
  .navbar-nav .sub-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    padding-left: 15px;
  }

  .navbar-nav .menu-item-has-children.open > .sub-menu {
    display: block;
  }
	.navbar-nav .menu-item-has-children > a::after {
    content: "▾";
    position: absolute;
    left: auto;
    top: 55%;
    transform: translateY(-55%);
    font-size: 14px;
    transition: transform 0.3s ease;
    right: auto !important;
}
}

/* ===== DROPDOWN ICON ===== */
.navbar-nav .menu-item-has-children > a {
  position: relative;
  padding-right: 28px;
}

/* Arrow icon */
.navbar-nav .menu-item-has-children > a::after {
  content: "▾";
  position: absolute;
  right: -10px;
  top: 60%;
  transform: translateY(-60%);
  font-size: 24px;
  transition: transform 0.5s ease;
}

/* Rotate icon on desktop hover */
@media (min-width: 992px) {
  .navbar-nav .menu-item-has-children:hover > a::after {
    transform: translateY(-50%) rotate(180deg);
  }
}

/* Rotate icon on mobile click */
@media (max-width: 991px) {
  .navbar-nav .menu-item-has-children.open > a::after {
    transform: translateY(-50%) rotate(180deg);
  }
}


/***** Banner Slider *****/

.banner-slider {
    background-color: #F0F8F7;
}

.banner-slider h2, .banner-slider h1 {
    font-size: 72px;
    font-weight: 900;
    color: var(--black-color)
}

.banner-slider h2 span, .banner-slider h1 span span {
    color: var(--primary-color)
}

.banner-slider p {
    font-size: 16px;
    color: var(--third-color);
    font-weight: 300;
}

.banner-slider .banner-slider-content li {
    margin: 0 10px;
}

.banner-slider .banner-slider-content a {
    text-decoration: none;
}


.circle-bg {
    background-color: #fff;
    border-radius: 50%;
    width: 400px;
    height: 400px;
    position: absolute;
    top: 0;
    left: 20px;
    z-index: 1;
}

.circle-img img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
}



/* ****About us*** */

.about-us img {
    max-width: 500px;
    width: 100%;
    box-shadow: 10px -10px 0px #F0F8F7;
    border-radius: 35px;
    transition: box-shadow 0.5s ease-in-out;
}

.about-us img:hover {
    animation: shadowMove 0.6s forwards;
}

@keyframes shadowMove {
    0% {
        box-shadow: -10px 10px 0px #F0F8F7;
    }

    100% {
        box-shadow: 10px -10px 0px var(--primary-color);
    }
}

.about-us .about-content h2 {
    font-size: 42px;
    text-transform: uppercase;
    color: var(--second-color);
    padding-bottom: 20px;
}

.about-us .about-content p {
    font-size: 16px;
    line-height: 2;
    color: var(--third-color)
}


/* **Our Service** */

.our-service h2 {
    text-align: center;
    font-size: 42px;
    color: var(--second-color);
    padding-bottom: 10px;
    font-weight: 500;
}

.our-service .service-box {
    position: relative;
    background: var(--white-color);
    padding: 30px;
    text-align: center;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease;
}

.our-service .service-box::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,
            var(--second-color) 0%,
            var(--second-color) 20%,
            var(--primary-color) 80%,
            var(--primary-color) 100%);
    z-index: -1;
    transition: bottom 0.5s ease-in-out;
    border-radius: 20px;
}

.our-service .service-box:hover::before {
    bottom: 0;
}

.our-service .service-box a {
    text-decoration: none;
}

.our-service .service-box:hover figcaption {
    color: var(--white-color);
}

.our-service .service-box figcaption {
    font-size: 24px;
    color: var(--third-color);
    padding-top: 10px;
}



/* **Testimonials** */

.testimonials h2 {
    font-size: 42px;
    font-weight: 500;
    text-align: center;
    padding: 10px 0;
    color: var(--second-color)
}

.testimonials .card {
    text-align: center;
    border: none;
    background: #F0F8F7;
    padding: 30px;
    position: relative;
    border-radius: 20px;
}

.testimonials .card h5 {
    font-size: 24px;
    color: var(--black-color);
}


.testimonials .card img {
    width: 86px;
    height: 86px;
    text-align: center;
    margin: 0 auto;
}

.custom-line {
    display: inline-block;
    width: 100px;
    height: 2px;
    background-color: #000;
    margin: 2px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.testimonials .item p {
    font-size: 16px;
    line-height: 2;
    color: var(--third-color);
}

.testimonial .owl-carousel .owl-nav.disabled {
    display: none !important;
}

.testimonial .owl-carousel .owl-dots.disabled {
    display: block !important;
}

.testimonial .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}

.testimonial .owl-dot {
    position: relative;
    margin: 0 8px;
}

.testimonial .owl-dot span {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    display: block;
    border-radius: 50%;
    transition: all 0.3s;
    margin: 0 !important;
}


.testimonial .owl-dot.active::before {
    content: "";
    position: absolute;
    top: -12px;
    left: -12px;
    width: 32px;
    height: 32px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
}

.testimonial .owl-dot.active span {
    background: var(--primary-color) !important;
}

/* **Get Touch** */

.get-touch {
    background-color: #F0F8F7;
}

.get-touch h2 {
    font-size: 42px;
    color: var(--second-color);
    padding-bottom: 10px;
    font-weight: 500;
}

.get-touch img {
    max-width: 500px;
    width: 100%;
    box-shadow: -10px -10px 0px var(--white-color);
    border-radius: 35px;
    transition: box-shadow 0.5s ease-in-out;
}

.get-touch img:hover {
    animation: shadowMoves 0.6s forwards;
}

@keyframes shadowMoves {
    0% {
        box-shadow: -10px 10px 0px #F0F8F7;
    }

    100% {
        box-shadow: -10px -10px 0px var(--primary-color);
    }
}

.get-touch .contact-form input::placeholder {
    color: #666;
    font-size: 14px;
}

.get-touch .contact-form h2 {
    font-weight: 600;
    font-size: 32px;
}




/************CopyRight **********/
.main-footer {
    background: var(--black-color)
}

.main-footer h4 {
    font-size: 24px;
    font-weight: 400;
    color: var(--white-color);
    padding: 20px 0 10px;
    line-height: 1.5;
}

.main-footer p {
    font-size: 16px;
    color: var(--white-color);
}

.main-footer ul.footer-menus {
    padding-left: 0px !important;
}

.footer-menus li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.footer-menus li i {
    min-width: 20px;
    text-align: center;
    color: var(--white-color);
}

.footer-menus li a {
    text-decoration: none;
    color: inherit;
}

.main-footer ul.footer-menus li {
    line-height: 2;
    color: var(--white-color);
}

.main-footer ul.footer-menus li a {
    color: var(--white-color);
    font-size: 16px;
    text-decoration: none;
    font-weight: 300;
}





.main-footer .col-lg-3:first-child {
    padding-left: 0;
}

.main-footer .col-lg-3:nth-child(n+2) {
    padding-left: 50px;
}

@media (max-width: 991.98px) {
    .main-footer .col-lg-3:nth-child(n+2) {
        padding-left: 30px;
    }
}

@media (max-width: 767.98px) {
    .main-footer .col-lg-3 {
        padding-left: 0;
        margin-top: 20px;
    }

    .main-footer .col-lg-3:first-child {
        margin-top: 0;
    }
}


.copyright {
    background: var(--white-color);
}

.copyright p,
.copyright p a {
    color: var(--black-color);
    font-size: 16px;
    text-decoration: none;
    margin: 0;
    padding: 16px 0;
}

/* **Breadcrumb** */

.breadcrumb-sec {
    background-image: url(../images/breadcrumbbg.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 60px 0;
    text-align: center;
}

.breadcrumb-sec .overlay {
    position: absolute;
    inset: 0;
    background-color: #F0F8F7;
    opacity: 0.85;
    z-index: 0;
}

.breadcrumb-sec h1,
.breadcrumb {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--black-color);

}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    background: transparent;
}


.breadcrumb-item+.breadcrumb-item::before {
    content: "-";
    margin: 0 8px;
    color: var(--black-color);
}

.breadcrumb li a,
.breadcrumb-item.active {
    text-decoration: none;
    color: var(--black-color);
}

.breadcrumb-sec h1 {
    color: var(--primary-color);
    font-size: 42px;
}

/* ** Who We Are ?** */

.who-weare {
    background-color: #F0F8F7;
}

.who-weare .who-weare-content {
    max-width: 650px;
    float: right;
    padding: 50px 0;
}

.who-weare img {
    height: 500px;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.who-weare .who-weare-content p {
    color: var(--third-color);
    font-size: 16px;
    line-height: 2;
}

.who-weare .who-weare-content h2 {
    font-size: 42px;
    text-transform: uppercase;
    color: var(--second-color);
    padding-bottom: 20px;
}

/* **Guide** */


.guide img {
    max-width: 500px;
    width: 100%;
    box-shadow: 10px -10px 0px #F0F8F7;
    border-radius: 35px;
}

.guide img:hover {
    box-shadow: 10px -10px 0px var(--primary-color);
}

.guide .guide-content h2 {
    font-size: 42px;
    color: var(--second-color);

}

.guide .guide-content h3 {
    font-size: 32px;
    color: var(--primary-color);
    padding-bottom: 10px;
    font-weight: 600;
}

.guide .guide-content p {
    font-size: 16px;
    line-height: 2;
    color: var(--third-color)
}

/* **Form** */

.make-appointement h2 {
    font-size: 32px;
    color: var(--second-color);
}

/* **Contact** */

.contact h5 {
    font-size: 24px;
    color: var(--primary-color);
}

.contact p {
    font-size: 16px;
    color: var(--third-color)
}


@media screen and (max-width: 1399px) and (min-width: 1200px) {
    .our-service .service-box {
        padding: 20px;
    }

    nav.navbar .container {
        max-width: 1340px !important;
        margin: 0 auto;
    }

    .navbar ul.navbar-nav li {
        padding: 0 22px;
    }

    .navbar ul.navbar-nav li a {
        font-size: 16px;
    }

    .main-footer .col-lg-3:nth-child(n+2) {
        padding-left: 15px;
    }

    .main-footer .col-lg-3:nth-child(n+3) {
        padding-left: 0;
    }
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
    .navbar ul.navbar-nav li {
        padding: 0 2px !important;
    }

    .banner-slider h2 {
        font-size: 42px;
    }

    .our-service .service-box {
        padding: 15px;
    }

    .our-service .service-box figcaption {
        font-size: 18px;
    }

    nav.navbar .container {
        max-width: 1340px !important;
        margin: 0 auto;
    }

   
    .navbar ul.navbar-nav li a {
        font-size: 15px;
    }

    .navbar .right-menus li a {
        font-size: 14px;
    }
}

@media screen and (max-width: 991px) {

    .about-us img,
    .get-touch img {
        max-width: 100%;
    }

    .who-weare .who-weare-content {
        max-width: 100% !important;
        float: right;
        padding: 50px 10px;
    }

    .about-us .about-content {
        padding-top: 50px;
    }

    .our-service .service-box {
        padding: 15px 0 1px;
        margin-bottom: 20px;
        min-height: 295px;
    }

    .our-service .service-box figcaption {
        font-size: 18px;
    }

    .navbar-collapse {
        position: absolute;
        top: 80px;
        background-color: #fff;
        width: 100%;
        left: 0;
        padding-left: 20px;
        z-index: 999;
    }

    .navbar .right-menus {
        display: block;
        padding: 0;
        padding-bottom: 20px;
    }

    .navbar .right-menus li {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 767px) {
    .banner-slider h2 {
        font-size: 42px;
    }

    .main-footer {
        background: var(--black-color);
        padding: 5px 20px;
    }

    .main-footer .col-lg-3:nth-child(n+2) {
        padding-left: 0 !important;
    }
}

@media screen and (max-width: 575px) {
    .circle-bg {
        background-color: #fff;
        border-radius: 50%;
        width: 300px;
        height: 300px;
        position: absolute;
        top: 0;
        left: 20px;
        z-index: 1;
    }

    .banner-slider h2 {
        font-size: 42px;
    }

    .circle-img {
        padding-bottom: 50px;
    }
}

/*  */
.woocommerce-shop .woocommerce.columns-4 {
    padding-top: 50px;
}

.woocommerce-shop li.product,
.woocommerce-shop li.product {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgb(0 0 0 / 25%);
    transition: all .5s ease-in-out;
    background-color: #fff;
    width: 33.33% !important;
    padding: 20px !important;
}

.woocommerce-shop li.product:hover,
.woocommerce-shop li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.woocommerce-shop li.product .woocommerce-loop-category__title,
.woocommerce-shop li.product .woocommerce-loop-product__title {
    padding: .5em 0;
    margin: 0;
    font-size: 18px !important;
    font-weight: 700;
    color: #000;
}

.woocommerce-shop li.product .price {
    font-size: 18px !important;
    font-weight: 600 !important;
}

.woocommerce-shop li.product .button {
    background: var(--primary-color);
    border-radius: 50px;
    font-size: 18px !important;
    color: #fff;
}

.woocommerce-shop li.product select {
    height: 40px !important;
}

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link) {
    min-height: 3em;
    background: var(--primary-color) !important;
    border: none;
    color: #fff !important;
    text-decoration: none;
}

/* Single product */

.woocommerce div.product .product_title {
    clear: none;
    margin-top: 0;
    padding: 0;
    color: #000 !important;
    font-size: 32px !important;
    font-weight: bolder !important;
    text-transform: uppercase !important;
    letter-spacing: 2px;
}

.woocommerce-product-details__short-description p b {
    color: #000;
    font-size: 24px !important;
    font-weight: 500 !important;


}

.woocommerce .quantity .qty {
    height: 36px;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt {
    background-color: #e96069 !important;
}

.woocommerce div.product form.cart {
    margin-bottom: 0 !important;
}

.woocommerce .product_meta .posted_in {
    color: #000;
    font-size: 18px;
    line-height: 60px;
    font-weight: 600;
}

.woocommerce .product_meta .posted_in a {
    color: #e96069
}

#sp-ea-550.sp-easy-accordion>.sp-ea-single>.ea-header a,
.sp-easy-accordion .sp-ea-single .ea-header a {
    font-size: 18px !important;
    font-weight: 500 !important;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price,
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
    color: #958e09;
    font-weight: 600;
}

#sp-ea-556.sp-easy-accordion>.sp-ea-single {
    margin-bottom: 5px;
    border: 1px solid #c8c8c8;
    border-radius: 10px;
    box-shadow: 0 2px 4px #ddd;
}

.sp-easy-accordion>.sp-ea-single>.sp-collapse>.ea-body p:first-of-type {
    padding-top: 0;
    margin-top: 0;
    font-size: 16px;
    font-weight: 400 !important;
}

.wc-block-cart-item__wrap a {
    font-size: 18px;
    color: #000;
    text-decoration: none;
    font-weight: 700;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
    background-color: #e96069;
    color: #fff;
    padding: 10px 20px;
}

.page-template-template-contact .contact a {
    text-decoration: none;
    color: #4A4A4A;
}

.woocommerce-MyAccount-content button.button,
.woocommerce-account .woocommerce-MyAccount-content button.button,
.woocommerce-account .woocommerce-MyAccount-content .button {
    background-color: #e96069;
    color: #fff;
}

.woocommerce-account .addresses .title .edit {
    float: initial !important;
    margin: 10px auto;
    color: #000;
    font-weight: 700;
}

nav.woocommerce-MyAccount-navigation ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    padding: 10px 0px;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
    line-height: 2;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 24px;
    color: #4a4a4a;
    font-weight: 700;
}

.woocommerce ul.products li.product .button {
    display: inline-block;
    margin-top: 1em;
    background-color: #e96069;
    color: #fff;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price {
    color: #958e09;
    font-size: 18px;
    font-weight: 700;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    float: left;
    margin: 0 3.8% 2.992em 0;
    padding: 0;
    position: relative;
    width: 30.05% !important;
    margin-left: 0;
    box-shadow: 0 0 10px #ddd;
    padding: 15px !important;
    border-radius: 20px;
}

.woocommerce-checkout .wc-block-components-totals-wrapper.slot-wrapper p {
    padding: 10px;
}

.inner-breadcrumb {
    margin-bottom: 45px;
}

.woocommerce-notices-wrapper a.button.wc-forward {
    background-color: #e96069;
    color: #fff;
}
