
/* ================= Cairo Fonts Setup ================= */
@font-face {
    font-family: 'Cairo';
    src: url('/Adminstyle/static/Cairo-Light.ttf') format('truetype');
    font-weight: 300;
}

@font-face {
    font-family: 'Cairo';
    src: url('/Adminstyle/static/Cairo-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Cairo';
    src: url('/Adminstyle/static/Cairo-Medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'Cairo';
    src: url('/Adminstyle/static/Cairo-SemiBold.ttf') format('truetype');
    font-weight: 600;
}

@font-face {
    font-family: 'Cairo';
    src: url('/Adminstyle/static/Cairo-Bold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'Cairo';
    src: url('/Adminstyle/static/Cairo-ExtraBold.ttf') format('truetype');
    font-weight: 800;
}

@font-face {
    font-family: 'Cairo';
    src: url('/Adminstyle/static/Cairo-Black.ttf') format('truetype');
    font-weight: 900;
}

/* ============== Apply Cairo to Elements ============== */
body, p, li, span, label, input, button, a {
    font-family: 'Cairo', sans-serif;
    font-weight: 400;
}

h1 {
    font-family: 'Cairo', sans-serif;
    font-weight: 800;
}

h2 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
}

h3 {
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
}

h4, h5, h6 {
    font-family: 'Cairo', sans-serif;
    font-weight: 500;
}

strong, b {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
}

.navbar .nav-link {
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
}

.btn, .button {
    font-family: 'Cairo', sans-serif;
    font-weight: 500;
    text-transform: capitalize;
}

* {
    font-family: 'Cairo', sans-serif;
}


/********** Template CSS **********/

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 600;
}

.mt-6 {
    margin-top: 5rem;
}

.mb-6 {
    margin-bottom: 5rem;
}

.pt-6 {
    padding-top: 5rem;
}

.pb-6 {
    padding-bottom: 5rem;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

    #spinner.show {
        transition: opacity .5s ease-out, visibility 0s linear 0s;
        visibility: visible;
        opacity: 1;
    }


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

.btn-primary,
.btn-outline-primary:hover {
    color: var(--bs-light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--bs-dark);
}

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

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

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

.btn-xl-square {
    width: 60px;
    height: 60px;
}

.btn-xxl-square {
    width: 75px;
    height: 75px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square,
.btn-xl-square,
.btn-xxl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    border-radius: 10px;
    font-weight: normal;
}

/*** Navbar ***/
.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--bs-dark);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    outline: none;
}

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: var(--bs-primary);
    }

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

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    text-align: left;
    background: rgba(0, 0, 0, .7);
    padding: 3rem;
    padding-left: 11rem;
    z-index: 1;
}

.carousel .carousel-indicators {
    top: 0;
    bottom: 0;
    left: 0;
    left: auto;
    width: 80px;
    flex-direction: column;
    margin: 0;
    margin-right: 3rem;
}

    .carousel .carousel-indicators [data-bs-target] {
        BORDER-RADIUS: 13px;
        width: 70px;
        height: 70px;
        text-indent: 0;
        margin: 5px 0;
        border: 2px solid #FFFFFF;
        overflow: hidden;
    }

        .carousel .carousel-indicators [data-bs-target] img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

@media (max-width: 992px) {
    .carousel .carousel-item {
        position: relative;
        min-height: 600px;
    }

        .carousel .carousel-item img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .carousel .carousel-indicators [data-bs-target] {
        width: 60px;
        height: 60px;
    }

    .carousel .carousel-caption {
        padding-left: 10rem;
    }
}

@media (max-width: 768px) {
    .carousel .carousel-item {
        min-height: 500px;
    }

    .carousel .carousel-indicators [data-bs-target] {
        width: 50px;
        height: 50px;
    }

    .carousel .carousel-caption {
        padding-left: 9rem;
    }
}

@media (min-width: 1200px) {
    .carousel .carousel-item .display-1 {
        font-size: 2rem;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-2.png) center center no-repeat;
    background-size: cover;
}


/*** About ***/
.about-img {
    position: relative;
    padding-left: 45px;
}

    .about-img::before {
        position: absolute;
        content: "";
        width: 200px;
        height: 300px;
        top: 0;
        left: 0;
        border: 5px solid var(--bs-primary);
        animation: animateUpDown 3s ease-in-out infinite;
        z-index: -1;
    }

@keyframes animateUpDown {
    0% {
        top: -25px;
    }

    50% {
        top: -45px;
    }

    100% {
        top: -25px;
    }
}


/*** Features ***/
.feature {
    background: linear-gradient(to right, rgba(0, 0, 0, .1), rgb(35 71 2) 50%), url(../img/232.JPG) left center no-repeat;
    background-size: cover;
}

.feature-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature-item {
    border-color: rgba(0, 0, 0, .03) !important;
}

.feature-icon {
    position: relative;
    transition: .5s;
}

.feature-item:hover .feature-icon {
    margin-left: 3rem;
}

.feature-item a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: var(--bs-secondary);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
}

.feature-item a:hover {
    color: var(--bs-primary) !important;
}

    .feature-item a:hover::after {
        background: var(--bs-primary);
    }

.experience .progress {
    height: 5px;
}

    .experience .progress .progress-bar {
        width: 0px;
        transition: 3s;
    }


/*** Service ***/
.service .service-item {
    position: relative;
    margin-top: 45px;
}

.service .service-inner {
    position: relative;
    height: 100%;
    margin-top: 45px;
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

    .service .service-inner::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 0;
        left: 0;
        bottom: 0;
        transition: 1s;
        background: var(--bs-primary);
    }

    .service .service-inner:hover::before {
        height: 100%;
        top: 0;
    }

.service .service-item img {
    margin-top: -45px;
    padding-left: 45px;
}

.service .service-item * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service .service-item:hover h5,
.service .service-item:hover p {
    color: var(--bs-white);
}

.service .service-item:hover a {
    padding-left: 45px !important;
}


/*** Appoinment ***/
.appoinment {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-2.png) left center no-repeat;
    background-size: cover;
}


/*** Team ***/
.team .team-item {
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

    .team .team-item .team-social {
        position: absolute;
        width: 0;
        height: 100%;
        top: 0;
        right: 0;
        transition: .5s;
        background: var(--bs-primary);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .team .team-item:hover .team-social {
        width: 100%;
        left: 0;
    }

    .team .team-item .team-social .btn {
        opacity: 0;
        transition: .5s;
    }

    .team .team-item:hover .team-social .btn {
        opacity: 1;
    }


/*** Testimonial ***/
.testimonial-img {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

    .testimonial-img div {
        position: absolute;
        width: 100px;
        height: 100px;
        animation-duration: 5s;
    }

        .testimonial-img div:nth-child(1) {
            top: 10%;
            left: 10%;
            animation-delay: .1s;
        }

        .testimonial-img div:nth-child(2) {
            top: 60%;
            left: 20%;
            animation-delay: .4s;
        }

        .testimonial-img div:nth-child(3) {
            top: 20%;
            left: 60%;
            animation-delay: .7s;
        }

        .testimonial-img div:nth-child(4) {
            bottom: 10%;
            right: 10%;
            animation-delay: 1s;
        }

        .testimonial-img div::after {
            position: absolute;
            content: "";
            top: -1px;
            right: -1px;
            bottom: -1px;
            left: -1px;
            box-shadow: 0 0 10px 10px var(--bs-white) inset;
            z-index: 1;
        }

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 15px;
    display: flex;
}

    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next {
        margin-right: 15px;
        color: var(--bs-primary);
        font-size: 45px;
        transition: .5s;
    }

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


/*** Contact ***/
@media (min-width: 992px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 0px;
        height: 100%;
        top: 0;
        left: 50%;
        border-left: 1px dashed rgba(255, 255, 255, .2);
    }
}

@media (max-width: 991.98px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 0px;
        top: 50%;
        left: 0;
        border-top: 1px dashed rgba(255, 255, 255, .2);
    }
}


/*** Appoinment ***/
.newsletter {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-2.png) left center no-repeat;
    background-size: cover;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--bs-secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

    .footer .btn.btn-link::before {
        position: relative;
        content: "\f105";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        color: var(--bs-primary);
        margin-right: 10px;
    }

    .footer .btn.btn-link:hover {
        color: var(--bs-primary);
        letter-spacing: 1px;
        box-shadow: none;
    }

.copyright {
    background: #222222;
}

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

        .copyright a:hover {
            color: var(--bs-primary);
        }












.top-bar {
    background: transparent;
    visibility: visible;
    animation-delay: 0.1s;
    animation-name: fadeIn;
}

.top-bar-inner {
    width: 100%;
    display: flex;
    height: auto;
}

/* ÃƒÆ’Ã¢â‚¬Â¡ÃƒÆ’Ã‚Â¡ÃƒÆ’Ã…Â¾ÃƒÆ’Ã¢â‚¬Å“ÃƒÆ’Ã‚Â£ ÃƒÆ’Ã¢â‚¬Â¡ÃƒÆ’Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÆ’Ã‚Â­ÃƒÆ’Ã¢â‚¬Å“ÃƒÆ’Ã¢â‚¬Ëœ (ÃƒÆ’Ã¢â‚¬Â¹ÃƒÆ’Ã‚Â¡ÃƒÆ’Ã¢â‚¬Â¹ÃƒÆ’Ã‚Â­ÃƒÆ’Ã‚Â¤) */
.top-bar-left {
    background-color: #1B5D1F;
    flex: 2;
}

/* ÃƒÆ’Ã¢â‚¬Â¡ÃƒÆ’Ã‚Â¡ÃƒÆ’Ã…Â¾ÃƒÆ’Ã¢â‚¬Å“ÃƒÆ’Ã‚Â£ ÃƒÆ’Ã¢â‚¬Â¡ÃƒÆ’Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÆ’Ã‚Â­ÃƒÆ’Ã‚Â£ÃƒÆ’Ã‚Â¤ (ÃƒÆ’Ã¢â‚¬Â¹ÃƒÆ’Ã‚Â¡ÃƒÆ’Ã¢â‚¬Â¹) */
.top-bar-right {
    background-color: #fff;
    flex: 1;
}

/* ÃƒÆ’Ã¢â‚¬Â¡ÃƒÆ’Ã‚Â¡ÃƒÆ’Ã‚ÂÃƒÆ’Ã¢â‚¬Â¡ÃƒÆ’Ã¢â‚¬Â¢ÃƒÆ’Ã‚Â¡ */
.divider {
    width: 2px;
    background-color: #ccc;
}

.project-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 420px;
    display: flex;
    flex-direction: column;
}

    .project-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    }

    .project-card img {
        height: 200px;
        object-fit: cover;
        width: 100%;
        transition: transform 0.4s ease;
    }

    .project-card:hover img {
        transform: scale(1.05);
    }

.project-content {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    /*justify-content: space-between;*/
}

.project-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 1px;
    color: #1B5D1F;
}

.project-desc {
    font-size: 14px;
    color: #666;
    /* margin-bottom: 20px; */
}

.read-more-btn {
    background-color: #1B5D1F;
    color: #fff;
    padding: 8px 18px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

    .read-more-btn:hover {
        background-color: #a88d3f;
        transform: translateY(-2px);
    }

.swiper-button-next,
.swiper-button-prev {
    background: none;
    color: #1B5D1F;
    font-size: 28px;
    width: 40px;
    height: 40px;
}

    .swiper-button-next::after {
        content: "";
        background-image: url('https://cdn-icons-png.flaticon.com/512/869/869869.png');
        background-size: contain;
        background-repeat: no-repeat;
        width: 40px;
        height: 40px;
        display: block;
        transform: rotate(180deg);
        filter: brightness(0) saturate(100%) invert(39%) sepia(42%) saturate(682%) hue-rotate(5deg) brightness(93%) contrast(91%);
    }

    .swiper-button-prev::after {
        content: "";
        background-image: url('https://cdn-icons-png.flaticon.com/512/869/869869.png');
        background-size: contain;
        background-repeat: no-repeat;
        width: 40px;
        height: 40px;
        display: block;
        transform: scaleX(-1);
        filter: brightness(0) saturate(100%) invert(39%) sepia(42%) saturate(682%) hue-rotate(5deg) brightness(93%) contrast(91%);
    }

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
    animation: popIn 0.4s ease forwards;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 10px;
    left: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #1B5D1F;
}

.modal-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}


/*ØªØµÙ…ÙŠÙ… Ø§Ù„Ù…Ù†ØªØ¬Ø§Øª*/

.product-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .product-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .product-card img {
        height: 180px;
        object-fit: cover;
        width: 100%;
    }

    .product-card .card-body {
        text-align: center;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .product-card .price {
        font-size: 1.2rem;
        font-weight: bold;
        color: #1B5D1F; /* âœ… Ù„ÙˆÙ† Ø£Ø®Ø¶Ø± ÙˆØ§Ø¶Ø­ */
        margin-bottom: 15px;
    }

.btn-order {
    background-color: #1B5D1F; /* Ù„ÙˆÙ† Ø§Ù„Ø²Ø± */
    color: #fff;
    border: none;
    padding: 10px 10px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: pulse 1.5s infinite; /* Ø§Ù„Ù†Ø¨Ø¶ */
    transition: background 0.3s ease;
}

    .btn-order:hover {
        background: #fff;
        color: #1B5D1F;
    }

/* Ø­Ø±ÙƒØ© Ø§Ù„Ù†Ø¨Ø¶ */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(147, 118, 52, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(147, 118, 52, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(147, 118, 52, 0);
    }
}

.btn-details {
    border: 2px solid #1B5D1F;
    color: #1B5D1F;
    border-radius: 25px;
    padding: 8px 10px;
    font-weight: bold;
    transition: 0.3s;
}

    .btn-details:hover {
        background: #fff;
        color: #1B5D1F;
    }
/* Ø¬Ø¹Ù„ Ø§Ù„Ø´Ø¨ÙƒØ© 5 Ø£Ø¹Ù…Ø¯Ø© ÙÙŠ Ø§Ù„Ù„Ø§Ø¨ØªÙˆØ¨ */
@media (min-width: 992px) {
    .col-custom-5 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}
