@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");

:root {
    --tw-bg-opacity: 1;
    --primary-color: rgb(254 80 0 / var(--tw-bg-opacity));
    --secondary-color: rgb(217 65 0 / var(--tw-bg-opacity));
    /* --secondary-color-2: rgb(14 24 84 / var(--tw-bg-opacity)); */
    --secondary-color-2: #2234A8;
    --font-family: "Poppins", sans-serif;
    --color-black-50: #090909;
    --color-black: #000000;
    --color-blue: #48b1fb;
    --header-link-font-size: 17px;
    --boxShadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
    --color-white: #ffffff;
    --card-title-fontSize: 22px;
    --transition: 0.5s;
    --fontFamily2: "Open Sans", sans-serif;
    --fontSize: 16px;
    --paragraphColor: #666666;
    --transition: 0.5s;
    --tw-text-opacity: 1;
}

/* width (percent) */
.w-5 {
    width: 5%;
}
.w-10 {
    width: 10%;
}
.w-20 {
    width: 20%;
}
.w-30 {
    width: 30%;
}
.w-40 {
    width: 40%;
}
.w-50 {
    width: 50%;
}
.w-60 {
    width: 60%;
}
/* .w-70{width: 70%;} */
.w-80 {
    width: 80%;
}
.w-90 {
    width: 90%;
}
.w-100 {
    width: 100%;
}

/* width (px) */
.w-10px {
    width: 10px;
}
.w-20px {
    width: 20px;
}
.w-24px {
    width: 24px;
}
.w-40px {
    width: 40px;
}
.w-50px {
    width: 50px;
}
.w-60px {
    width: 60px;
}
.w-70px {
    width: 70px;
}
.w-80px {
    width: 80px;
}
.w-90px {
    width: 90px;
}
.w-100px {
    width: 100px;
}
.w-110px {
    width: 110px;
}
.w-120px {
    width: 120px;
}
.w-130px {
    width: 130px;
}
.w-140px {
    width: 140px;
}
.w-150px {
    width: 150px;
}
.w-200px {
    width: 200px;
}
.w-250px {
    width: 250px;
}
.w-300px {
    width: 300px;
}
.w-400px {
    width: 400px;
}
.w-500px {
    width: 500px;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-family);
}

h5,
h6 {
    font-family: var(--font-family);
}

p {
    font-size: var(--fontSize);
    font-family: var(--font-family);
    margin-bottom: 15px;
    color: var(--paragraphColor);
    line-height: 1.8;
}

p:last-child {
    margin-bottom: 0;
}

.shape-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("../img/shape/bg.jpg");
}

a {
    transition: var(--transition);
    color: var(--color-black);
    text-decoration: none;
    outline: 0 !important;
}
a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.rounded-10 {
    overflow: hidden;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}

img {
    max-width: 100%;
    height: auto;
}

.spacer-single {
    width: 100%;
    height: 30px;
    display: block;
    clear: both;
}

.pt20 {
    padding-top: 20px;
}
.pb20 {
    padding-bottom: 20px;
}

.pt30 {
    padding-top: 30px;
}

.pb30 {
    padding-bottom: 30px;
}

.pt50 {
    padding-top: 50px;
}

.pt60 {
    padding-top: 60px;
}

.pb60 {
    padding-bottom: 60px;
}

.pt70 {
    padding-top: 70px;
}

.pb70 {
    padding-bottom: 70px;
}

.pt50{
    padding-top: 50px;
}

.pb50 {
    padding-bottom: 50px;
}

.pt80 {
    padding-top: 80px;
}

.pb80 {
    padding-bottom: 80px;
}

.pt100 {
    padding-top: 100px;
}

.pb100 {
    padding-bottom: 100px;
}

.pt120 {
    padding-top: 120px;
}

.pb120 {
    padding-bottom: 120px;
}

@media (max-width: 768px) {
    .pt100 {
        padding-top: 50px;
    }
    .pb100 {
        padding-bottom: 50px;
    }
    .pt120 {
        padding-top: 60px;
    }
    .pb120 {
        padding-bottom: 60px;
    }
}

body {
    font-family: var(--font-family);
    background-color: var(--color-white);
    color: #333;
}

.btn_explore {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.btn_explore:hover {
    background-color: #fff;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.cta_hero_button {
    margin-top: 40px;
}

.banner {
    overflow: hidden;
}

.banner .black-line {
    position: absolute;
    left: 45%;
    top: 10px;
    animation: top-bottom 2s infinite linear;
    width: 50px !important;
    height: 50px !important;
}
.banner .orange-line {
    position: absolute;
    right: 70px;
    top: 130px;
    animation: top-bottom 2s infinite linear;
    width: 50px !important;
    height: 50px !important;
}
.banner .half-circle {
    position: absolute;
    bottom: 50%;
    left: 30%;
    animation: half-spin 15s infinite linear;
    width: 120px !important;
    height: 120px !important;
}

/* breadcrumb */
.breadcrumb_section {
    /* background-color: rgb(255 237 229/var(--tw-text-opacity));  #28140b*/
    /* background-color: #FEFAF9; */
    background-color: #28140b;
    /* background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-blend-mode: overlay; */
    position: relative;
    /* background-image: url('../img/Full-Screen-Image-KC.png'); */
}

.breadcrumb_section .breadcrumb {
    position: absolute;
    overflow: hidden;
    top: 0%;
    right: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
}

.breadcrumb_section .breadcrumb .breadcrumb-svg {
    position: absolute;
    top: 200px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    --tw-scale-x: 1.5;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    /* --tw-rotate: 0; */
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-scale-y: 1.5;
    --tw-rotate: -6deg;
    color: rgb(255 237 229 / var(--tw-text-opacity));
    transform: translate(0, -60px) rotate(-10deg) scale(1.5);
    /* transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); */
}

.breadcrumb-content {
    position: absolute;
    left: 30%;
    top: 20%;
}

.breadcrumb-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.breadcrumb-content p {
    font-size: 1.2rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 2rem;
}

#shine-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.shine.small {
    width: 20px;
    height: 20px;
}

.shine.medium {
    width: 30px;
    height: 30px;
}

.shine.large {
    width: 50px;
    height: 50px;
}

.scaleOut {
    visibility: visible;
    animation-name: scaleOutFade;
    width: 5%;
    bottom: 0%;
    left: 10%;
    animation-duration: 1s;
    animation-timing-function: ease-in;
    animation-fill-mode: forwards;
}

@keyframes scaleOutFade {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        /* opacity: 1; */
        -webkit-transform: scale(1, 1, 1);
        transform: scale(1, 1, 1);
    }
}

.shine {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAlgAAAJYCAMAAACJuGjuAAADAFBMVEX///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+/LkhhAAAA/3RSTlMAAQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyAhIiMkJSYnKCkqKywtLi8wMTIzNDU2Nzg5Ojs8PT4/QEFCQ0RFRkdISUpLTE1O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);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    overflow: hidden;
    z-index: 2;
    color: tansparent;
    -moz-opacity: 0;
    opacity: 0;
    animation: glitter 6s linear 0s infinite normal;
    -webkit-animation: glitter 6s linear 0s infinite normal;
    -moz-animation: glitter 8s linear 0s infinite normal;
    -ms-animation: glitter 8s linear 0s infinite normal;
    -o-animation: glitter 8s linear 0s infinite normal;
}

/*CSS3 keyframes for glittering effect*/
@-webkit-keyframes glitter {
    0% {
        -webkit-transform: scale(0.3) rotate(0deg);
        opacity: 0;
    }
    25% {
        -webkit-transform: scale(1) rotate(360deg);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(0.3) rotate(720deg);
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(0.3) rotate(0deg);
        opacity: 0;
    }
}

/*================================================
Default Button Area CSS
=================================================*/
.default-button {
    overflow: hidden;
    border: 1px solid var(--secondary-color);
    padding: 12px 35px;
    border-radius: 25px;
    display: inline-block;
    color: var(--color-white);
    background-color: var(--secondary-color);
    position: relative;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--fontFamily2);
    border: none !important;
}

.default-button span {
    position: relative;
    z-index: 2;
}
.default-button:hover {
    color: var(--color-white);
    border-color: var(--secondary-color-2);
    background-color: var(--secondary-color-2);
    translate: var(--transition);
}

.header {
    background-color: var(--secondary-color-2);
}

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--secondary-color-2);
    z-index: 222;
    padding: 0px;
    transition: 0.5s ease-in-out;
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.header .header_container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 15px 30px 10px 100px;
}

.header .header_container .logo {
    font-size: 24px;
    font-weight: 600;
}

.header .header_container .logo a {
    color: #333;
    text-decoration: none;
}

.header .header_container .header_nav .nav_main .nav_lists {
    display: flex;
    list-style: none;
}

.header .header_container .header_nav .nav_main .nav_lists .nav_item {
    padding: 8px 25px;
}

.header .header_container .header_nav .nav_main .nav_lists .nav_item a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: var(--font-family);
    font-size: var(--header-link-font-size);
    font-weight: 400;
}

.header .header_container .header_nav .nav_main .nav_lists .nav_item a:hover {
    color: #ff6b6b;
}

.header .header_container .header_nav .nav_main .nav_lists .nav_item a.active {
    color: #ff6b6b;
}

.header .header_contact .header_contact_list {
    /* display: flex; */
    list-style: none;
}

.header .header_contact .header_contact_list .cta_button a {
    color: #fff;
    text-decoration: none;
}

.header .header_contact .header_contact_list .cta_button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}

.header .header_contact .header_contact_list .cta_button:hover {
    background-color: #ff4c4c;
}

.header .header_contact .header_contact_list .cta_button:focus {
    outline: none;
}

.header-meta {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.header-btn {
    margin-left: 25px;
}

.header-btn .btn {
    height: 45px;
    line-height: 45px;
    padding: 0 45px;
}

.header-toggle {
    margin-left: 30px;
}

.header-toggle button {
    background: none;
    border: 0;
    padding: 0;
}

.header-toggle button span {
    width: 30px;
    height: 3px;
    background: var(--secondary-color);
    margin: 5px 0;
    display: block;
}

.header-toggle button span:last-child {
    margin-bottom: 0;
}

.offcanvas-header {
    padding: 1.5rem 1rem !important;
}

.offcanvas-header .close-btn {
    background: none !important;
    border: 0 !important;
    font-size: 18px !important;
    color: #ffffff !important;
    transition: all 0.3s linear !important;
}

.offcanvas-header .close-btn:hover {
    transform: rotate(90deg);
    color: #1d89ff;
}

.offcanvas-logo a img {
    width: 130px;
}

.offcanvas-menu .main-menu li {
    position: relative;
}

.offcanvas-menu .main-menu li a {
    display: block;
    font-size: 16px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    color: #ffffff;
    padding: 20px 0px 20px 20px;
    position: relative;
}

.offcanvas-menu .main-menu li .menu-expand {
    position: absolute;
    right: 20px;
    top: 14px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.offcanvas-menu .main-menu li .menu-expand::before {
    position: absolute;
    content: "";
    width: 16px;
    height: 2px;
    background-color: #ffffff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s linear;
}

.offcanvas-menu .main-menu li .menu-expand::after {
    position: absolute;
    content: "";
    width: 2px;
    height: 16px;
    left: 50%;
    top: 50%;
    bottom: 0;
    background-color: #ffffff;
    transform: translate(-50%, -50%);
    transition: all 0.3s linear;
}

.offcanvas-menu .main-menu li:hover > a {
    color: #1d89ff;
}

.offcanvas-menu .main-menu li.active > .menu-expand::after {
    height: 0;
}

.offcanvas-menu .main-menu li ul {
    padding-left: 6%;
    display: none;
}

.offcanvas {
    background: hsl(0 0% 0%) !important;
    width: 300px !important;
}

.offcanvas .offcanvas-header .logo {
    max-width: 50%;
}

.offcanvas .offcanvas-body {
    padding: 0px 0px;
}

.offcanvas .offcanvas-body .side-Nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offcanvas .offcanvas-body .side-Nav li {
    border-bottom: 1px solid hsl(40deg 98% 51% / 20%);
}

/* hero section */
.hero_section {
    overflow: hidden;
}

.video-bg {
    position: absolute;
    right: 0;
    top: 0;
    min-width: 100%;
    height:100%;
    z-index: -1;
    background-position: 50%  10%;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("../img/beautiful-black-nurse-portrait.jpg");
    object-fit: cover;
}


/* add circle before the subtitle text */
.hero_section .hero_content .hero_title {
    font-size: 45px;
    font-weight: 700;
    font-family: var(--font-family);
    color: var(--color-white);
    line-height: 60px;
}

.hero_section .hero_content {
    min-width: 100%;
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    text-align: center;
    /* background: rgba(0, 0, 0, 0.4); */
}

.hero_section .hero_content::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.service-image {
    width: 500px;
    height: 500px;
    object-fit: cover; /* Keeps aspect ratio while filling the box */
    border-radius: 10px; /* Optional for rounded corners */
}

@media only screen and (max-width: 992px) {
    .sm-hide {
        display: none;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(1.5, 1.5, 1.5);
        transform: scale3d(1.5, 1.5, 1.5);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

/*================================================
Service Area CSS
=================================================*/
.section_heading {
    position: relative;
}

.section_heading .section_title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-black);
    text-align: center;
    font-family: var(--font-family);
    background-color: var(--color-white);
    padding: 10px 30px;
    border-radius: 20px;
    display: inline-block;
    border: 1.5px solid #ff6b6b;
    position: relative;
}

.section_heading .section_title::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #ff6b6b;
    border-radius: 50%;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
}

.section_heading p {
    font-size: 17px;
    font-weight: 500;
    color: var(--color-black);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.service-card {
    box-shadow: var(--boxShadow);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 30px;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    opacity: 0; /* Initial state for animation */
    transform: translateY(50px); /* Initial state for animation */
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card .service-card-text {
    padding: 0px 30px 25px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("../img/service/text-bg.png");
    filter: brightness(0.98);
    transition: 0.5s ease;
}
.service-card .service-card-text .service-card-icon {
    position: relative;
    display: inline-block;
    overflow: hidden;
    margin-top: -50px;
    margin-bottom: 15px;
}
.service-card .service-card-text .service-card-icon .shape1 {
    transition: 0.5s ease-in-out;
}
.service-card .service-card-text .service-card-icon .shape2 {
    position: absolute;
    left: 0%;
    top: 0;
    z-index: 0;
    transform: scale(1.5, 1.5) rotate(10deg);
    opacity: 0;
    transition: 0.5s ease-in-out;
}
.service-card .service-card-text .service-card-icon i {
    font-size: 35px;
    color: var(--color-white);
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.service-card .service-card-text h4 {
    margin-bottom: 14px;
    font-size: var(--card-title-fontSize);
    font-weight: 600;
    text-transform: capitalize;
}
.service-card:hover .service-card-icon .shape2 {
    transform: scale(1, 1) rotate(0deg);
    opacity: 1;
}
.service-card:hover .service-card-icon .shape1 {
    opacity: 0;
}
.service-card:hover .service-card-text {
    filter: brightness(1);
}

/*================================================
Index 01 Blog Area CSS
=================================================*/
.blog-card {
    margin-top: 30px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
}

.blog-card.blogColor {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.blog-card .blog-card-img {
    position: relative;
    transition: 0.5s ease;
    overflow: hidden;
}

.blog-card .blog-card-img img {
    /* border-radius: 25px; */
    transition: 0.5s ease;

    object-fit: cover;
}

.blog-card .blog-card-img.details img {
    border-radius: 20px;
    height: 700px;
}

.blog-card .blog-card-img .blog-card-category {
    padding: 8px 30px;
    border-radius: 20px;
    transition: 0.5s ease;
    display: inline-block;
    color: var(--primary-color);
    transition: 0.5s ease;
    background-color: var(--color-black);
    position: absolute;
    bottom: 15px;
    left: 15px;
    font-size: 15px;
    font-weight: 600;
}
.blog-card .blog-card-text {
    margin-top: 25px;
}
.blog-card .blog-card-text h4 {
    color: var(--color-black);
    line-height: 1.4;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: var(--card-title-fontSize);
    font-weight: 600;
}
.blog-card:hover .blog-card-img img {
    transform: scale(1.1) rotate(-3deg);
}
.blog-card:hover .blog-card-img .blog-card-category {
    background-color: var(--primary-color);
    color: var(--color-white);
}

.blog-date ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.blog-date ul li {
    display: inline-block;
    margin-right: 14px;
    position: relative;
    color: var(--paragraphColor);
    font-size: 14px;
    font-family: var(--fontFamily2);
}
.blog-date ul li i {
    color: var(--primary-color);
    margin-right: 5px;
}
.blog-date ul li::before {
    content: "/";
    font-size: 16px;
    position: absolute;
    right: -11px;
    top: 0px;
}
.blog-date ul li:last-child::before {
    display: none;
}

.pagination {
    margin-top: 30px;
    text-align: center;
    display: inherit;
}
.pagination ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.pagination ul li {
    display: inline-block;
}
.pagination ul li a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s ease;
    border: 1px solid var(--primary-color);
    margin: 0px 3px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-family);
}
.pagination ul li a:hover {
    color: var(--color-white);
    background-color: var(--primary-color);
}
.pagination ul .active a {
    color: var(--color-white);
    background-color: var(--primary-color);
}

/*================================================
Blog Details area CSS
=================================================*/
.blog-quote {
    background-color: #f9faff;
    margin-top: 20px;
    margin-bottom: 25px;
    padding: 30px;
    border-radius: 25px;
}
.blog-quote p {
    color: var(--color-black);
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
}
.blog-quote h5 {
    margin-bottom: 0px;
    font-size: 16px;
    font-weight: 500;
}
.blog-quote h5 i {
    color: var(--primary-color);
    margin-right: 15px;
}
.blog-quote h5 span {
    color: var(--paragraphColor);
}

.blog-text-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
    border-radius: 25px;
    padding: 3px 15px 15px 15px;
    background-color: #f9fafb;
}
.blog-text-footer ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.blog-text-footer ul li {
    display: inline-block;
}
.blog-text-footer ul li span {
    font-weight: 600;
    margin-right: 10px;
    padding: 0px !important;
    color: var(--color-black);
    background-color: transparent !important;
}
.blog-text-footer .tag-area {
    margin-top: 12px;
}
.blog-text-footer .tag-area ul li {
    margin-right: 5px;
    cursor: pointer;
    color: var(--color-black);
    font-size: var(--fontSize);
    font-family: var(--fontFamily2);
}
.blog-text-footer .tag-area ul li i {
    color: var(--primary-color);
}
.blog-text-footer .tag-area ul li:hover {
    transition: 0.5s ease-in-out;
    color: var(--primary-color);
}
.blog-text-footer .tag-area ul li:first-child {
    padding: 0px;
}
.blog-text-footer .social-icons {
    margin-top: 12px;
}
.blog-text-footer .social-icons ul li a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px dashed var(--primary-color);
    color: var(--primary-color);
    background-color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.blog-text-footer .social-icons ul li a:hover {
    color: var(--color-white);
    background-color: var(--primary-color);
}

.bd-comments {
    margin-top: 30px;
}
.bd-comments h3 {
    font-size: var(--card-title-fontSize);
}

.comment-card {
    margin-top: 30px;
    position: relative;
    padding-left: 100px;
}
.comment-card img {
    border-radius: 50%;
    position: absolute;
    left: 0;
}
.comment-card h5 {
    margin-bottom: 0px;
    color: var(--color-black);
    font-weight: 600;
    font-size: var(--fontSize);
}
.comment-card span {
    color: var(--paragraphColor);
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 14px;
    font-family: var(--font-family);
}
.comment-card p {
    margin-top: 10px;
    margin-bottom: 10px;
}
.comment-card a {
    color: var(--primary-color);
    font-weight: 500;
}

.bd-form {
    width: 70%;
    margin: 0 auto;
    margin-top: 30px;
    padding: 30px;
    border-radius: 25px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
        rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
.bd-form h3 {
    font-size: var(--card-title-fontSize);
}
.bd-form .form-group {
    margin-bottom: 30px;
}
.bd-form .form-control {
    border: 0px;
    padding: 12px 15px;
    border-radius: 25px;
    background-color: var(--color-white);
    border: 1px solid var(--primary-color);
}

.bd-form .form-control:focus {
    border: 1px solid var(--primary-color);
    outline: none !important;
    box-shadow: none;
}

.bd-form .list-unstyled {
    font-size: 14px;
    color: #ff0000;
    margin-top: 8px;
}
.bd-form #msgSubmit {
    font-size: 20px;
    margin-top: 10px;
}

.blog-with-sidebar .blog-card {
    margin-top: 0px;
    margin-bottom: 30px;
}
.blog-with-sidebar .blog-card img {
    width: 100%;
}

.blog-details-text-area .blog-card .blog-card-img img {
    transform: rotate(0);
}

/*==============================================
 About Area CSS
=================================================*/

.about_section .section_heading .section_title {
    position: relative;
}

.about_section .section_heading .section_title::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #ff6b6b;
    border-radius: 50%;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
}

.about-img-area-2 {
    position: relative;
    border-radius: 0px 25% 0px 25%;
    background-image: linear-gradient(to top, #ff6613, #fdc9ac);
}
.about-img-area-2 .about-text-2 {
    position: absolute;
    text-align: center;
    border-radius: 0px 25% 0px 25%;
    padding: 15px 30px;
    background-color: var(--color-white);
    border: 1px solid #cccccc;
    display: inline-block;
    left: -30px;
    bottom: 20%;
}
.about-img-area-2 .about-text-2 h2 {
    color: var(--color-black);
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 0;
}

.about-img-area-2 {
    width: 100%;
    border-radius: 10px;
    opacity: 0; /* Initial state for animation */
    transform: translateX(-50px); /* Initial state for animation */
    padding: 30px;
}

.about-text-area {
    opacity: 0; /* Initial state for animation */
    transform: translateX(50px); /* Initial state for animation */
}

/*================================================
Default Section Title Area CSS
=================================================*/
.default-section-title h6 {
    position: relative;
    padding-left: 45px;
    display: inline-block;
    color: var(--color-black);
    font-size: var(--fontSize);
    font-family: var(--font-family);
    padding: 10px 30px;
    border-radius: 20px;
    display: inline-block;
    border: 1.5px solid #ff6b6b;
}
.default-section-title h6::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #ff6b6b;
    border-radius: 50%;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
}
.default-section-title h3 {
    line-height: 1.4;
    color: var(--color-black);
    font-size: 36px;
    font-weight: 700;
}

/*================================================
 03 Booking Area CSS
=================================================*/
.booking-3 {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("../img/booking-3-bg.jpg");
    position: relative;
}
.booking-3::before {
    content: "";
    width: 32%;
    height: 100%;
    background-color: var(--color-white);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.booking-form-area-3 {
    background-color: var(--primary-color);
    padding: 0px;
    position: relative;
}
.booking-form-area-3 .booking-form-content-3 {
    padding: 30px 30px 30px 30px;
    margin-top: 100px;
    margin-bottom: 100px;
}
.booking-form-area-3 .booking-form-content-3 .default-section-title h3 {
    color: var(--color-white);
}

.booking-form-area {
    background-color: rgba(255, 99, 14, 0.9);
    padding-left: 50px;
    padding-right: 50px;
}
.booking-form-area .default-section-title h3 {
    line-height: 1;
}
.booking-form-area .booking-form-content {
    margin-top: 20px;
    border-radius: 10px;
}
.booking-form-area .booking-form-content .form-control,
.booking-form-area .booking-form-content .form-select {
    padding: 15px;
    border-radius: 5px;
    background-color: #f9fafb;
    border: 1px solid #eeeeee;
    color: var(--blackColor);
    font-size: var(--fontSize);
    font-family: var(--fontFamily2);
}
.booking-form-area .booking-form-content .form-control::after,
.booking-form-area .booking-form-content .form-select::after {
    display: none;
}
.booking-form-area .booking-form-content .default-button {
    display: block;
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    background: var(--secondary-color-2);
    border: none !important;
}
.booking-form-area .booking-form-content .current {
    color: var(--paragraphColor);
}

/*================================================
 Portfolio Area CSS
=================================================*/
.portfolio .default-section-title {
    text-align: center;
}

.portfolio-card {
    position: relative;
    margin-top: 30px;
    border-radius: 25px;
    overflow: hidden;
}
.portfolio-card::before {
    content: "";
    width: 100%;
    height: 0%;
    transition: 0.5s ease;
    background-image: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.937254902),
        rgba(0, 0, 0, 0.431372549),
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0)
    );
    position: absolute;
    left: 0;
    bottom: 0;
}
.portfolio-card .portfolio-text {
    width: 100%;
    padding: 20px 20px 30px;
    z-index: 9;
    text-align: center;
    position: absolute;
    bottom: 0;
    transition: 0.5s ease;
    transform: translateY(50px) scale(0);
}
.portfolio-card .portfolio-text p {
    color: var(--primary-color);
    font-size: 15px;
    margin-bottom: 5px;
}
.portfolio-card .portfolio-text h4 {
    margin-bottom: 0;
    color: var(--color-white);
    font-size: var(--card-title-fontSize);
    font-weight: 600;
}
.portfolio-card .portfolio-text h4 a {
    color: var(--color-white);
}
.portfolio-card:hover::before {
    height: 100%;
}
.portfolio-card:hover .portfolio-text {
    transform: translateY(0px) scale(1);
}

.portfolio-slider-area .owl-nav {
    position: absolute;
    top: -55px;
    right: 0;
}
.portfolio-slider-area .owl-nav button {
    width: 40px;
    height: 40px;
    margin: 0px 5px;
    border-radius: 10px;
    transition: 0.5s ease;
    display: inline-block;
    color: var(--color-black) !important;
    border: 1px solid #858585 !important;
}
.portfolio-slider-area .owl-nav button:hover {
    border-color: var(--primary-color) !important;
    color: var(--color-white) !important;
    background-color: var(--primary-color) !important;
}

/* partner  */

.partner .owl-carousel .owl-item {
    margin-left: 50px;
    margin-right: 50px;
    /* margin-top: 5px;
    margin-bottom: 20px; */
}

.partner-item {
    flex: 0 0 auto !important;
    width: 180px !important;
    height: 80px !important;
    padding: 0 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: rgba(0, 0, 0, 0.1) 3px 2px 4px 0px !important;
    margin: 0 auto !important;
    opacity: 0;
    transform: scale(0.8);
    img {
        max-width: 100%;
        max-height: 60px;
        object-fit: contain;
        /* filter: grayscale(100%); */
        opacity: 0.7;
        transition: all 0.3s ease;

        /* &:hover {
            filter: grayscale(0);
            opacity: 1;
        } */
    }
}

.cta-button {
}

.bg-cta-button {
    position: relative;
    background-color: var(--secondary-color-2);
    border-radius: 32px;
    overflow: hidden;
    padding: 6rem 72px;
    text-align: center;
    .cta-button-content h2 {
        font-family: var(--font-family);
        font-size: 35px;
        font-weight: 500;
        line-height: 50px;
        color: var(--color-white);
        text-transform: capitalize;
    }
    .cta-button-content p {
        font-family: var(--font-family);
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        color: var(--color-white);
    }
}

.btn-cta {
    position: relative;
    top: 56px;
    background-color: var(--primary-color);
    padding: 10px 30px;
    border-radius: 32px;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--color-white);
    text-transform: capitalize;
    transition: all 0.3s ease;
    &:hover {
        background-color: var(--color-white);
        color: var(--primary-color);
    }
}

.svg_cta {
    position: absolute;
    z-index: 0;
    opacity: 0.1;
    width: 1277px;
    height: 670px;
    transform: rotate(-90deg) translate(-50%, -50%);
    color: #ffede5;
    top: 63%;
    left: 70%;

    @media (min-width: 768px) {
        width: 2090px;
        height: 1096px;
        transform: rotate(0deg) translate(-50%, -50%);
        top: 75%;
        left: 37%;
    }
}

.footer {
    background-image: url("../img/footer_bg.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--secondary-color-2);
}

.footer-bottom {
    border-top: 0.9px solid var(--primary-color);
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
}

.footer-links ul li {
    padding: 5px;
}

.footer-links ul li a {
    color: var(--color-white);
    font-family: var(--font-family);
    font-size: var(--fontSize);
    font-weight: 400;
    line-height: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    &:hover {
        color: var(--primary-color);
    }
}

.footer-links h3 {
    font-family: var(--font-family);
    color: var(--color-white);
    font-size: 30px;
    font-weight: 600;
    line-height: 30px;
}

.footer p {
    font-family: var(--font-family);
    color: var(--color-white);
    font-size: var(--fontSize);
    font-weight: 400;
    line-height: 24px;
}

.footer-links li{
    color: var(--color-white) !important;
}

.footer-social-links a {
    width: 40px;
    height: 40px;
    padding: 0.7em 1em;
    border-radius: 25%;
    color: var(--color-white);
    margin-left: 12px;
    background-color: var(--primary-color);
}

.footer-links .icon-f {
    padding-right: 13px;
    color: var(--primary-color) !important;
    transition: all 0.5s ease;
}

.footer-social-links a:hover {
    background-color: var(--secondary-color-2);
    color: var(--color-white);
    transition: all 0.5s ease;
    border: 2px solid blue;
}

.about_us_content {
    opacity: 0;
    transform: translateX(50px);
}

.about_us_section .about_us_content .subtitle {
    font-family: var(--font-family);
    font-size: var(--fontSize);
    font-weight: bold;
    line-height: 40px;
    color: var(--primary-color);
}
.about_us_section .about_us_content .title {
    font-family: var(--font-family);
    font-size: 35px;
    font-weight: 600;
    line-height: 50px;
    color: var(--color-black);
}

.about_us_section .about_us_content p {
    font-family: var(--font-family);
    font-size: var(--fontSize);
    font-weight: 300;
    line-height: 30px;
    color: var(--color-black-50);
}

.about-us-image {
    border-radius: 25px;
    opacity: 0;
    transform: translateX(-50px);
}

/* =================================================*/
/* Hero Area CSS */
/* =================================================*/
.hero-section .hero-content .title {
    font-family: var(--font-family);
    font-size: 40px;
    font-weight: 500;
    line-height: 40px;
    color: var(--color-white);
    font-size: 40px;
    font-weight: 500;
    font-family: var(--font-family);
}

/*================================================
Contact page area CSS
=================================================*/

.contact_section {
}

.contact_info_item {
    position: relative;
    border-radius: 20px;
    padding: 25px 30px 25px 105px;
    margin-top: 30px;
    box-shadow: var(--boxShadow);
    /* display: inline-block; */
}
.contact_info_item .contact_info_icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: var(--primary-color);
    border: 1px dashed var(--primary-color);
    transition: 0.5s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 30px;
}

.contact_info_item .contact_info_icon .icon {
    font-size: 30px;
}

.contact_info_item h4 {
    margin-bottom: 5px;
    color: var(--color-black);
    font-size: var(--card-title-fontSize);
    font-weight: 600;
}
.contact_info_item p {
    margin-bottom: 0px;
}
.contact_info_item p a {
    color: var(--paragraphColor);
}

.contact_form {
    box-shadow: var(--boxShadow);
    border-radius: 25px;
    padding: 30px 30px 10px;
}
.contact_form h3 {
    margin-top: 0px;
}
.contact_form .form-control {
    background-color: #f9fafb;
    padding: 10px 30px;
    --tw-border-opacity: 1;

    border-color: rgb(255 216 198 / var(--tw-border-opacity));
    border-radius: 0.5rem;
    color: rgb(16 24 40 / var(--tw-text-opacity));
    padding: 0.75rem 1rem;
    transition-duration: 0.15s;
    width: 100%;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}

.contact_form .form-control:focus {
    outline: none;
    box-shadow: none;
    border: 2px solid var(--secondary-color);
}

.slider-container {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    /* border-radius: 10px; */
}



.slider-container .slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.8s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
}


 /* Overlay for blend effect */
.slider-container .slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(165, 24, 24, 0.2), rgba(0, 0, 0, 0.3));
    mix-blend-mode: overlay;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Crazy Effect 1: Zoom and Rotate */
.effect1 {
  background-image: url('../img/service/security.jpg');
  transform: scale(1.5) rotate(10deg);
}

/* Crazy Effect 2: Slide from Left with Blur */
.effect2 {
  background-image: url('../img/service/s1.jpg');
  transform: translateX(-100%);
  filter: blur(5px);
}

.effect2.active {
  filter: blur(0);
}

/* Crazy Effect 3: Flip and Scale */
.effect3 {
  background-image: url('../img/Full-Screen-Image-KC.png');
  transform: perspective(1000px) rotateY(90deg) scale(0.8);
}

.effect3.active {
    transform: perspective(1000px) rotateY(0deg) scale(1);
}


.slider-container .caption {
    position: absolute;
    bottom: 60px;
    left: 70px;
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    background-color: var(--color-white);
    padding: 30px;
     z-index: 2;
}

.slider-container .slide.active .caption {
    opacity: 1;
    transform: translateY(0);
}

.slider-container .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    transition: background 0.3s ease;
    z-index: 2;
}

.nav-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-container .prev {
    left: 10px;
}

.slider-container .next {
    right: 10px;
}

.slider-container .dots {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.slider-container .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-container .dot.active {
    background: white;
}

/* =================================================*/
/* Animation Area CSS */
/* =================================================*/

.review-title{
    /* color: ; */
}


.testimonials-section{
	width: 100%;
	padding: 0px 8%;
}
.testimonials-section .section-header{
	max-width: 700px;
	text-align: center;
	margin: 30px auto 40px;
}
.section-header h1{
	position: relative;
	font-size: 36px;
	color: var(--secondary-color-2);
}
.testimonials-container{
	position: relative;
}
.testimonials-container .testimonial-card{
	padding: 20px;
}
.testimonial-card .test-card-body{
	background-color: var(--secondary-color-2);
	box-shadow: 2px 2px 20px rgba(0,0,0,0.12);
	padding: 20px;
}
.test-card-body .quote{
	display: flex;
	align-items: center;
}
.test-card-body .quote .icon{
	font-size: 45px;
	color: var(--color-white);
	margin-right: 20px;
}
.test-card-body .quote h2{
	color: var(--color-white);
}
.test-card-body p{
	margin: 10px 0px 15px;
	font-size: 14px;
	line-height: 1.5;
	color: var(--color-white);
}
.test-card-body .ratings{
	margin-top: 20px;
}
.test-card-body .ratings .icon{
	font-size: 17px;
	color: var(--secondary-color-2);
	cursor: pointer;
}
.testimonial-card .profile{
	display: flex;
	align-items: center;
	margin-top: 25px;
}
.profile .profile-image{
	width: 55px;
	height: 55px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 15px;
}
.profile .profile-image img{
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}
.profile .profile-desc{
	display: flex;
	flex-direction: column;
}
.profile-desc span:nth-child(1){
	font-size: 24px;
	font-weight: bold;
	color: var(--secondary-color-2);
}
.profile-desc span:nth-child(2){
	font-size: 15px;
	color: var(--color-white);
}
.owl-nav{
	position: absolute;
	right: 20px;
	bottom: -10px;
}
.owl-nav button{
	border-radius: 50% !important;
}
.owl-nav .owl-prev .icon,
.owl-nav .owl-next .icon{
	padding: 10px !important;
	border-radius: 50%;
	font-size: 18px !important;
	background-color: var(--secondary-color) !important;
	color: var(--secondary-color);
	cursor: pointer;
	transition: 0.4s;
    color: #ffffff;
}
.owl-nav .owl-prev .icon:hover,
.owl-nav .owl-next .icon:hover{
	background-color: var(--secondary-color) !important;
	color: #fff;
}
.owl-dots{
	margin-top: 15px;
}
.owl-dots .owl-dot span{
	/* background-color: #434753 !important; */
	padding: 6px !important;
}
.owl-dot.active span{
	background-color: var(--secondary-color) !important;
}


@keyframes top-bottom {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(10px);
    }
}
@keyframes half-spin {
    0% {
        transform: rotate(0);
        transform-origin: center;
    }
    50% {
        transform: rotate(90deg);
        transform-origin: center;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
    .hero_section {
        height: auto !important;
    }
    .header .header_container .header_nav {
        display: none;
    }
    .offcanvas {
        width: 280px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
    .hero_section {
        height: auto !important;
    }
    .hero_section .hero_content .hero_title {
        font-size: 30px;
        line-height: 40px;
    }

    .hero_section .hero_subtitle {
        font-size: 11px;
        padding: 10px 10px;
    }

    .hero_section .hero_subtitle::before {
        display: none;
    }

    .hero_section img {
        height: auto;
    }

    .booking-form-area-3 .booking-form-content-3 {
        padding: 30px 0 30px 0;
    }

    .default-section-title h3 {
        font-size: 33px;
    }

    .cta-button-content h2 {
        font-size: 23px;
        line-height: 42px;
    }

    .bg-cta-button {
        padding: 6rem 25px;
    }
    .portfolio .default-section-title {
        text-align: start;
    }

    .partner .owl-carousel .owl-item {
        margin-left: 10px;
    }

    .partner.pb60 {
        padding-bottom: 0px;
    }

    .header .header_container .header_nav {
        display: none;
    }

    .header .header_container {
        padding: 15px 5px 15px;
    }
    .header .header_contact {
        display: none;
    }
    .header {
        box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
            rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    }
    .banner .orange-line {
        right: 36px;
        top: 192px;
    }

    .banner .black-line {
        top: 74px;
    }

    .banner .half-circle {
        top: 37%;
        left: 20px;
    }

    .breadcrumb-content {
        left: 10%;
    }
    .breadcrumb-content h2{
        font-size: 28px;
    }
    .breadcrumb_section .breadcrumb .breadcrumb-svg {
        top: 266px;
    }

    .breadcrumb_section.pb120 {
        padding-bottom: 140px;
    }
    .header-toggle {
        margin-left: 100px;
    }

    .slider-container .caption{
        left:20px;
    }
    .blog-card .blog-card-img.details img {
        height: auto;
    }
}

/* Large devices (desktops, 992px and up) */
@media (max-width: 992px) {
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .breadcrumb-content p {
        inline-size: 600px;
        margin: 0 auto;
    }
    .section_heading p {
        margin: 0 auto;
        inline-size: 500px;
    }
    .hero_section .hero_title{
        inline-size: 700px;
    }

    .hero_section .hero_content .hero_description {
        inline-size: 600px;
    }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
    .cta-button-content p {
        inline-size: 700px;
        margin: 0 auto;
    }
}
