/**
* Template Name: Arsha - v4.10.0
* Template URL: https://bootstrapmade.com/arsha-free-bootstrap-html-template-corporate/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
}

a {
    color: #007bff;
    text-decoration: none;
}

    a:hover {
        color: #73c5eb;
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Jost", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: linear-gradient(135deg, #0a2540 0%, #1a4c7c 100%);
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #1a4c7c;
        border-top-color: #fff;
        border-bottom-color: #fff;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-preloader 1s linear infinite;
        animation: animate-preloader 1s linear infinite;
    }

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #054282;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

    .back-to-top i {
        font-size: 24px;
        color: #fff;
        line-height: 0;
    }

    .back-to-top:hover {
        background: #7a03c4;
        color: #fff;
        box-shadow: 0 8px 25px rgba(77, 212, 255, 0.5);
        transform: translateY(-2px);
        cursor: pointer;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 8px 0;
}

    #header.header-scrolled,
    #header.header-inner-pages {
        background: #04212B;
        background: linear-gradient(140deg, rgba(4, 33, 43, 1) 24%, rgba(39, 102, 123, 1) 50%, rgba(141, 9, 150, 1) 94%)
    }

    #header .logo {
        font-size: 30px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 500;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

        #header .logo a {
            color: #fff;
        }

        #header .logo img {
            height: 60px;
        }

/* .img-fluid {
            max-height: 120px !important;
        } */

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0 10px 30px;
        font-size: 15px;
        font-weight: 500;
        color: #fff;
        white-space: nowrap;
        transition: 0.3s;
    }

        .navbar a i,
        .navbar a:focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
        }

        .navbar a:hover,
        .navbar .active,
        .navbar .active:focus,
        .navbar li:hover > a {
            color: #007bff;
        }

    .navbar .getstarted,
    .navbar .getstarted:focus {
        padding: 8px 20px;
        margin-left: 30px;
        border-radius: 50px;
        color: #fff;
        font-size: 14px;
        border: 2px solid #007bff;
        font-weight: 600;
    }

        .navbar .getstarted:hover,
        .navbar .getstarted:focus:hover {
            color: #fff;
            background: #31a9e1;
        }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 14px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        border-radius: 4px;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            font-size: 14px;
            text-transform: none;
            font-weight: 500;
            color: #0c3c53;
        }

            .navbar .dropdown ul a i {
                font-size: 12px;
            }

            .navbar .dropdown ul a:hover,
            .navbar .dropdown ul .active:hover,
            .navbar .dropdown ul li:hover > a {
                color: #007bff;
            }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

    .mobile-nav-toggle.bi-x {
        color: #fff;
    }

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #51087E;
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        border-radius: 10px;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 10px 20px;
        font-size: 15px;
        color: #510d6cba;
    }

        .navbar-mobile a:hover,
        .navbar-mobile .active,
        .navbar-mobile li:hover > a {
            color: #007bff;
        }

    .navbar-mobile .getstarted,
    .navbar-mobile .getstarted:focus {
        margin: 15px;
        color: #510d6cba;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover,
            .navbar-mobile .dropdown ul .active:hover,
            .navbar-mobile .dropdown ul li:hover > a {
                color: #007bff;
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 80vh;
    background: #04212B;
    background: linear-gradient(140deg, rgba(4, 33, 43, 1) 24%, rgba(39, 102, 123, 1) 50%, rgba(141, 9, 150, 1) 94%) !important;
}

#hero-top-div:hover {
    color: black;
    color: transparent;
}

#hero .container-fluid {
    padding-top: 72px;
    padding-left: 6%;
    padding-right: 6%
    /* background: #260228;
background: linear-gradient(0deg,rgba(38, 2, 40, 1) 0%, rgba(4, 33, 43, 1) 100%); */
}

#hero h1 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
}

#hero h2 {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px;
    font-size: 24px;
}

#hero .btn-get-started {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 11px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px 0 0 0;
    color: #fff;
    background: #007bff;
}

    #hero .btn-get-started:hover {
        background: #007bff;
        cursor: pointer;
    }

#hero .btn-watch-video {
    font-size: 16px;
    display: flex;
    align-items: center;
    transition: 0.5s;
    margin: 10px 0 0 25px;
    color: #fff;
    line-height: 1;
}

    #hero .btn-watch-video i {
        line-height: 0;
        color: #fff;
        font-size: 32px;
        transition: 0.3s;
        margin-right: 8px;
    }

    #hero .btn-watch-video:hover i {
        color: #007bff;
        cursor: pointer;
    }

#hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
    #hero {
        height: 100vh;
        text-align: center;
    }

        #hero .animated {
            -webkit-animation: none;
            animation: none;
        }

        #hero .hero-img {
            text-align: center;
        }

            #hero .hero-img img {
                width: 50%;
            }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    #hero .hero-img img {
        width: 70%;
    }
}

@media (max-width: 575px) {
    #hero .hero-img img {
        width: 80%;
    }

    #hero .btn-get-started {
        font-size: 16px;
        padding: 10px 24px 11px 24px;
    }
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
    background: #f4f8ff;
}

.section-bg {
    background-color: #f3f5fa;
}

.section-title {
    text-align: center;
    /* padding-bottom: 30px; */
}

    .section-title h2 {
        font-size: 32px;
        font-weight: bold;
        text-transform: uppercase;
        /* margin-bottom: 20px; */
        padding-bottom: 20px;
        position: relative;
        color: #ffffff !important;
    }

        .section-title h2::before {
            content: "";
            position: absolute;
            display: block;
            width: 120px;
            height: 1px;
            background: #ddd;
            bottom: 1px;
            left: calc(50% - 60px);
        }

        .section-title h2::after {
            content: "";
            position: absolute;
            display: block;
            width: 40px;
            height: 3px;
            background: #007bff;
            bottom: 0;
            left: calc(50% - 20px);
        }

    .section-title p {
        margin-bottom: 0;
    }

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
/* .clients {
    padding: 12px 0;
            filter: none;

    text-align: center;
}

    .clients img {
        max-width: 45%;
        transition: all 0.4s ease-in-out;
        display: inline-block;
        padding: 15px 0;
    }

        .clients img:hover {
            transform: scale(1.1);
        }

@media (max-width: 768px) {
    .clients img {
        max-width: 40%;
    }
} */

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

    .about .content ul li {
        padding-left: 28px;
        position: relative;
    }

        .about .content ul li + li {
            margin-top: 10px;
        }

    .about .content ul i {
        position: absolute;
        left: 0;
        top: 2px;
        font-size: 20px;
        color: #007bff;
        line-height: 1;
    }

.about .content p:last-child {
    margin-bottom: 0;
}

.about .content .btn-learn-more {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    transition: 0.3s;
    line-height: 1;
    color: #007bff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid #007bff;
}

    .about .content .btn-learn-more:hover {
        background: #007bff;
        color: #fff;
        text-decoration: none;
    }

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
    padding: 60px 100px 0 100px;
}

    .why-us .content h3 {
        font-weight: 400;
        font-size: 34px;
        color: #000000;
    }

    .why-us .content h4 {
        font-size: 20px;
        font-weight: 700;
        margin-top: 5px;
    }

    .why-us .content p {
        font-size: 15px;
        color: #848484;
    }

.why-us .img {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.why-us .accordion-list {
    padding: 0 100px 60px 100px;
}

    .why-us .accordion-list ul {
        padding: 0;
        list-style: none;
    }

    .why-us .accordion-list li + li {
        margin-top: 15px;
    }

    .why-us .accordion-list li {
        padding: 20px;
        background: #fff;
        border-radius: 4px;
    }

    .why-us .accordion-list a {
        display: block;
        position: relative;
        font-family: "Poppins", sans-serif;
        font-size: 16px;
        line-height: 24px;
        font-weight: 500;
        padding-right: 30px;
        outline: none;
        cursor: pointer;
    }

    .why-us .accordion-list span {
        color: #007bff;
        font-weight: 600;
        font-size: 18px;
        padding-right: 10px;
    }

    .why-us .accordion-list i {
        font-size: 24px;
        position: absolute;
        right: 0;
        top: 0;
    }

    .why-us .accordion-list p {
        margin-bottom: 0;
        padding: 10px 0 0 0;
    }

    .why-us .accordion-list .icon-show {
        display: none;
    }

    .why-us .accordion-list a.collapsed {
        color: #343a40;
    }

        .why-us .accordion-list a.collapsed:hover {
            color: #007bff;
        }

        .why-us .accordion-list a.collapsed .icon-show {
            display: inline-block;
        }

        .why-us .accordion-list a.collapsed .icon-close {
            display: none;
        }

@media (max-width: 1024px) {

    .why-us .content,
    .why-us .accordion-list {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 992px) {
    .why-us .img {
        min-height: 400px;
    }

    .why-us .content {
        padding-top: 30px;
    }

    .why-us .accordion-list {
        padding-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .why-us .img {
        min-height: 200px;
    }
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .content h3 {
    font-weight: 700;
    font-size: 32px;
    color: #000000;
    font-family: "Poppins", sans-serif;
}

.skills .content ul {
    list-style: none;
    padding: 0;
}

    .skills .content ul li {
        padding-bottom: 10px;
    }

    .skills .content ul i {
        font-size: 20px;
        padding-right: 4px;
        color: #007bff;
    }

.skills .content p:last-child {
    margin-bottom: 0;
}

.skills .progress {
    height: 60px;
    display: block;
    background: none;
    border-radius: 0;
}

    .skills .progress .skill {
        padding: 0;
        margin: 0 0 6px 0;
        text-transform: uppercase;
        display: block;
        font-weight: 600;
        font-family: "Poppins", sans-serif;
        color: #000000;
    }

        .skills .progress .skill .val {
            float: right;
            font-style: normal;
        }

.skills .progress-bar-wrap {
    background: #e8edf5;
    height: 10px;
}

.skills .progress-bar {
    width: 1px;
    height: 10px;
    transition: 0.9s;
    background-color: #007bff;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    padding: 50px 30px;
    transition: all ease-in-out 0.4s;
    background: #fff;
}



    .services .icon-box .icon {
        margin-bottom: 10px;
        text-align: center;
    }

        .services .icon-box .icon i {
            color: #007bff;
            font-size: 36px;
            transition: 0.3s;
        }

    .services .icon-box h4 {
        font-weight: 500;
        margin-bottom: 15px;
        font-size: 24px;
        text-align: center
    }

        .services .icon-box h4 a {
            color: #000000;
            transition: ease-in-out 0.3s;
        }

    .services .icon-box p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

    .services .icon-box:hover {
        transform: translateY(-10px);
    }


        .services .icon-box:hover h4 a {
            color: #007bff;
        }

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    background: linear-gradient(#1a4c7c, #366c81ba), url(/Images/bgImage.jpg) fixed center center;
    background-size: cover;
    padding: 120px 0;
}

    .cta h3 {
        color: #fff;
        font-size: 28px;
        font-weight: 700;
    }

    .cta p {
        color: #fff;
    }

    .cta .cta-btn {
        font-family: "Jost", sans-serif;
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 12px 40px;
        border-radius: 50px;
        transition: 0.5s;
        margin: 10px;
        border: 2px solid #fff;
        color: #fff;
        background: linear-gradient(135deg, #1a4c7c 0%, #2d7dd2 100%);
    }

        .cta .cta-btn:hover {
            box-shadow: 0 8px 25px rgba(77, 212, 255, 0.5);
            transform: translateY(-2px);
            cursor: pointer
        }

@media (max-width: 1024px) {
    .cta {
        background-attachment: scroll;
    }
}

@media (min-width: 769px) {
    .cta .cta-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
    list-style: none;
    margin-bottom: 20px;
}

    .portfolio #portfolio-flters li {
        cursor: pointer;
        display: inline-block;
        margin: 10px 5px;
        font-size: 15px;
        font-weight: 500;
        line-height: 1;
        color: #444444;
        transition: all 0.3s;
        padding: 8px 20px;
        border-radius: 50px;
        font-family: "Poppins", sans-serif;
    }

        .portfolio #portfolio-flters li:hover,
        .portfolio #portfolio-flters li.filter-active {
            background: #8B5CF6 !important;
            color: #fff;
        }

.portfolio .portfolio-item {
    margin-bottom: 30px;
}

    .portfolio .portfolio-item .portfolio-img {
        overflow: hidden;
    }

        .portfolio .portfolio-item .portfolio-img img {
            transition: all 0.6s;
        }

    .portfolio .portfolio-item .portfolio-info {
        opacity: 0;
        position: absolute;
        left: 15px;
        bottom: 0;
        z-index: 3;
        right: 15px;
        transition: all 0.3s;
        background: #51087E;
        padding: 10px 15px;
    }

        .portfolio .portfolio-item .portfolio-info h4 {
            font-size: 18px;
            color: #fff;
            font-weight: 600;
            color: #fff;
            margin-bottom: 0px;
        }

        .portfolio .portfolio-item .portfolio-info p {
            color: #f9fcfe;
            font-size: 14px;
            margin-bottom: 0;
        }

        .portfolio .portfolio-item .portfolio-info .preview-link,
        .portfolio .portfolio-item .portfolio-info .details-link {
            position: absolute;
            right: 40px;
            font-size: 24px;
            top: calc(50% - 18px);
            color: #fff;
            transition: 0.3s;
        }

            .portfolio .portfolio-item .portfolio-info .preview-link:hover,
            .portfolio .portfolio-item .portfolio-info .details-link:hover {
                color: #007bff;
            }

        .portfolio .portfolio-item .portfolio-info .details-link {
            right: 10px;
        }

    .portfolio .portfolio-item:hover .portfolio-img img {
        transform: scale(1.15);
    }

    .portfolio .portfolio-item:hover .portfolio-info {
        opacity: 1;
    }

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
}

    .portfolio-details .portfolio-details-slider img {
        width: 100%;
    }

    .portfolio-details .portfolio-details-slider .swiper-pagination {
        margin-top: 20px;
        position: relative;
    }

        .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: #fff;
            opacity: 1;
            border: 1px solid #007bff;
        }

        .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
            background-color: #007bff;
        }

    .portfolio-details .portfolio-info {
        padding: 30px;
        box-shadow: 0px 0 30px rgba(55, 81, 126, 0.08);
    }

        .portfolio-details .portfolio-info h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .portfolio-details .portfolio-info ul {
            list-style: none;
            padding: 0;
            font-size: 15px;
        }

            .portfolio-details .portfolio-info ul li + li {
                margin-top: 10px;
            }

    .portfolio-details .portfolio-description {
        padding-top: 30px;
    }

        .portfolio-details .portfolio-description h2 {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .portfolio-details .portfolio-description p {
            padding: 0;
        }

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
    position: relative;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 5px;
    background: #fff;
    transition: 0.5s;
}

    .team .member .pic {
        overflow: hidden;
        width: 180px;
        border-radius: 50%;
    }

        .team .member .pic img {
            transition: ease-in-out 0.3s;
        }

    .team .member:hover {
        transform: translateY(-10px);
    }

    .team .member .member-info {
        padding-left: 30px;
    }

    .team .member h4 {
        font-weight: 700;
        margin-bottom: 5px;
        font-size: 20px;
        color: #000000;
    }

    .team .member span {
        display: block;
        font-size: 15px;
        padding-bottom: 10px;
        position: relative;
        font-weight: 500;
    }

        .team .member span::after {
            content: "";
            position: absolute;
            display: block;
            width: 100% !important;
            height: 1px;
            background: #cbd6e9;
            bottom: 0;
            left: 0;
        }

    .team .member p {
        margin: 10px 0 0 0;
        font-size: 14px;
    }

    .team .member .social {
        margin-top: 12px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

        .team .member .social a {
            transition: ease-in-out 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50px;
            width: 32px;
            height: 32px;
            background: #eff2f8;
        }

            .team .member .social a i {
                color: #007bff;
                font-size: 16px;
                margin: 0 2px;
            }

            .team .member .social a:hover {
                background: #007bff;
            }

                .team .member .social a:hover i {
                    color: #fff;
                }

            .team .member .social a + a {
                margin-left: 8px;
            }

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
    padding-top: 40px;
}

.pricing .box {
    padding: 60px 40px;
    box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
    background: #fff;
    height: 100%;
    border-top: 4px solid #fff;
    border-radius: 5px;
}

.pricing h3 {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 20px;
    color: #000000;
}

.pricing h4 {
    font-size: 48px;
    color: #000000;
    font-weight: 400;
    font-family: "Jost", sans-serif;
    margin-bottom: 25px;
}

    .pricing h4 sup {
        font-size: 28px;
    }

    .pricing h4 span {
        color: #007bff;
        font-size: 18px;
        display: block;
    }

.pricing ul {
    padding: 20px 0;
    list-style: none;
    color: #999;
    text-align: left;
    line-height: 20px;
}

    .pricing ul li {
        padding: 10px 0 10px 30px;
        position: relative;
    }

    .pricing ul i {
        color: #28a745;
        font-size: 24px;
        position: absolute;
        left: 0;
        top: 6px;
    }

    .pricing ul .na {
        color: #ccc;
    }

        .pricing ul .na i {
            color: #ccc;
        }

        .pricing ul .na span {
            text-decoration: line-through;
        }

.pricing .buy-btn {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 50px;
    color: #007bff;
    transition: none;
    font-size: 16px;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    transition: 0.3s;
    border: 1px solid #007bff;
}

    .pricing .buy-btn:hover {
        background: #007bff;
        color: #fff;
    }

.pricing .featured {
    border-top-color: #007bff;
}

    .pricing .featured .buy-btn {
        background: #007bff;
        color: #fff;
    }

        .pricing .featured .buy-btn:hover {
            background: #23a3df;
        }

@media (max-width: 992px) {
    .pricing .box {
        max-width: 60%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 767px) {
    .pricing .box {
        max-width: 80%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 420px) {
    .pricing .box {
        max-width: 100%;
        margin: 0 auto 30px auto;
    }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
    padding: 0 100px;
}

    .faq .faq-list ul {
        padding: 0;
        list-style: none;
    }

    .faq .faq-list li + li {
        margin-top: 15px;
    }

    .faq .faq-list li {
        padding: 20px;
        background: #fff;
        border-radius: 4px;
        position: relative;
    }

    .faq .faq-list a {
        display: block;
        position: relative;
        font-family: "Poppins", sans-serif;
        font-size: 16px;
        line-height: 24px;
        font-weight: 500;
        padding: 0 30px;
        outline: none;
        cursor: pointer;
    }

    .faq .faq-list .icon-help {
        font-size: 24px;
        position: absolute;
        right: 0;
        left: 20px;
        color: #007bff;
    }

    .faq .faq-list .icon-show,
    .faq .faq-list .icon-close {
        font-size: 24px;
        position: absolute;
        right: 0;
        top: 0;
    }

    .faq .faq-list p {
        margin-bottom: 0;
        padding: 10px 0 0 0;
    }

    .faq .faq-list .icon-show {
        display: none;
    }

    .faq .faq-list a.collapsed {
        color: #000000;
        transition: 0.3s;
    }

        .faq .faq-list a.collapsed:hover {
            color: #007bff;
        }

        .faq .faq-list a.collapsed .icon-show {
            display: inline-block;
        }

        .faq .faq-list a.collapsed .icon-close {
            display: none;
        }

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
}

/* ================================
   Modern Contact Section Styling
   ================================ */
.contact-section {
    /* background: linear-gradient(349deg, rgba(39, 102, 123, 1) 0%, rgba(65, 4, 69, 1) 100%), url(/Images/bgImage.jpg) fixed center center;
    background-size: cover;*/
    color: #ccc;
}

.text-gradient {
    background: linear-gradient(90deg, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.bold-h {
}

.contact-item:hover .bold-h {
    font-weight: 700 !important;
    font-size: 18px !important
}

.contact-item:hover .icon-box {
    transform: scale(1.1);
}

.bg-gradient-cyan {
    background: linear-gradient(135deg, #00bcd4, #2196f3) !important;
}

.bg-gradient-blue {
    background: linear-gradient(135deg, #2196f3, #3f51b5) !important;
}

.bg-gradient-purple {
    background: linear-gradient(135deg, #8e24aa, #e91e63) !important;
}

.bg-gradient-to-blue {
    background: linear-gradient(135deg, #00bcd4, #2196f3) !important;
}

.glow-bg {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.4), rgba(33, 150, 243, 0.4));
    filter: blur(30px);
    opacity: 0.3;
    z-index: 0;
}

.form-control-dark {
    background: #1a1d25;
    border: 1px solid #2e3340;
    color: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

    .form-control-dark:focus {
        border-color: #00bcd4;
        box-shadow: 0 0 0 0.25rem rgba(0, 188, 212, 0.25);
    }

.btn-gradient {
    background: linear-gradient(90deg, #00bcd4, #2196f3);
    color: #fff;
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

    .btn-gradient:hover {
        background: linear-gradient(90deg, #2196f3, #00bcd4);
        transform: translateY(-2px);
        box-shadow: 0 0 20px rgba(0, 188, 212, 0.4);
    }

.hover-cyan:hover {
    color: #00bcd4 !important;
}

#portfolio-flters li {
    cursor: pointer;
    transition: all 0.3s ease;
}

    #portfolio-flters li.filter-active {
        background: linear-gradient(90deg, #007bff, #00bfff);
        color: white !important;
        border-color: transparent !important;
    }

.portfolio-item {
    transition: transform 0.4s ease, opacity 0.4s ease;
}

    .portfolio-item:hover {
        transform: translateY(-8px);
    }

.portfolio-img img {
    border-radius: 12px;
    transition: all 0.4s ease;
}

    .portfolio-img img:hover {
        transform: scale(1.05);
    }

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: #f3f5fa;
    min-height: 40px;
    margin-top: 72px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 68px;
    }
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 600;
    color: #510d6cba;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
}

    .breadcrumbs ol li + li {
        padding-left: 10px;
    }

        .breadcrumbs ol li + li::before {
            display: inline-block;
            padding-right: 10px;
            color: #007bff;
            content: "/";
        }

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    font-size: 14px;
    background: linear-gradient(169deg, rgba(39, 102, 123, 1) 0%, rgba(65, 4, 69, 1) 100%);
}

    #footer .footer-newsletter {
        padding: 50px 0;
        background: #f3f5fa;
        text-align: center;
        font-size: 15px;
        color: #fff;
    }

        #footer .footer-newsletter h4 {
            font-size: 24px;
            margin: 0 0 20px 0;
            padding: 0;
            line-height: 1;
            font-weight: 600;
            color: #fff;
        }

        #footer .footer-newsletter form {
            margin-top: 30px;
            background: #f3f5fa;
            padding: 6px 10px;
            position: relative;
            border-radius: 50px;
            text-align: center;
        }

            #footer .footer-newsletter form input[type=email] {
                border: 0;
                padding: 4px 8px;
                width: calc(100% - 100px);
                margin-top: 4%;
            }

            #footer .footer-newsletter form button[type=submit] {
                position: absolute;
                top: 0px !important;
                right: 0;
                bottom: 0;
                border: 0;
                background: none;
                font-size: 16px;
                padding: 0 20px;
                background: #007bff;
                color: #fff;
                transition: 0.3s;
                border-radius: 50px;
                box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
                margin-top: 4%;
            }

                #footer .footer-newsletter form button[type=submit]:hover {
                    background: #007bff;
                }

    #footer .footer-top {
        padding: 60px 0 30px 0;
        /*background: #f4f8ff;*/
    }

        #footer .footer-top .footer-contact {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-contact h3 {
                font-size: 28px;
                margin: 0 0 10px 0;
                padding: 2px 0 2px 0;
                line-height: 1;
                text-transform: uppercase;
                font-weight: 600;
                color: #ffff;
            }

            #footer .footer-top .footer-contact p {
                font-size: 14px;
                line-height: 24px;
                margin-bottom: 0;
                font-family: "Jost", sans-serif;
                color: #5e5e5e;
            }

        #footer .footer-top h4 {
            font-size: 16px;
            font-weight: bold;
            color: #fff;
            position: relative;
            padding-bottom: 12px;
        }

        #footer .footer-top .footer-links {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-links ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

                #footer .footer-top .footer-links ul i {
                    padding-right: 2px;
                    color: #007bff;
                    font-size: 18px;
                    line-height: 1;
                }

                #footer .footer-top .footer-links ul li {
                    padding: 10px 0;
                    display: flex;
                    align-items: center;
                }

                    #footer .footer-top .footer-links ul li:first-child {
                        padding-top: 0;
                    }

                #footer .footer-top .footer-links ul a {
                    color: #777777;
                    transition: 0.3s;
                    display: inline-block;
                    line-height: 1;
                }

                    #footer .footer-top .footer-links ul a:hover {
                        text-decoration: none;
                        color: #007bff;
                    }

        #footer .footer-top .social-links a {
            font-size: 18px;
            display: inline-block;
            background: #054282;
            color: #fff;
            line-height: 1;
            padding: 8px 0;
            margin-right: 4px;
            border-radius: 50%;
            text-align: center;
            width: 36px;
            height: 36px;
            transition: 0.3s;
        }

            #footer .footer-top .social-links a:hover {
                background: #007bff;
                color: #fff;
                text-decoration: none;
                box-shadow: 0 8px 25px rgba(77, 212, 255, 0.5);
                transform: translateY(-2px);
                cursor: pointer;
            }

    #footer .footer-bottom {
        background: #04212B;
        color: #ffffff
        /*background: linear-gradient(140deg, rgba(4, 33, 43, 1) 24%, rgba(39, 102, 123, 1) 50%, rgba(141, 9, 150, 1) 94%) !important;*/
    }

    #footer .copyright {
        float: left;
    }

    #footer .credits {
        float: right;
        font-size: 13px;
    }

        #footer .credits a {
            transition: 0.3s;
        }

@media (max-width: 768px) {
    #footer .footer-bottom {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    #footer .copyright,
    #footer .credits {
        text-align: center;
        float: none;
    }

    #footer .credits {
        padding-top: 4px;
    }
}

/* <!-- ======= Client Section Style======= --> */
.clients {
    padding: 8px 0;
    text-align: center;
    /*background: #f4f8ff;*/
}

.client-logo {
    padding: 12px;
    transition: all 0.3s ease-in-out;
    position: relative;
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
}

    .client-logo::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        /*background: #E087E0;*/
        transition: all 0.5s ease-in-out;
        z-index: -1;
    }

    .client-logo:hover::before {
        left: 0;
        animation: sweep 0.7s ease-in-out;
    }

    .client-logo:hover {
        transform: translateY(-3px);
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }

    .client-logo img {
        transition: all 0.3s ease-in-out;
        max-width: 80px;
        height: auto;
        /* filter: grayscale(100%); */
    }

    .client-logo:hover img {
        filter: grayscale(0%);
        transform: scale(1.05);
    }

/* Individual hover background colors for each client */
/*.client-logo:nth-child(1):hover {
    background: linear-gradient(135deg, #1e90ff 0%, #007bff 50%, #0056b3 100%);
}

.client-logo:nth-child(2):hover {
    background: linear-gradient(135deg, #1e90ff 0%, #007bff 50%, #0056b3 100%);
}

.client-logo:nth-child(3):hover {
    background: linear-gradient(135deg, #1e90ff 0%, #007bff 50%, #0056b3 100%);
}

.client-logo:nth-child(4):hover {
    background: linear-gradient(135deg, #1e90ff 0%, #007bff 50%, #0056b3 100%);
}

.client-logo:nth-child(5):hover {
    background: linear-gradient(135deg, #1e90ff 0%, #007bff 50%, #0056b3 100%);
}

.client-logo:nth-child(6):hover {
    background: linear-gradient(135deg, #1e90ff 0%, #007bff 50%, #0056b3 100%);
}*/

@keyframes sweep {
    0% {
        transform: translateX(-100%) skewX(-10deg);
    }

    100% {
        transform: translateX(0) skewX(-10deg);
    }
}

/* Adjust responsive breakpoints */
@media (max-width: 768px) {
    .client-logo img {
        max-width: 60px; /* Even smaller on mobile */
    }

    .client-logo {
        padding: 8px; /* Smaller padding on mobile */
    }
}

/* <!-- ======= Testimonials Section Style======= --> */

.testimonial-cards-outer {
    overflow: hidden;
    padding: 50px 0;
    position: relative;
    width: 100%;
    /* Hide scrollbar for all browsers */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .testimonial-cards-outer::-webkit-scrollbar {
        display: none;
    }

.testimonial-cards {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    animation: scroll-testimonials 150s linear infinite;
    width: max-content;
}

/* Add this rule to pause animation on hover */
.testimonial-card:hover ~ .testimonial-card,
.testimonial-card:hover,
.testimonial-card:hover ~ .testimonial-cards {
    animation-play-state: paused;
}

/* Add this to the parent container */
.testimonial-cards-outer:hover .testimonial-cards {
    animation-play-state: paused;
}

@keyframes scroll-testimonials {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    min-width: 320px;
    max-width: 340px;
    background: #fff;
    border-radius: 1.25rem !important;
    box-shadow: 0 4px 24px #007bff22;
    border: none !important;
    transition: transform 0.35s ease-in-out;
    cursor: pointer;
    margin-bottom: 10px;
    margin-right: 16px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    /* Add sliding background effect */
    .testimonial-card:before {
        content: '';
        position: absolute;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, #A855F7, #8B5CF6);
        transition: all 0.5s ease-in-out;
        z-index: -1;
    }

    .testimonial-card:hover:before {
        right: 0;
    }

    .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 25px rgba(77, 212, 255, 0.5);
    }

    .testimonial-card .card-title {
        font-weight: 700;
        letter-spacing: 1px;
        font-size: 1.1rem;
    }

    .testimonial-card .card-text {
        color: #333;
        font-size: 1rem;
        min-height: 100px;
    }

    .testimonial-card img {
        box-shadow: 0 2px 12px #007bff33;
        background: #fff;
    }

@media screen and (max-width: 767px) {
    .testimonial-card {
        min-width: 90vw;
        max-width: 95vw;
    }
}

.testimonial-section {
    background-size: cover;
    background: linear-gradient(#366c81ba, #1a4c7c), url(/Images/customer-review1.jpg) fixed center center;
    background-size: cover;
    padding: 30px 0;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.testimonial-card .card-text {
    color: #1a4c7c;
}

.testimonial-card:hover .card-text {
    color: #ffffff;
}

.testimonial-card .card-title {
    color: #1a4c7c !important;
}

.testimonial-card:hover .card-title {
    color: #ffffff !important;
}

.testimonial-cards {
    animation: scroll 60s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* <!-- ======= Service Section Style======= --> */
.service-card {
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    background: #ffffff;
    height: 100%;
    position: relative;
    z-index: 1;
    border-radius: 1.25rem
}

    .service-card:before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, #A855F7, #8B5CF6);
        transition: all 0.5s ease-in-out;
        z-index: -1;
    }

    .service-card:hover:before {
        left: 0;
    }

    .service-card:hover {
        transform: translateY(-10px);
    }

        .service-card:hover .card-title,
        .service-card:hover .card-text {
            color: #ffffff !important;
        }

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f9fa;
    transition: all 0.4s ease-in-out;
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

/* Replace images with icons */
.service-icon i {
    font-size: 32px;
    color: #007bff;
    transition: all 0.4s ease-in-out;
}

.service-card:hover .service-icon i {
    color: #ffffff;
    transform: rotateY(360deg);
}

/* Add animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.5s ease-out forwards;
}

@media (max-width: 768px) {
    .service-card {
        margin-bottom: 15px;
    }
}

/* <!-- ======= Hero Style======= --> */
#hero {
    background: linear-gradient(135deg, #0a2540 0%, #1a4c7c 100%);
    min-height: 100vh;
    padding: 120px 0;
    position: relative;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/path/to/pattern.png') repeat;
    opacity: 0.1;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #4dd4ff;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    margin-top: 2rem;
}

.btn-primary {
    background: linear-gradient(90deg, rgba(102, 7, 112, 1) 19%, rgba(31, 54, 71, 1) 80%) !important;
    border-color: rgba(102, 7, 112, 1) !important;
    padding: 15px 35px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background: linear-gradient(to right, #51087E, #1a4c7c) !important;
        box-shadow: 0 8px 25px rgba(77, 212, 255, 0.5);
        transform: translateY(-2px);
        cursor: pointer;
    }

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 15px 35px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-outline-light:hover {
        box-shadow: 0 8px 25px rgba(60, 193, 233, 0.5);
        transform: translateY(-2px);
        cursor: pointer
    }

.hero-image-wrapper {
    position: relative;
    padding: 20px;
}

    .hero-image-wrapper:before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(77, 212, 255, 0.1);
        border-radius: 20px;
        transform: rotate(-3deg);
    }

.hero-img img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

    .hero-img img:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 50px rgba(0, 0, 0, 0.3);
    }

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    #hero {
        padding: 80px 0;
        min-height: auto;
    }

    .hero-image-wrapper {
        margin-top: 40px;
    }
}


:root {
    --primary: #054282; /* Main theme color */
    --primary-light: #0a5fb8; /* Lighter shade for hover */
    --primary-dark: #043567; /* Darker shade for emphasis */
    --accent: #e8f1fd; /* Light blue background */
    --text-light: #f8faff; /* Light text on dark backgrounds */
    --text-dark: #2c3e50; /* Dark text for content */
}

/* Update existing color schemes */
.header-scrolled {
    background: linear-gradient(var(--primary), var(--primary-dark));
}

#footer .footer-newsletter form button[type=button] {
    background: var(--primary);
}

    #footer .footer-newsletter form button[type=button]:hover {
        background: var(--primary-light);
    }

.heading {
    color: var(--primary);
}

#try {
    background-color: var(--primary);
}

    #try:hover {
        background-color: var(--primary-light);
    }


.btn-get-started, .cta-btn {
    background: var(--primary);
    color: var(--text-light);
}


.social-links a {
    background: var(--primary);
}

    .social-links a:hover {
        background: var(--primary-light);
    }

/* Testimonial specific updates */
.testimonial-card .card-title {
    color: var(--primary);
}

.testimonial-card img {
    box-shadow: 0 2px 12px rgba(5, 66, 130, 0.2);
    border: 3px solid var(--primary) !important;
}

/* Update progress bars */
.progress-bar {
    background-color: var(--primary);
}

/* Update icon boxes */
.icon-box {
    border: 1px solid var(--primary);
}

    .icon-box:hover {
        box-shadow: 0 0 20px rgba(5, 66, 130, 0.2);
    }


.contact {
    background: #f8faff;
}

    .contact .section-title h2 {
        position: relative;
        display: inline-block;
    }

        .contact .section-title h2:after {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: #007bff;
        }

.contact-info-card,
.contact-form-card {
    transition: all 0.3s ease;
}

    .contact-info-card:hover,
    .contact-form-card:hover {
        transform: translateY(-5px);
    }

.icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 66, 130, 0.1);
}

    .icon-box i {
        font-size: 24px;
    }

.form-control {
    border: 1px solid #e1e6ef;
    padding: 0.8rem 1rem;
    transition: all 0.3s ease;
}

    .form-control:focus {
        border-color: #054282;
        box-shadow: 0 0 0 0.2rem rgba(5, 66, 130, 0.15);
    }

/* .btn-primary {
    background: linear-gradient(135deg, #054282 0%, #0a5fb8 100%);
    border: none;
    transition: all 0.3s ease;
} */

.alert {
    border: none;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem !important;
    }
}


.footer-section {
    background: #f8faff;
    /*border-top: 1px solid rgba(0, 0, 0, 0.05);*/
}

.footer-logo {
    max-height: 40px;
    max-width: 180px;
}

.footer-heading {
    color: #fff;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

    .footer-heading:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 2px;
        background: #4dd4ff;
    }

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #dbeeff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

    .footer-links a:hover {
        color: #007bff;
        text-shadow: 0 8px 25px rgba(77, 212, 255, 0.5);
        transform: translateY(-2px);
        cursor: pointer;
    }

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    color: #054282;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

    .social-link:hover {
        background: #054282;
        color: white;
        transform: translateY(-3px);
    }

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px 0 20px 0;
}

@media (max-width: 768px) {
    .footer-heading {
        margin-top: 30px;
    }

    .footer-bottom {
        text-align: center;
    }

        .footer-bottom p {
            margin-bottom: 10px;
        }
}


.company-logo {
    font-family: 'Jost', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #054282;
    margin-bottom: 1.5rem;
    position: relative;
    letter-spacing: 0.5px;
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    transition: all 0.3s ease;
}

    .company-logo:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -5px;
        width: 40px;
        height: 2px;
        background: #4dd4ff;
        transition: width 0.3s ease;
    }

    .company-logo:hover:after {
        width: 100%;
    }

@media (max-width: 768px) {
    .company-logo {
        font-size: 1.75rem;
    }
}

.GetStartedBtn:hover {
    box-shadow: 0 8px 25px rgba(77, 212, 255, 0.5);
    transform: translateY(-2px);
    cursor: pointer;
}

.serviceCard {
    border-radius: 1.25rem !important;
}


/* Stats Section Styles */
.flip-card {
    background-color: transparent;
    perspective: 1000px;
    padding: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 200px;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(349deg, rgba(39, 102, 123, 1) 0%, rgba(65, 4, 69, 1) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(77, 212, 255, 0.5);
    transform: translateY(-2px);
    cursor: pointer;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(349deg, rgba(39, 102, 123, 1) 0%, rgba(65, 4, 69, 1) 100%);
}

.stats-card {
    transition: all 0.3s ease;
}

    .stats-card:hover {
        transform: translateY(-10px);
    }

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.count {
    animation: countUp 1s ease-out forwards;
}


/* About Us Section Styles */
#about {
    background-color: #f4f8ff; /* Light background for contrast */
    padding: 60px 120px; /* Top and bottom padding */
}

    #about .header {
        text-align: center; /* Center align header text */
        margin-bottom: 40px; /* Space below header */
    }

        #about .header h1 {
            color: #054282; /* Dark blue color for the title */
            font-weight: bold; /* Bold title */
            font-size: 2.5rem; /* Larger font size */
        }

        #about .header p {
            color: #333; /* Dark gray for subtitle */
            font-size: 1.2rem; /* Slightly larger font size */
        }

    #about .content-wrapper {
        display: flex; /* Flexbox for layout */
        justify-content: space-between; /* Space between image and text */
        /*align-items: center;*/ /* Center align items vertically */
        /*margin-top:0px;*/
    }

    #about .image-section {
        flex: 1.7; /* Allow image section to grow */
        margin-right: 20px; /* Space between image and text */
    }

    /*#about .image-section img {
    width: 100%;*/ /* Responsive image */
    /*border-radius: 10px;*/ /* Rounded corners */
    /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);*/ /* Subtle shadow */
    /*}*/

    #about .text-section {
        flex: 2.3; /* Allow text section to take more space */
        margin-left: 20px; /* Space between image and text */
    }

    #about .intro-text,
    #about .team-description {
        color: #555; /* Medium gray for text */
        line-height: 1.6; /* Better line spacing */
    }

    #about .features-list {
        list-style: none; /* Remove default list styling */
        padding: 0; /* Remove padding */
    }

        #about .features-list li {
            display: flex; /* Flexbox for checkmark and text */
            align-items: center; /* Center align items */
            margin-bottom: 10px; /* Space between list items */
        }

        #about .features-list .checkmark {
            width: 20px; /* Width for checkmark */
            height: 20px; /* Height for checkmark */
            background-color: #A855F7; /* Blue checkmark */
            background: #A855F7;
            border-radius: 50%; /* Circular checkmark */
            margin-right: 10px; /* Space between checkmark and text */
        }

.checkmark {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

    .checkmark::after {
        content: '✓';
        color: white;
        font-size: 14px;
        font-weight: bold;
    }

/* Light Grid Background */
.bg-grid {
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 4rem 4rem;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, #000 70%, transparent 110%);
    pointer-events: none;
}

/* Purple Glow (mouse-follow blob) */
#glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background-color: rgba(168, 85, 247, 0.15); /* lighter purple glow */
    filter: blur(120px);
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: -1;
}

/* Header */
#header {
    transition: all 0.3s ease;
    padding: 1rem 6%;
    z-index: 1000;
}

    #header.scrolled {
        background: rgba(17, 24, 39, 0.8);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0.8rem 6%;
    }

/* Logo */
.logo-box {
    width: 40px;
    height: 40px;
    background: linear-gradient(to bottom right, #a855f7, #8b5cf6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.logo-text {
    background: linear-gradient(to right, #c084fc, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.5rem;
}

.logo:hover .logo-box {
    transform: scale(1.1);
}

/* Navbar Links */
.nav-link {
    color: #e5e7eb;
    font-weight: 500;
    font-size: 18px !important; /* Slightly larger for better readability */
    position: relative;
    padding: 8px 0; /* Adds space for underline alignment */
    margin: 0 12px; /* Adds balanced spacing between links */
    transition: color 0.3s ease;
    display: inline-block; /* Helps align underline correctly */
}

    .nav-link:hover {
        color: #fff;
    }

    /* Underline effect */
    .nav-link::after {
        content: '';
        position: absolute;
        left: 12px;
        bottom: 0; /* Perfectly aligns under text */
        height: 2px;
        width: 0%;
        background: linear-gradient(to right, #a855f7, #8b5cf6); /* Purple gradient */
        border-radius: 2px;
        transition: width 0.3s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }


/* Gradient Button */
.btn-gradient {
    background: linear-gradient(to right, #a855f7, #8b5cf6);
    color: #fff;
    border: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

    .btn-gradient:hover {
        transform: scale(1.05);
        opacity: 0.9;
    }

/* Hero Section */
.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
}

.hero-subtitle {
    color: #d1d5db;
    font-size: 1.2rem;
}
#recaptcha {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
}

.recaptcha-wrapper {
    background: #ffffff;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

    .recaptcha-wrapper:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    }
