/********** Template CSS **********/
:root {
    --primary: #06A3DA;
    --secondary: #A6CE39;
    --light: #EEF9FF;
    --dark: #091E3E;
    --card-bg-light: #f0f7ff;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --gradient-primary: linear-gradient(135deg, #0d6efd 0%, #0a4da6 100%);
    --gradient-hover: linear-gradient(135deg, #061429 0%, #0d6efd 100%);
}

body {
    font-family: var(--font-main);
    color: #4a5568;
}

html {
    scroll-behavior: smooth;
}

/* Popup Modal Backdrop Customization */
#imagePopupModal .modal-content {
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }

    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }

    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }

    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }

    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

    #spinner.show {
        transition: opacity .5s ease-out, visibility 0s linear 0s;
        visibility: visible;
        opacity: 1;
    }


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}

/*** Logo ***/

.logo-img {
    max-height: 75px !important;
    width: auto;
}

/* Modern Card Elevation Effects */
.fact-card, .service-card, .feature-card {
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

    .fact-card:hover, .service-card:hover, .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    }




/*** Work Process ***/
.work-process .steps-item {
    background: #ffffff;
    border-radius: 20px;
    height: 100%;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 20px color-mix(in srgb, #444444, transparent 92%);
}

    .work-process .steps-item .steps-image {
        border-radius: 20px 20px 0 0;
        overflow: hidden;
    }

.work-process .steps-image {
    position: relative;
    height: 280px;
}

    .work-process .steps-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.work-process .steps-content {
    position: relative;
    padding: 40px 30px 30px;
}

    .work-process .steps-content .steps-number {
        position: absolute;
        left: 30px;
        top: -30px;
        width: 60px;
        height: 60px;
        background: var(--secondary);
        color: #ffffff;
        border-radius: 50%;
        font-family: 'Jost', sans-serif;
        font-size: 24px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease-in-out;
    }

    .work-process .steps-content h3 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .work-process .steps-content p {
        font-size: 15px;
        color: color-mix(in srgb, #444444 #444444, transparent 20%);
        margin-bottom: 25px;
    }

.work-process .steps-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

    .work-process .steps-features .feature-item i {
        color: #47b2e4;
        font-size: 18px;
        margin-right: 10px;
    }

    .work-process .steps-features .feature-item span {
        font-size: 14px;
        color: color-mix(in srgb, #444444, transparent 15%);
    }

/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

    .btn-primary:hover {
        box-shadow: inset 0 0 0 0 var(--primary);
    }

    .btn-secondary:hover {
        box-shadow: inset 0 0 0 0 var(--secondary);
    }

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

/*** Color combination ***/
.from-green-400 {
    --tw-gradient-from: #4ade80;    
}

.via-blue-400 {
    --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to);
}
.to-red-400 {
    --tw-gradient-to: #f87171;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    position: relative;
    margin-left: 35px;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    /*color: var(--dark);*/
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

        .navbar-dark .navbar-nav .nav-link,
        .navbar-dark .navbar-nav .nav-link.show,
        .sticky-top.navbar-dark .navbar-nav .nav-link {
            padding: 10px 0;
            color: var(--dark);
        }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar {
        background-color: #061429 !important;
        padding: 12px 20px !important;
    }

    /* Ensure logo is fully visible, properly sized, and readable */
    .navbar-brand .logo-img {
        max-height: 45px !important;
        width: auto !important;
        display: block !important;
    }

    /* Set all non-active nav links to pure white */
    .navbar-dark .navbar-nav .nav-link {
        color: #ffffff !important;
        opacity: 0.9;
        padding: 8px 0;
    }

        /* Keep the active (highlighted) link in primary brand color */
        .navbar-dark .navbar-nav .nav-link.active {
            color: #06A3DA !important; /* or your primary blue color */
            opacity: 1;
        }

        /* Change link color to primary on touch/hover */
        .navbar-dark .navbar-nav .nav-link:hover,
        .navbar-dark .navbar-nav .nav-link:focus {
            color: #06A3DA !important;
        }

    /* Ensure all inner-page header banners scale proportionally */
    .bg-header,
    .bg-header-about,
    [class*="bg-header"] {
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        margin-bottom: 30px !important; /* Reduces excessive bottom gap */
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
        min-height: auto !important;
    }

        /* Adjust typography size and spacing inside the banner */
        .bg-header h1,
        .bg-header-about h1 {
            font-size: 2rem !important;
            margin-bottom: 0.5rem !important;
        }

        .bg-header .row,
        .bg-header-about .row {
            padding-top: 1rem !important;
            padding-bottom: 1rem !important;
        }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }

    .sticky-top.navbar-dark {
        position: fixed;
        background: rgba(9, 30, 62, .7);
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--secondary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {
        left: 0;
    }

    50% {
        left: 145px;
    }

    100% {
        left: 0;
    }
}

@-webkit-keyframes section-title-run-center {
    0% {
        left: 50%;
        margin-left: -75px;
    }

    50% {
        left: 50%;
        margin-left: 45px;
    }

    100% {
        left: 50%;
        margin-left: -75px;
    }
}

@-webkit-keyframes section-title-run-sm {
    0% {
        left: 0;
    }

    50% {
        left: 85px;
    }

    100% {
        left: 0;
    }
}


/*** Service ***/
.service-item {
    border-radius: 16px !important;
    padding: 40px 30px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

    .service-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 16px;
        background: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0%, rgba(128, 196, 28, 0.05) 100%);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .service-item:hover::before {
        opacity: 1;
    }

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

    .testimonial-carousel .owl-dot.active {
        width: 30px;
        background: var(--primary);
    }

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}

/* Card Spacing & Base Styling */
.testimonial-carousel .owl-item {
    padding: 15px 12px; /* Generous spacing between cards */
}

.modern-testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    opacity: 0.65; /* Slightly dim non-selected items */
    transform: scale(0.95); /* Slightly smaller non-selected items */
}

    /* Top Accent Line */
    .modern-testimonial-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #4285F4, #EA4335, #FBBC05, #34A853);
        opacity: 0.3;
        transition: opacity 0.3s ease;
    }

    /* Highlight Active / Center Item in Owl Carousel */
    .testimonial-carousel .owl-item.active.center .modern-testimonial-card,
    .modern-testimonial-card:hover {
        opacity: 1;
        transform: scale(1.02) translateY(-6px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        border-color: rgba(66, 133, 244, 0.3);
    }

        .testimonial-carousel .owl-item.active.center .modern-testimonial-card::before,
        .modern-testimonial-card:hover::before {
            opacity: 1;
        }

.google-badge {
    width: 52px;
    height: 52px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #eef2f6;
    flex-shrink: 0;
}

.review-quote {
    color: #4a5568;
    font-size: 0.98rem;
    line-height: 1.65;
    font-style: italic;
}

/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

    .team-social a.btn {
        position: relative;
        margin: 0 3px;
        margin-top: 100px;
        opacity: 0;
    }

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

    .team-item:hover .team-social {
        background: rgba(9, 30, 62, .7);
    }

        .team-item:hover .team-social a.btn:first-child {
            opacity: 1;
            margin-top: 0;
            transition: .3s 0s;
        }

        .team-item:hover .team-social a.btn:nth-child(2) {
            opacity: 1;
            margin-top: 0;
            transition: .3s .05s;
        }

        .team-item:hover .team-social a.btn:nth-child(3) {
            opacity: 1;
            margin-top: 0;
            transition: .3s .1s;
        }

        .team-item:hover .team-social a.btn:nth-child(4) {
            opacity: 1;
            margin-top: 0;
            transition: .3s .15s;
        }

.team-item .team-img img {
    transition: .5s;
}

.team-item:hover .team-img img {
    transform: scale(1.15);
}

/* Tech Background with Subtle Animated Gradients */
.services-section-wrapper {
    position: relative;
    background-color: #f8fafc;
    background-image: radial-gradient(circle at 15% 20%, rgba(13, 110, 253, 0.08) 0%, transparent 40%), radial-gradient(circle at 85% 70%, rgba(10, 77, 166, 0.07) 0%, transparent 45%), radial-gradient(circle at 50% 50%, rgba(13, 110, 253, 0.03) 0%, transparent 60%);
    overflow: hidden;
}

    /* Subtle Grid Pattern Overlay */
    .services-section-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(rgba(13, 110, 253, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(13, 110, 253, 0.03) 1px, transparent 1px);
        background-size: 40px 40px;
        pointer-events: none;
    }

/* Hero Badges & Section Styling */
.section-tag {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
}

/* Core Service Card Redesign */
.modern-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(9, 30, 62, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

    .modern-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--gradient-primary);
        transition: height 0.4s ease;
        z-index: -1;
    }

    .modern-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(13, 110, 253, 0.12);
        border-color: rgba(13, 110, 253, 0.25);
    }

        .modern-card:hover::before {
            height: 100%;
            opacity: 0.03;
        }

/* Dynamic Icon Container */
.icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    background: rgba(13, 110, 253, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #0d6efd;
    transition: all 0.4s ease;
    position: relative;
}

.modern-card:hover .icon-wrapper {
    background: var(--gradient-primary);
    color: #ffffff;
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.25);
}

/* Tech Badges Inside Cards */
.tech-pill {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 8px;
    margin-right: 4px;
    margin-bottom: 6px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.modern-card:hover .tech-pill {
    background: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
}

/* Addons Card Glassmorphism Effect */
.addon-glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px dashed rgba(13, 110, 253, 0.25);
    border-radius: 18px;
    transition: all 0.3s ease;
    position: relative;
}

    .addon-glass-card:hover {
        background: #ffffff;
        border-style: solid;
        border-color: #0d6efd;
        box-shadow: 0 15px 30px rgba(9, 30, 62, 0.08);
        transform: translateY(-5px);
    }

.addon-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--gradient-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 8px 16px rgba(13, 110, 253, 0.2);
}

/* Contact Top Cards */
.contact-info-card {
    background-color: var(--card-bg-light);
    border-radius: 20px;
    padding: 28px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

    .contact-info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(13, 110, 253, 0.1);
    }

.icon-circle-badge {
    width: 60px;
    height: 60px;
    background-color: #0099ff;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px auto;
    box-shadow: 0 6px 15px rgba(0, 153, 255, 0.3);
}

/* Get In Touch Form Section */
.contact-form-wrapper {
    background-color: var(--card-bg-light);
    border-radius: 24px;
    padding: 35px;
}

.form-control-custom {
    border: none;
    border-radius: 30px !important;
    padding: 14px 20px 14px 48px;
    font-size: 15px;
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

    .form-control-custom:focus {
        box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15);
        outline: none;
        background-color: #ffffff;
    }

.textarea-custom {
    border-radius: 20px !important;
    padding-left: 48px !important;
}

.input-group-custom {
    position: relative;
}

    .input-group-custom i {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: #0099ff;
        z-index: 10;
        font-size: 16px;
    }

    .input-group-custom textarea + i {
        top: 13px;
        transform: none;
    }

.btn-send-message {
    background-color: #06A3DA;
    color: #ffffff;
    border-radius: 12px;
    font-weight: 600;
    padding: 12px 28px;
    border: none;
    box-shadow: 0 6px 15px rgba(0, 153, 255, 0.25);
    transition: all 0.3s ease;
}

    .btn-send-message:hover {
        background-color: #A6CE39;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 153, 255, 0.35);
    }

.map-frame-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    min-height: 420px;
}

.text-dark {
    color: var(--dark) !important;
}

/* WhatsApp button stacked directly above the Back to Top button */
.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 85px; /* Offset to stack above back-to-top */
    width: 48px;
    height: 48px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Vendor Modern Cards */
.vendor-card {
    background: #ffffff;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
}

    .vendor-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(0, 153, 255, 0.12);
        border-color: rgba(0, 153, 255, 0.3);
    }

.vendor-logo {
    max-height: 65px !important; /* Increased size */
    width: auto !important;
    max-width: 90%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.vendor-card:hover .vendor-logo {
    transform: scale(1.05);
}

/*** Portfolio images ***/

.portfolio-img {
    overflow: hidden;
    width: 100%;
    margin: 10px 0px;
}

    .portfolio-img img {
        width: 100%;
        transition: all 0.4s ease-in-out;
        object-fit: cover;
    }


@media (max-width: 991.98px) {
    .contact-form-wrapper {
        padding: 25px;
    }

    .map-frame-wrapper {
        min-height: 350px;
    }
}

/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 25px;
    bottom: 25px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.bg-header-contact {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/banner/devtech_contact_us_banner.png) center center / 100% 100% no-repeat !important;
    min-height: 400px;
}

.bg-header-about {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/banner/devtech_about_us_banner.png) center center / 100% 100% no-repeat !important;
    min-height: 400px;
}

.bg-header-services {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/banner/devtech_services_banner.png) center center / 100% 100% no-repeat !important;
    min-height: 400px;
}

.bg-header-portfolio {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/banner/devtech_portfolio_banner.png) center center / 100% 100% no-repeat !important;
    min-height: 400px;
}

.link-animated a {
    transition: .5s;
}

    .link-animated a:hover {
        padding-left: 10px;
    }

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}
