* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input::placeholder,
textarea::placeholder {
    color: #d3d3d3;
    opacity: 0.5 !important;
    font-size: 15px;
}

input[type=number] {
    -moz-appearance: textfield;
}

::-moz-selection {
    /* Code for Firefox */
    color: #ffffff;
    background: #5cb4e5;
}

::selection {
    color: #ffffff;
    background: #5cb4e5;
}

body {
    font-family: 'Roboto', sans-serif !important;
    letter-spacing: 0.6px;
    line-height: 24px;
}

p {
    text-align: justify;
    font-size: 15px;
}

:root {
    --color-primary: #1B99DF;
    --color-secondary: #DC0811;
    --color-white: #ffffff;
    --font-weight-primary: 800;
    --font-weight-secondary: 700;
    --font-weight-ternary: 600;
    --transition: all 0.3s ease;
}

ul {
    padding: 0;
    margin: 0;
}

p {
    margin-bottom: 0.5rem;
}

.butn {
    display: inline-block;
    text-decoration: none;
    padding: 12px 25px;
    margin-top: 10px;
    border: none;
    outline: none;
}

section {
    padding: 30px 0;
}

.header {
    background-color: var(--color-white);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .2);
    z-index: 5;
    position: sticky;
    z-index: 3000;
    top: 0;
}


/* =============Style for navigation menu============ */
.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding:20px 0; */
}

/* ===========Dropdown Menu============ */

.nav-links {
    position: relative;
    justify-content: center;
}

.nav-links li a {
    color: var(--color-primary);
    font-weight: 400;
    font-size: 15px;
}

.drop-down {
    padding: 0;
    margin: 0;
    background: var(--color-white);
    position: absolute;
    top: 100%;
    z-index: 10000;
    /* border-radius: 5px; */
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    display: none;
    width: 100%;
    left: 0;
}

.drop-down li {
    padding: 5px 0 !important;
    transition: var(--transition);
    background: #ffffff !important
}

.drop-down li a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    width: 100%;
    padding: 5px 15px;
}

.drop-down li a:hover {
    color: var(--color-primary);
    background: #ffffff;
}

ul li:hover ul.drop-down {
    display: block;
}

/* ul li .drop-down{
    display: none!important;
} */

ul li:hover>ul {
    display: block !important;
}

/* ul li ul li ul{
    left:100%;
    top: 0;
    width: 160px;   
} */


.logo {
    position: relative;
    flex: 0.5;
}

.logo a {
    position: absolute;
    top: -15px;
    right: 0;
    width: 80px;
    z-index: 100;
    -webkit-animation: slide-in-blurred-top 0.6s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
    animation: slide-in-blurred-top 0.6s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
}

.logo a img {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.navigation .nav-links {
    display: flex;
    justify-content: space-between;
    color: var(--color-white);
    position: relative;
    margin: 0;
    padding: 0;
}

.navigation .nav-links li {
    /* padding:0 14px; */
    display: inline-block;
    padding: 10px 20px;
    transition: all 0.3s ease-in;
}

.navigation .nav-links li:hover {
    background: var(--color-primary);
}

.navigation .nav-links li.active {
    background: var(--color-primary);
}

.navigation .nav-links li.active a {
    color: #ffffff;
}

.navigation .nav-links li:hover .nav-link {
    color: #ffffff;
}

/* .navigation .nav-links li:hover{
    background: var(--color-primary);
} */

.nav-link {
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}


/* .navigation .nav-links .nav-link:hover{
    color:var(--color-secondary);
    color: #ffffff;
} */

/* .nav-link::before{
    content:'';
    height:2px;
    transition: 300ms;
    position: absolute;
    background-color: var(--color-primary);
   
}

.nav-link-ltr::before{
    width:0%;
    bottom:-5px;
}

.nav-link-ltr:hover::before{
    width:100%;
    
} */

.nav-contact a {
    position: relative;
}

.nav-contact a::before {
    position: absolute;
    display: inline-block;
    content: '';
    width: 7px;
    height: 7px;
    background: var(--color-secondary);
    border-radius: 50%;
    right: 16px;
    top: -10px;
}

.nav-contact-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-white);
}


.nav-phone-icon {
    font-size: 30px;
    margin-right: 10px;
    color: var(--color-primary);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--color-white);
    transition: var(--transition);
}

.nav-phone-icon:hover {
    transform: scale(1.1);
}

.nav-phone p {
    margin-bottom: 5px;
}

.nav-phone a {
    text-decoration: none;
    color: var(--color-white);
}


.nav-btn a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-btn i {
    margin-left: 5px;
    font-size: 10px;
}


.nav-btn .intro-btn {
    /* background: var(--color-secondary); */
    background-image: -webkit-linear-gradient(0deg, var(--color-primary) 0%, rgb(78, 162, 211) 100%);
    box-shadow: 2.5px 4.33px 15px 0px rgba(51, 168, 236, 0.4);
    margin-left: 15px;
    margin-top: 0;
    position: relative;
    border-radius: 30px 0 30px 30px;
}

.nav-btn .intro-btn:hover {
    background: #000000;
}

.mega_menu {
    padding: 15px;
}

.nav_img {
    position: relative;
    overflow: hidden;
    /* background-image: url('../images/services//digital-signage/5.webp'); */
    /* background-repeat: no-repeat;
    background-size: cover; */
    background: #032761;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.nav_img p {
    text-align: center;
    font-size: 1.2rem;
}

.nav_img_cta {
    background-image: url('../images/nav-bar/runway.webp');
    background-repeat: no-repeat;
    background-size: cover;
}

.nav_img_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.nav_img img {
    transition: var(--transition);
}

.nav_img:hover img {
    transform: scale(1.1);
}

.nav_btn {
    position: relative;
    z-index: 1;
    color: #ffffff !important;
    padding: 10px;
}

.nav_sign_img {
    text-align: center;
    border-radius: 5px;
    overflow: hidden;
}

.nav_sign_img img {
    border-radius: 5px;
    transition: var(--transition);
}

.nav_sign_img:hover img {
    transform: scale(1.1);
}

.exterior_navs li,
.interior_navs li {
    text-align: center;
    width: 100%;
}

/* ===================Styles for banner=============== */

.header-banner {
    padding: 0;
}

.banner-slider {
    position: relative;
    /* z-index: -1; */
}

.banner-section {
    padding: 0;
    position: relative;
}

.carousel-inner .carousel-caption {
    z-index: 2;
    height: 100%;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    padding: 0;
}


.carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: var(--color-primary);
}

.banner-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.carousel {
    /* height:500px; */
    overflow: hidden;
}


/* ==========Banner play btn=========== */

.wrapper {
    display: inline-block;
}

.mfp-iframe-holder {
    padding-top: 100px;
    padding-bottom: 0px;
}

.video-main {
    position: relative;
    display: inline-block;
}

.video {
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 100%;
    border: 1px solid var(--color-primary);
    background: transparent;
    color: #fff;
    display: inline-block;
    background: transparent;
    z-index: 999;
    transition: var(--transition);
}


.promo-video a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-indicators {
    margin-bottom: 0;
}


@keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }

    50% {
        opacity: 0.9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }

    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

.fa-play:before {
    content: "\f04b";
}

.waves {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    border-radius: 100%;
    right: -50px;
    bottom: -50px;
    z-index: -1;
    -webkit-animation: waves 3s ease-in-out infinite;
    animation: waves 3s ease-in-out infinite;

}

.wave-1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.wave-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.wave-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}


.carousel-control-next-icon,
.carousel-control-prev-icon {
    background-color: var(--color-primary);
    padding: 5px;
    border-radius: 5px;
}

/* ================About Us============== */

.intro-sec {
    transition: var(--transition);
}

.intro-text {
    border-left: 3px solid var(--color-primary);
    padding-left: 15px;
    margin-bottom: 20px;
}

.intro-text p {
    margin-bottom: 5px;
    color: var(--color-primary);
}

.intro-text h2, .intro-text h3 {
    font-size: 2.5rem;
}

.intro-btn {
    background-color: var(--color-primary);
    color: #ffffff;
    transition: var(--transition);
    border: none;
    outline: none;
    border-radius: 30px 0 30px 30px;
    box-shadow: 2.5px 4.33px 15px 0px rgba(51, 168, 236, 0.4);
}

.read-more {
    box-shadow: 2.5px 4.33px 15px 0px rgba(220, 8, 17, 0.4);
}

.intro-btn:hover {
    background-color: #0b7cbb;
    color: #ffffff;

}

.number-count {
    margin-top: 2rem;
}

.number-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 15px;
    border-radius: 5px;
    background-color: var(--color-white);
    /* box-shadow: #e3767d 0px 2px 10px 0px; */
}

.number-box img {
    width: 30px;
    margin-bottom: 1rem;
}

.number-box p {
    font-size: 15px;
}

.client-counter {
    color: var(--color-primary);
    margin-right: 5px;
}

.abt_slider .slick-dots {
    bottom: 10px;
}

.abt_slider .slick-dots li button {
    font-size: 20px;
}

.abt_slider .slick-dots li button:before {
    font-family: slick;
    font-size: 20px;
}

/* ================Services=============== */

.services-sec {
    background-color: #e7f6ff;
}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 25px;
    border-radius: 5px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: var(--transition);
    text-align: center;
    background: #ffffff;
}

.service-card:hover {
    transform: scale(1.1);
    box-shadow: var(--color-primary) 0px 2px 10px 0px;
}

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

.service-card img {
    width: 35px;
}

.service-card p {
    font-size: 13px;
}

.service-card .btn {
    background: var(--color-primary);
    color: #ffffff;
}

.service-card .btn:hover {
    background: #125f8a;
    color: #ffffff;
}

.service-card a {
    font-size: 13px;
    color: #000000;
    font-weight: var(--font-weight-secondary);
    text-decoration: none;
    transition: var(--transition);
}

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

.service_img_box {
    width: 60px;
    height: 60px;
    border: 1px solid var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 15px;
}

.carousel-btn-box {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-primary);
    padding: 5px;
    border: none;
    border-radius: 5px;
    aspect-ratio: 1/1;
}

.slider-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: var(--color-white);
}

.slider-tag {
    border-left: 2px solid var(--color-secondary);
    border-right: 2px solid var(--color-secondary);
    margin-bottom: 15px;

}

.slider-tag h1, .slider-tag h2, .slider-tag h5 {
    background: var(--color-primary);
    padding: 5px;
    margin-bottom: 0;
    font-size: 1rem;
}

.slider-heading p {
    font-size: 3rem;
    font-weight: var(--font-weight-secondary);
    margin-bottom: 2rem;
    text-align: unset;
    text-align: left;
}

.slider-text {
    width: 50%;
}

.slider-btns .intro-btn {
    background: var(--color-secondary);
    margin-right: 50px;
}

.slider-btns .intro-btn:hover {
    background-color: #bf0810;

}

.banner-cards {
    z-index: 2000;
}

.banner-card {
    overflow: hidden;
    border-radius: 5px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner_content {
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 0 30px;
}

.banner-card::after {
    content: '';
    background-color: rgba(0, 0, 0, 0.65);
    position: absolute;
    inset: 0;
}

.banner-card img {
    transition: transform 0.3s ease;
}

.banner-card:hover img {
    transform: scale(1.1);
}

.banner-card img {
    border-radius: 5px;
}

.banner_content {
    position: absolute;
    z-index: 30000;
    top: 30%;
    color: #ffffff;
}

.banner_content h6 {
    font-size: 1.25rem;
}

.banner_content p {
    color: #d3d3d3;
}

.border-primary {
    border-radius: 5px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: 1px solid var(--color-primary);
}

.border-primary img {
    border-radius: 5px;
}

.intro-img {
    overflow: hidden;
    border-radius: 5px;
}

.intro-img img {
    transition: var(--transition);
    border-radius: 5px;
}


.intro-img:hover img {
    transform: scale(1.1);
}

/* ============Styles for Why-us============== */

.why-us-card {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 5px;
    background: #ffffff;
}


.why-us-card .why-us-icon {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
}



.why-us-card .why-us-icon img {
    width: 50px;
    margin-right: 25px;
}

.why-us-card h6 {
    color: var(--color-primary);
}

/* ==================Testimonials Section============== */

.testimonials-section {
    background: #f5f5f5;
}

.testi-slider {
    height: unset;
    /* background: var(--color-secondary); */
    padding: 25px;
    border-radius: 5px;
}

.testi-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 15px;
    border: none;
    border-radius: 5px;
    transition: var(--transition);
}

.testi-card:hover h6 {
    color: var(--color-primary);
}

.testi-card .client-name {
    text-align: center;
}

.testi-bg {
    background: #efeded;
}

.testi-text {
    position: relative;
}

.testi-text p {
    text-align: center;
    margin-bottom: 3rem;

}

/* .testi-text p::before,.testi-text p::after{
    content: '\201C';
} */

.client-img img {
    width: 70px;
    margin-bottom: 15px;
    margin-top: -55px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
}


.slick-slider .slick-slide {
    padding: 5px;
}

.slick-prev:before,
.slick-next:before {
    font-size: 35px;
    color: var(--color-primary);
}

.testi-box {
    padding: 20px;
}

.slick-prev {
    left: -33px;
}

.banner-box .slick-dots {
    bottom: -40px;
}

.slick-dots li button:before {
    color: var(--color-primary);
    font-size: 8px;
}

.slick-dots li.slick-active button:before {
    color: var(--color-primary);
    font-size: 8px;
}

/* ==================CTA================== */

.call-to-action {
    background-color: #000000;
    /* background-image: url('../images/cta/call-to-action.webp'); */
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
}

.cta-cards {
    background: #ffffff;
    padding: 25px;
    height: 400px;
    overflow-y: auto;
}

.cta-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    min-height: 116px;
    transition: var(--transition);
}


.cta-card:hover {
    box-shadow: #e0e8ff 0px 50px 100px -20px, #e0e8ff 0px 30px 60px -30px;
}

.cta-card img {
    width: 35px;
    margin-bottom: 15px;
}

.cta-card h6 {
    font-size: 15px;
}

.cta-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.cta-content h3 {
    font-size: 40px;
}

.cta-content h3 span {
    font-weight: 700;
    font-size: 45px;
    color: var(--color-primary);
}

.cta-content .intro-btn {
    background: var(--color-secondary);
}

.cta-content .intro-btn:hover {
    background: #bf0810;
}


/* ================Styles for footer section============= */


.footer-section {
    background-color: #000000;
    color: #ffffff;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    text-align: left;
    font-weight: 300;
}

.footer-logo .logo-box {
    display: flex;
    align-items: center;
    color: var(--color-white);
}

.footer-logo .logo-box img {
    width: 70px;
}

.footer-logo {
    display: flex;
}

.footer-heading-box {
    position: relative;
    margin-bottom: 30px;
}

.footer-heading::after {
    content: '';
    width: 60px;
    height: 2px;
    background-color: var(--color-primary);
    position: absolute;
    bottom: -10px;
    left: 0;
}

.footer-socials {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 30px;
}

.footer-socials .footer-icon {
    margin-right: 25px;
}

.footer-socials .footer-icon a i {
    font-size: 15px;
    border: 1px solid #d3d3d3;
    padding: 10px;
    border-radius: 2px;
    aspect-ratio: 1/1;
    color: #ffffff;
    transition: var(--transition);
    box-shadow: 2.5px 4.33px 15px 0px rgba(51, 168, 236, 0.4);
}

.footer-socials .footer-icon a:hover i {
    color: var(--color-primary);
}


.footer-links ul {
    margin: 0;
    padding: 0;
}

.footer-links ul li {
    list-style-type: none;
    margin-bottom: 5px;
    position: relative;
}

.footer-links ul li a {
    text-decoration: none;
    color: #ffffff;
    transition: var(--transition);
}


.footer-links ul li a:hover {
    color: var(--color-primary);
    margin-left: 10px;
}

.footer-address .address-box {
    display: flex;
    justify-content: space-between;
}

.first_cntc::after {
    content: '|';
    color: #ffffff;
    margin: 0 5px 0 15px;
}


.address-icon {
    margin-right: 25px;
    font-size: 20px;
    color: var(--color-secondary);
}

.contact-box {
    display: flex;
}

.client-contact {
    display: flex;
}

.client-contact p {
    margin-right: 5px;
}

.client-contact a {
    text-decoration: none;
    color: #ffffff;
    cursor: pointer;
    transition: var(--transition);
}

.client-contact a:hover {
    color: var(--color-primary);
}

.footer-map {
    margin: 15px 0;
}

.footer-about-link {
    text-decoration: none;
    color: var(--color-white);
    transition: var(--transition);
    color: var(--color-primary);
    cursor: pointer;
}

.footer-about-link:hover {
    color: #ffffff;
}

.footer-end {
    color: #ffffff;
    padding: 0;
    background-color: #0093E9;
    background-image: linear-gradient(160deg, #0077b6 0%, #004d77 100%);
}

.footer-end p {
    margin-bottom: 0;
    padding: 15px 0;
    font-size: 12px;
}

.website-by {
    text-decoration: none;
    font-weight: var(--font-weight-ternary);
    color: #ffffff;
    transition: var(--transition);
}

.website-by:hover {
    color: var(--color-primary);
}

.some-animation {
    backdrop-filter: blur(25px);
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* ================Sticky Social Media Icons=============== */

.floating-widgets {
    position: fixed;
    bottom: 5%;
    right: 0;
    margin: 1rem;
}

/*.link-btn{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width:60px;
    height:60px;
    background: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0px 5px 11px -2px rgba(0, 0, 0, 0.18), 0px 4px 12px -7px rgba(0, 0, 0, 0.15);
    -webkit-transition: all .1s ease-out;
    transition: all .1s ease-out;
    position: relative;
    margin-bottom:10px;
}

.floating-widgets > a i{
    font-size:25px;
    transition: all 0.2s ease-in-out;
    transition-delay: 2s;
}

.link-btn:active,.link-btn:focus,.link-btn:hover{
    box-shadow: 0 0 4px rgba(0, 0, 0, .14), 0 4px 8px rgba(0, 0, 0, .28);
} */


.sticky-socials {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sticky-socials a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    width: 40px;
    height: 40px;
    aspect-ratio: 1/1;
    background: #ffffff;
    text-decoration: none;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}


.sticky-socials a:hover {
    transform: scale(1.1);
}

.sticky-socials a i {
    font-size: 25px;
}

.social-main {
    color: var(--color-secondary);
}

.social-link {
    transition: var(--transition);
    cursor: pointer;
}

.social-hidden {
    display: none !important;
}


/* ===============Styles for back to top button=============== */

.btt-btn {
    position: fixed;
    right: 25px;
    bottom: 55px;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    z-index: 100;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: none;
    background-color: var(--color-secondary);
}

.btt-btn::after {
    content: '\f077';
    font-family: FontAwesome;
    font-size: 1.5rem;
    font-style: normal;
    color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.btt-btn:hover {
    background-color: #bf0810;
}


.btt-btn.show-btn {
    display: flex !important;
    justify-content: center;
    align-items: center;
}


/* ==============service pages============= */
.service-banner {
    padding: 0;
    position: relative;
}

.service-banner {
    background: url('../images/services/service-banner.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 250px;
}


.service-banner .banner-item .banner-text {
    color: #ffffff;
    font-size: 42px;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 15px 0;
    border-radius: 5px;
    backdrop-filter: blur(5px);
    display: inline-block;
    margin-bottom: 0;
}

.service-banner .sign-text h1, .service-banner .sign-text h3 {
    text-shadow: 0 -40px 100px, 0 0 2px, 0 0 1em #ff4444, 0 0 0.5em #ff4444, 0 0 0.1em #ff4444, 0 10px 3px #000;
}


.service-banner .sign-text h1 span, .service-banner .sign-text h3 span {
    animation: blink linear infinite 2s;
}

.service-banner .sign-text h1 span:nth-of-type(2), .service-banner .sign-text h3 span:nth-of-type(2) {
    animation: blink linear infinite 3s;
}

.signage-btn {
    border: 2px solid var(--color-primary);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    position: relative;
}

.signage-btn:hover .signage-btn-body {
    top: 290px;
}

.signage-btn-body {
    display: flex;
    justify-content: center;
    align-items: flex-start !important;
    height: 100%;
    flex-direction: row;
}

.signage-btn-body h4 {
    text-align: center;
}

.signage-btn:hover img {
    transform: scale(1.1);
}

.signage-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.signage-btn-body {
    width: 100%;
    height: 100%;
    top: 100%;
    right: 0;
    display: block;
    position: absolute;
    background: #00000075;
    backdrop-filter: blur(5px);
    color: #ffffff;
    padding: 30px;
    padding-top: 25px;
    display: flex;
    align-items: center;
    transition: 0.5s;
}

.signage-btn-body a {
    color: #ffffff;
    text-decoration: none;
}

.btn-neon {
    text-decoration: underline;
    text-align: center;
    font-size: 15px;
    line-height: 50px;
    color: #f5f5f5;
    width: 180px;
    transition: 0.3s;
    transition-delay: .5s;
    position: relative;
    display: inline-block;
}

.btn-neon:hover {
    box-shadow: 0 0 10px hwb(201 45% 1%),
        0 0 40px #71cbfd,
        0 0 80px #71cbfd;
    background-color: #71cbfd;
}

.btn-neon:hover polyline {
    stroke-dashoffset: -460;
}

.btn-neon svg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.btn-neon svg polyline {
    fill: transparent;
    stroke: #71cbfd;
    stroke-width: 2px;
    stroke-dasharray: 40 460;
    stroke-dashoffset: 40;
    transition: .5s ease-in-out;
}



/* ==================contact us page================== */

.contact-form {
    padding-top: 0;
    padding-bottom: 50px;
}

.techwix-contact-section-02 .contact-wrap .contact-form .contact-form-wrap .heading-wrap .sub-title {
    color: var(--primary);
}

.techwix-contact-section .contact-wrap .contact-form .contact-form-wrap .heading-wrap .title {
    font-size: 32px;
}

.contact-map-section .contact-map-wrap {
    position: relative;
}

.contact-left h3::after,
.contact-right h3::after {
    content: '';
    width: 75px;
    height: 3px;
    border-radius: 5px;
    background: var(--primary);
    display: block;
    margin: auto;
    margin-top: 5px;
}

.contact-right {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 25px;
    /* border-radius: 5px;
    transition: all 0.3s ease; */
}

.contact-right h3 {
    font-weight: 600;
}

.input-box,
input::placeholder,
textarea::placeholder {
    font-weight: 400 !important;
}

.contact-right .form-btn {
    outline: none;
    border: none;
    background-image: -webkit-linear-gradient(0deg, var(--color-primary) 0%, rgb(78, 162, 211) 100%);
    box-shadow: 2.5px 4.33px 15px 0px rgba(51, 168, 236, 0.4);
    border-radius: 0px 30px 30px 30px;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    line-height: unset;
    font-size: 15px;
    height: unset;
    border-radius: 30px 0 30px 30px;
    transition: var(--transition) !important;
}

.contact-right .form-btn:hover {
    background: #000000;
}


.contact-us-section h2 {
    color: #DD3F4A;
}

.contact-us-section p {
    font-size: 16px;
}

.contact-us-section label {
    font-weight: 500;
}

.contact-box h4 {
    margin-bottom: 10px;
}

.contact-right .input-box {
    margin-bottom: 15px;
}

.input-box .text-imp,
#quoteForm .text-imp {
    color: red;
    margin-left: 1px;
    font-size: 12px;
}

.contact-right .form-control:focus {
    border-color: var(--color-primary) !important;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(22, 145, 194, 0.4);
}

.cntc-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
    border-radius: 5px;
    min-height: 100px;
    transition: all 0.3s ease;
}

.cntc-box:hover {
    background: #DD3F4A;
    color: #ffffff;
}

.contact-right {
    border-radius: 5px;
    background: #ffffff;
}

.contact-map-section {
    padding-bottom: 0;
}

.contact-map-section .contact-map-wrap iframe {
    height: 270px;
    width: 100%;
    filter: none;
}

.contact-map-section .contact-map-wrap {
    margin-bottom: 0;
}

.contact-map-section .input-box label {
    font-weight: 500;
}

input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]),
textarea {
    padding: 5px 15px;
}

.contact-info-section {
    padding: 5% 0;
}

.contact-info-section .contact-info-wrap .single-contact-info {
    padding: 15px;
    min-height: 175px;
}

.contact-info-section .contact-info-wrap .single-contact-info .info-content p {
    font-size: 15px;
}

.contact-info-section .contact-info-wrap .single-contact-info {
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    border-radius: 5px;
    min-height: 226px;
}

.contact-info-section .contact-info-wrap .single-contact-info:hover {
    box-shadow: #e0e8ff 0px 50px 100px -20px, #e0e8ff 0px 30px 60px -30px;
}

.contact-info-section .contact-info-wrap .single-contact-info:hover .info-icon img {
    -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
    animation: heartbeat 1.5s ease-in-out infinite both;
    /* border: 2px solid var(--primary); */
}

.single-contact-info .info-icon img {
    width: 45px;
    margin-bottom: 15px;
}

.contact-info-section .info-content a {
    color: #000;
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px;
}

.contact-info-section .info-content a:hover {
    color: var(--color-primary) !important;
    ;
}

.cntc-image img {
    height: 100%;
}

.input-box label {
    margin-bottom: 10px;
}

.input-box label.error {
    color: #ff4444;
}

.tabbed-comp {
    background: #f7f7f7;
}

.exterior-gallery .gallery-box {
    display: flex;
    justify-content: center !important;
}

.fa-angle-left:before,
.fa-angle-right:before {
    color: #ffffff !important;
    background: var(--color-primary);
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0.5;
    transition: var(--transition);
}

.fa-angle-left:hover:before,
.fa-angle-right:hover:before {
    opacity: 1 !important;
}

.fa-angle-right:before {
    color: var(--color-primary);
}

.details .icon {
    color: var(--color-secondary) !important;
}

.gallery .image span {
    border-radius: 5px;
}


.service-navi .serv-navi-item {
    position: relative;
}

.service-navi .serv-navi-item::before {
    content: '';
    width: 3px;
    height: 100%;
    background: var(--color-primary);
    top: 0;
    left: 0;
    position: absolute;
    display: none;
    transition: all 0.3s ease;
    -webkit-animation: roll-in-blurred-left 0.65s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
    animation: roll-in-blurred-left 0.65s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
}

.service-navi .serv-navi-item p {
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.service-navi .serv-navi-item:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.service-navi .serv-navi-item:hover p {
    color: var(--color-primary);
}

.service-navi .serv-navi-item:hover i {
    color: var(--color-primary);
}

.service-navi .serv-navi-item:hover::before {
    display: block;
}

.service-navi .serv-navi-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border: 1px solid #e8ecef;
    margin-bottom: 15px;
    text-decoration: none;
    color: #000000;
    cursor: pointer;
}

.service-navi .serv-navi-item.active {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    color: var(--color-primary);
}

.service-navi .serv-navi-item.servi-item-wrap1.active {
    background: #f5f5f5 !important;
}

.service-navi .serv-navi-item.active::before {
    content: '';
    width: 3px;
    height: 100%;
    background: var(--color-primary);
    top: 0;
    left: 0;
    position: absolute;
    display: block;
    transition: all 0.3s ease;
}

.service-navi .servi-item-wrap1 {
    padding-left: 15px;
    display: none;
}

.service-navi .servi-item-wrap1 .serv-navi-item {
    background: #f5f5f5;
    padding: 10px 15px;
}

.service-navi .servi-item-wrap1.show-drop {
    display: block;
}

.product_heading {
    background: var(--color-primary);
    padding: 10px;
    color: #ffffff;
    font-size: 13px;
}

/* =========styles for tabbed component========== */

[data-tab-content] {
    display: none;
}

.active[data-tab-target] {
    --glow-color: rgb(176, 252, 255);
    --glow-spread-color: rgba(123, 251, 255, 0.71);
    --enhanced-glow-color: rgb(206, 255, 255);
    --btn-color: var(--color-primary);
    color: var(--color-white);
    background-color: var(--btn-color);
    outline: none;
    /* box-shadow: 0 0 1em 0.25em var(--glow-color),
      0 0 4em 1em var(--glow-spread-color),
      inset 0 0 0.75em 0.25em var(--glow-color); */
    text-shadow: 0 0 0.5em var(--glow-color);
    transition: all 0.3s;
}

.active[data-tab-content] {
    display: block;
}

.tabs {
    position: relative;
}

.tabs ul {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
    border-radius: 5px;
    flex-wrap: wrap;
    padding: 0;
}

.tabs ul li {
    list-style-type: none;
    cursor: pointer;
    padding: 15px;
    transition: var(--transition);
    border-radius: 5px;
    background: #d3d3d3;
    margin-bottom: 10px;
}

.tabs ul li:hover {
    --glow-color: rgb(91, 186, 241);
    --glow-spread-color: rgba(123, 202, 255, 0.781);
    --enhanced-glow-color: rgb(206, 222, 255);
    --btn-color: var(--color-primary);
    color: var(--color-white);
    background-color: var(--btn-color);
    outline: none;
    box-shadow: 0 0 1em 0.25em var(--glow-color),
        0 0 4em 1em var(--glow-spread-color),
        inset 0 0 0.75em 0.25em var(--glow-color);
    text-shadow: 0 0 0.5em var(--glow-color);
    transition: all 0.3s;
}

/* ===============CSS Animations============= */


.slide-in-blurred-top {
    -webkit-animation: slide-in-blurred-top 0.6s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
    animation: slide-in-blurred-top 0.6s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
}

@-webkit-keyframes slide-in-blurred-top {
    0% {
        -webkit-transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
        transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
        -webkit-transform-origin: 50% 0%;
        transform-origin: 50% 0%;
        -webkit-filter: blur(40px);
        filter: blur(40px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0) scaleY(1) scaleX(1);
        transform: translateY(0) scaleY(1) scaleX(1);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
    }
}

@keyframes slide-in-blurred-top {
    0% {
        -webkit-transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
        transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
        -webkit-transform-origin: 50% 0%;
        transform-origin: 50% 0%;
        -webkit-filter: blur(40px);
        filter: blur(40px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0) scaleY(1) scaleX(1);
        transform: translateY(0) scaleY(1) scaleX(1);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
    }
}



/* ================Phone dot animation=============== */

.nav-contact a::before {
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}


/* ==============service page blink animation=============== */

@keyframes blink {
    78% {
        color: inherit;
        text-shadow: inherit;
    }

    79% {
        color: #333;
    }

    80% {

        text-shadow: none;
    }

    81% {
        color: inherit;
        text-shadow: inherit;
    }

    82% {
        color: #333;
        text-shadow: none;
    }

    83% {
        color: inherit;
        text-shadow: inherit;
    }

    92% {
        color: #333;
        text-shadow: none;
    }

    92.5% {
        color: inherit;
        text-shadow: inherit;
    }
}



/* =================CSS Image Animation=============== */

.oblique-ani {
    perspective: 3000px;
    width: 100%;
    display: flex;
    justify-content: center;
    /* transform: translate(-50%, -50%); */
    /* transform-style: preserve-3d; */
}

.oblique-ani img {
    transform: rotateX(70deg) rotateZ(-60deg) translate3d(-120px, 70px, 70px);
    box-shadow: -80px 60px 15px 5px rgba(0, 0, 0, 0.4);
    transition: all .4s;
    transform-style: preserve-3d;

}

.oblique-ani:hover img {
    transform: rotateX(0deg) rotateZ(0deg) translate3d(0px, 0px, 0px);
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.0);
}


/* =============Logo Animation============== */

@-webkit-keyframes slide-in-blurred-top {
    0% {
        -webkit-transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
        transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
        -webkit-transform-origin: 50% 0%;
        transform-origin: 50% 0%;
        -webkit-filter: blur(40px);
        filter: blur(40px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0) scaleY(1) scaleX(1);
        transform: translateY(0) scaleY(1) scaleX(1);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
    }
}

@keyframes slide-in-blurred-top {
    0% {
        -webkit-transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
        transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
        -webkit-transform-origin: 50% 0%;
        transform-origin: 50% 0%;
        -webkit-filter: blur(40px);
        filter: blur(40px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0) scaleY(1) scaleX(1);
        transform: translateY(0) scaleY(1) scaleX(1);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
    }
}

/* ============sidebar border=========== */

@-webkit-keyframes roll-in-blurred-left {
    0% {
        -webkit-transform: translateX(-1000px) rotate(-720deg);
        transform: translateX(-1000px) rotate(-720deg);
        -webkit-filter: blur(50px);
        filter: blur(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0) rotate(0deg);
        transform: translateX(0) rotate(0deg);
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
    }
}

@keyframes roll-in-blurred-left {
    0% {
        -webkit-transform: translateX(-1000px) rotate(-720deg);
        transform: translateX(-1000px) rotate(-720deg);
        -webkit-filter: blur(50px);
        filter: blur(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0) rotate(0deg);
        transform: translateX(0) rotate(0deg);
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
    }
}

/* ==================Hamburger menu================== */

.hamburger {
    cursor: pointer;
    display: none;
}

.hamburger span {
    display: block;
    content: '';
    width: 25px;
    height: 3px;
    background: var(--color-primary);
    margin-bottom: 5px;
}

.hamburger span:last-child {
    margin-bottom: 0;
}

.show-menu {
    display: block !important;
}

.exterior-banner {
    background-image: url('../images/services/exterior-signage/exterior-banner.webp');
    background-position: center;
    background-repeat: no-repeat;
}

.interior-banner {
    background-image: url('../images/services/interior-signage/interior-banner.webp');
    background-position: center;
    background-repeat: no-repeat;
}

.display-banner {
    background-image: url('../images/services/display-system/display-banner.webp');
    background-position: center;
    background-repeat: no-repeat;
}

.digital-banner {
    background-image: url('../images/services/digital-signage/signage-banner.webp');
    background-position: center;
    background-repeat: no-repeat;
}

.gallery-banner {
    background-image: url('../images/gallery/gallery-banner.webp');
    background-position: center;
    background-repeat: no-repeat;
}

.about-banner {
    background-image: url('../images/about-intro/about-banner.webp');
    background-position: center;
    background-repeat: no-repeat;
}

.vis-mis-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    box-shadow: rgba(27, 153, 223, 0.5) 0px 7px 29px 0px;
    border-radius: 5px;
}

.vis-mis-wrap .vision-box img {
    width: 80px;
    margin-bottom: 15px;
}

.vis-mis-wrap .vision-heading h4 {
    color: var(--color-primary);
}

.vis-mis-wrap .vision-content p {
    text-align: center;
    padding: 0 30px;
}

.testi-text p {
    text-align: justify;
    margin-bottom: 0;
}

.client-name p {
    text-align: center;
}

.read-btn {
    margin-bottom: 25px !important;
    color: var(--color-primary);
    cursor: pointer;
    transition: var(--transition);
    font-size: 13px;
}

.read-btn:hover {
    color: var(--color-secondary);
}

.hide-cont {
    display: none;
}

.show-cont {
    display: inline !important;
}

.signage_img {
    margin-bottom: 25px;
    overflow: hidden;
}

.signage_img img {
    transition: var(--transition);
}

.signage_img:hover img {
    transform: scale(1.1);
}

.signage_img,
.signage_img img {
    border-radius: 5px;
}

/* ------------ Signage Card with Descriptions ------------ */
.signage_card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
    margin-bottom: 25px;
    border: 1px solid #ededed;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: calc(100% - 25px);
    transition: all 0.35s ease;
}

.signage_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(27, 153, 223, 0.15);
    border-color: rgba(27, 153, 223, 0.4);
}

.signage_card .signage_img {
    margin-bottom: 0;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
    width: 100%;
}

.signage_card .signage_img a {
    display: block;
    width: 100%;
    overflow: hidden;
}

.signage_card .signage_img img {
    border-radius: 8px 8px 0 0;
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.signage_card:hover .signage_img img {
    transform: scale(1.04);
}

.signage_card.signage_card--tall .signage_img img {
    height: auto;
}

.signage_card .signage_caption {
    padding: 12px 14px 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #ffffff;
}

.signage_card .signage_title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.signage_card:hover .signage_title {
    color: var(--color-primary);
}

.signage_card .signage_desc {
    font-size: 12.5px;
    color: #666666;
    line-height: 1.45;
    margin-bottom: 0;
    text-align: left;
}

/* ------------project-page-start------------- */
.project_item {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin-bottom: 25px;
}

.project_item .signage_image {
    margin-bottom: 0;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    overflow: hidden;
}

.project_item .signage_image img {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    transition: transform 0.3s ease;
}

.project_item:hover .signage_image img {
    transform: scale(1.1);
}

.project_item img {
    border-bottom-left-radius: unset;
    border-bottom-right-radius: unset;
}

.project_meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.trigger_modal {
    cursor: pointer;
}


.trigger_modal.badge {
    background-color: var(--color-primary);
    font-size: 12px !important;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.trigger_modal.badge:hover {
    background-color: #1473a8;
}

.project_name {
    font-weight: 600;
    margin-bottom: 0;
}

.project_loc {
    font-size: 12px;
}

.modal-footer .hero_btn {
    background-color: var(--color-primary);
    color: #ffffff;
}

.modal-footer .hero_btn:hover {
    background-color: #1473a8;
}

.gallery_modal .modal-dialog {
    width: min(920px, calc(100% - 24px));
    max-width: min(920px, calc(100% - 24px));
    margin-left: auto;
    margin-right: auto;
}

.gallery_modal .modal-body {
    overflow-x: hidden;
}

.gallery_modal .gallery_slider {
    justify-content: center;
}

.gallery_item.no_padd {
    padding: 6px;
}

.gallery_item {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery_item a {
    width: 100%;
    height: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #f7f7f7;
}

.gallery_item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.gallery_item:hover img {
    transform: scale(1.1);
}

.modal_box {
    z-index: 10000 !important;
}

/* ------------project-page-end------------- */


@media(max-width:992px) {

    /* =======homepage======== */

    .header {
        padding: 15px 0;
    }

    .carousel-indicators {
        margin-bottom: 0;
    }

    .slider-tag h1, .slider-tag h2, .slider-tag h5 {
        font-size: 13px;
    }

    .slider-heading p {
        margin-bottom: 15px;
    }

    .slider-heading p {
        font-size: 25px;
        text-align: center;
    }

    .banner-video-btn {
        margin-top: 15px;
    }

    .waves-box {
        flex-direction: column;
    }

    .waves-box a {
        margin-right: 0 !important;
    }

    .slider-content {
        align-items: center;
    }

    .banner-section .carousel-item {
        min-height: 50svh;
    }

    .butn {
        padding: 10px 15px;
    }

    .carousel-item img {
        min-height: 50svh;
        object-fit: cover;
    }


    .slider-btns .intro-btn {
        font-size: 12px;
    }

    .intro-img {
        margin-top: 15px;
    }

    .number-box {
        margin-bottom: 15px;
    }

    .number-count .numb-wrap:nth-child(3) .number-box {
        margin-bottom: 0 !important;
    }

    .service-card:hover {
        transform: unset;
        box-shadow: var(--color-primary) 0px 2px 10px 0px;
    }

    .cta-content {
        padding: 15px;
    }

    .intro-text h2, .intro-text h3 {
        font-size: 1.5rem;
    }

    .cta-content h3 {
        font-size: 32px;
    }

    .cta-content h3 span {
        font-size: 36px;
    }

    .hamburger {
        display: block;
    }

    .navigation .nav-links {
        display: none;
        position: absolute;
        right: 0;
        top: 100%;
        z-index: 100;
        flex-direction: column;
        align-items: flex-start;
        background-color: #ffffff;
        width: 100%;
    }

    .navigation .nav-links li {
        border-top: 1px solid #e3e3e3;
        width: 100%;
        padding: 0 !important;
    }

    .navigation .nav-links li a {
        padding: 10px;
    }

    .drop-down {
        position: relative !important;
        z-index: unset;
        border-radius: unset;
        box-shadow: none;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
    }

    .drop-down li {
        transition: var(--transition);
    }

    .drop-down li a {
        padding: 10px;
        background: #ffffff !important;
    }

    .nav-link::before {
        display: none;

    }

    .mob-services {
        padding-bottom: 0 !important;
        ;
    }

    .slick-dots {
        left: 0;
        right: 0;
    }

    .nav-contact-box {
        display: none;
    }

    .logo a {
        width: 75px;
    }

    ul li ul li ul {
        left: 0;
    }

    .service-banner .banner-item .banner-text {
        font-size: 28px;
    }

    /* ===============services section============= */

    .service-banner {
        max-height: 150px;
        height: 250px;
    }


    .signage-sect {
        padding-bottom: 0;
    }

    .signage-sect .intro-text {
        margin-top: 20px;
    }

    .intro-img {
        margin-bottom: 15px;
    }

    .tabs ul {
        flex-direction: column;
    }

    .contact-info-section .contact-info-wrap .single-contact-info {
        min-height: 0;
        margin-bottom: 15px;
    }

    .tabs {
        margin-bottom: 15px;
    }

    .vis-mis-wrap {
        margin-bottom: 15px;
    }


    /* ==========about-section========= */

    .about-section {
        padding-bottom: 0;
    }

    .signage-btn {
        margin-bottom: 15px;
    }

    .banner-cards {
        padding-bottom: 0;
    }

    .intro-sec {
        padding-bottom: 0;
    }

    /* =============footer-section============ */

    .footer-section .logo-box img {
        width: 75px;
        margin-bottom: 15px;
    }

    .footer-socials {
        margin: 10px 0;
    }

    .footer-heading {
        margin-top: 10px;
    }

    .footer-end p {
        text-align: center !important;
        font-size: 14px;
    }

    .rights-text {
        padding-bottom: 0 !important;
    }

    .powered-text {
        padding-top: 0 !important;
    }

    .signage_img {
        margin-bottom: 15px;
    }

    .footer_mob_cntc {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }

    .footer_mob_cntc a {
        display: block;
        margin-bottom: 8px;
        line-height: 1.5;
    }

    .first_cntc::after {
        content: '' !important;
        display: none;
        margin: 0 !important;
    }

    .contact-box {
        margin-bottom: 20px;
    }

    .contact-box:last-child {
        margin-bottom: 0;
    }

    .footer-address .address-box {
        flex-direction: column;
        gap: 15px;
    }

    .address-icon {
        margin-bottom: 0;
        margin-right: 10px;
    }

    .client-contact {
        flex-direction: column;
        gap: 0;
    }

    .client-contact div {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .service-card {
        margin-bottom: 15px;
    }

    .service-card p {
        font-size: 13px;
        text-align: center;
    }

}


@media(min-width:992px) {

    .exterior_navs,
    .interior_navs {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .slider-heading p {
        line-height: 50px;
    }

    .service-card p {
        font-size: 13px;
        padding: 0 30px;
        text-align: center;
    }

    .banner_content {
        padding: 0 30px;
    }
}

@media(max-width:992px) {
    .mega_menu {
        height: 400px;
        overflow-y: scroll;
    }


    .number-box p {
        text-align: center;
        margin-bottom: 0;
        min-height: 50px;
    }
}
