@charset "UTF-8";

:root {
    --primary-color: #FF2C47;
    --secondary-color: #000000;
    --bg-color: #f5f5f5;
    --white-color: #ffffff;
    --black-color: #000000;
    --dark-color: #002048;
    --text-gray-color: #606060;
    --transition: all 0.3s ease 0s;
}
* {
    margin: 0;
    box-sizing: border-box;
}
*,
::after,
::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}
html {
    scroll-behavior: smooth
}
body {
    overscroll-behavior: none;
}
body,
html {
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: 20px;
    color: var(--black-color);
    font-family: "Nunito Sans", sans-serif;
}
h1,h2,h3,h4 {
    margin: 0;
    font-weight: 700;
    font-family: "Inter", sans-serif;
}
h5,h6 {
    margin: 0;
}
p {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--black-color);
}
span, li {
    font-family: "Nunito Sans", sans-serif;
}
p:last-child {
    margin-bottom: 0
}
a,
button {
    cursor: pointer;
    text-decoration: none;
    color: var(--black-color);
    transition: var(--transition);
}
a, button, img, input, textarea {
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}
a:focus {
    text-decoration: none;
    outline: 0
}
a:hover {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    height: auto
}
ul {
    margin: 0;
    padding: 0
}
li {
    list-style: none;
    transition: var(--transition);
}
.all-search i {
    font-size: 22px;
}
.container-fluid {
    padding-right: 80px;
    padding-left: 80px;
}
.section-padding {
    padding: 80px 0 80px 0;
}
.pad-top {
    padding-top: 80px;
}
.pad-bottom {
    padding-bottom: 80px;
}
.pad-top-half {
    padding-top: 40px;
}
.pad-bottom-half {
    padding-bottom: 40px;
}
.section-heading-center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    flex-direction: column;
    z-index: 11;
}
.section-heading-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.section-heading {
    margin-bottom: 25px;
}
.main-head {
    font-size: 45px;
    line-height: 50px;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
}
.sub-head {
    color: #6c757d;
    font-size: 20px;
    font-weight: 500;
    margin: 10px 0;
}
.section-bg {
    background: var(--bg-color) !important;
}
.bg-primary {
    background: var(--primary-color) !important;
}
.bg-secondary {
    background: var(--secondary-color) !important;
}


/*button section start*/
.inline-main-btn {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.main-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    width: max-content;
    padding: 10px 15px;
    z-index: 1;
    transition: var(--transition);
}

.btn-1 {
    color: #ffffff;
    background: var(--primary-color);
}
.btn-1:hover {
    color: #ffffff;
    background: var(--secondary-color);
}

.btn-2 {
    color: #ffffff;
    background: var(--secondary-color);
}
.btn-2:hover {
    color: #ffffff;
    background: var(--primary-color);
}

.btn-white {
    color: #000000;
    background: var(--white-color);
}
.btn-white:hover {
    color: #ffffff;
    background: var(--primary-color);
}
/*button section end*/

/*hover-link start*/
.hover-link {
    position: relative;
    display: inline-block;
    overflow: hidden;
}
.hover-link::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: var(--primary-color);
    transition: width .3s;
}
.hover-link:hover::after {
    width: 0%;
    transition: width .3s;
}
/*hover-link end*/


/*--------------------------------------------
           header section start
--------------------------------------------*/
header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 999;
}
.header-top-section {
    padding: 5px 0;
    background: #000000;
}
.header-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.top-info, .top-right {
    display: flex;
    column-gap: 10px;
}
.top-info a:hover {
    color: var(--white-color);
}
.top-info a {
    gap: 5px;
    display: flex;
    align-items: center;
    color: var(--white-color);
    font-size: 12px;
    margin-right: 5px;
    position: relative;
}
.top-info a i {
    color: #fff;
    font-size: 12px;
}
.header-social {
    display: flex;
    align-items: center;
    position: relative;
}
.header-social .main-btn {
    border: 1px solid #fff;
    background: transparent;
    padding: 3px 10px;
    font-size: 12px;
}
.header-social-inline {
    display: flex;
    column-gap: 4px;
    align-items: center;
    margin-right: 15px;
}
.header-social-inline li {
    color: var(--white-color);
    font-size: 12px;
}
.header-social-list-icon {
    width: 20px;
    height: 20px;
    color: var(--black-color);
    border: 1px solid var(--white-color);
    line-height: 19px;
    text-align: center;
    border-radius: 50%;
    position: relative;
    font-size: 10px;
    display: inline-block;
    background: var(--white-color);
}
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.logo img {
    width: 80px;
    height: auto;
    position: relative;
    top: 0;
}
.menu-section-right {
    display: flex;
    align-items: center;
}
/*--------------------------------------------
           header section end
--------------------------------------------*/


/*--------------------------------------------
           home section start
--------------------------------------------*/
.z-index-1 {
    z-index: 1;
}
.heading-white .main-head {
    color: #ffffff;
}
.new-slick-dots .slick-dots {
    bottom: 0;
    left: 0;
    margin: 15px 0 0;
    position: relative;
}
.new-slick-dots .slick-dots li {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0 3px;
    padding: 0;
    cursor: pointer;
    border: 0;
}
.new-slick-dots li.slick-active button {
    background: var(--primary-color) !important;
}
.new-slick-dots .slick-dots li button {
    width: 5px;
    height: 5px;
    padding: 5px;
    border-radius: 50%;
    background: #cbc9c9;
    opacity: 1;
}
.slick-slide {
    padding: 3px;
    margin-right: 3px;
    margin-left: 3px;
}
.testimonial .slick-next, .testimonial .slick-prev {
    width: 40px;
    height: 40px;
    background: #ebebeb;
    border-radius: 50%;
}
.testimonial .slick-next:hover, .testimonial .slick-prev:hover {
    width: 40px;
    height: 40px;
    background: #ebebeb;
    border-radius: 50%;
}
.testimonial .slick-next:before {
    content: "\f054";
    font-family: 'Font Awesome 6 Pro';
    color: #000;
}
.testimonial .slick-prev:before {
    content: "\f053";
    font-family: 'Font Awesome 6 Pro';
    color: #000;
}
/*--------------------------------------------
           home section end
--------------------------------------------*/



/*--------------------------------------------
           banner section start
--------------------------------------------*/
.home2__slider--bg {
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    position: relative;
    width: 100%;
    height: 550px;
}
.hero__slider--section .inline-main-btn {
    justify-content: center;
}
.home2__slider--bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    /*background: linear-gradient(to bottom, #00000000 0%, #003399 50%);*/
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    opacity: 0.7;
}
.hero__slider--items__inner {
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 550px;
    position: relative;
}
.sub-heading-banner {
    display: flex;
    align-items: center;
}
.slider__content h4{
    color: var(--white-color);
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 10px;
    font-weight: 500;
}
.slider__content .sub-head {
    color: #ffffff;
}
.slider__content--maintitle {
    margin-bottom: 0;
    font-size: 50px;
    line-height: 60px;
    color: var(--white-color);
    position: relative;
    font-weight: 700;
    width: 700px;
    text-transform: capitalize;
}
.slider__content--desc {
    width: 700px;
    font-size: 16px;
    line-height: 24px;
    color: var(--white-color);
    margin-bottom: 20px;
    font-weight: 300;
}
.swiper__nav--btn::after {
    background: url(../images/icon/left-arrow-angle.png) !important;
    width: 9px;
    height: 17px;
    font-size: 0;
}
.swiper__nav--btn.swiper-button-next::after {
    background: url(../images/icon/right-arrow-angle.png) !important;
}
.swiper__nav--btn {
    display: none !important;
    width: 3rem !important;
    height: 3rem !important;
    background: var(--primary-color) !important;
    border-radius: 50% !important;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.swiper__nav--btn:hover {
    background: var(--black-color);
}
.hero__slider--activation .swiper-button-prev {
    left: 1rem;
}
.swiper__nav--btn.swiper-button-prev {
    left: 0;
}
.swiper:hover .swiper__nav--btn {
    opacity: 1;
    visibility: visible;
}
.hero__slider--activation .swiper-button-next {
    right: 1rem;
}
.swiper__nav--btn.swiper-button-next {
    right: 0;
}
.slider__content {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/*--------------------------------------------
           banner section end
--------------------------------------------*/


/*--------------------------------------------
         happy client section start
--------------------------------------------*/
.happy-client-item {
    width: 100%;
    height: 120px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}
.happy-client-item:hover {
    transform: translateY(-5px);
}
.happy-client-item img {
    object-fit: contain;
    max-height: 70px;
    width: auto;
    filter: grayscale(100%) brightness(30%);
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
}
.happy-client-item:hover img {
    filter: grayscale(0%) brightness(100%) drop-shadow(0px 0px 8px #000000);
    opacity: 1;
    transform: scale(1.0);
}
/*--------------------------------------------
         happy client section end
--------------------------------------------*/
.custom-banner-section {
    position: relative;
    padding-top: 4rem;
    padding-bottom: 4rem;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.custom-banner-overlay {
    position: absolute;
    inset: 0;
    background-color: black;
    opacity: 0.6;
    z-index: 0;
}
.custom-banner-content .main-head {
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.custom-banner-content {
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.service-grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0px, 1fr));
    position: relative;
    gap: 30px;
}
.service-item:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.9) 100%);
    width: 100%;
    height: 100%;
    opacity: 1;
    border-radius: 10px;
    z-index: 1;
}
.service-item {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    overflow: hidden;
}
.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.service-item:hover:before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.9) 50%, rgba(0, 0, 0, 0.95) 100%);
}
.service-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-item:hover .service-image {
    transform: scale(1.08);
}
.service-content {
    background: transparent;
    padding: 15px;
    position: absolute;
    bottom: 15px;
    left: 15px;
    border-radius: 10px;
    z-index: 2;
}
.service-content .main-head {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 10px;
    color: #ffffff;
}
.service-content p {
    line-height: 20px;
    font-size: 14px;
    margin-bottom: 10px;
    color: #ffffff;
    display: -webkit-box;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}
.service-content span {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 16px;
}
.about-us-section {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 60px 60px;
    margin-top: 10px;
    position: relative;
}
.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
}
.about-image {
    padding-left: 50px;
}
.accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #ff2c47;
}
.accordion-button:focus {
    z-index: 3;
    border-color: #86b7fe00;
    outline: 0;
    box-shadow: 0 0 var(--bs-accordion-btn-focus-box-shadow);
}
/*--------------------------------------------
     home contact with contact page start
--------------------------------------------*/
.home-contact-info {
    border-radius: 100px;
    display: grid;
    gap: 20px;
    width: 100%;
    grid-template-columns: repeat(1, minmax(0px, 1fr));
}
.home-contact-info-items {
    background: var(--primary-color);
    border-radius: 14px;
    padding: 30px;
    z-index: 11;
    position: relative;
}
.home-contact-info-icon i {
    font-size: 24px;
    margin-right: 10px;
    background: #fff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    text-align: center;
    color: var(--primary-color);
}
.contact-info-content h4 {
    font-size: 25px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 5px;
}
.contact-info-content p, .contact-info-content a {
    color: #fff;
    line-height: 28px;
    font-size: 16px;
    word-break: break-word;
    margin-bottom: 0;
}
.contact-form .form-control {
    height: 45px;
    color: #747474;
    margin-bottom: 15px;
    border: 1px solid #efefef;
    position: relative;
    z-index: 11;
    -webkit-appearance: auto;
    -moz-appearance: auto;
}
.contact-form .section-heading {
    margin-bottom: 15px;
}
.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, .25);
}
textarea.form-control {
    min-height: 145px;
    padding: 15px;
}
/*.contact-section:before {
    content: "";
    background-image: url(../images/bg-img/map-dot-bg.png);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    opacity: 0.5;
}*/
.contact-map-home iframe {
    width: 100%;
    height: 480px;
    object-fit: cover;
    position: relative;
    z-index: 11;
    margin-bottom: -15px;
}
.contact-page .contact-form {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 14px;
}
.contact-page .contact-form .main-head {
    font-size: 34px;
    line-height: 34px;
    margin-bottom: 0;
}
/*--------------------------------------------
     home contact with contact page end
--------------------------------------------*/
.footer-section {
    background: #000000;
    overflow: hidden;
    position: relative;
}
.footer-social-inline {
    display: flex;
    column-gap: 5px;
    margin-top: 10px;
    align-items: center;
    margin-bottom: 0 !important;
}
.footer-social-list-icon:hover i{
    background: #ffffff;
    color: var(--primary-color);
}
.footer-social-inline a {
    margin-bottom: 0 !important;
}
.footer-social-inline li {
    margin-bottom: 0 !important;
    color: #fff;
    font-weight: 600;
}
.footer-social-list-icon i {
    width: 30px;
    height: 30px;
    border: 1px solid #fff;
    color: #fff;
    line-height: 29px;
    text-align: center;
    position: relative;
    font-size: 12px;
    display: inline-block;
    border-radius: 50%;
    transition: var(--transition);
}
.main-footer {
    display: grid;
    width: 100%;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: repeat(4, minmax(0px, 1fr));
    padding: 70px 0 55px 0;
}
.footer-title {
    font-size: 20px;
    line-height: 24px;
    color: #ffffff;
    font-weight: 700;
    padding-bottom: 30px;
    margin-bottom: 0;
    position: relative;
}
.footer-title:before {
    content: "";
    background: #fff;
    width: 50px;
    height: 2px;
    position: absolute;
    border-radius: 30px;
    bottom: 18px;
    left: 0;
}
.footer-widget a {
    font-size: 14px;
    line-height: 24px;
    width: fit-content;
    color: #ffffff;
    display: flex;
    margin-bottom: 10px;
}
.footer-widget a:hover {
    color: var(--primary-color);
}
.footer-widget ul li {
    margin-bottom: 5px;
}
.footer-widget p{
    font-size: 14px;
    line-height: 26px;
    color: #ffffff;
}
.footer-bottom {
    padding: 20px 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid #ffffff;
}
.copyright-content-link {
    color: #ffffff;
}
.copyright-content-link:hover {
    color: #ffffff;
}
.footer-bottom p {
    font-size: 12px;
    line-height: 24px;
    color: #ffffff;
    margin: 0;
}
.contact-info i {
    font-size: 12px;
    margin-right: 10px;
    background: #fff;
    width: 26px;
    height: 26px;
    line-height: 26px;
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    border-radius: 50%;
}
.contact-info a:hover i {
    color: var(--primary-color);
}
.contact-info a {
    margin-left: 36px;
    margin-bottom: 15px;
}
.extra-link a {
    font-size: 12px;
    line-height: 24px;
    color: #ffffff;
    margin: 0;
    position: relative;
    padding: 0 20px;
}
.extra-link a:hover {
    color: var(--primary-color);
}
.extra-link a:after {
    content: "";
    position: absolute;
    right: 0;
    top: 6px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #144583;
}
.extra-link a:last-child {
    padding-right: 0;
}
.extra-link a:last-child:after {
    display: none;
    opacity: 0;
}
#scroll__top {
    position: fixed;
    bottom: 80px;
    right: 25px;
    z-index: 99;
    outline: 0;
    background-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0 2px 22px rgba(0, 0, 0, .16);
    cursor: pointer;
    transform: translateY(50px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ffffff;
}
#scroll__top:hover {
    color: var(--primary-color);
    background: var(--white-color)
}

#scroll__top.active {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
}
#scroll__top svg {
    width: 20px;
    line-height: 1;
}
.breadcrumb-area {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 200px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.breadcrumb-area .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.breadcrumb-area:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: #000000;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}
.breadcrumb-area h1, .breadcrumb-area h2, .breadcrumb-area h3, .breadcrumb-area h4 {
    color: #fff;
    font-size: 36px;
    position: relative;
}
.breadcrumb-list a, .breadcrumb-list li {
    color: var(--black-color);
    font-size: 16px;
    margin-right: 10px;
}
.breadcrumb-list li:last-child {
    margin-right: 0;
}
.breadcrumb-list li:last-child:after {
    display: none;
    opacity: 0;
}
.breadcrumb-list li:after {
    content: "\f054";
    font-family: "Font Awesome 6 Pro";
    color: var(--black-color);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
}
.breadcrumb-list ul {
    display: flex;
    background: #ffffff;
    width: fit-content;
    padding: 10px 20px;
    border-radius: 30px;
    transition: var(--transition);
}
.breadcrumb-list ul:hover {
    background:  var(--primary-color);
}
.primary-bg {
    background: var(--primary-color);
}
.breadcrumb-list ul:hover a, .breadcrumb-list ul:hover li {
    color: #ffffff;
}
.breadcrumb-list ul:hover li:after {
    color: #ffffff;
}
/*--------------------------------------------
        breadcrumb section end
--------------------------------------------*/


/*--------------------------------------------
        CMS page start
--------------------------------------------*/
.cms-page .main-head {
    margin-top: 0;
    margin-bottom: 10px;
}
.sub-title {
    font-size: 20px;
    margin-bottom: 10px;
}
.cms-page ul li {
    list-style: inside;
    margin-bottom: 5px;
}
/*--------------------------------------------
        CMS page end
--------------------------------------------*/


/*--------------------------------------------
      service details page start
--------------------------------------------*/
.main-service-img img {
    margin-bottom: 20px;
    height: 450px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.sidebar-service-item h4 {
    font-size: 16px;
    font-weight: 500;
    position: relative;
}
.service-details-area .main-head {
    margin-bottom: 10px;
    margin-top: 0;
}
.service-details-area h4, .service-details-area h5, .service-details-area h6{
    font-size: 16px;
    color: #707070;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: 700;
}
.sidebar-heading {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 35px;
    position: relative;
    color: #fff;
}
.sidebar-heading:before {
    content: "";
    background: var(--primary-color);
    width: 55px;
    height: 4px;
    position: absolute;
    bottom: -10px;
    left: 0;
    border-radius: 6px;
}
.stickyexample {
    position: sticky;
    top: 135px;
    background: #000;
    padding: 30px;
    border-radius: 10px;
}
.service-details-area ul li {
    list-style: inside;
    margin-bottom: 5px;
}
.service-details-area ul {
    margin-bottom: 10px;
}

/*--------------------------------------------
       service details page end
--------------------------------------------*/

.slick-dotted.slick-slider {
    margin-bottom: 0 !important;
}
form {
    position: relative;
}
.gallery-details {
    display: grid;
    width: 100%;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: repeat(5, minmax(0px, 1fr));
}
.view-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
    background: var(--primary-color);
    color: #ffffff;
    opacity: 0;
    visibility: hidden;
}
.gallery-img-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.gallery-details a {
    position: relative;
    display: block;
    border-radius: 10px;
}
.gallery-details a:before {
    content: "";
    background: #ffffff9c;
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border-radius: 10px;
}
.gallery-details a:hover:before {
    opacity: 1;
    visibility: visible;
}
.gallery-details a:hover .view-icon {
    opacity: 1;
    visibility: visible;
}
.video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
    background: #ffffff;
    color: #ffffff;
    opacity: 0;
    visibility: hidden;
}
.gallery-details a:hover .video-btn {
    opacity: 1;
    visibility: visible;
}
.testimonial-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #002244;
}
.testimonial-item p {
    font-size: 20px;
    line-height: 30px;
    color: #333333;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}
.testimonial-item {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.contact-form-wrapper, .contact-map-wrapper {
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.contact-grid .main-head {
    font-size: 34px;
    font-weight: 700;
    color: var(--primary-color);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
    justify-content: space-between;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
    display: flex;
    align-items: center;
    font-size: 15px;
}
.form-group label img {
    margin-right: 8px;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.form-group input[type="text"], .form-group input[type="email"], .form-group input[type="tel"], .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    box-sizing: border-box;
    color: #333;
}
.form-group select {
    background-color: #fff;
    cursor: pointer;
}
.contact-grid {
    display: grid;
    width: 100%;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
}
.contact-info p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    color: #555;
    font-size: 0.95em;
}
.contact-info p img {
    margin-right: 7px;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 0px;
}
.contact-info h3 {
    color: #000;
    font-size: 1.5em;
    margin-bottom: 15px;
}
.map-box iframe {
    width: 100%;
    height: 100%;
    margin-bottom: 15px;
}
.map-box {
    width: 100%;
    height: 100%;
    margin-bottom: 15px;
}
.footer-logo {
    height: 110px;
    margin-left: 13px;
    margin-bottom: 10px;
}
.accordion-button:not(.collapsed)::after {
    content: "\f078";
    font-weight: 400;
    font-family: 'Font Awesome 6 Pro';
    position: relative;
    font-size: 18px;
    background-image: none;
}
.service-details-area .main-head {
    font-size: 34px;
    line-height: 40px;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
}
.service-details-area p {
    font-size: 16px;
    line-height: 24px;
}
.sidebar-service-item a {
    background: #101010;
    color: #fff;
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 5px;
    display: block;
    border-radius: 4px;
    transition: var(--transition);
}
.sidebar-service-item .active {
    background: var(--primary-color);
}
.sidebar-service-item a:hover {
    background: var(--primary-color);
}
.services-wrapper {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 30px;
    margin: 0 auto;
    box-sizing: border-box;
}
.service-cards-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    position: relative;
}
.services-menu {
    background-color: #000000;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #fff;
    height: fit-content;
}
.services-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}
.services-menu li {
    margin-bottom: 10px;
}
.services-menu a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    background: #101010;
    color: #fff;
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 5px;
    display: block;
    border-radius: 4px;
    transition: var(--transition);
}
.services-menu a:hover,
.services-menu a.active {
    background-color: var(--primary-color);
    color: #fff;
}
.services-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgb(0 0 0 / 13%);
    height: max-content;
}
.service-block h2 {
    color: var(--primary-color);
    font-size: 34px;
    line-height: 40px;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
}
.service-block img {
    margin-bottom: 20px;
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.service-block p {
    font-size: 15px;
    line-height: 24px;
    color: #5e5e5e;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.services-float-menu{
    display: none;
}
.services-toggle-btn {
    display: none !important;
}
.closed-btn {
    display: none;
}
.services-menu-toggle {
    display: none;
}
@media (max-width: 992px) {
    .services-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 0 auto;
        box-sizing: border-box;
        flex-direction: column;
    }
    .closed-btn {
        display: block;
    }
    .services-content {
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        padding: 0 10px;
        gap: 2rem;
        margin-left: 0;
    }

    .service-cards-container {
        flex-direction: column;
        padding: 20px 0;
        width: 100%;
    }

    .service-block {
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
    }
    .service-block h2 {
        font-size: 26px;
        line-height: 30px;
    }
    .footer-logo {
        margin-left: 0;
    }
    .service-block img {
        height: 25vh;
    }
    .services-menu {
        background-color: #000000;
        padding: 15px;
        border-radius: 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        color: #fff;
        height: fit-content;
        position: fixed;
        top: 50%;
        transform: translate(0%, -50%);
        left: 100%;
        z-index: 1111;
    }
    .services-toggle-btn {
        position: fixed;
        top: 50%;
        left: 0 !important;
        transform: translateY(-50%);
        writing-mode: vertical-rl;
        background: #000;
        color: #fff;
        border: none;
        padding: 15px 10px;
        z-index: 999;
        cursor: pointer;
        border-radius: 0 6px 6px 0;
        font-size: 18px;
        display: block !important;
    }
    .closed-btn {
        background: #000;
        color: #fff;
        padding: 5px;
        right: -40px;
        top: 0;
        position: absolute;
        border: 0;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .home-contact-info-items {
        padding: 15px;
    }
    .contact-page .contact-form .main-head {
        margin-bottom: 15px;
    }
    .contact-page .contact-form {
        padding: 20px;
    }




}


/* Floating Button for Mobile */
@media (max-width: 576px) {
    .breadcrumb-area {
        height: 155px;
    }
    body {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        width: 100vw;
        overflow-x: hidden;
    }
    .page-header-banner{
        margin-top: 80px;
    }
    .page-header-banner h1 {
        font-size: 1.5rem;
    }

    .page-header-banner .breadcrumb-list ul {
        font-size: 0.8rem;
    }

    /* Floating Menu */
    .services-float-menu {
        display: none;
        width: 13rem !important;


        font-size: 0.7rem;
        position: fixed;
        top: 25rem;
        left: 5rem;
        transform: translate(-50%, -50%);

        max-width: 300px;
        background: #222;
        padding: 20px;
        border-radius: 10px;
        z-index: 1000;
        opacity: 1;
    }

    .services-float-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }

    .services-float-menu li {
        list-style: none;
    }
    .services-float-menu a {
        color: #fff;
        text-decoration: none;
        display: block;
        padding: 10px;
        border-radius: 4px;
        text-align: center;
        transition: background-color 0.3s ease;
        opacity: 1;
    }

    .services-float-menu a:hover {
        background-color: #FF2C47;
        opacity: 1;
    }

    /* Close Button */
    .close-menu-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: #fff;
        cursor: pointer;
    }

    .services-content {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }

    .service-cards-container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }

    .service-block {
        width: 100%;
        max-width: 100%;
        padding: 15px;
        box-sizing: border-box;
    }

    .service-block img {
        width: 100%;
        height: 30vh;
    }

}

.cms-page ol li {
    list-style: decimal-leading-zero;
}
