﻿body {
    font-family: 'Poppins',sans-serif;
    background: #f7f9fc;
    padding-top: 110px;
}

/* Navbar */

.custom-navbar {
    width: 90%;
    margin: 20px auto;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 60px;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
    padding: 14px 10px;
    transition: .3s;
}

.navbar-brand {
    color: #1d3557;
    font-weight: 700;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: #0d6efd;
    }

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 0;
        height: 2px;
        background: #0d6efd;
        transition: .3s;
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
        width: 100%;
    }

.btn-primary {
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
}

.dropdown-menu {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.dropdown-item {
    padding: 10px 18px;
}

    .dropdown-item:hover {
        background: #0d6efd;
        color: #fff;
    }

.navbar-toggler {
    color: #0d6efd;
}

/* Mobile */

@media (max-width:991px) {

    .custom-navbar {
        width: 95%;
        border-radius: 25px;
    }

    .navbar-collapse {
        margin-top: 20px;
        text-align: center;
    }

    .navbar-nav .nav-link {
        margin: 10px 0;
    }

    .btn-primary {
        margin-top: 15px;
        width: 100%;
    }
}

.hero-section {
    padding: 100px 0;
    background: #f8fbff;
}

/* Badge */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: #eef5ff;
    color: #0d6efd;
    border-radius: 40px;
    font-weight: 600;
}

    .hero-badge i {
        font-size: 18px;
    }

/* Title */

.hero-title {
    font-size: 62px;
    /*font-weight: 700;*/
    line-height: 1.15;
    color: #23395d;
}

    .hero-title span {
        color: #0d6efd;
    }

/* Text */

.hero-text {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.8;
}

/* Button */

.hero-btn {
    background: #0d6efd;
    color: #fff;
    border-radius: 40px;
    padding: 14px 35px;
    font-weight: 600;
}

    .hero-btn:hover {
        background: #0056d6;
        color: #fff;
    }

/* Image */

.hero-img {
    width: 100%;
    max-width: 600px;
    height: 500px;
    object-fit: cover;
    border-radius: 100px 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,.18);
    animation: float 4s ease-in-out infinite;
    transition: all .4s ease;
}

    .hero-img:hover {
        transform: scale(1.03);
        box-shadow: 0 35px 70px rgba(0,0,0,.25);
    }

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    25% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(-20px);
    }

    75% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Floating Card */

.floating-card {
    position: absolute;
    right: -44px;
    bottom: -43px;
    width: 280px;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

.user {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -10px;
    object-fit: cover;
}

    .user:first-child {
        margin-left: 0;
    }

.plus {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
    font-weight: 600;
}

/* Animation */

@keyframes float {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive */

@media (max-width:991px) {
    .hero-section {
        text-align: center;
        padding: 60px 0;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-text {
        font-size: 16px;
    }

    .floating-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin: 25px auto 0;
    }
}

@media (max-width:576px) {

    .hero-title {
        font-size: 34px;
    }

    .hero-btn {
        width: 100%;
    }

    .play-btn {
        width: 100%;
        justify-content: center;
        display: flex;
    }
}

.stats-section {
    background: #f7f9fc;
}

.stats-box {
    background: #fff;
    border-radius: 24px;
    padding: 55px 40px;
    box-shadow: 0 10px 35px rgba(0,0,0,.05);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 22px;
}

.icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    font-size: 32px;
    flex-shrink: 0;
}

.stat-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #23395d;
    line-height: 1.15;
    margin-bottom: 8px;
}

.stat-item p {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* Mobile */

@media (max-width:991px) {

    .stats-box {
        padding: 35px 25px;
    }

    .stat-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

        .stat-item h3 {
            font-size: 28px;
        }

    .icon {
        margin-bottom: 10px;
    }
}
/*=========================
    ABOUT SECTION
==========================*/

.about-section {
    padding: 90px 0;
    background: #fff;
}

/* Subtitle */

.about-subtitle {
    color: #0d6efd;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Title */

.about-title {
    font-size: 34px;
    /*font-weight: 700;*/
    color: #23395d;
    line-height: 1.2;
}

/* Text */

.about-text {
    color: #5f6d7a;
    line-height: 1.9;
    font-size: 17px;
    margin-bottom: 10px;
}

/* Feature List */

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .about-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 22px;
        color: #23395d;
        font-size: 17px;
        line-height: 1.6;
    }

    .about-list i {
        color: #0d6efd;
        font-size: 20px;
        margin-top: 3px;
    }

/*=========================
    IMAGE SECTION
==========================*/

.about-images {
    position: relative;
    min-height: 650px;
}

.main-img {
    width: 82%;
    float: right;
    border-radius: 25px;
    object-fit: cover;
    box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

/* Floating Image */

.small-img {
    position: absolute;
    left: 20px;
    bottom: 60px;
    width: 50%;
    height: 50%;
    border-radius: 22px;
    border: 8px solid #fff;
    box-shadow: 0 18px 40px rgba(0,0,0,.15);
}

/* Experience */

.experience-card {
    position: absolute;
    right: -48px;
    bottom: -64px;
    width: 250px;
    background: #0d6efd;
    color: #fff;
    text-align: center;
    padding: 28px 20px;
    border-radius: 20px;
    box-shadow: 0 18px 35px rgba(13,110,253,.35);
}

    .experience-card h1 {
        font-size: 64px;
        font-weight: 700;
        margin-bottom: 0;
    }

    .experience-card h5 {
        font-size: 24px;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .experience-card p {
        margin: 0;
        line-height: 1.6;
    }

/*=========================
   BOTTOM CARDS
==========================*/

.founder-card,
.call-card {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
    transition: .35s;
}

    .founder-card:hover,
    .call-card:hover {
        transform: translateY(-5px);
    }

.founder-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.founder-card h5 {
    margin: 0;
    font-weight: 700;
    color: #23395d;
}

.founder-card span {
    color: #0d6efd;
}

.call-card i {
    width: 65px;
    height: 65px;
    background: #eef5ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0d6efd;
    font-size: 28px;
}

.call-card small {
    color: #6c757d;
    display: block;
}

.call-card h5 {
    margin: 0;
    font-weight: 700;
    color: #23395d;
}

/*=========================
    IMAGE ANIMATION
==========================*/

.main-img {
    animation: floatMain 5s ease-in-out infinite;
}

.small-img {
    animation: floatSmall 4s ease-in-out infinite;
}

@keyframes floatMain {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes floatSmall {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0);
    }
}

/*=========================
      RESPONSIVE
==========================*/

@media (max-width:991px) {
    .about-title {
        font-size: 36px;
    }

    .about-images {
        min-height: auto;
        margin-top: 60px;
        text-align: center;
    }

    .main-img {
        width: 100%;
        float: none;
    }

    .small-img {
        position: relative;
        width: 70%;
        left: 0;
        bottom: auto;
        margin-top: -80px;
    }

    .experience-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin: 25px auto 0;
    }

    .founder-card,
    .call-card {
        margin-bottom: 15px;
    }
}

@media (max-width:576px) {
    .about-section {
        padding: 70px 0;
    }

    .about-title {
        font-size: 30px;
    }

    .about-text {
        font-size: 15px;
    }

    .about-list li {
        font-size: 15px;
    }

    .small-img {
        width: 85%;
        margin-top: 20px;
    }

    .experience-card {
        width: 100%;
        padding: 20px;
    }

        .experience-card h1 {
            font-size: 48px;
        }
}
/*=========================
      FEATURES SECTION
==========================*/

.features-section {
    padding: 90px 0;
    background: #fff;
}

/* Heading */

.section-title {
    font-size: 52px;
    font-weight: 700;
    color: #29476d;
    margin-bottom: 15px;
}

.title-line {
    width: 70px;
    height: 3px;
    background: #0d6efd;
    margin: 18px auto;
    border-radius: 10px;
}

.section-desc {
    max-width: 700px;
    margin: auto;
    color: #6c757d;
    font-size: 17px;
    line-height: 1.8;
}


/*=========================
        TABS
==========================*/

.feature-tabs {
    gap: 18px;
}

    .feature-tabs .nav-link {
        border: none;
        border-radius: 50px;
        padding: 14px 34px;
        background: transparent;
        color: #29476d;
        font-weight: 600;
        transition: .35s;
    }

        .feature-tabs .nav-link.active {
            background: #0d6efd;
            color: #fff;
            box-shadow: 0 10px 25px rgba(13,110,253,.25);
        }

        .feature-tabs .nav-link:hover {
            background: #eef5ff;
            color: #0d6efd;
        }


/*=========================
      LEFT CONTENT
==========================*/

.feature-heading {
    font-size: 46px;
    font-weight: 700;
    color: #29476d;
    line-height: 1.2;
}

.feature-line {
    width: 65px;
    height: 3px;
    background: #0d6efd;
    margin: 22px 0 30px;
    border-radius: 5px;
}

.feature-text {
    color: #6c757d;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 35px;
    font-style: italic;
}


/*=========================
      LIST
==========================*/

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .feature-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 20px;
        font-size: 17px;
        color: #3d4d61;
        line-height: 1.7;
    }

    .feature-list i {
        color: #0d6efd;
        font-size: 22px;
        margin-top: 2px;
    }


/*=========================
      IMAGE
==========================*/

.feature-image {
    max-width: 100%;
    height: 320px;
    animation: floatImage 5s ease-in-out infinite;
}

@keyframes floatImage {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}


/*=========================
      TAB ANIMATION
==========================*/

.tab-pane {
    animation: fadeMove .5s;
}

@keyframes fadeMove {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/*=========================
     RESPONSIVE
==========================*/

@media (max-width:991px) {
    .features-section {
        text-align: center;
    }

    .feature-heading {
        font-size: 36px;
    }

    .feature-line {
        margin: 20px auto 30px;
    }

    .feature-list li {
        justify-content: center;
        text-align: left;
    }

    .feature-image {
        margin-top: 35px;
        max-width: 85%;
    }
}


@media (max-width:576px) {
    .features-section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 38px;
    }

    .feature-heading {
        font-size: 30px;
    }

    .section-desc,
    .feature-text {
        font-size: 15px;
    }

    .feature-tabs {
        gap: 10px;
    }

        .feature-tabs .nav-link {
            padding: 10px 18px;
            font-size: 14px;
        }

    .feature-list li {
        font-size: 15px;
    }

    .feature-image {
        max-width: 100%;
    }
}
/*=========================
    FEATURE CARDS
==========================*/

.feature-cards {
    padding: 50px 0;
    background: #fff;
}

.feature-card {
    height: 100%;
    padding: 0 30px;
    border-radius: 22px;
    transition: .35s;
    position: relative;
    overflow: hidden;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 18px 40px rgba(0,0,0,.08);
    }

.icon-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 30px;
}

.feature-card h4 {
    font-size: 25px;
    font-weight: 500;
    color: #2b4368;
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-card p {
    color: #5f6d7a;
    line-height: 1.9;
    font-size: 16px;
}

/* Background Colors */

.card-yellow {
    background: #FFF4DF;
}

    .card-yellow .icon-box {
        color: #F0A633;
    }

.card-blue {
    background: #EAF3FF;
}

    .card-blue .icon-box {
        color: #0D6EFD;
    }

.card-green {
    background: #E9F9F0;
}

    .card-green .icon-box {
        color: #27AE60;
    }

.card-pink {
    background: #FDEEEF;
}

    .card-pink .icon-box {
        color: #F56C6C;
    }

/* Hover Left Border */

.feature-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 0;
    background: #0d6efd;
    transition: .4s;
}

.feature-card:hover::before {
    height: 100%;
}

/* Responsive */

@media (max-width:991px) {
    .feature-card {
        text-align: center;
        padding: 35px 25px;
    }

    .icon-box {
        margin: auto auto 25px;
    }

    .feature-card h4 {
        font-size: 26px;
    }
}

@media (max-width:576px) {
    .feature-cards {
        padding: 60px 0;
    }

    .feature-card {
        padding: 30px 22px;
    }

        .feature-card h4 {
            font-size: 22px;
        }

        .feature-card p {
            font-size: 15px;
        }
}
/*=========================
    SHOWCASE SECTION
==========================*/

.showcase-section {
    padding: 90px 0;
    background: #fff;
    overflow: hidden;
}

/* Phone */

.phone-wrapper {
    position: relative;
    display: inline-block;
}

.phone-image {
    max-width: 340px;
    width: 100%;
    animation: phoneFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 35px rgba(0,0,0,.18));
}

@keyframes phoneFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

/*=========================
        FEATURE BOX
==========================*/

.showcase-item {
    position: relative;
    padding: 10px 15px;
    transition: .35s;
}

    .showcase-item:hover {
        transform: translateY(-6px);
    }

/* Icon */

.showcase-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #f5f9ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: .35s;
    border: 1px solid #e8eef8;
}

.text-lg-end .showcase-icon {
    margin-left: auto;
}

.text-lg-start .showcase-icon {
    margin-right: auto;
}

.showcase-icon i {
    font-size: 30px;
    color: #0d6efd;
}

.showcase-item:hover .showcase-icon {
    background: #0d6efd;
    transform: rotate(8deg) scale(1.08);
}

    .showcase-item:hover .showcase-icon i {
        color: #fff;
    }

/* Heading */

.showcase-item h3 {
    font-size: 28px;
    font-weight: 700;
    color: #29476d;
    margin-bottom: 18px;
}

/* Paragraph */

.showcase-item p {
    font-size: 17px;
    line-height: 1.9;
    color: #6b7280;
}

/*=========================
        RESPONSIVE
==========================*/

@media (max-width:991px) {
    .showcase-section {
        text-align: center;
        padding: 70px 0;
    }

    .phone-wrapper {
        margin: 20px 0 40px;
    }

    .phone-image {
        max-width: 280px;
    }

    .showcase-icon {
        margin: 0 auto 20px;
    }

    .text-lg-end .showcase-icon,
    .text-lg-start .showcase-icon {
        margin: 0 auto 20px;
    }

    .showcase-item {
        margin-bottom: 40px;
    }

        .showcase-item h3 {
            font-size: 24px;
        }

        .showcase-item p {
            font-size: 16px;
        }
}

@media (max-width:576px) {
    .showcase-section {
        padding: 55px 0;
    }

    .phone-image {
        max-width: 220px;
    }

    .showcase-item {
        padding: 0 10px;
    }

        .showcase-item h3 {
            font-size: 21px;
        }

        .showcase-item p {
            font-size: 15px;
            line-height: 1.8;
        }

    .showcase-icon {
        width: 58px;
        height: 58px;
    }

        .showcase-icon i {
            font-size: 24px;
        }
}

.clients-section {
    background: #f8f9fa;
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    color: #0d6efd;
}

.client-logo {
    width: 180px;
    height: 90px;
    object-fit: contain;
    background: #fff;
    padding: 15px;
    margin: 0 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
    vertical-align: middle;
    transition: .3s;
}

    .client-logo:hover {
        transform: scale(1.08);
    }

.cta-section {
    background: linear-gradient(135deg,#0d6efd,#0047b3);
}

.cta-box {
    color: #fff;
    max-width: 800px;
    margin: auto;
}

    .cta-box h2 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .cta-box p {
        font-size: 18px;
        color: #e9ecef;
        margin-bottom: 30px;
    }

    .cta-box .btn {
        padding: 12px 35px;
        border-radius: 50px;
        font-weight: 600;
    }

    .cta-box .btn-outline-light:hover {
        background: #fff;
        color: #0d6efd;
    }

@media (max-width:768px) {

    .cta-box h2 {
        font-size: 28px;
    }

    .cta-box p {
        font-size: 16px;
    }

    .cta-box .btn {
        width: 100%;
        margin: 8px 0;
    }
}

.footer-section {
    background: #081828;
    color: #cfd8dc;
}

.footer-logo {
    max-height: 60px;
}

.footer-section h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section p {
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: #cfd8dc;
        text-decoration: none;
        transition: .3s;
    }

        .footer-links a:hover {
            color: #0d6efd;
            padding-left: 5px;
        }

.social-links a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
    text-decoration: none;
    transition: .3s;
}

    .social-links a:hover {
        background: #0d6efd;
        border-color: #0d6efd;
        transform: translateY(-4px);
    }

.footer-section hr {
    border-color: rgba(255,255,255,.15);
}

.copyright {
    color: #adb5bd;
    font-size: 15px;
}

@media (max-width:768px) {

    .footer-section {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

        .social-links a {
            margin: 5px;
        }
}

.page-banner {
    position: relative;
    background: url('images/banner.png') center center/cover no-repeat;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .page-banner .overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5));
    }

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

    .banner-content h1 {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

.breadcrumb {
    background: rgba(255,255,255,.12);
    display: inline-flex;
    padding: 12px 25px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: #ffc107;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}

@media (max-width:991px) {

    .page-banner {
        min-height: 260px;
    }

    .banner-content h1 {
        font-size: 38px;
    }
}

@media (max-width:576px) {

    .page-banner {
        min-height: 220px;
        padding: 30px 0;
    }

    .banner-content h1 {
        font-size: 28px;
    }

    .breadcrumb {
        padding: 10px 18px;
        font-size: 14px;
    }
}

.contact-section {
    background: #f8f9fa;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

    .contact-form .form-control {
        height: 55px;
        border-radius: 10px;
        border: 1px solid #ddd;
        box-shadow: none;
    }

    .contact-form textarea.form-control {
        height: auto;
    }

    .contact-form .form-control:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 .15rem rgba(13,110,253,.2);
    }

.contact-info {
    background: #0d6efd;
    color: #fff;
    padding: 40px;
    border-radius: 15px;
    height: 100%;
}

.info-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

    .info-box i {
        width: 60px;
        height: 60px;
        background: #fff;
        color: #0d6efd;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 22px;
        margin-right: 20px;
    }

    .info-box h5 {
        margin-bottom: 5px;
        font-weight: 700;
    }

    .info-box p {
        margin: 0;
        color: #e9ecef;
    }

@media (max-width:768px) {

    .contact-form,
    .contact-info {
        padding: 25px;
    }

    .info-box {
        flex-direction: column;
        text-align: center;
    }

        .info-box i {
            margin: 0 auto 15px;
        }
}

.pricing-section {
    background: #f4f8fc;
}

.pricing-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .4s;
    height: 100%;
}

    .pricing-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 45px rgba(13,110,253,.25);
    }

.featured {
    border: 3px solid #0d6efd;
}

.badge-plan {
    position: absolute;
    top: 18px;
    right: -40px;
    background: #0d6efd;
    color: #fff;
    padding: 8px 45px;
    transform: rotate(45deg);
    font-size: 13px;
    font-weight: 600;
}

.pricing-card h4 {
    font-size: 42px;
    color: #0d6efd;
    margin-top: 20px;
    font-weight: 700;
}

.pricing-card h6 {
    margin: 15px 0 25px;
    color: #666;
    font-size: 18px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

    .pricing-card ul li {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        color: #555;
    }

.btn-plan {
    background: linear-gradient(90deg,#0d6efd,#00b4ff);
    color: #fff;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

    .btn-plan:hover {
        background: linear-gradient(90deg,#0056d6,#0095e8);
        color: #fff;
    }

@media (max-width:768px) {

    .pricing-card h4 {
        font-size: 34px;
    }

    .badge-plan {
        font-size: 11px;
    }
}

.floating-card i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg,#2563eb,#06b6d4);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.floating-card h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 2px;
    color: #1e293b;
}

.floating-card small {
    color: #64748b;
    font-size: 14px;
}

.floating-card p {
    margin-top: 15px;
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: .3s ease;
}

    .logo-img:hover {
        transform: scale(1.05);
    }
/* Mobile */
@media (max-width:576px) {

    .logo-img {
        height: 42px;
    }
}

.about-us {
    background: #fff;
}

.about-tag {
    display: inline-block;
    color: #0d6efd;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    color: #0b1c39;
    line-height: 1.3;
}

.about-text {
    color: #666;
    line-height: 1.9;
    font-size: 16px;
}

.about-list {
    padding: 0;
    list-style: none;
}

    .about-list li {
        margin-bottom: 15px;
        font-size: 16px;
        color: #333;
    }

    .about-list i {
        color: #0d6efd;
        margin-right: 8px;
    }

.counter {
    font-size: 36px;
    color: #0d6efd;
    font-weight: 700;
}

.about-us img {
    transition: .4s;
}

    .about-us img:hover {
        transform: scale(1.03);
    }

@media (max-width:991px) {

    .about-title {
        font-size: 32px;
    }

    .counter {
        font-size: 28px;
    }
}

@media (max-width:576px) {

    .about-title {
        font-size: 28px;
    }

    .about-text,
    .about-list li {
        font-size: 15px;
    }

    .counter {
        font-size: 24px;
    }
}

.why-choose {
    background: #f8fbff;
}

.section-subtitle {
    color: #0d6efd;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin-top: 10px;
    color: #0b1c39;
}

.section-text {
    max-width: 650px;
    margin: auto;
    color: #666;
}

.choose-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    height: 100%;
}

    .choose-card:hover {
        transform: translateY(-10px);
    }

.choose-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin-bottom: 20px;
}

.choose-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.choose-card p {
    color: #666;
    line-height: 1.8;
}

@media (max-width:768px) {

    .section-title {
        font-size: 30px;
    }

    .choose-card {
        padding: 25px;
    }

    .choose-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }
}

.working-process {
    background: #f8fbff;
}

.process-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

    .process-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(13,110,253,.15);
    }

.step-number {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 42px;
    font-weight: 800;
    color: rgba(13,110,253,.4);
}

.process-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg,#0d6efd,#3ea8ff);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 38px;
    margin-bottom: 25px;
    transition: .4s;
}

.process-card:hover .process-icon {
    transform: rotateY(360deg) scale(1.1);
}

.process-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #0b1c39;
}

.process-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

.process-card::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,#0d6efd,#00c6ff);
    transform: scaleX(0);
    transition: .4s;
}

.process-card:hover::before {
    transform: scaleX(1);
}

/* Mobile */

@media (max-width:768px) {

    .process-card {
        padding: 25px 20px;
    }

    .process-icon {
        width: 75px;
        height: 75px;
        font-size: 30px;
    }

    .step-number {
        font-size: 32px;
    }
}

.our-services {
    background: #f8fbff;
}

.service-box {
    background: #fff;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

    .service-box i {
        width: 75px;
        height: 75px;
        background: #0d6efd;
        color: #fff;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: auto;
        font-size: 32px;
        margin-bottom: 20px;
        transition: .4s;
    }

    .service-box:hover {
        transform: translateY(-10px);
    }

        .service-box:hover i {
            transform: rotate(360deg);
            background: #001f5c;
        }

    .service-box h4 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .service-box p {
        color: #666;
        line-height: 1.8;
    }

.technology-section {
    background: #f8fbff;
}

.tech-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: .4s;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    border: 1px solid #eef2f7;
}

    .tech-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(13,110,253,.15);
    }

    .tech-card img {
        width: 70px;
        height: 70px;
        object-fit: contain;
        transition: .5s;
    }

    .tech-card:hover img {
        transform: scale(1.15) rotate(8deg);
    }

    .tech-card h6 {
        margin-top: 18px;
        margin-bottom: 0;
        font-size: 17px;
        font-weight: 700;
        color: #0b1c39;
    }

/* Floating Animation */

.tech-card {
    animation: floatTech 4s ease-in-out infinite;
}

    .tech-card:nth-child(even) {
        animation-delay: .6s;
    }

@keyframes floatTech {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* Responsive */

@media (max-width:991px) {

    .tech-card {
        padding: 25px 15px;
    }

        .tech-card img {
            width: 60px;
            height: 60px;
        }
}

@media (max-width:576px) {

    .tech-card {
        padding: 20px 12px;
    }

        .tech-card img {
            width: 50px;
            height: 50px;
        }

        .tech-card h6 {
            font-size: 15px;
        }
}

.gallery-section {
    background: #f8fbff;
}

.masonry-gallery {
    column-count: 4;
    column-gap: 18px;
}

    .masonry-gallery a {
        display: block;
        margin-bottom: 18px;
        overflow: hidden;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,.08);
    }

    .masonry-gallery img {
        width: 100%;
        display: block;
        border-radius: 15px;
        transition: .5s;
    }

    .masonry-gallery a:hover img {
        transform: scale(1.08);
    }

/* Tablet */

@media (max-width:992px) {

    .masonry-gallery {
        column-count: 3;
    }
}

/* Mobile */

@media (max-width:768px) {

    .masonry-gallery {
        column-count: 2;
        column-gap: 12px;
    }

        .masonry-gallery a {
            margin-bottom: 12px;
        }
}

/* Small Mobile */

@media (max-width:480px) {

    .masonry-gallery {
        column-count: 1;
    }
}

.software-about {
    background: #fff;
}

.software-image {
    position: relative;
}

    .software-image img {
        width: 100%;
        border-radius: 25px;
        transition: .5s;
        animation: floatImg 5s ease-in-out infinite;
    }

        .software-image img:hover {
            transform: scale(1.03);
        }

.experience-box {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: #0d6efd;
    color: #fff;
    padding: 22px 28px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(13,110,253,.30);
}

    .experience-box h3 {
        margin: 0;
        font-size: 36px;
        font-weight: 700;
    }

    .experience-box span {
        font-size: 15px;
    }

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .about-list li {
        margin-bottom: 15px;
        color: #555;
        font-size: 16px;
    }

    .about-list i {
        color: #0d6efd;
        margin-right: 8px;
    }

@keyframes floatImg {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@media (max-width:991px) {

    .experience-box {
        position: relative;
        right: 0;
        bottom: 0;
        width: fit-content;
        margin: 20px auto 0;
    }
}

.software-categories {
    background: #f8fbff;
}

.category-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    transition: .4s;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    border: 1px solid #eef2f7;
}

    .category-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 18px 40px rgba(13,110,253,.15);
    }

    .category-card i {
        font-size: 48px;
        color: #0d6efd;
        margin-bottom: 20px;
        transition: .4s;
    }

    .category-card:hover i {
        transform: rotateY(360deg);
        color: #0056d6;
    }

    .category-card h5 {
        font-weight: 700;
        margin-bottom: 12px;
        color: #0b1c39;
    }

    .category-card p {
        color: #666;
        line-height: 1.7;
        margin: 0;
    }

@media (max-width:768px) {

    .category-card {
        padding: 25px 20px;
    }

        .category-card i {
            font-size: 40px;
        }
}
.pricing {
    animation: float 4s ease-in-out infinite;
    border-radius:25px;
}
    .pricing .card:hover {
        border-left:4px solid #0D6EFD;
    }
.package-list{
    list-style:none;
    padding:0;
    margin:25px 0;
}

.package-list li{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:14px;
    font-size:15px;
    color:#555;
    line-height:1.6;
}

.package-list li i{
    color:#28a745;
    font-size:18px;
    margin-top:3px;
}

.package-list small{
    color:#888;
}
.package-icon{
    width:50px;
    height:50px;
    margin:10px auto 20px;
    border-radius:5px;
    overflow:hidden;
    transition:.4s ease;
    box-shadow:0 10px 25px rgba(13,110,253,.15);
}

.package-icon img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.price-btn {
    background:#0D6EFD;
    color:white;
    padding:10px;
    border-radius:20px;
}
.portfolio-filter{
    padding:0;
    margin:0;
}

.portfolio-filter li{
    display:inline-block;
    padding:10px 22px;
    margin:6px;
    border-radius:40px;
    background:#f3f5f8;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}

.portfolio-filter li:hover,
.portfolio-filter li.active{
    background:#0d6efd;
    color:#fff;
}

.portfolio-item{
    overflow:hidden;
}

.portfolio-item img{
    width:100%;
    height:190px;
    object-fit:cover;
    border-radius:18px;
    transition:.5s;
}

