/*
#0A5EA9 blue
#A95A9F move
#359B5B green
#E91C5E pink
*/

:root{
    --bs-blue: #0D5EA8;
    --bs-indigo: #6610f2;
    --bs-purple: #A95A9F;
    --bs-pink: #FF70A3;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #EFBF04;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-primary: #FF70A3;
    /* Vibrant pink as primary */
    --bs-secondary: #d7a10d;
    /* Bright gold as secondary */
    --bs-secondary-hover: #F5D033;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #FFFBF0;
    --bs-dark: #343434;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));


}

:root {
    --chru-blanc: #fff;
    --chru-gris: #FFFBF0;
    --chru-noir: #000;
    --chru-pink: #FF70A3;
    --chru-pink-dark: #FF4D8C;
    --chru-gold: #EFBF04;
    --chru-gold-light: #F5D033;
    --chru-shadow: 0px 0px 1.5rem 0px rgba(255,112,163,.2);
    --chru-t-petit: .8rem;
    --chru-t-normal: 1rem;
}
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1,
body {
    color: #3a3a3a;
}

.text-playfair {
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    font-style: italic;
}
a {
    text-decoration: none;
}
.form-control {
    outline: none !important;
    box-shadow: none !important;
}

.bg-primary {
    background-color: var(--bs-primary) !important;
}
.btn-primary {
    background-color: inherit;
    color: var(--bs-primary);
    border: 3px solid var(--bs-primary) !important;
}
.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--bs-secondary);
    outline: none !important;
    box-shadow: none !important;
}

.btn-gold {
    background-color: var(--bs-secondary) !important;
}
.btn-gold:hover,
.btn-gold:focus {
    background-color: var(--bs-primary) !important;
    outline: none !important;
    box-shadow: none !important;
}

.btn-gold-outline-0:hover,
.btn-gold-outline-0:focus {
    background-color: var(--bs-primary) !important;
    outline: none !important;
    box-shadow: none !important;
}

.btn-pink {
    background-color: var(--bs-primary) !important;
    color: var(--bs-white) !important;
}
.btn-pink:hover,
.btn-pink:focus {
    background-color: var(--bs-secondary) !important;
    outline: none !important;
    box-shadow: none !important;
}

.btn-pink-outline-0:hover,
.btn-pink-outline-0:focus {
    background-color: var(--bs-secondary) !important;
    outline: none !important;
    box-shadow: none !important;
}


.btn-secondary {
    background-color: var(--bs-primary) !important;
}
.btn-purple {
    background-color: var(--bs-purple) !important;
    color: var(--bs-white) !important;
}
.btn-purple:hover,
.btn-purple:focus {
    background-color: var(--bs-primary) !important;
}
.btn-blue {
    background-color: var(--bs-blue) !important;
}

.text-primary {
    color: var(--bs-secondary) !important;
}
.text-secondary {
    color: var(--bs-primary) !important;
}
.border-primary {
    border-color: var(--bs-primary) !important;
}
.border-secondary {
    border-color: var(--bs-purple) !important;
}
.text-purple {
    color: var(--bs-purple) !important;
}

.topbar a i {
    color: var(--bs-white) !important;
}
.brand-logo {
    height: 60px;
}

.nav-lang img {
    height: 24px;
    border-radius: 3px;
}
/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-primary-outline-0 {
    border: 0;
}

.btn-light-outline-0 {
    border: 0;
    color: var(--bs-primary) !important;
}

.btn-primary-outline-0:hover,
.btn-primary-outline-0:focus {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
    outline: none !important;

}

.btn-purple-outline-0:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
}

.btn-light-outline-0:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}

/*** Topbar Start ***/
.sticky-top {
    transition: 0.5s;
    background: var(--bs-white);
}

.topbar {
    padding: 5px 0;
    background: var(--bs-primary) !important;
}

/*** Topbar End ***/

/*** Navbar Start ***/
.navbar .navbar-nav .nav-link {
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    transition: .5s;
    color: #333;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top.bg-white .navbar .navbar-nav .nav-link:hover,
.sticky-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: var(--bs-secondary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-secondary);
    color: var(--bs-primary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    border-radius: 10px !important;
    transition: .5s;
    opacity: 1;
}

@media (min-width: 1200px) {
    .navbar .navbar-collapse .border-top {
        border-top: none !important;
    }
}

#searchModal .modal-content {
    background: rgba(250, 250, 250, .6);
}
/*** Navbar End ***/

/*** Carousel Start ***/

.carousel-item:not(.carousel_item_video) {
    height: 50vh;
    /*padding-bottom: 56.25%;*/
    float: left;
    width: 100%;
    margin-left: auto;
    margin-right: -100%;

}
.carousel-item.carousel_item_video {
    height: auto;
    padding-bottom: 56.25%;
}

@media (min-width: 992px) {
    .carousel-item {
        height: 100vh !important;
    }
    .carousel-item img,
    .carousel-item video {
        /*object-fit: cover !important;*/
    }
}

.carousel-item img,
.carousel-item video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*object-fit: contain;*/
}

.carousel-item .carousel-caption {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(255, 255, 255, .5), rgba(255, 255, 255, 0.5));
    background-size: cover;
}

.carousel-control-prev,
.carousel-control-next {
    opacity: 0;
}

.carousel-control-prev .carousel-control-prev-icon,
.carousel-control-next .carousel-control-next-icon {
    background: transparent;
}

#carouselId .carousel-indicators {
    padding-bottom: 12px;
}

#carouselId .carousel-indicators li {
    border-top: 10px solid var(--bs-white);
    border-bottom: 10px solid var(--bs-white);
    border-right: 5px solid var(--bs-white);
    border-left: 5px solid var(--bs-white);
    margin-right: 10px;
    border-radius: 10px;
    transition: 0.5s;
}

#carouselId .carousel-indicators li.active {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    border-right: 15px solid var(--bs-primary);
    border-left: 15px solid var(--bs-primary);
}



@media (min-width: 992px) {
    .page-title {
        padding-top: 70px;
        padding-bottom: 186px;
    }
}
.page-title {
    justify-content: start;
}
.page-title {
    padding-top: 60px;
    position: absolute;
    z-index: 1;
}

@media (min-width: 992px) {
    .page-title h1 {
        /*max-width: 24rem;*/
        padding-left: 60px;

    }
}
.page-title h1 {
    font-size: 3rem;
    text-align: center;
}
@media (min-width: 992px) {
    .page-title h1 {
        text-align: left;
        font-size: 4rem !important;
    }
}
.page-title h1 {
    margin-bottom: 0;
    font-size: 2.5rem;
    color: #fff;
    font-weight: 900;
    line-height: 1.5;
    text-transform: uppercase;
    text-shadow: 1px 0 10px #000;
}

@media (min-width: 992px) {
    .page-title .sous-titre {
        font-size: 3rem;
        max-width: 24rem;
        padding-left: 60px;
    }
}
.page-title .sous-titre {
    margin-top: 12px;
    color: #fff;
    font-size: 20px;
    line-height: 1.2;
    text-shadow: 1px 0 10px #000;
    text-align: center;
}

/*** Carousel End ***/


.bg-breadcrumb {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/breadcrumb/wecome_room.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*** Services Start ***/
.services .services-item {
    transition: 0.5s;
}

.services .services-item:hover {
    background: var(--bs-primary) !important;
    border-color: var(--bs-secondary) !important;
}

.services .services-item:hover .services-content p,
.services .services-item:hover .services-content h3 {
    color: var(--bs-white);
    transition: 0.5s;
}

.services .services-item:hover .services-content a.btn {
    background: var(--bs-white);
    color: var(--bs-primary) !important;
}

.services .services-item:hover .services-content a.btn:hover {
    color: var(--bs-white) !important;
}

.services .services-item .services-img {
    overflow: hidden;
}

.services .services-item .services-img img {
    transition: 0.5s;
}

.services .services-item .services-img img:hover {
    transform: scale(1.3);
}

/* Modern Service Cards */
.service-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 35px 30px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--bs-primary), var(--bs-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 112, 163, 0.25);
    border-color: var(--bs-primary);
}

.service-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 112, 163, 0.1), rgba(239, 191, 4, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-icon::before {
    opacity: 0.15;
}

.service-icon img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    z-index: 1;
    position: relative;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.service-card:hover .service-icon img {
    transform: scale(1.15) rotate(5deg);
}

.service-card-content {
    text-align: center;
}

.service-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-title a {
    color: #3a3a3a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-card:hover .service-title a {
    color: var(--bs-primary);
}

.service-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    min-height: 60px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--bs-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-link {
    color: var(--bs-primary);
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
    }
    
    .service-icon img {
        width: 50px;
        height: 50px;
    }
    
    .service-title {
        font-size: 1.15rem;
    }
    
    .service-description {
        font-size: 0.9rem;
        min-height: auto;
    }
}

/*** Services End ***/



/*** About Start ***/
/*** Youtube Video start ***/
.video {
    position: relative;
    border-radius: 10px;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -45%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;

}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-secondary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--bs-white);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}
/*** Youtube Video End ***/
/*** About End ***/


/*** Appointment  Start ***/
.appointment {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/appointment-background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.appointment .appointment-form {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, .4));
    object-fit: cover;
    border-radius: 10px;
}

.appointment .appointment-time {
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, .2));
    object-fit: cover;
    border-radius: 10px;
}
/*** Appointment End ***/

/*** Counter Start ***/

.counter-section .counter-item .counter-content {
    position: relative;
    margin-bottom: 60px;
    background-image: linear-gradient(rgba(255, 112, 163, 0.3), rgba(255, 255, 255, 0.3), rgba(255, 77, 140, 0.3));
    border-radius: 10px;
    z-index: 9;
}

.counter-section .counter-item {
    display: flex;
    min-height: 280px;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    object-fit: cover;
    border-radius: 10px;
    flex-direction: column;
    align-items: center;
}

.counter-section .counter-item .counter-content .svg-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: -50px;
    margin-left: -45px;
    transform: rotate(180deg);
}

.counter-section .counter-item .counter-quantity {
    width: 110px;
    height: 110px;
    border-radius: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    box-shadow: 0 0 24px #F4C430 inset;
}

.parallax-section {
    position: relative;
    background-image: url('../img/parallax.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #EFBF0438;
}
.parallax-content {
    z-index: 0;
}

/*** Counter End ***/


/*** Events Start ***/
.gallery .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.gallery .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.gallery .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

.gallery .gallery-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery .gallery-img img {
    transition: 0.5s;
}

.gallery .gallery-img:hover img {
    transform: scale(1.3);
}

.gallery .gallery-img .gallery-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    transition: 0.5s;
    opacity: 0;
    z-index: 1;
}

.gallery .gallery-img .search-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
    z-index: 2;

}

.gallery .gallery-img:hover .gallery-overlay,
.gallery .gallery-img:hover .search-icon {
    opacity: 1;
}

/* Modern Gallery Items */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(255, 112, 163, 0.3);
}

.gallery-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 300px;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.gallery-item:hover .gallery-img-wrapper img {
    transform: scale(1.15);
    filter: brightness(0.7);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 112, 163, 0.9), rgba(239, 191, 4, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
    border-radius: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    transform: translateY(30px);
    transition: all 0.5s ease 0.1s;
    opacity: 0;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
    opacity: 1;
}

.gallery-content i {
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.gallery-content h5 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-img-wrapper {
        height: 250px;
    }
    
    .gallery-content i {
        font-size: 2rem !important;
    }
    
    .gallery-content h5 {
        font-size: 1rem;
    }
}

@media (min-width: 1200px) {
    .gallery-img-wrapper {
        height: 350px;
    }
}

/* Fullscreen Gallery Viewer */
.gallery-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-viewer.active {
    display: flex;
    opacity: 1;
}

.gallery-viewer-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    text-align: center;
}

.gallery-viewer-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(255, 112, 163, 0.3);
}

.gallery-viewer-caption {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 20px;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.gallery-close,
.gallery-prev,
.gallery-next {
    position: absolute;
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.gallery-close {
    top: 30px;
    right: 30px;
}

.gallery-prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.gallery-next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.gallery-close:hover,
.gallery-prev:hover,
.gallery-next:hover {
    background: linear-gradient(135deg, var(--bs-secondary), var(--bs-primary));
    transform: scale(1.1);
}

.gallery-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.gallery-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-close,
    .gallery-prev,
    .gallery-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .gallery-close {
        top: 15px;
        right: 15px;
    }
    
    .gallery-prev {
        left: 15px;
    }
    
    .gallery-next {
        right: 15px;
    }
    
    .gallery-viewer-caption {
        font-size: 1.1rem;
        margin-top: 15px;
    }
}

/*** Events End ***/


/*** Pricing Start ***/
.pricing {
    /*background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/appointment-background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;*/
}

.border-shadow {
    border-color: #000 !important;
}
.pricing .pricing-item {
    min-height: 450px;
    color: var(--bs-dark);
    border: 1px solid #e5e5e5 !important
}

.pricing .pricing-item .pricing-content {
    /*height: 350px;*/
    display: flex;
    background: rgba(255, 255, 255, 0.4);
    flex-direction: column;
    justify-content: space-between;
    object-fit: cover;
    overflow: hidden;
}

.pricing .pricing-item .pricing-content img {
    width: 100%;
    max-height: 250px;
}


.pricing .owl-carousel.pricing-carousel {
    position: relative;
}

.pricing .owl-carousel.pricing-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-primary);

}

.pricing .owl-carousel.pricing-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.pricing .owl-carousel.pricing-carousel .owl-nav .owl-prev,
.pricing .owl-carousel.pricing-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.pricing .owl-carousel.pricing-carousel .owl-nav .owl-prev:hover,
.pricing .owl-carousel.pricing-carousel .owl-nav .owl-next:hover {
    color: var(--bs-primary);
}

.owl-carousel.owl-drag .owl-item {
    padding-bottom: 10px;
}
.pricing-item:hover .border-bottom {
    border-color: var(--bs-primary) !important;
}

/*** Pricing End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.team .team-item .team-text {
    background: var(--bs-primary);
}

.team .team-item .team-social {
    position: absolute;
    top: -180px;
    left: 20px;
    opacity: 0;
    transition: 0.5s;
}

.team .team-item:hover .team-social {
    top: 20px;
    left: 20px;
    opacity: 1;
}

.team .team-item .team-img {
    position: relative;
    width: 100%;
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: 0.5s ease;
}

.team .team-item:hover .team-img::after {
    bottom: 0;
    height: 100%;
}

.team .team-item .team-text {
    transition: 0.5s;
}

.team .team-item:hover .team-text {
    background: var(--bs-secondary);
}
/*** Team End ***/

/*** testimonial Start ***/
.testimonial {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/parallax.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial .testimonial-item {
    background: rgba(0, 0, 0, 0.4);
}

.testimonial .owl-carousel.testimonial-carousel {
    position: relative;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-white);
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-primary);
}
/*** testimonial end ***/

/*** Contact Start ***/
.contact {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/appointment-background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact .contact-form {
    background: rgba(255, 255, 255, 0.6);
}

/* ===== Contact Form Optimization ===== */

/* Contact Info Cards */
.contact-info-card {
    transition: all 0.3s ease;
    border-radius: 15px !important;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    border-color: var(--bs-primary) !important;
}

.contact-icon-wrapper {
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon-wrapper {
    transform: scale(1.1);
    background: var(--bs-primary) !important;
}

.contact-info-card:hover .contact-icon-wrapper i {
    color: white !important;
}

.contact-link {
    position: relative;
    transition: all 0.3s ease;
    font-size: 20px;
}

.contact-link:hover {
    color: var(--bs-secondary) !important;
    transform: translateX(3px);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    transition: all 0.3s ease;
    border-radius: 15px !important;
}

.contact-form-wrapper:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2) !important;
}

/* Form Controls */
.contact-form-wrapper .form-control {
    border-radius: 10px;
    border-color: #dee2e6;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.contact-form-wrapper .form-control:hover {
    border-color: var(--bs-primary);
    background-color: #fff;
}

.contact-form-wrapper .form-control:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.15);
    background-color: #fff;
    transform: translateY(-2px);
}

.contact-form-wrapper .form-label {
    font-size: 0.95rem;
    color: #495057;
}

/* Submit Button */
.contact-form-wrapper .btn-primary {
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(var(--bs-primary-rgb), 0.3);
}

.contact-form-wrapper .btn-primary:active {
    transform: translateY(0);
}

/* Map Wrapper */
.map-wrapper {
    border-radius: 15px !important;
    overflow: hidden;
    transition: all 0.3s ease;
}

.map-wrapper:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2) !important;
}

/* Social Media Card */
.social-media-card {
    border-radius: 15px !important;
    transition: all 0.3s ease;
}

.social-media-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-2px);
}

.social-btn {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-btn:hover {
    transform: scale(1.15) rotate(5deg);
    background: var(--bs-secondary) !important;
    color: white !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-btn i {
    transition: all 0.3s ease;
}

/* Alert Styles */
#contactResponse {
    border-radius: 10px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Required Field Indicator */
.contact-form-wrapper .text-danger {
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .contact-form-wrapper {
        margin-bottom: 2rem;
    }
    
    .contact-info-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 767.98px) {
    .contact-form-wrapper {
        padding: 1.5rem !important;
    }
    
    .contact-info-card {
        padding: 1rem !important;
    }
    
    .contact-icon-wrapper {
        min-width: 50px !important;
        height: 50px !important;
    }
    
    .contact-icon-wrapper i {
        font-size: 1.5rem !important;
    }
}

/* ===== Doctor CV Section Styles ===== */

/* Doctor Profile Card */
.doctor-profile-card {
    transition: all 0.3s ease;
    border-radius: 15px !important;
}

.doctor-profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.doctor-stats-card {
    transition: all 0.3s ease;
    border-radius: 15px !important;
}

.doctor-stats-card:hover {
    transform: scale(1.05);
}

/* Education Cards */
.education-card {
    transition: all 0.3s ease;
    border-radius: 15px !important;
}

.education-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.education-card ul li {
    transition: all 0.2s ease;
}

.education-card ul li:hover {
    padding-left: 10px;
}

/* Achievement Cards */
.achievement-card {
    transition: all 0.3s ease;
    border-radius: 15px !important;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
}

.achievement-icon {
    transition: all 0.3s ease;
}

.achievement-card:hover .achievement-icon {
    transform: scale(1.15) rotate(5deg);
    background: var(--bs-primary) !important;
}

.achievement-card:hover .achievement-icon i {
    color: white !important;
}

.achievement-card h4 {
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.achievement-card:hover h4 {
    color: var(--bs-primary) !important;
}

/* Memberships Card */
.memberships-card {
    transition: all 0.3s ease;
    border-radius: 15px !important;
}

.memberships-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.membership-item {
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 8px;
}

.membership-item:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}

/* Experience Card */
.experience-card {
    border-radius: 15px !important;
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
    transition: all 0.3s ease;
}

.experience-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
    transform: translateY(-5px);
}

.experience-card i {
    transition: all 0.3s ease;
}

.experience-card .col-md-4:hover i {
    transform: scale(1.2) rotate(10deg);
}

/* Training Card */
.training-card {
    transition: all 0.3s ease;
    border-radius: 15px !important;
}

.training-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-3px);
}

.training-card ul li {
    transition: all 0.2s ease;
}

.training-card ul li:hover {
    transform: translateX(5px);
}

/* Research Card */
.research-card {
    transition: all 0.3s ease;
    border-radius: 15px !important;
}

.research-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.research-card > div > div {
    transition: all 0.3s ease;
}

.research-card > div > div:hover {
    transform: translateY(-5px);
    background-color: #f8f9fa;
}

.research-card i {
    transition: all 0.3s ease;
}

.research-card > div > div:hover i {
    transform: scale(1.1);
    color: var(--bs-secondary) !important;
}

/* Congresses Card */
.congresses-card {
    transition: all 0.3s ease;
    border-radius: 15px !important;
}

.congresses-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.congresses-card ul li {
    transition: all 0.2s ease;
    padding: 5px;
    border-radius: 5px;
}

.congresses-card ul li:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: translateX(5px);
}

/* Badges */
.badge {
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.badge:hover {
    transform: scale(1.05);
    background-color: var(--bs-primary) !important;
    color: white !important;
}

/* Background Gradient */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
}

/* Doctor CV Section Background */
.doctor-cv {
    position: relative;
    overflow: hidden;
}

.doctor-cv::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(var(--bs-primary-rgb), 0.02) 35px,
            rgba(var(--bs-primary-rgb), 0.02) 70px
        );
    pointer-events: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.doctor-cv .row > div {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design for Doctor CV */
@media (max-width: 991.98px) {
    .doctor-profile-card {
        padding: 2rem !important;
    }
    
    .education-card,
    .achievement-card,
    .memberships-card {
        margin-bottom: 1.5rem;
    }
    
    .experience-card {
        padding: 2rem !important;
    }
}

@media (max-width: 767.98px) {
    .doctor-profile-card {
        padding: 1.5rem !important;
    }
    
    .doctor-stats-card {
        margin-top: 2rem;
    }
    
    .achievement-icon {
        width: 60px !important;
        height: 60px !important;
    }
    
    .achievement-icon i {
        font-size: 1.5rem !important;
    }
    
    .achievement-card h4 {
        font-size: 2rem;
    }
    
    .experience-card {
        padding: 1.5rem !important;
    }
    
    .experience-card i {
        font-size: 2rem !important;
    }
}

.contact-form .form-control:focus{
    border-color: var(--bs-primary);
    box-shadow: 0 0 2px 1px var(--bs-primary);
}

.form-control.has-error,
.form-control.has-error:focus{
    border-color: var(--bs-danger) !important;
}
/*** Contact End ***/

/*** footer start ***/
.footer {
    background: var(--bs-gray-dark);
}

.footer .footer-item a,
.footer .footer-item p {
    color: var(--bs-white);
    line-height: 40px;
    font-size: 17px;
    transition: 0.5s;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    /*color: var(--bs-primary) !important;*/
}

.footer .btn {
    border: 2px solid var(--bs-white) !important;
}
.btn-light-primary {
    border: 2px solid var(--bs-primary) !important;
    background-color: var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
/*** copyright end ***/

.home-search {
    position: relative;
    transform: translateY(-22px);
    margin-bottom: -22px;
    z-index: 2;
}
@media (min-width: 992px) {
    .home-search {
        transform: translateY(-60px);
        margin-bottom: -60px;
    }
    #carouselId .carousel-indicators {
        padding-bottom: 64px;
    }
}


#form-archive {
    margin-bottom: 0;
}
@media (min-width: 1200px) {
    #form-archive {
        font-size: var(--chru-t-normal);
    }

}
@media screen and (min-width: 768px) {
    #form-archive {
        display: block;
        margin-bottom: 80px;
    }
}

#form-archive {
    font-size: var(--chru-t-petit);
    justify-content: center;
    margin-bottom: 30px;
    background: var(--chru-gris);
    box-shadow: var(--chru-shadow);
}


@media (min-width: 768px) {
    .home .form-wrapper {
        background-color: #fff;
        padding: 30px;
        display: block;
    }
}
@media screen and (min-width: 768px) {
    .form-wrapper {
        background-color: #fff;
        padding: 50px;
        display: flex;
    }
}
.form-wrapper {
    background-color: #fff;
}

@media (min-width: 768px) {
    .home #form-archive h2 {
        padding: 0 0 30px;
        text-transform: uppercase;
    }
}
.home #form-archive h2 {
    padding: 0 0 25px;
    text-transform: none;
}
#form-archive h2 {
    text-transform: uppercase;
    font-weight: 900;
    text-align: center;
    padding: 1em 0;
    margin-bottom: 0;
}


@media (min-width: 768px) {
    .home #form-archive h2 {
        padding: 0 0 30px;
        text-transform: uppercase;
    }
}
.home #form-archive h2 {
    padding: 0 0 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
#form-archive h2 {
    text-transform: uppercase;
    font-weight: 900;
    text-align: center;
    padding: 1em 0;
    margin-bottom: 0;
}


@media screen and (min-width: 768px) {
    .custom-select {
        padding: 1em 0;
    }
}
    .custom-select {
        padding: 0.5em 0;
        position: relative;
        display: block;
        width: 100%;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-color: transparent;
        border: 0;
        border-radius: 0;
        border-top: 1px solid transparent;
        /*border-bottom: 1px solid rgba(0,0,0,.4);*/
        font-weight: 500;
        color: rgba(0,0,0,.5);
        font-style: italic;
    }
    button, input, optgroup, select, textarea {
        margin: 0;
        font-family: inherit;
        font-size: inherit;
        line-height: inherit;
    }


#home-search+button {
    border: 0;
    background: 0 0;
    border-bottom: 1px solid rgba(0,0,0,.4);
    color: var(--chru-bleuc);
}



@media (min-width: 992px) {
    .home .btn-rdv, .home .btn-corps {
        font-size: 24px;
        padding: 1.75em 0;
    }
}
    .home .btn-corps {
        background: linear-gradient(47deg, #FF4D8C, #FF70A3 80%);
    }
    .home .btn-rdv, .home .btn-corps {
        font-size: 18px;
        position: relative;
        padding: 1.5em;
        text-decoration: none;
        text-align: center;
        text-transform: none;
        font-weight: 500;
        align-items: center;
        color: #fff;
        overflow: hidden;
    }

    .home .btn-corps {
        border-bottom-right-radius: 100px;
        border-top-right-radius: 100px;
    }
    .home .btn-rdv {
        border-bottom-left-radius: 100px;
        border-top-left-radius: 100px;
    }

.home .btn-corps:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url(../img/icons/pregnancy.png);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;
    opacity: 0.6;
}

.home .btn-corps span {
    position: relative;
}

@media (min-width: 992px) {
    .home .btn-rdv .bouton, .home .btn-corps .bouton {
        font-size: 20px;
    }
}


@media (min-width: 992px) {
    .home .btn-rdv, .home .btn-corps {
        font-size: 24px;
        padding: 0.6rem 0;
        height: 150px;
    }
}

@media (min-width: 992px) {
    .home .btn-rdv:before {
        top: 25%;
        right: 10px;
        font-size: 7em;
    }
}
    .home .btn-rdv:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        color: #eeeeee;
        background-image: url(../img/icons/consultation.png);
        background-repeat: no-repeat;
        background-position: top left;
        background-size: contain;
        opacity: 0.6;
    }
    button, button:before, button:after, a, a:before, a:after {
        transition: all .2s ease-in-out;
    }

.home .btn-rdv span, .home .btn-corps span {
    position: relative;
}

@media (min-width: 992px) {
    .home .btn-rdv .bouton, .home .btn-corps .bouton {
        font-size: 20px;
    }
}

    .home .btn-rdv .bouton, .home .btn-corps .bouton {
        font-size: 12px;
        font-weight: 500;
        text-transform: uppercase;
        padding: 1em 0;
        width: 12.7em;
        border-radius: 2em;
    }
    .home .btn-rdv span, .home .btn-corps span {
        position: relative;
    }
    .btn-deg-bleuc {
        color: #fff !important;
        font-weight: 500;
        background: linear-gradient(90deg,#37918d,var(--chru-bleuc) 75%);
        text-transform: uppercase;
        max-width: none !important;
    }


.home .btn-rdv {
    background: linear-gradient(47deg, #F5D033, var(--bs-secondary) 50%);

}

.home .btn-corps span {
    position: relative;
}
.btn-deg-bleuc:hover, .btn-deg-bleuf {
    color: #fff !important;
    font-weight: 500;
    background: linear-gradient(90deg,#146c6f,var(--chru-bleuf) 75%);
    text-transform: uppercase;
    max-width: none !important;
}

@media (min-width: 992px) {
    .home #form-archive label {
        font-size: 24px;
    }
}
    .home #form-archive label {
        color: var(--chru-bleuf);
        font-size: 1rem;
        text-align: center;
    }
    label {
        display: inline-block;
    }


@media screen and (min-width: 768px) {
    .custom-select {
        padding: 1em 0;
    }
}

.custom-select {
    padding: 0.5em 6px;
    position: relative;
    display: block;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    border-top: 1px solid transparent;
    /*border-bottom: 1px solid rgb(48 188 198);*/
    font-weight: 500;
    height: 40px;
    color: rgba(0, 0, 0, .5);
    font-style: italic;
    font-size: 16px;
    outline: none;
}



/* organes */

.lien-organe:hover .fond-btn-organe, .lien-organe:hover .point-organe, .lien-organe:focus .fond-btn-organe, .lien-organe:focus .point-organe {
    fill: #DAA520;
}

.fond-btn-organe, .point-organe {
    fill: #e4e4e4;
}

.st1 {
    fill: #FF70A369;
    opacity: .5;
}

.ligne-organe {
    fill: none;
    stroke: #FF70A369;
    stroke-width: 2;
    stroke-miterlimit: 10;
}
.lien-organe {
    text-decoration: none;
}

.lien-organe:hover .fond-btn-organe, .lien-organe:hover .point-organe, .lien-organe:focus .fond-btn-organe, .lien-organe:focus .point-organe {
    fill: #DAA520;
}
.fond-btn-organe, .point-organe {
    fill: #FF70A369;
}
.texte-organe, .picto-organe {
    fill: var(--bs-secondary);
    font-size: 2rem;

}


@media (max-width: 768px) {
    .about-title,
    .about-subtitle {
        text-align: center;
    }
    .parallax-section {
        height: auto;
    }
    .copyright {
        margin-bottom: 10rem !important;
    }
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}
.breadcrumb-title {
    text-shadow: 1px 0 10px #000;
}

.breadcrumb-item {
    text-shadow: 1px 0 10px #000;
}








.blog{
    background:#fff;
}
.blog .blog-title{
    text-align:center;
}
.blog .single-news {
    background: #fff;
    position: relative;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    box-shadow: 0px 0px 10px #00000014;
}
.blog .single-news img{
    width:100%;
    margin:0;
    padding:0;
    -webkit-transition:all 0.4s ease;
    -moz-transition:all 0.4s ease;
    transition:all 0.4s ease;
}
.blog .single-news .news-head{
    position:relative;
    overflow:hidden;
}
.blog .single-news .news-content {
    text-align: left;
    background: #fff;
    z-index: 99;
    position: relative;
    padding: 30px;
    left: 0;
    z-index: 0;
}
.blog .single-news .news-content:before{
    position:absolute;
    content:"";
    left:0;
    bottom:0;
    height:2px;
    width:0%;
    background:#1A76D1;
    opacity:0;
    visibility:hidden;
    -webkit-transition:all 0.4s ease;
    -moz-transition:all 0.4s ease;
    transition:all 0.4s ease;
}
.blog .single-news:hover .news-content:before{
    opacity:1;
    visibility:visible;
    width:100%;
}
.blog .single-news .news-body h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 24px;
}
.blog .single-news .news-body h2 a{
    color:#2C2D3F;
    font-weight: 500;
}
.blog .single-news .news-body h2 a:hover{
    color:#1A76D1;
}
.blog .single-news .news-content p {
    font-weight: 400;
    text-transform: capitalize;
    font-size: 13px;
    letter-spacing: 0px;
    line-height: 23px;
}
.blog .single-news .news-body .date {
    display: inline-block;
    font-size: 14px;
    margin-bottom: 5px;
    background: #1A76D1;
    color: #fff;
    padding: 4px 15px;
    border-radius: 3px;
    font-size: 14px;
    margin-bottom: 10px;
}
.blog.grid .single-news{
    margin-top:30px;
}
/* Blog Sidebar */
.main-sidebar {
    background: #fff;
    margin-top: 30px;
    background: transparent;
}
.main-sidebar .single-widget {
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
    border-radius: 8px;
}
.main-sidebar .single-widget .title {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 30px;
    display: block;
    background: #fff;
    padding-left: 12px;
}
.main-sidebar .single-widget .title::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: -1px;
    height: 100%;
    width: 4px;
    background: var(--bs-primary);
}
.main-sidebar .single-widget:last-child{
    margin:0;
}
.main-sidebar .search{
    position:relative;
}
.main-sidebar .search input {
    width: 100%;
    height: 45px;
    box-shadow: none;
    text-shadow: none;
    font-size: 14px;
    border: none;
    color: #222;
    background: transparent;
    padding: 0 70px 0 20px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-radius: 0;
    border: 1px solid #eee;
    border-radius: 5px;
}
.main-sidebar .search .button {
    position: absolute;
    right: 40px;
    top: 40px;
    height: 44px;
    width: 50px;
    line-height: 45px;
    box-shadow: none;
    text-shadow: none;
    text-align: center;
    border: none;
    font-size: 14px;
    color: #fff;
    background: #333;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-radius: 0 5px 5px 0;
}
.main-sidebar .search .button:hover {
    background:#1A76D1;
    color:#fff;
}
/* Category List */
.main-sidebar .categor-list {
    margin-top: 15px;
}
.main-sidebar .categor-list li {
    margin-bottom: 10px;
}
.main-sidebar .categor-list li:last-child{
    margin-bottom:0px;
}
.main-sidebar .categor-list li a {
    display: inline-block;
    color: #333;
    font-size:14px;
}
.main-sidebar .categor-list li a:hover{
    color:#1A76D1;
    padding-left:7px;
}
.main-sidebar .categor-list li a i {
    display: inline-block;
    margin-right:0px;
    font-size: 9px;
    transform: translateY(-1px);
    opacity:0;
    visibility:hidden;
    -webkit-transition:all 0.4s ease;
    -moz-transition:all 0.4s ease;
    transition:all 0.4s ease;
}
.main-sidebar .categor-list li a:hover i{
    margin-right: 6px;
    opacity:1;
    visibility:visible;
}
/* Recent Posts */
.main-sidebar .single-post {
    position: relative;
    border-bottom: 1px solid #ddd;
    display: inline-block;
    padding: 17px 0;
}
.main-sidebar .single-post:last-child{
    padding-bottom:0px;
    border:none;
}
.main-sidebar .single-post .image img{
    float: left;
    width: 80px;
    height: 80px;
    margin-right: 20px;
}
.main-sidebar .single-post .content{
    padding-left:100px;
}
.main-sidebar .single-post .content h5 {
    line-height: 18px;
}
.main-sidebar .single-post .content h5 a {
    color: #2C2D3F;
    font-weight: 500;
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
    display: block;
    margin-bottom: 10px;
    margin-top: 0;
}
.main-sidebar .single-post .content h5 a:hover{
    color:#1A76D1;
}
.main-sidebar .single-post .content .comment li{
    color:#888;
    display:inline-block;
    margin-right:15px;
    font-weight:400;
    font-size:14px;
}
.main-sidebar .single-post .content .comment li:last-child{
    margin-right:0;
}
.main-sidebar .single-post .content .comment li i{
    display:inline-block;
    margin-right:5px;
}
/* Blog Tags */
.main-sidebar .side-tags .tag{
    margin-top:40px;
    padding: 0;
}
.main-sidebar .side-tags .tag li {
    display: inline-block;
    margin-right: 7px;
    margin-bottom: 30px;
}
.main-sidebar .side-tags .tag li a {
    color: #333;
    padding: 5px 10px;
    text-transform: capitalize;
    font-size: 13px;
    background: #F6F7FB;
    border-radius: 4px;
}
.main-sidebar .side-tags .tag a:hover{
    color:#fff;
    background: var(--bs-secondary);
    border-color:transparent;
}
/* News Single */

.news-single .single-main {
    margin-top: 30px;
    background: #fff;
    padding: 10px;
    -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
    border-radius: 8px;
}
.news-single .news-head{}
.news-single .news-head img{
    width:100%;
    height:100%;
}
.news-single .news-title {
    font-size: 25px;
    margin: 20px 0;
}
.news-single .news-title a {
    color: #252525;
    font-weight: 600;
}
.news-single .news-title a:hover {
    color: #1A76D1;
}
/* Blog Meta */
.news-single{
    background:#fff;
}
.news-single .meta {
    overflow: hidden;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    width: 100%;
    padding: 10px 0;
    margin-bottom: 15px;
}
.news-single .meta span {
    margin-right: 10px;
    display: inline-block;
}
.news-single .meta span:last-child{
    margin:0;
}
.news-single .meta span, .news-single .meta span a {
    color: #2C2D3F;
    font-weight: 400;
}
.news-single .meta span i {
    margin-right: 5px;
    color:#1A76D1;
}
.news-single .meta-left{
    float:left;
}
.news-single .meta-left .author img {
    width: 45px;
    height: 45px;
    border-radius: 100%;
    margin-right: 12px;
}
.news-single .meta-left .author {
    float: left;
}
.news-single .meta-left span.date {
    margin-top: 10px;
}
.news-single .meta-right {
    float: right;
    margin-top: 10px;
}
.news-single .news-content{
    margin:20px 0;
}
.news-single .news-content p{
    margin-bottom:10px;
}
.news-single .news-content p:last-child{
    margin:0;
}
.news-single .news-text p {
    margin-bottom:20px;
}

.note_stars i {
    cursor: pointer;
    color: #999999;
}

.btn-checkbox {
    border: 1px solid #cccccc !important;
    background-color: var(--bs-light) !important;
    color: #666666 !important;
}

.btn-checkbox input{
    width: 26px;
    height: 26px;
}


.calendar-container {
    border-color: var(--bs-primary);
}
.week .day.highlight span {
    color: var(--bs-primary);
}
.week .day.selected span {
    background-color: var(--bs-primary);
    color: var(--bs-white);
}
.prev-button,
.next-button,
.today-button {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.prev-button:hover,
.next-button:hover,
.today-button:hover {
    background-color: var(--bs-secondary) !important;
    border-color: var(--bs-secondary) !important;
}


@media screen and (min-width: 768px) {
    #body_svg {
        height: 100vh !important;
    }

    .news-single .single-main {
        padding: 30px;
    }
}

.top-nav a{
    border-radius: 5px;
}

.topbar a:hover {
    background-color: var(--bs-secondary-hover);
}

.contact-form label{
    margin-bottom: 5px;
}

.made-in-ayroui {
    position: fixed;
    left: 10px;
    bottom: 30px;
    z-index: 999;
    transition: all .4s ease;
}


.fixed_whatsapp_btn {
    background-color: #EFBF04;
    padding: 0;
    border-radius: 40px;
    box-shadow: 0 0 3px #EFBF04;
    display: flex;
    align-items: center;
    gap: 3px;
    color: var(--bs-primary);
}

.fixed_whatsapp_btn img {
    height: 50px;
}

.center-select {
    text-align: center;
}

.center-select select {
    display: inline-block;
    margin: 0 auto;
}

.why_us_icon {
    width: 65px;
    text-align: center;
    height: 65px;
}

.brand-logo-text {
    margin-bottom: 0;
    font-weight: 700;
}
