/* ================= General ==================== */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body {
    font-family: "Open Sans", sans-serif !important;
    font-size: 15px;
    line-height: 29px;
    letter-spacing: 0.5px;
    font-weight: 500;
    color: #626262;
    background-color: #fff;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -webkit-overflow-scrolling: touch;
    -webkit-font-smoothing: antialiased !important;
    margin-top: 120px; /* Match this to your header's total height */
}

@media (max-width: 991.98px) {
    body {
        margin-top: 10px; /* Match mobile header height */
    }
}

.mt-70 {
    margin-top: 70px;
}

a {
    color: #0d6efd;
    text-decoration: none;
}

.red-color {
    color: #ed145b;
}

@media only screen and (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

@media only screen and (max-width: 749px) {
    .container {
        width: 100%;
    }
}

@media only screen and (max-width: 601px) {
    .container {
        width: 90%;
    }
}

/* topbar */
/*-----------------------------------------------------
    Top Bar
    -------------------------------------------------------*/
.top-bar {
    /* height: 46px; */
    background-color: #03a9f4 !important;
    color: #fff;
}

.top-bar .topbar-cta li {
    display: inline-block;
    margin-right: 20px;
}

.top-bar .topbar-cta a {
    letter-spacing: 1px;
    /* line-height: 46px; */
    color: #fff;
    text-decoration: none;
}

.top-bar .topbar-cta a:hover {
    color: #f0f0f0 !important;
}

.top-bar .social-top {
    /* margin: 13px 0 0; */
    /* margin-top: -10px; */
}

.top-bar .social-top a {
    text-decoration: none;
    /* margin: 0 10px; */
}

.top-bar .social-top a i {
    display: block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    transition: color 0.3s ease;
}

.top-bar .social-top a i:hover {
    color: #383838;
}

/*TT Animate CSS*/
.tt-animate i {
    text-align: center;
    overflow: hidden;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.tt-animate i::before {
    speak: none;
    display: block;
    -webkit-font-smoothing: subpixel-antialiased !important;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
}


/*Left To Right*/
.tt-animate.ltr i:hover::before {
    -webkit-animation: LeftToRight 0.3s forwards;
    -moz-animation: LeftToRight 0.3s forwards;
    animation: LeftToRight 0.3s forwards;
}

.tt-animate.ltr i:before {
    -webkit-animation: RightToLeft 0.3s forwards;
    -moz-animation: RightToLeft 0.3s forwards;
    animation: RightToLeft 0.3s forwards;
}


/*Right To Left*/
.tt-animate.btt i:hover::before {
    -webkit-animation: BottomToTop 0.3s forwards;
    -moz-animation: BottomToTop 0.3s forwards;
    animation: BottomToTop 0.3s forwards;
}

.tt-animate.btt i:before {
    -webkit-animation: TopToBottom 0.3s forwards;
    -moz-animation: TopToBottom 0.3s forwards;
    animation: TopToBottom 0.3s forwards;
}

/*---------------------------------------------------------
        KEY FRAME 
        -----------------------------------------------------------*/

/* Left to Right key frame*/

@-webkit-keyframes LeftToRight {
    49% {
        -webkit-transform: translate(100%);
    }

    50% {
        opacity: 0;
        -webkit-transform: translate(-100%);
    }

    51% {
        opacity: 1;
    }
}

@-moz-keyframes LeftToRight {
    49% {
        -moz-transform: translate(100%);
    }

    50% {
        opacity: 0;
        -moz-transform: translate(-100%);
    }

    51% {
        opacity: 1;
    }
}

@keyframes LeftToRight {
    49% {
        transform: translate(100%);
    }

    50% {
        opacity: 0;
        transform: translate(-100%);
    }

    51% {
        opacity: 1;
    }
}

/* Right to Left key frame*/

@-webkit-keyframes RightToLeft {

    49% {
        -webkit-transform: translate(100%);
    }

    50% {
        opacity: 0;
        -webkit-transform: translate(-100%);
    }

    51% {
        opacity: 1;
    }
}

@-moz-keyframes RightToLeft {
    49% {
        -webkit-transform: translate(-100%);
    }

    50% {
        opacity: 0;
        -webkit-transform: translate(100%);
    }

    51% {
        opacity: 1;
    }
}

@keyframes RightToLeft {
    49% {
        -webkit-transform: translate(100%);
    }

    50% {
        opacity: 0;
        -webkit-transform: translate(-100%);
    }

    51% {
        opacity: 1;
    }
}

/* Bottom to Top key frame*/

@-webkit-keyframes BottomToTop {
    49% {
        -webkit-transform: translateY(-100%);
    }

    50% {
        opacity: 0;
        -webkit-transform: translateY(100%);
    }

    51% {
        opacity: 1;
    }
}

@-moz-keyframes BottomToTop {
    49% {
        -moz-transform: translateY(-100%);
    }

    50% {
        opacity: 0;
        -moz-transform: translateY(100%);
    }

    51% {
        opacity: 1;
    }
}

@keyframes BottomToTop {
    49% {
        transform: translateY(-100%);
    }

    50% {
        opacity: 0;
        transform: translateY(100%);
    }

    51% {
        opacity: 1;
    }
}


/* Top to Bottom key frame*/
@-webkit-keyframes TopToBottom {
    49% {
        -webkit-transform: translateY(-100%);
    }

    50% {
        opacity: 0;
        -webkit-transform: translateY(100%);
    }

    51% {
        opacity: 1;
    }
}

@-moz-keyframes TopToBottom {
    49% {
        -moz-transform: translateY(-100%);
    }

    50% {
        opacity: 0;
        -moz-transform: translateY(100%);
    }

    51% {
        opacity: 1;
    }
}

@keyframes TopToBottom {
    49% {
        transform: translateY(-100%);
    }

    50% {
        opacity: 0;
        transform: translateY(100%);
    }

    51% {
        opacity: 1;
    }
}

/* sticky bar */
.sticky-bar {
    top: 50%;
    right: 50px;
    /* Changed from 50px to 0 */
    transform: translateY(-50%);
    position: fixed;
    z-index: 999;
    /* Increased z-index to ensure it stays on top */
    display: flex;
    flex-direction: column;
}

.sticky-bar a {
    display: flex;
    /* Added to use Flexbox */
    align-items: center;
    /* Vertically center the content */
    padding: 10px;
    list-style-type: none;
    color: #ffffff;
    background: #202020;
    text-align: left;
    font-size: 15px;
    margin: 2px;
    margin-right: 0px;
    transform: translateX(255px);
    /* Changed from translate to translateX */
    transition: transform 0.8s;
    /* Changed from all to transform */
    text-decoration: none;
}

.sticky-bar a:hover {
    transform: translateX(50px);
    /* Changed from translate to translateX */
}

.sticky-bar a i {
    margin-right: 10px;
    font-size: 20px;
}

/* nav bar mazhar 21-11-2024 */
.desktop-header{
    display: block;
}
.mobile-header {
    display: none;
    margin-bottom: 70px;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    max-height: 50px;
}

.nav-link {
    color: #333;
    font-weight: 500;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.navbar .nav-link {
    color: #1a202c !important;
    font-weight: 500;
    margin: 10px 10px;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
}

.navbar .nav-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #01a0e2;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.navbar .nav-link:hover {
    color: #01a0e2 !important;
}

.navbar .nav-link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Active Nav-Link Styling */
.navbar .nav-item.active .nav-link {
    color: #01a0e2 !important;
    border-bottom: 2px solid #01a0e2;
}

.navbar .nav-item.active .nav-link::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Mega Menu */
.dropdown-menu.mega-menu {
    left: 50%;
    transform: translateX(-50%);
    min-width: 970px;
    border: 1px solid #e1edff;
    background-color: #fff;
    border-radius: 8px;
    padding: 5px;
    display: none;
    /* Hide the mega menu by default */
}

.nav-item:hover .dropdown-menu.mega-menu {
    display: block;
    /* Show the mega menu on hover */
}

/* Retain Hover State for Dropdown Menu Item */
.nav-item:hover .nav-link,
.nav-item:has(.dropdown-menu.mega-menu:hover) .nav-link {
    color: #01a0e2 !important;
}

.nav-item:hover .nav-link::before,
.nav-item:has(.dropdown-menu.mega-menu:hover) .nav-link::before {
    transform: scaleX(1);
    transform-origin: left;
}

.mega-menu a {
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 6px;
    color: #3c3c3c;
}

.mega-menu a:hover {
    background: aliceblue;
}

.mega-menu-column {
    background: #f1f5ff;
    border-radius: 6px;
    padding: 20px 10px;
}

.nav-logo-box {
    background: #fff;
    padding: 10px;
    border-radius: 6px;
    color: #01a0e2;
    border: 1px solid #e0e0e0;
    margin-right: 10px;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-tagline {
    color: #6c757d;
    font-size: 13px;
    letter-spacing: 0px;
    margin-top: 2px;
}

.mega-menu-column div:hover {
    background: #d9e4fd;
    border-radius: 6px;
}

.nav-icon {
    height: 20px;
    width: 20px;
    font-size: 18px;
    margin-right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.mega-menu-column .menu-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.mega-menu-column .menu-item.active {
    background-color: #d9e4fd;
    border-radius: 6px;
}

.submenu-content {
    display: none;
}

.submenu-content.active {
    display: block;
}

/* Enhanced Styling for Mega Menu Content */
.mega-menu-content {
    /* background: linear-gradient(135deg, #eef4ff, #dfeaff); */
    border-radius: 10px;
    /* padding: 25px; */
    /* box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mega-menu-column {
    /* transform: translateY(-5px); */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.20);
}

.mega-menu-content h6 {
    color: #0078d4;
    font-weight: 700;
    /* margin-bottom: 20px; */
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mega-menu-content a {
    background: #ffffff;
    border: 2px solid transparent;
    border-radius: 8px;
    /* margin-bottom: 12px; */
    padding: 12px;
    display: block;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.mega-menu-content a:hover {
    background: #f0f8ff;
    border-color: #0078d4;
    color: #0078d4;
    box-shadow: 0 4px 8px rgba(0, 120, 212, 0.1);
}

.mega-menu-content .nav-icon {
    color: #0078d4;
    font-size: 20px;
    margin-right: 12px;
    transition: color 0.3s ease;
}

.mega-menu-content a:hover .nav-icon {
    color: #005bb5;
}

/* header for mobile */
.no-scroll {
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .desktop-header{
        display: none;
    }
    .mobile-header {
        display: block;
    }

    header {
        position: fixed;
        top: 0;
        z-index: 1000;
        background: #fff;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        padding: 1rem;
    }

    .logo i { 
        font-size: 1.5rem; 
        color: #007bff; 
        margin-right: 0.5rem; 
    }

    .logo span { 
        font-size: 1.125rem; 
        font-weight: bold; 
        color: #333; 
    }

    .navbar-toggler {
        border: none;
        background: transparent;
        cursor: pointer;
        position: relative;
    }

    .navbar-toggler .fas {
        font-size: 1.25rem;
        color: #333;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .navbar-toggler .fas.active {
        opacity: 1;
    }
    .navbar-toggler:focus {
        box-shadow: none !important;
    }

    .mobile-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
        overflow-y: auto;
        padding: 1rem;
    }

    .mobile-menu.open {
        transform: translateY(0);
    }

    .mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-menu li {
        border-bottom: 1px solid #ececec;
        overflow: hidden; /* Prevent sudden jumps */
    }

    .mobile-menu a {
        text-decoration: none;
        color: #333;
        padding: 0.75rem 1rem;
        display: flex;
        align-items: center;
        transition: background 0.3s;
    }

    .mobile-menu a:hover {
        background: #f9f9f9;
    }

    /* Smooth Transition for Submenus */
    .submenu ul {
        padding-left: 0;
        max-height: 0; /* Hide submenu initially */
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.7s ease-in-out, opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
        transform: translateY(20px); /* Initially slide down */
    }

    .submenu.open > ul {
        max-height: 1000px; /* Allow full height for submenu */
        opacity: 1;
        transform: translateY(0); /* Slide smoothly upwards */
    }

    .submenu > a::after {
        content: "\f107";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-left: auto;
        transition: transform 0.3s ease-in-out;
    }

    .submenu.open > a::after {
        transform: rotate(180deg);
    }

    /* Icon Styles */
    .submenu a i {
        margin-right: 10px;
        font-size: 1.25rem;
        color: #007bff;
    }

    /* Footer Contact Section */
    .contact-section a i {
        margin-right: 10px;
        color: #01a0e2;
    }

    .social-icons a {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        font-size: 1.2rem;
    }
}

/* @media (max-width: 991.98px) {

    .navbar-collapse {
        display: none;
    }

    .navbar-collapse.show {
        display: block;
        position: absolute;
        top: 90px;
        left: 50%;
        width: 95%;
        background: #fff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        z-index: 1050;
        padding: 20px;
        transform: translateX(-50%);
    }

    .navbar-nav {
        flex-direction: column;
        margin: 0;
        padding: 0;
    }

    .navbar-nav .nav-link {
        padding: 10px 15px;
        background: #f9f9f9;
        border-radius: 8px;
        color: #333;
        font-size: 16px;
        transition: background 0.3s ease, color 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
        border-bottom: 2px solid #01a0e2;
    }

    .navbar .nav-item.active .nav-link {
        color: #ffffff !important;
        background: #01a0e2;

    }

    .navbar-toggler {
        background-color: #01a0e2;
        border: none;
        border-radius: 8px;
        padding: 8px 12px;
        color: #fff;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hide-menu {
        display: none;
    }
} */



/* mazhar 13-09-2024 => main banner */
.typed-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    animation: blink 0.75s infinite;
}

.banner-title {
    font-family: "Marcellus", serif !important;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* counter section */
.counter-section {
    padding-top: 20px;
    padding-bottom: 30px;
}

.counter-section .container {
    z-index: 10;
    position: relative;
}

.counter-item,
.counter-item-2,
.counter-item-3,
.counter-item-4 {
    box-shadow: 0px 20px 60px 0px rgba(42, 40, 51, 0.05);
    width: 220px;
    height: 220px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
}

.counter-item:before {
    content: '';
    position: absolute;
    top: 10px;
    bottom: 10px;
    right: 10px;
    left: 10px;
    border-radius: 50%;
    background-image: linear-gradient(40deg, #ff43c0 0%, #ffa95c 100%);
}

.counter-item-2:before {
    content: '';
    position: absolute;
    top: 10px;
    bottom: 10px;
    right: 10px;
    left: 10px;
    border-radius: 50%;
    background-image: linear-gradient(40deg, #0db8ff 0%, #f332ff 100%);
}

.counter-item-3:before {
    content: '';
    position: absolute;
    top: 10px;
    bottom: 10px;
    right: 10px;
    left: 10px;
    border-radius: 50%;
    background-image: linear-gradient(40deg, #39a3ff 0%, #3cff53 100%);
}

.counter-item-4:before {
    content: '';
    position: absolute;
    top: 10px;
    bottom: 10px;
    right: 10px;
    left: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(255, 168, 168) 10%, rgb(252, 255, 0) 100%);
}

.counter-inner {
    width: 100%;
    height: 100%;
    box-shadow: 0px 20px 40px 0px rgba(255, 118, 142, 0.3);
    border-radius: 50%;
    position: relative;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.counter-inner h3,
.counter-inner p {
    margin: 0;
}

.counter-inner h3 {
    color: #2a2833;
    font-weight: 600;
    font-size: 40px;
    line-height: 1em;
}

.counter-inner p {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 12px;
    font-weight: 500;
    color: #74727a;
    line-height: 1em;
    margin-top: 10px;
}

.counter-inner-1 {
    box-shadow: inset 0px 20px 40px 0px rgba(255, 118, 142, 0.3);
}

.counter-inner-2 {
    box-shadow: inset 0px 20px 60px 0px rgba(141, 142, 255, 0.3);
}

.counter-inner-3 {
    box-shadow: inset 0px 20px 40px 0px rgba(58, 212, 173, 0.3);
}

.counter-inner-4 {
    box-shadow: inset 0px 20px 40px 0px rgba(255, 168, 168, 0.3), 0px 10px 30px 0px rgba(252, 255, 0, 0.4);
}

/* service card */
/* Service Card Styling */
.service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: left;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column; /* Stack image and content vertically */
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-image-wrapper {
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.service-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-content {
    padding: 1.8rem;
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    flex-grow: 1; /* Allows content to expand and equalize height */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensures consistent spacing */
}

.service-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #ed145b;
    border-radius: 0 0 3px 3px;
}

.service-content h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2a2833;
    position: relative;
    padding-bottom: 0.5rem;
}

.service-content p {
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.6;
    /* color: #6c757d; */
    margin-bottom: 0;
    flex-grow: 1; /* Ensures text expands to fill space */
}

.service-icon {
    position: absolute;
    top: -25px;
    right: 20px;
    background: #ed145b;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(237, 20, 91, 0.2);
}
/* 12-07-2024  css by mazhar hussain */

/* heading */
.section_title h3 {
    font-size: 24px;
    font-weight: 700;
    background: rgba(3, 169, 244, 0.1);
    padding: 10px;
    border-radius: 30px;
    width: 60%;
    margin: auto;
    margin-bottom: 30px;
    color: #03a9f4;
}

/* logo card */
#logo-size {
    height: 80px !important;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 
                0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

#logo-size:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 
                0 4px 6px -2px rgba(0, 0, 0, 0.05);
}


#logo-size .skill-logo {
    height: 80px;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

#logo-size .client-img {
    height: 90px;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.clients-grid .border-box img {
    padding: 15px 20px !important;
}


/* ================= Clients ==================== */
.clients-grid .border-box {
    border: 1px solid #eee;
    margin-left: -1px;
    margin-bottom: -1px;
    -webkit-transition: box-shadow 0.3s;
    -moz-transition: box-shadow 0.3s;
    -ms-transition: box-shadow 0.3s;
    transition: box-shadow 0.3s;
}

.clients-grid .border-box a {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.clients-grid .border-box img {
    padding: 30px 50px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    /* -webkit-filter: grayscale(100%);  Chrome, Safari, Opera 
    filter: grayscale(100%);*/
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

.clients-grid .border-box img:hover {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

.clients-grid .border-box:hover {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}


/* our work */

.before_hover_col {
    position: relative;
    border-radius: 3px;
    background-color: #fff;
    box-shadow: 0 0 3px 0 #d5d5d5;
    text-align: center;
    padding-top: 30px;
    margin-top: 30px
}

.client_logo {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.img_product {
    display: -webkit-flex;
    display: flex;
    align-items: flex-end;
    -webkit-justify-content: center;
    justify-content: center
}

.info_link {
    display: inline-block;
    top: 15px
}

.after_hover_col {
    background-color: rgba(26, 27, 33, .95);
    width: 100%;
    height: 100%;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 0;
    padding: 30px;
    text-align: center;
    color: #fff;
    display: none
}

.after_hover_col h5 {
    font-size: .9rem;
    margin-bottom: 5px
}

.hover_close {
    display: inline-block;
    top: 15px;
    opacity: 1
}

.after_hover_col_content {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    height: 100%
}

.after_hover_valign {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 15px
}

.hover_close,
.info_link {
    right: 20px;
    position: absolute
}

.before_hover_col {
    position: relative;
    border-radius: 3px;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 27, 33, 0.95);
    color: #fff;
    text-align: center;
    padding: 30px;
    box-sizing: border-box;
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 0;
    transform: translateY(-100%);
}

.before_hover_col:hover .overlay {
    opacity: 1;
    transform: translateY(0);
}

.info_link img {
    cursor: pointer;
}

.client_logo img {
    max-width: 200px;
    margin: 0 auto
}

.overlay div {
    position: relative;
    margin: auto;
    top: 25%;
    bottom: 25%;
}



/* CSS */
.button-29 {
    align-items: center;
    appearance: none;
    background-image: radial-gradient(100% 100% at 100% 0, #5adaff 0, #5468ff 100%);
    border: 0;
    border-radius: 6px;
    box-shadow: rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, rgba(58, 65, 111, .5) 0 -3px 0 inset;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-family: "JetBrains Mono", monospace;
    height: 48px;
    justify-content: center;
    line-height: 1;
    list-style: none;
    overflow: hidden;
    padding-left: 16px;
    padding-right: 16px;
    position: relative;
    text-align: left;
    text-decoration: none;
    transition: box-shadow .15s, transform .15s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    will-change: box-shadow, transform;
    font-size: 18px;
    margin-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
}

.button-29:focus {
    box-shadow: #3c4fe0 0 0 0 1.5px inset, rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #3c4fe0 0 -3px 0 inset;
}

.button-29:hover {
    box-shadow: rgba(45, 35, 66, .4) 0 4px 8px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #3c4fe0 0 -3px 0 inset;
    transform: translateY(-2px);
}

.button-29:active {
    box-shadow: #3c4fe0 0 3px 7px inset;
    transform: translateY(2px);
}

.button {
    position: relative;
    display: inline-block;
    letter-spacing: 1.2px;
    /*padding: 12px 32px;*/
    padding: 10px 5px;
    text-align: center;
    text-transform: uppercase;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    background-color: #fff;
    text-decoration: none;
}

/* banner */
.bg-1 {
    background-image: url("assets/SliderBanner/banner-1.png");
}

.outline-text {
    font-size: 4rem;
    font-weight: bold;
    text-align: center;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    color: #fff;
}

@media (max-width: 767.98px) {
    .outline-text {
        font-size: 2.5rem;
        font-weight: bold;
        text-align: center;
        -webkit-text-fill-color: transparent;
        -webkit-text-stroke-width: 2px;
        color: #fff;
    }
}

/* who we are  - mazhar */

.title-border {
    color: #272727;
    position: relative;
    display: inline-block;
}

.title-border::after {
    content: '';
    display: block;
    height: 3px;
    width: 80px;
    margin-top: 5px;
    background: linear-gradient(90deg, #2583E9, #000000);
    border-radius: 2px;
}

/* Left aligned border */
.title-border-left::after {
    margin-left: 0;
    margin-right: auto;
}

/* Center aligned border */
.title-border-center::after {
    margin-left: auto;
    margin-right: auto;
}

/* Right aligned border */
.title-border-right::after {
    margin-left: auto;
    margin-right: 0;
}

.small-infobx {
    padding: 2px 5px;
    border: 1px solid #b4d5ff;
    border-radius: 10px;
    transition: all 0.5s ease;
    height: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.small-infobx:hover {
    background-color: #f0f8ff;
    transform: translateY(-5px);
}

.small-infoimg {
    background: rgba(13, 113, 235, 0.07);
    margin-right: 15px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    color: #0D71EB;
}

.small-infocontent {
    flex-grow: 1;
}

.small-infocontent span {
    display: block;
    /* margin-bottom: 5px; */
}

.small-infocontent .fw-bold {
    font-size: 1.2em;
    color: #232323;
}

.small-infocontent span:last-child {
    font-size: 0.9em;
    color: #555;
}

/* recent project home */

.recent-project{
    border-right: 1px solid black;
}

@media only screen and (max-width: 767px) {
    .recent-project{
        border-right: none;
        border-bottom: 1px solid black;

    }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
    .recent-project {
        border-right: none;
    }
}

/* footer by mazhar hussain */
footer {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(10, 28, 23, 0.6)),
        url("assets/SliderBanner/banner-1.png") no-repeat center/cover;
    color: #f5f5f5;
    padding: 2.5rem 0 1.5rem;
    font-size: 0.95rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.form-group {
    margin-bottom: 1rem;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.form-control:focus {
    background: linear-gradient(90deg, #2583E9, #000000);
    -webkit-background-clip: text;
    color: transparent;
    box-shadow: 0 0 0 2px rgba(237, 20, 91, 0.1);
    color: white;
}

.submit-btn {
    background: #03a9f4;
    color: white;
    border: none;
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #0293d7;
    transform: translateY(-2px);
}

.section-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #03a9f4, transparent);
}

.contact-info {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info i {
    color: #03a9f4;
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    color: white;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: #ed145b;
    transform: translateY(-2px);
}

.company-info {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.copyright {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.contact-info .address{
    border-bottom: 1px solid #fff9;
    padding-bottom: 5px;
    margin-top: 15px;
}

.breadcrumb-bg {
    background: linear-gradient(135deg, #f8fdff 0%, #e6f7ff 50%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.breadcrumb-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(3, 169, 244, 0.09) 0%, rgba(237, 20, 91, 0.09) 100%);
    z-index: 0;
}

.breadcrumb-bg::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(3, 169, 244, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.breadcrumb-bg .container {
    position: relative;
    z-index: 1;
}

.modern-breadcrumb .breadcrumb {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 12px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(3, 169, 244, 0.1);
}

.modern-breadcrumb .breadcrumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(3, 169, 244, 0.05) 0%, rgba(237, 20, 91, 0.05) 100%);
    z-index: -1;
}

.modern-breadcrumb .breadcrumb-item,
.modern-breadcrumb .breadcrumb-separator {
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    color: #03a9f4;
    padding: 0 5px;
}

.modern-breadcrumb .breadcrumb-item a {
    color: #03a9f4;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.modern-breadcrumb .breadcrumb-item a:hover {
    color: #ed145b;
    transform: translateX(3px);
}

.modern-breadcrumb .breadcrumb-item a i {
    margin-right: 8px;
    font-size: 14px;
    background: linear-gradient(135deg, #03a9f4 0%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.modern-breadcrumb .breadcrumb-item a:hover i {
    transform: scale(1.2);
}

.modern-breadcrumb .breadcrumb-item.active {
    color: #2a2833;
    font-weight: 600;
}

.modern-breadcrumb .breadcrumb-separator i {
    font-size: 16px;
    color: #03a9f4;
    margin: 0 8px;
}

@media (max-width: 768px) {
    .modern-breadcrumb .breadcrumb {
        padding: 10px 20px;
    }
}