@import url("https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&family=Amiri:ital,wght@0,400;0,700;1,400;1,700&family=Barlow: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&family=Dancing+Script:wght@700&family=Lobster&family=Noto+Naskh+Arabic:wght@400..700&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&family=Tajawal:wght@200;300;400;500;700;800;900&family=Zain:ital,wght@0,200;0,300;0,400;0,700;0,800;0,900;1,300;1,400&display=swap");

* {
    box-sizing: border-box;
    margin: 0;
    font-family: "Tajawal", sans-serif;
}

:root {
    --praimary-color: #87c240;
}

body,
html {
    overflow-x: hidden !important;
    scroll-behavior: smooth;
    direction: rtl;
}

::selection {
    color: rgb(255, 255, 255);
    background-color: var(--praimary-color);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 1rem;
    background: #242424;
    transition: all 0.4s ease-in;
}

::-webkit-scrollbar-track {
    background: #fff0f0;
}


/* navbar starts */

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100000 !important;
}

.nav-header {
    direction: rtl;
}

.navbar {
    background-color: rgb(252 255 250);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    position: relative;
    z-index: 100000 !important;
    /*height: 90px;*/
}

.navbar::before {
    content: "";
    position: absolute;
    background: url(../images/testimonial-five-shape-1.webp);
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.15;
    z-index: -1;
}

.navbar .container > a {
    color: var(--praimary-color);
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
}

nav .brand {
    position: relative;
    /* width: 310px; */
}

nav .brand .text {
    margin: auto 0;
    color: var(--praimary-color);
}

nav .brand .text h6 {
    margin-bottom: 0;
}

nav .brand a {
    text-decoration: none;
}

nav .brand img {
    width: 85%;
}

nav .brand .brand-name {
    font-size: 16px;
    font-weight: 800;
    color: #1b1b1b;
    margin-right: 15px;
}

nav a {
    font-weight: 550;
    font-size: 14px;
    color: #1b1b1b;
}

nav .nav-item .active {
    color: var(--praimary-color);
    position: relative;
}


nav .nav-item {
    display: inline-block;
}

.navbar-nav .nav-link {
    color: #1b1b1b;
}

.navbar-nav .nav-link:hover {
    color: var(--praimary-color);
    transition: all 0.4s ease-in;
}

nav .dropdown-menu {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 195px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.nav-item .dropdown-menu .dropend .dropdown-menu {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 195px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

nav .dropdown-menu a {
    color: #090909;
    font-size: 14px;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-weight: 500;
}

nav .dropdown-menu a:hover {
    padding-right: 23px;
    color: var(--secondary-color);
    transition: all 0.4s ease-in;
}

nav .dropdown-item:focus,
.dropdown-item:hover {
    background-color: #aa383812;
}

.nav-item .dropdown-menu .dropend:hover .dropdown-menu {
    display: block;
    margin-top: 3px;
    background: rgb(254, 254, 254);
    border: 0;
    border-top: 3px solid var(--secondary-color);
    border-radius: 5px;
    direction: rtl;
    text-align: right;
    /* transform: translateX(100%); */
    left: -100%;
    top: 15px;
    transition: all 0.4s ease-in;
    animation: growDown 300ms ease-in-out forwards;
    transform-origin: top center;
}

.nav-item:hover .dropdown-menu {
    display: block;
    margin-top: 3px;
    background: rgb(254, 254, 254);
    border: 0;
    border-top: 3px solid var(--secondary-color);
    border-radius: 5px;
    direction: rtl;
    text-align: right;
    transform: translateX(50%);
    transition: all 0.4s ease-in;
    animation: growDown 300ms ease-in-out forwards;
    transform-origin: top center;
    left: auto;
}

@keyframes growDown {
    0% {
        transform: scaleY(0);
    }

    80% {
        transform: scaleY(1.1);
    }

    100% {
        transform: scaleY(1);
    }
}

.nav-item:hover .dropdown-menu::before {
    content: "";
    position: absolute;
    display: block;
    margin-top: 3px;
    z-index: 5;
    top: -14px;
    right: 0;
    pointer-events: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--praimary-color);
    border: 5px solid var(--secondary-color);
    transition: all 0.4s ease-in;
}

.nav-item .dropdown-menu .dropend:hover .dropdown-menu::before {
    display: none;
}

.navbar-nav .dropdown-menu {
    margin-top: 7px;
    text-align: left;
    transition: all 0.4s ease-in;
}

nav .nav-item #dropdown {
    margin-top: -10px;
}

nav .list-group p {
    font-size: 12px;
    font-weight: 700;
    line-height: 26px;
    color: #94a3b8;
}

nav .list-group span {
    padding: 5px;
    color: aliceblue;
    font-size: 10px;
    font-weight: 700;
    border-radius: 0.2rem;
}

nav .lang-back {
    padding: 5px 15px;
    border-radius: 20px;
    background-color: var(--praimary-color);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav .lang-back i {
    margin-left: 5px;
}

nav a:hover .lang-back {
    background-color: var(--secondary-color);
    transition: all 0.4s ease-in;
}

.navbar .navbar-toggler {
    font-size: 20px;
}

nav .register-link {
    margin-right: 50px;
    display: flex;
    align-items: center;
}

nav .register-link a {
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    display: inline-block;
    border: none;
    text-transform: uppercase;
    text-align: center;
    background-color: var(--praimary-color);
    color: #fff !important;
    font-family: var(--title-font);
    border-radius: 5px;
    text-decoration: none;
    padding: 5px 30px;
}

nav .register-link a:before {
    content: "";
    position: absolute;
    height: 0%;
    left: 50%;
    top: 50%;
    width: 600%;
    background-color: var(--secondary-color);
    transform: translateX(-50%) translateY(-50%) rotate(60deg);
    z-index: -1;
    transition: 0.7s ease;
}

nav .register-link a:hover:before {
    height: 560%;
}

nav .register-link a:hover {
    color: #fff;
}

.search {
    position: relative;
    display: flex;
    margin-right: 40px;
}

.searchTerm {
    width: 200px;
    height: 40px;
    border: 2px solid var(--praimary-color);
    border-left: none;
    padding: 5px 16px 5px 0;
    border-radius: 0 50px 50px 0;
    outline: none;
    color: #ffffff;
}

.searchTerm:focus {
    color: var(--praimary-color);
}

.searchButton {
    width: 50px;
    height: 40px;
    border: 1px solid var(--praimary-color);
    background: var(--praimary-color);
    text-align: center;
    color: #fff;
    border-radius: 50px 0 0 50px;
    cursor: pointer;
    font-size: 20px;
}

nav .container-fluid {
    margin-right: 40px;
}

nav .button a {
    font-size: 12px;
    color: #fff;
    padding: 11px 12px;
    transition: var(--transition);
    text-transform: uppercase;
    position: relative;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    border: none;
    background: var(--praimary-color);
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    z-index: 1;
    /*margin-right: 100px;*/
}

nav .button a::before {
    content: "";
    height: 300px;
    width: 300px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-51%) scale(0);
    transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

nav .button a:hover {
    color: var(--praimary-color);
    transition: all 0.3s ease-out 0s;
}

nav .button a:hover::before {
    transform: translateY(-50%) translateX(-50%) scale(1);
    transition: all 0.3s ease-out 0s;
}


@media screen and (max-width: 991px) {
    nav .lang {
        padding-left: 0;
    }
    
}

@media screen and (max-width: 330px) {
    .navbar .navbar-toggler {
        font-size: 15px;
    }

    nav a img {
        width: 70px;
        height: 70px;
    }
}
@media (max-width:375px){
    nav .brand a {
        display:none;
    }
}
@media (max-width:530px){
    nav .button a {
        font-size:9px;
    }
}

@media (min-width: 992px) {
    .navbar-collapse {
        display: flex;
        justify-content: center;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0.4rem;
        padding-left: 0.4rem;
    }
}
@media (max-width:1200px){
    .navbar-nav {
        display:none;
    }
    .navbar-expand-lg .navbar-toggler{
        display:block !important;
    }
}
.side-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    /* Menu is hidden (off-screen to the right) */
    opacity: 0;
    visibility: hidden;
    transition: transform 0.5s ease, opacity 0.5s ease, visibility 0s 0.5s;
    /* Delay visibility hiding */
    direction: rtl;
}

.side-menu.show {
    transform: translateX(0);
    /* Menu is visible */
    opacity: 1;
    visibility: visible;
    transition: transform 0.5s ease, opacity 0.5s ease, visibility 0s;
    /* Show instantly with the menu */
}

.side-menu.hide {
    transform: translateX(100%);
    /* Move out of the viewport */
    opacity: 0;
    /* Fade out */
    visibility: hidden;
    transition: transform 0.5s ease, opacity 0.5s ease, visibility 0s 0.5s;
    /* Hide after animation */
}

.side-menu .menu .menu-toggle {
    position: absolute;
    left: -18px;
    top: 60px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--praimary-color);
    border: 0;
    z-index: 1;
}

.side-menu .menu .menu-toggle i {
    color: #ffffff;
}

.side-menu .menu {
    width: 100%;
    max-width: 310px;
    height: 100%;
    position: relative;
    left: 0;
    -webkit-transition: all ease 1s;
    transition: all ease 1s;
    z-index: 1;
    background-color: #fff;
}


.side-menu .menu .menu-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 170px;
    padding: 15px;
    background-color: #242424;
    position: relative;
}

.side-menu .menu .menu-logo::before {
    content: "";
    position: absolute;
    background: url(../images/contact-shape-3.png);
    background-size: contain;
    background-repeat: repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
}

.side-menu .menu .menu-logo a {
    text-align: center;
    text-decoration: none;
}

.side-menu .menu .menu-logo a p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--secondary-color);
    padding-top: 8px;
}

.side-menu .menu .menu-logo img {
    width: 85%;
}

.side-menu .menu .menu-content {
    padding: 15px;
    background-color: var(--heading-color);
    height: 100%;
}

.side-menu .menu .menu-content ul {
    list-style: none;
    padding-right: 0;
    padding-left: 0;
}

.side-menu .menu .menu-content ul .nav-item {
    border-bottom: 1px solid #ded3d361;
    padding: 5px 0;
}

.side-menu .menu .menu-content ul li .dropdown-menu {
    width: 100% !important;
}

.side-menu .menu .menu-content ul a {
    font-size: 13px;
    color: var(--block-background-color);
    font-weight: 600;
}

.side-menu .menu .menu-content ul li:hover a {
    transition: all ease 1s;
    color: var(--praimary-color);
}

@media (max-width: 767px) {
    .top-bar {
        display: none;
    }
}


/* navbar ends */


/* scroll animation */
.reveal {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: 1s all ease;
}

.reveal.active {
    transform: translateY(0);
    opacity: 1;
}


/* events starts */

.events {
    position: relative;
    background-color: #f3f3f3;
    padding-top: 40px;
    padding-bottom: 40px;
}

.events .testimonial-five__shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/pngwing.com\ \(1\).png);
    background-size: cover;
    mix-blend-mode: luminosity;
    opacity: 0.2;
}

.events h2 {
    color: #1b1b1b;
    width: fit-content;
    font-weight: 800;
    font-size: 25px;
    padding-bottom: 10px;
    margin-bottom: 16px;
    border-bottom: 2px solid #1b1b1b;
    position: relative;
}

.services-five__single {
    position: relative;
    display: block;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 10px;
    margin-top: 24px;
}

.services-five__img-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.services-five__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
}

.services-five__img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.services-five__hover-content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    border-radius: var(--insur-bdr-radius);
    padding: 40px 0 0;
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.5s;
    transition-property: all;
    transform-origin: top;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: 2;
}

.services-five__hover-content:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 10px;
    background-image: -moz-linear-gradient(90deg, #87c240 0%, rgb(25, 28, 30) 100%);
    background-image: -webkit-linear-gradient(90deg, #87c240 0%, rgb(25, 28, 30) 100%);
    background-image: -ms-linear-gradient(90deg, #87c240 0%, rgb(25, 28, 30) 100%);
    opacity: 0.902;
    z-index: -1;
}

.services-five__hover-content-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 57px;
    width: 57px;
    background-color: #fff;
    border-radius: 50%;
    font-size: 30px;
    color: var(--insur-base);
    margin: 0 auto 0;
}

.services-five__hover-content-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--insur-white);
    text-transform: uppercase;
    margin-top: 16px;
    margin-bottom: 16px;
    position: relative;
}

.services-five__hover-content-title a {
    color: #fff;
    text-decoration: none;
}

.services-five__hover-content-text {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    letter-spacing: var(--insur-letter-spacing);
}

.services-five__hover-content-text a {
    color: #fff;
    text-decoration: none;
}

.services-five__title-box {
    position: absolute;
    bottom: -13px;
    left: 15px;
    right: 15px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    text-align: center;
    padding: 40px 0 27px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 2;
}

.services-five__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    text-transform: uppercase;
}

.services-five__title a {
    color: #1b1b1b;
    text-decoration: none;
}

.services-five__icon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    height: 57px;
    width: 57px;
    background-color: var(--praimary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-five__single:hover .services-five__hover-content {
    transform: scaleY(1);
    z-index: 1000;
}

.services-five__single:hover .services-five__title-box {
    opacity: 0;
    visibility: hidden;
    transition-delay: 300ms;
}

.services-five__single .icon {
    width: 35px;
    height: 35px;
}

.services-five__single .button a {
    font-size: 14px;
    color: var(--praimary-color);
    padding: 14px 20px;
    transition: var(--transition);
    text-transform: uppercase;
    position: relative;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    border: none;
    background: #fff;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    z-index: 1;
    border: 2px solid #438837;
}

.services-five__single .button a::before {
    content: "";
    height: 300px;
    width: 300px;
    background: var(--praimary-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-51%) scale(0);
    transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.services-five__single .button a:hover {
    color: #fff;
    transition: all 0.3s ease-out 0s;
}

.services-five__single .button a:hover::before {
    transform: translateY(-50%) translateX(-50%) scale(1);
    transition: all 0.3s ease-out 0s;
}

/* Pagination */

.Pagination {
    padding-top: 40px;
}

.Pagination #pagination-box {
    background: var(--block-background-color);
    border: 1px solid var(--decorative-color);
    display: flex;
    align-items: center;
    padding: 24px;
    border-radius: 10px;
}

.Pagination ul {
    margin-bottom: 0;
}

.Pagination a {
    color: #2b9d48;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

.Pagination .page-item.active .page-link {
    background-color: var(--praimary-color);
    background-image: -webkit-linear-gradient(left, var(--praimary-color), #2b9d48);
    border: 1px solid var(--praimary-color);
    border-radius: 5px;
    width: 40px;
    text-align: center;
    margin: 0 6px;
}

.Pagination .page-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    border: 1px solid var(--praimary-color);
    margin: 0 6px;
    width: 40px !important;
    height: 40px;

}

.Pagination .page-item a:hover {
    background-color: var(--praimary-color);
    background-image: -webkit-linear-gradient(left, var(--praimary-color), #2b9d48);
    color: white;
}

.Pagination #active a {
    /* border-radius: 50%; */
    width: fit-content !important;
    padding: 0px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background-color: var(--praimary-color);
    background-image: -webkit-linear-gradient(left, var(--praimary-color), #2b9d48);
    color: #fff;
}

@media (min-width: 381px) and (max-width: 575px) {
    .Pagination .page-item.active .page-link {
        width: 30px;
        margin: 0 3px;
    }

    .Pagination .page-item .page-link {
        margin: 0 3px;
        width: 30px;
    }

    .Pagination #active .page-link {
        width: 30px;
    }

    .Pagination a {
        font-size: 14px;
    }
}

@media screen and (max-width: 380px) {
    .Pagination .page-item.active .page-link {
        width: 20px;
        margin: 0 2px;

    }

    .Pagination .page-item .page-link {
        margin: 0 2px;
        width: 20px;

    }

    .Pagination #active .page-link {
        width: 20px;

    }

    .Pagination a {
        font-size: 12px;
    }

    .Pagination .page-item a {
        margin: 0 3px;
        width: 30px !important;
        height: 30px;
    }
}


/* Packages-details starts */

.details {
    background: #fefdfc;
    box-shadow: inset 0 0 0 2000px rgba(0, 5, 15, 0);
    padding-bottom: 40px;
    position: relative;
}

.details .card {
    border: 5px solid var(--praimary-color);
    position: relative;
    overflow: hidden;
    margin-right: 0;
    border-radius: 10px;
}

.details .card-image {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    margin: 0;
}

.details .card-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all .65s ease;
    transition-delay: .35s ease;
}

.details .card-image button i {
    background-color: #000;
    padding: 12px 16px;
    border-radius: 50%;
}

.details .card-body {
    position: relative;
    background-color: var(--praimary-color);
    text-align: center;
}

.details .card-body::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url(../images/testimonial-five-shape-1.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    mix-blend-mode: multiply;
    opacity: .8;;
}

.details .description {
    margin: 0 16px;
    padding: 16px;
    background: #f6ffea;
}

.details .description p {
    font-size: 15px;
    font-weight: 500;
}

.details h2 {
    font-weight: 800;
    font-size: 25px;
    margin-bottom: 16px;
}

.details .box h4 {
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    padding: 0;
    color: #454545;
    margin-bottom: 4px;
}

.details .side {
    /* box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
    padding: 20px; */
    position: relative;
}

.details .side .box {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #fff;
    border-radius: 10px;
}

.details .side .box-body {
    padding: 16px 0 16px 16px;
}

.details .side .box-body .card-btn a {
    color: var(--praimary-color);
    text-decoration: none;
}

.details .services-five__hover-content-title {
    color: #fff;
}

.details .side .box-body .text a {
    font-size: 15px;
    font-weight: 500;
    color: #74786f;
    text-decoration: none;
}

.details .side .img-container {
    height: 100%;
}

.details .side .img-container img {
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.details .button a {
    font-size: 14px;
    color: #fff;
    padding: 14px 20px;
    transition: var(--transition);
    text-transform: uppercase;
    position: relative;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    border: none;
    background: var(--praimary-color);
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    z-index: 1;
    border: 2px solid var(--praimary-color);
}

.details .button a::before {
    content: "";
    height: 300px;
    width: 300px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-51%) scale(0);
    transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.details .button a:hover {
    color: var(--praimary-color);
    transition: all 0.3s ease-out 0s;
}

.details .button a:hover::before {
    transform: translateY(-50%) translateX(-50%) scale(1);
    transition: all 0.3s ease-out 0s;
}

.details ul.card {
    background-color: #ffffff;
    border: 0;
    border-right: 5px solid var(--praimary-color);
    padding: 16px 16px 4px 16px;
}

.details .card li {
    list-style: none;
    display: flex;
    margin-bottom: 12px;
}

.details .card li h6 {
    font-size: 16px;
    font-weight: 600;
    margin-right: 8px;
}

.details .card-icon {
    display: flex;
}

.details .card-content {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 32px;
}

.details .card-content p {
    margin-bottom: 0;
    padding-right: 24px;
    font-size: 17px;
    font-weight: 500;
}

.details .card-content p a {
    text-decoration: none;
    color: #1b1b1b
}

.details .card-content:before {
    content: "";
    position: absolute;
    top: 3px;
    bottom: 4px;
    right: 0px;
    width: 1px;
    background-color: #d7d7d7;
}

.details .card-icon i {
    font-size: 18px;
    color: var(--praimary-color);
    margin-left: 8px;
}


/* contact starts */
.contact {
    position: relative;
    display: block;
    background-color: var(--insur-primary);
    padding: 120px 0 120px;
    z-index: 1;
}

.why-choose-four__bg-box {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50%;
    background-color: var(--praimary-color);
    z-index: -1;
}

.why-choose-four__bg-one {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url(../images/why-choose-four-bg-1.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    mix-blend-mode: multiply;
}

.why-choose-four__bg-box-two {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: #1b1b1b;
    width: 50%;
    z-index: -1;
}

.why-choose-four__bg-two {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url(../images/businessman-talking-phone.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    mix-blend-mode: luminosity;
    opacity: 0.6;
}

.contact h3 {
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #fff;
    padding-bottom: 8px;
    border-bottom: 2px solid #000;
    width: fit-content;
}

.contact h3.specify {
    margin-right: 32px;
    border-bottom: 2px solid #b4ff58;
}

.contact .form {
    padding-left: 40px;
}

.contact .form label {
    font-size: 15px;
    font-weight: 550;
    color: #ffffff;
}

.contact .form-control {
    font-size: 15px;
    color: #1b1b1b;
    font-weight: 500;
    background-color: #f7f7f7;
    border-radius: 8px;
}

.contact .button button {
    font-size: 14px;
    color: #ffffff;
    padding: 14px 20px;
    transition: var(--transition);
    text-transform: uppercase;
    position: relative;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    border: none;
    background: #1b1b1b;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    z-index: 1;
}

.contact .button button::before {
    content: "";
    height: 300px;
    width: 300px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-51%) scale(0);
    transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.contact .button button:hover {
    color: var(--praimary-color);
    transition: all 0.3s ease-out 0s;
}

.contact .button button:hover::before {
    transform: translateY(-50%) translateX(-50%) scale(1);
    transition: all 0.3s ease-out 0s;
}

.contact .card {
    background-color: transparent;
    border: 0;
}

.contact .card li {
    list-style: none;
    display: flex;
    padding: 24px;
    background-color: #f1ffdf;
    border-radius: 10px;
    margin-bottom: 16px;
}

.contact .card li h6 {
    font-size: 25px;
    font-weight: 700;
    margin-right: 8px;
}

.contact .card-icon {
    display: flex;
}

.contact .card-content {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 32px;
}

.contact .card-content p {
    margin-bottom: 0;
    padding-right: 24px;
    font-size: 17px;
    font-weight: 500;
}

.contact .card-content:before {
    content: "";
    position: absolute;
    top: 3px;
    bottom: 4px;
    right: 0px;
    width: 1px;
    background-color: #d7d7d7;
}

.contact .card-icon i {
    font-size: 32px;
    color: var(--praimary-color);
    margin-left: 8px;
}

.contact .card-content span {
    font-size: 20px;
    font-weight: 800;
    margin-right: 16px;
}


/* policy starts */
.policy {
    padding-top: 40px;
    padding-bottom: 40px;
}

.policy h2 {
    width: fit-content;
    padding: 8px;
    color: #fff;
    background-color: var(--praimary-color);
    margin-right: 16px;
    margin-bottom: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-weight: 800;
    font-size: 25px;
}

.policy .content {
    border: 2px solid var(--praimary-color);
    border-radius: 10px;
    padding: 16px;
    background-color: #f9fff2;
}

.policy .content p {
    font-size: 15px;
    font-weight: 500;
}

.policy .content p span {
    font-size: 20px;
    font-weight: 600;
    display: block;
    margin-top: 10px;
}


/* location starts */
.location {
    padding-top: 40px;
    padding-bottom: 40px;
}

.location h6 {
    color: #fff;
    font-weight: 500;
    font-size: 20px;
}

.location h2 {
    color: #fff;
    font-weight: 800;
    font-size: 25px;
}

.location .content {
    position: relative;
    display: block;
    text-align: center;
    background-image: -moz-linear-gradient(0deg, rgb(25, 28, 30) 0%, #87c240 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(25, 28, 30) 0%, #87c240 100%);
    background-image: -ms-linear-gradient(0deg, rgb(25, 28, 30) 0%, #87c240 100%);
    border-radius: 10px;
    padding: 56px 0px;
    z-index: 1;
    margin: 24px;
    overflow: visible;
    /* Allows the shape to extend beyond content */
}

.location .content .container {
    text-align: center;
    position: relative;
    /* Creates new stacking context */
}

.location .content iframe {
    width: 100%;
    height: 400px;
    border-radius: 5px;
    margin-top: 16px;
}

.tracking-three__shape-1 {
    content: "";
    position: absolute;
    top: -13px;
    left: -13px;
    right: -13px;
    bottom: -13px;
    border: 2px dashed var(--praimary-color);
    border-radius: 10px;
    z-index: -1;
    pointer-events: none;
    /* Prevents interaction issues */
    display: block;
    /* Makes sure it's visible */
}

.tracking-three__bg {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url(../images/3d-cartoon-pin-location.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    mix-blend-mode: luminosity;
    opacity: 0.3;
    z-index: -1;
}


/* footer starts */

footer {
    position: relative;
    background-color: #efefef;
    padding-bottom: 16px;
}

footer::before {
    content: "";
    position: absolute;
    background-image: -webkit-linear-gradient(90deg, #87c240 0%, rgb(60 88 30) 100%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.footer-content .logo-box {
    position: relative;
    width: 100%;
    z-index: 1000;
    display: flex;
}

.footer-content .logo-box .text {
    margin-right: 16px;
    color: #59ac44;
}

.footer-content .download {
    position: relative;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: end;
    padding: 16px 0;
}

.footer-content .download img {
    position: relative;
    width: 140px;
    margin: 0 8px;
}

/* .footer-content .logo-box .logo {
  width: 100%;
} */
.footer-content .logo-container p a {
    font-weight: 600;
    color: var(--praimary-color);
    text-decoration: none;
}



footer .container {
    position: relative;
}


.footer-copyright {
    background: url(../images/footer-bottom.png);
    background-size: cover;
    background-repeat: no-repeat;
    /* background-color: #283752; */
    direction: ltr;
}

.footer-copyright a {
    text-decoration: none;
    color: #000000;
}

.footer-copyright p {
    font-weight: 450;
    font-size: 14px;
    line-height: 25px;
    color: #f1f4ff;
    margin-bottom: 0;
}

.footer-copyright .content {
    background-color: #0f0f0f;
    padding: 16px;
}
   .footer-content .logo {
        width: auto;
        height: 70px;
    }
      .inner-container {
        display:block;
        text-align:center;
    }
@media (min-width: 300px) and (max-width: 1200px) {
    footer h5 {
        font-size: 15px;
        /*font-weight: 600;*/
    }
     footer h6 {
        font-size: 12px;
        /*font-weight: 600;*/
    }
    .footer-content .logo {
        width: auto;
        height: 50px;
    }
}
@media (min-width:768px){
    .inner-container {
        display:flex;
        justify-content:space-between;
        align-items:center;
    }
   
}
@media (min-width:1050px){
     .footer-content {
    position: relative;
    padding: 24px 48px 10px 32px;
    margin-bottom: 24px;
    display: flex;
    margin-left: 150px;
    margin-right: 150px;
}

.footer-content .row {
    width: 100%;
}

.footer-content::before {
    content: "";
    position: absolute;
    background-color: #ffffff;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom-left-radius: 1000px;
    border-bottom-right-radius: 1000px;
    z-index: 1;
}
}

/*@media screen and (max-width: 420px) {*/
/*    footer h5 {*/
/*        font-size: 20px;*/
/*        font-weight: 600;*/
/*    }*/

/*    .footer-content .logo {*/
/*        width: auto;*/
/*        height: 40px;*/
/*    }*/

/*    footer .social-media .icon-bg {*/
/*        width: 28px;*/
/*        height: 28px;*/
/*    }*/

/*    footer .social-media .icon-bg i {*/
/*        font-size: 16px;*/
/*        line-height: 28px;*/
/*    }*/
/*}*/

/* footer ends */

.cursor-dot,
.cursor-dot-outline {
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    z-index: 1000;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: #fff;
}

.cursor-dot-outline {
    width: 25px;
    height: 25px;
    background-color: transparent;
    border: 2px solid var(--praimary-color);
}

/*
.log-in {
    width: 100%;
    height: 100vh;
    background-image: url(../images/log-inbg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
*/
.log-in {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* prevents overlay from leaking out */
}

.log-in::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/log-inbg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.4; /* adjust opacity here */
    z-index: -1; /* keep it behind the content */
}

.log-in .img-box {
    position: relative;
    background-color: var(--praimary-color);
    height: 100%;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0;
}

.log-in .img-box::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url(../images/log-in2.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    mix-blend-mode: luminosity;
    opacity: .5;
    border-radius: 10px;
}

.log-in .img-box .box-content {
    position: relative;
}

.log-in .img-box h2 {
    font-size: 25px;
    font-weight: 800;
    color: #fff;
    margin-top: 16px;
}

.log-in .form-content h2 {
    font-size: 25px;
    font-weight: 800;
    color: var(--praimary-color);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--praimary-color);
    width: fit-content;
    margin-bottom: 24px;
}

.log-in .content {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #fff;
    border-radius: 10px;
    padding: 8px;
}

.log-in .button a {
    font-size: 14px;
    color: #fff;
    padding: 11px 16px;
    transition: var(--transition);
    text-transform: uppercase;
    position: relative;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    border: none;
    background: var(--praimary-color);
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    border: 2px solid var(--praimary-color);
    z-index: 1;
    text-decoration: none;
}

.log-in .button a::before {
    content: "";
    height: 300px;
    width: 300px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-51%) scale(0);
    transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.log-in .button a:hover {
    color: var(--praimary-color);
    transition: all 0.3s ease-out 0s;
}

.log-in .button a:hover::before {
    transform: translateY(-50%) translateX(-50%) scale(1);
    transition: all 0.3s ease-out 0s;
}

.log-in .form-content {
    padding: 24px;

}

.log-in label {
    font-size: 15px;
    font-weight: 550;
    color: #1b1b1b;
}

.log-in .form-control {
    font-size: 15px;
    color: #1b1b1b;
    font-weight: 500;
    background-color: #f7f7f7;
    border-radius: 8px;
}

.log-in .form-select {
    font-size: 15px;
    color: #1b1b1b;
    font-weight: 500;
    background-color: #f7f7f7;
    border-radius: 8px;
}

.log-in .sign-up {
    margin-top: 24px;
    background-color: #f3ffe5;
    padding: 8px 16px;
    border-radius: 5px;
}

.log-in .sign-up p {
    margin-bottom: 0;
    font-weight: 500;
}

.log-in .sign-up a {
    color: var(--praimary-color);
    text-decoration: none;
}
@media (min-width:300px ) and (max-width:768px){
    .image-container {
        display:none;
    }
    .form-container {
        width:100%;
    }
   .login-btn {
       font-size:10px  !important;
   }
}

/*dashboard*/

.dashboard {
    background-color: #f3f3f3;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    min-height: 100vh;
    /* Ensure dashboard takes full viewport height */
}

.sidebar {
    width: 280px;
    height: 100vh;
    min-height: 350px;
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    margin-right: 24px;
    flex-shrink: 0;
    box-shadow: rgba(0, 0, 0, 0) 0px 5px 15px;
    /* Prevent sidebar from shrinking */

}

.sidebar .person-data {
    position: relative;
    border-radius: 10px;
    padding: 10px 16px;
    background-color: #7fc042;
    display: flex;
    align-items: center;
    color: #fff;
    margin-bottom: 16px;
}
.sidebar .person-data .text {
    line-height:0.5rem;
}
.sidebar .person-data::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url(../images/cloud-1.png);
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .5;
}

.sidebar .person-data i {
    position: relative;
    font-size: 35px;
}

.sidebar .person-data .text {
    padding-right: 10px;
}

.sidebar .person-data .text h6 {
    font-size: 20px;
    font-weight: 700;
}

.sidebar .person-data .text p {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0;
}

.sidebar .list ul {
    padding-right: 0;
}

.sidebar .list .list-link {
    list-style: none;
    padding: 10px;
    /* background-color: #f8fdf0; */
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    margin-bottom: 8px;
    border-right: 4px solid var(--praimary-color);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.sidebar .list .list-link:hover {
    background-color: #f4ffea;
}

.sidebar .list .list-link.active {
    background-color: #f4ffea;
}

.sidebar .list .list-link:hover a {
    color: var(--praimary-color);
}

.sidebar .list .list-link.active a {
    color: var(--praimary-color);
}

.sidebar .list .list-link a {
    text-decoration: none;
    color: #1b1b1b;
    font-size: 14px;
    font-weight: 600;
}

.sidebar .list .list-link a i {
    margin-left: 4px;
}

.content {
    flex-grow: 1;
    /* Make content fill remaining space */
    margin: 0px 16px 24px 24px;
    border-radius: 10px;
    /* Optional: match sidebar style */
    overflow: auto;
    /* Add scroll if content is too long */
}

.content .title {
    background-color: #dbefc4;
    padding: 12px;
    margin-bottom: 16px;
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
}

.content .title::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url(../images/feature-two-shape-2.png);
    background-repeat: repeat;
    background-size: contain;
    mix-blend-mode: multiply;
    border-radius: 10px;
    opacity: .8;
}

.content .title .menu-btn {
    background-color: var(--praimary-color);
    width: 25px;
    height: 25px;
    border-radius: 5px;
    text-align: center;
    margin-left: 8px;
    display: none;
}

.content .title i {
    transform: rotate(180deg);
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    line-height: 25px;
}

.content .title h3 {
    position: relative;
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 0;
}

.content .content-inner {
    background-color: #fff;
    padding: 16px;
    border-radius: 10px;
}

.content .form label {
    font-size: 15px;
    font-weight: 500;
    color: #1b1b1b;
}

.content .form-control {
    font-size: 15px;
    color: #1b1b1b;
    font-weight: 500;
    background-color: #fbfff8;
    border-radius: 8px;
    direction: rtl;
}

.content .form-select {
    font-size: 15px;
    color: #1b1b1b;
    font-weight: 500;
    background-color: #fbfff8;
    border-radius: 8px;
}

.content .button a {
    font-size: 14px;
    color: #fff;
    padding: 11px 16px;
    transition: var(--transition);
    text-transform: uppercase;
    position: relative;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    border: none;
    background: var(--praimary-color);
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    border: 2px solid var(--praimary-color);
    z-index: 1;
    text-decoration: none;
}

.content .title {
    display: flex;
    justify-content: space-between;
}

.content .title .button a {
    padding: 5px 8px;
}

.content .button a::before {
    content: "";
    height: 300px;
    width: 300px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-51%) scale(0);
    transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.content .button a:hover {
    color: var(--praimary-color);
    transition: all 0.3s ease-out 0s;
}

.content .button a:hover::before {
    transform: translateY(-50%) translateX(-50%) scale(1);
    transition: all 0.3s ease-out 0s;
}

.content .table-striped > tbody > tr:nth-of-type(odd) {
    --bs-table-accent-bg: rgba(0, 0, 0, 0.021);
    color: var(--bs-table-striped-color);
}

.content table th {
    text-align: center;
    background-color: #2c2c2c;
    color: #fff;
    font-size: 15px;
}

.content table td {
    text-align: center;
    font-size: 14px;
    vertical-align: middle;
}

.content table td ul {
    display: inline-flex;
    list-style: none;
    padding-right: 0;
    margin-bottom: 8PX;
}

.content table td ul li {
    list-style: none;
}

.content table .icon-bg {
    width: 25px;
    height: 25px;
    text-align: center;
    border-radius: 5px;
    background-color: #f0f0f0;
    margin-right: 5px;
}

.content table .icon-bg i {
    font-size: 13px;
    color: var(--praimary-color);
    line-height: 25px;
}

@media screen and (max-width: 768px) {
    .dashboard {
        position: relative;
    }

    .sidebar {
        position: absolute;
        top: 90px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        margin-right: 16px;
    }

    .content .title .menu-btn {
        display: block;
    }

    .sidebar.hide {
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.5s ease, opacity 0.5s ease, visibility 0s 0.5s;

    }

    .sidebar.show {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        transition: transform 0.5s ease, opacity 0.5s ease, visibility 0s;

    }
    .mob_title1
    {
        font-size:.9rem !important;
    }
  .mob_title2
    {
        display:none;
        /*font-size:.9rem !important;*/
    }
   /* .navbar-toggler{display:none;}*/

}
/* Base Styles */
.slider {
    width: 100%;
    max-width: 100vw;
    height: 75vh;
    margin: auto;
    position: relative;
    overflow: hidden;
}

.slider .list {
    position: absolute;
    width: 100%; /* Set width to 100% to ensure one image at a time */
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    transition: transform 1s ease; /* Change to transform for better performance */
}

.slider .list .item {
    min-width: 100%; /* Ensure each item takes up full slider width */
    height: 100%;
}

.slider .list img {
    width: 100%; /* Set image width to 100% */
    height: 100%;
    object-fit: cover; /* Use cover to maintain aspect ratio */
}

.slider .buttons {
    position: absolute;
    top: 45%;
    left: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
}

.slider .buttons button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--praimary-color);
    color: #fff;
    border: none;
    font-family: monospace;
    font-weight: bold;
}

.slider .dots {
    position: absolute;
    bottom: 32px;
    left: 0;
    color: #fff;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.slider .dots li {
    list-style: none;
    width: 10px;
    height: 10px;
    background-color:#fff ;
    margin: 10px;
    border-radius: 20px;
    transition: 0.5s;
}

.slider .dots li.active {
    width: 30px;
    background-color: var(--praimary-color);
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .slider {
        height: 400px; /* Adjust height for smaller screens */
    }

    .slider .buttons button {
        width: 40px; /* Smaller buttons */
        height: 40px; /* Smaller buttons */
    }

    .slider .slider-text {
        font-size: 25px; /* Decrease font size on medium screens */
        width: 70%; /* Increase width for better layout */
    }

    .slider .dots li {
        width: 8px; /* Smaller dots for better proportion */
        height: 8px;
    }
}

@media screen and (max-width: 480px) {
    .slider {
        height: 300px; /* Adjust height for mobile */
    }

    .slider .buttons button {
        width: 30px; /* Even smaller on mobile */
        height: 30px;
    }

    .slider .slider-text {
        font-size: 20px; /* Further decrease font size */
        width: 90%; /* Full width for small screens */
    }

    .slider .dots li {
        width: 6px; /* Further reduce dot size */
        height: 6px;
    }
}

/* slideshow */
/*.slider {*/
/*    width: 100%;*/
/*    max-width: 100vw;*/
/*    height: 75vh;*/
/*    margin: auto;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

/*.slider .list {*/
/*    position: absolute;*/
/*    width: 100%;*/
/*     Set width to 100% to ensure one image at a time */
/*    height: 100%;*/
/*    left: 0;*/
/*    top: 0;*/
/*    display: flex;*/
/*    transition: transform 1s ease;*/
/*     Change to transform for better performance */
/*}*/

/*.slider .list .item {*/
/*    min-width: 100%;*/
/*     Ensure each item takes up full slider width */
/*    height: 100%;*/
/*}*/

/*.slider .list img {*/
/*    width: 100%;*/
/*     Set image width to 100% */
/*    height: 100%;*/
/*    object-fit: fill;*/
/*}*/

/*.slider .buttons {*/
/*    position: absolute;*/
/*    top: 45%;*/
/*    left: 5%;*/
/*    width: 90%;*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*}*/

/*.slider .buttons button {*/
/*    width: 50px;*/
/*    height: 50px;*/
/*    border-radius: 50%;*/
/*    background-color: var(--praimary-color);*/
/*    color: #fff;*/
/*    border: none;*/
/*    font-family: monospace;*/
/*    font-weight: bold;*/
/*}*/

/*.slider .dots {*/
/*    position: absolute;*/
/*    bottom: 32px;*/
/*    left: 0;*/
/*    color: #fff;*/
/*    width: 100%;*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*}*/

/*.slider .dots li {*/
/*    list-style: none;*/
/*    width: 10px;*/
/*    height: 10px;*/
/*    background-color: #fff;*/
/*    margin: 10px;*/
/*    border-radius: 20px;*/
/*    transition: 0.5s;*/
/*}*/

/*.slider .dots li.active {*/
/*    width: 30px;*/
/*    background-color: var(--praimary-color);*/
/*}*/

/*@media screen and (max-width: 768px) {*/
/*    .slider {*/
/*        height: 400px;*/
/*    }*/
/*}*/

/*.slider {*/
/*    position: relative;*/
/*    width: 100%;*/
/*    overflow: hidden;*/
/*}*/

/*.slider .list {*/
/*    display: flex;*/
/*}*/

/*.slider .item {*/
/*    position: relative;*/
/*    width: 100%;*/
/*}*/

/*.slider .item img {*/
/*    width: 100%;*/
/*    height: auto;*/
/*    display: block;*/
/*}*/

/*.slider .slider-content {*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    transform: translate(-50%, -50%);*/
/*    color: white;*/
/*    padding: 20px;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    border-radius: 10px;*/
/*    width: 80%;*/
/*}*/

/*.slider .slider-text {*/
/*    font-family: "Amiri", serif !important;*/
/*    color: #fff;*/
/*    font-weight: 700;*/
/*    font-size: 35px;*/
/*    line-height: 39px;*/
/*    text-transform: capitalize;*/
/*    text-align: center;*/
/*    width: 50%*/
/*}*/
/*@media (max-width:767px){*/
/*    .slider .slider-text {*/
/*        font-size: 20px;*/
/*    }*/
/*}*/

/* Overlay for dark background */
/*.slider .overlay {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: rgba(0, 0, 0, 0.6);*/
    /* Light black overlay */
/*}*/

/**************custom***********/
.create_event {
    font-size: 14px;
    padding: 11px 16px;
    transition: var(--transition);
    text-transform: uppercase;
    position: relative;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    border: none;
    background: var(--praimary-color);
    box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
    z-index: 1;
    margin-right: 100px;
    color: white;
}

.content .title h3 {
    font-size: 16px;
}
