/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: #444444;
}

a {
    color: #f4932a;
    text-decoration: none;
}

a:hover {
    color: #012970;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "poppins", sans-serif;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
    padding: 50px 0;
    overflow: hidden;
}

.section-header {
    text-align: center;
    padding-bottom: 40px;
}

.section-header h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    margin: 0;
    color: #f4932a;
    text-transform: uppercase;
}

.section-header p {
    margin: 10px 0 0 0;
    padding: 0;
    font-size: 38px;
    line-height: 42px;
    font-weight: 700;
    color: #012970;
}

@media (max-width: 768px) {
    .section-header p {
        font-size: 28px;
        line-height: 32px;
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
    height: 500px !important;
}

.breadcrumbs_image {
    width: 70%;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 57px;
        height: 100% !important;
    }
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 500;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol a {
    color: #fff;
    transition: 0.3s;
}

.breadcrumbs ol a:hover {
    text-decoration: underline;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #8894f6;
    content: "/";
}

.breadcrumbs .animated {
    animation: zoom-out 2s ease-in-out infinite alternate-reverse both;
}

@keyframes zoom-out {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 100px;
    z-index: 0;
    background: #f4932a;
    width: 45px;
    height: 60px;
    border-radius: 40px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 1.8rem;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #012970;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

.bottom_animated {
    animation: top-down 2s ease-in-out infinite alternate-reverse;
}

@keyframes top-down {
    0% {
        transform: translateY(10px);
        background-color: #012970;
        border-radius: 0;
    }

    100% {
        transform: translateY(-10px);
        background-color: #f68c09;
    }
}



/* -----------------------------------------------------------
  #Pre Loader
--------------------------------------------------------------*/
#preloader {
    background: #fff;
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 99999;
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    width: 160px;
    height: 100px;
    margin-left: -80px;
    margin-top: -50px;
    border-radius: 5px;
    background: #1e3f57;
    animation: dot1_ 3s cubic-bezier(0.55, 0.3, 0.24, 0.99) infinite;
}

.loader:nth-child(2) {
    z-index: 11;
    width: 150px;
    height: 90px;
    margin-top: -45px;
    margin-left: -75px;
    border-radius: 3px;
    background: #3c517d;
    animation-name: dot2_;
}

.loader:nth-child(3) {
    z-index: 12;
    width: 40px;
    height: 20px;
    margin-top: 50px;
    margin-left: -20px;
    border-radius: 0 0 5px 5px;
    background: #6bb2cd;
    animation-name: dot3_;
}

@keyframes dot1_ {

    3%,
    97% {
        width: 160px;
        height: 100px;
        margin-top: -50px;
        margin-left: -80px;
    }

    30%,
    36% {
        width: 80px;
        height: 120px;
        margin-top: -60px;
        margin-left: -40px;
    }

    63%,
    69% {
        width: 40px;
        height: 80px;
        margin-top: -40px;
        margin-left: -20px;
    }
}

@keyframes dot2_ {

    3%,
    97% {
        height: 90px;
        width: 150px;
        margin-left: -75px;
        margin-top: -45px;
    }

    30%,
    36% {
        width: 70px;
        height: 96px;
        margin-left: -35px;
        margin-top: -48px;
    }

    63%,
    69% {
        width: 32px;
        height: 60px;
        margin-left: -16px;
        margin-top: -30px;
    }
}

@keyframes dot3_ {

    3%,
    97% {
        height: 20px;
        width: 40px;
        margin-left: -20px;
        margin-top: 50px;
    }

    30%,
    36% {
        width: 8px;
        height: 8px;
        margin-left: -5px;
        margin-top: 49px;
        border-radius: 8px;
    }

    63%,
    69% {
        width: 16px;
        height: 4px;
        margin-left: -8px;
        margin-top: -37px;
        border-radius: 10px;
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Legal Pages (Privacy Policy & Terms and Conditions)
--------------------------------------------------------------*/
.legal-page {
    padding: 30px 0 60px;
}

.legal-page h1 {
    color: #012970;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.legal-page h1:after {
    content: '';
    position: absolute;
    display: block;
    width: 80px;
    height: 3px;
    background: #f4932a;
    bottom: 0;
    left: 0;
}

.legal-page h2 {
    color: #012970;
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 15px 0;
}

.legal-page h3 {
    color: #013289;
    font-size: 20px;
    font-weight: 500;
    margin: 25px 0 15px 0;
}

.legal-page p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #444;
}

.legal-page ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.legal-page ul li {
    margin-bottom: 10px;
    position: relative;
    line-height: 1.6;
}

.legal-page .last-updated {
    font-style: italic;
    color: #6c757d;
    margin-bottom: 30px;
    font-size: 14px;
}

.legal-page .section-divider {
    height: 1px;
    background: #e9ecef;
    margin: 40px 0;
}

.legal-page .contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    border-left: 4px solid #f4932a;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .legal-page h1 {
        font-size: 28px;
    }

    .legal-page h2 {
        font-size: 22px;
    }

    .legal-page h3 {
        font-size: 18px;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
}

.header.header-scrolled {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header .logo {
    line-height: 0;
}

.header .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.header .logo span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #012970;
    font-family: "poppins", sans-serif;
    margin-top: 3px;
}

/*--------------------------------------------------------------
# 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-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #013289;
    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: #f4932a;
}

.navbar .getstarted,
.navbar .getstarted:focus {
    background: #f4932a;
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    color: #fff;
    background: #012970;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    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;
    max-width: initial;
}

.navbar .dropdown ul li {
    min-width: auto;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
}

.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: #f4932a;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .megamenu {
    position: static;
}

.navbar .megamenu ul {
    margin-top: 5px;
    right: 0;
    /* padding: 10px; */
    display: flex;
    align-items: start;
}

.navbar .megamenu ul li {
    flex: 1;
}

.navbar .megamenu ul li a,
.navbar .megamenu ul li:hover>a {
    color: #013289;
}

.navbar .megamenu ul li a:hover,
.navbar .megamenu ul li .active,
.navbar .megamenu ul li .active:hover {
    color: #f4932a;
}

.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: #012970;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 1200px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(1, 22, 61, 0.9);
    transition: 0.3s;
}

.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: #012970;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #f4932a;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.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: #f4932a;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    height: 100vh;
    background: url(../img/hero-bg.png) top center no-repeat;
    background-size: cover;
}

.hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    color: #012970;
    margin: 0 0 10px 0;
}

.hero h2 {
    color: #444444;
    margin: 15px 0;
    font-size: 30px;
}

.hero .btn-get-started {
    margin-top: 30px;
    line-height: 0;
    padding: 15px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #f4932a;
    box-shadow: 0px 5px 30px rgba(247, 147, 42, 0.4);
}

.hero .btn-get-started span {
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}

.hero .btn-get-started i {
    margin-left: 5px;
    font-size: 18px;
    transition: 0.3s;
}

.hero .btn-get-started:hover i {
    transform: translateX(5px);
}

.hero .hero-img {
    text-align: right;
}

.hero .hero-benefits {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0 30px;
    gap: 15px;
}

.hero .benefit-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    margin-right: 10px;
    transition: all 0.3s;
}

.hero .benefit-item:hover {
    background: rgba(244, 147, 42, 0.2);
    transform: translateY(-3px);
}

.hero .benefit-item i {
    color: #f4932a;
    font-size: 18px;
    margin-right: 8px;
}

.hero .benefit-item span {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
}

@media (max-width: 768px) {
    .hero .hero-benefits {
        flex-direction: column;
        gap: 10px;
    }

    .hero .benefit-item {
        width: fit-content;
    }
}

.animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

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

@media (min-width: 1024px) {
    .hero {
        background-attachment: fixed;
    }
}

@media (max-width: 991px) {
    .hero {
        height: auto;
        padding: 120px 0 60px 0;
    }

    .hero .hero-img {
        text-align: center;
        margin-top: 80px;
    }

    .hero .hero-img img {
        width: 80%;
    }

    .hero .animated {
        animation: none;
    }
}

@media (max-width: 768px) {
    .hero {
        text-align: center;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero h2 {
        font-size: 24px;
    }

    .hero .hero-img img {
        width: 100%;
    }
}

/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content {
    background-color: #f6f9ff;
    padding: 40px;
}

.about h3 {
    font-size: 14px;
    font-weight: 700;
    color: #f4932a;
    text-transform: uppercase;
}

.about h2 {
    font-size: 17px;
    font-weight: 600;
    color: #012970;
}

.about p {
    margin: 15px 0 30px 0;
    line-height: 25px;
    font-size: 15px;
}

.about .btn-read-more {
    line-height: 0;
    padding: 15px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #f4932a;
    box-shadow: 0px 5px 30px rgba(247, 147, 42, 0.4);
}

.about .btn-read-more span {
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}

.about .btn-read-more i {
    margin-left: 5px;
    font-size: 18px;
    transition: 0.3s;
}

.about .btn-read-more:hover i {
    transform: translateX(5px);
}

.vision-mission .box {
    padding: 30px;
    box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08);
    text-align: start;
    transition: 0.3s;
    height: 100%;
}

.vision-mission .box img {
    width: 14%;
}

.vision-mission .box h3 {
    font-size: 24px;
    color: #f4932a;
    font-weight: 700;
    margin-top: 18px;
}

/*--------------------------------------------------------------
# Values
--------------------------------------------------------------*/
.values .box {
    padding: 30px;
    box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08);
    text-align: center;
    transition: 0.3s;
    height: 100%;
}

.values .box img {
    padding: 30px 50px;
    transition: 0.5s;
    transform: scale(1.1);
}

.values .box h3 {
    font-size: 24px;
    color: #012970;
    font-weight: 700;
    margin-bottom: 18px;
}

.values .box:hover {
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}

.values .box:hover img {
    transform: scale(1);
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
    padding: 70px 0 60px;
}

.counts .count-box {
    display: flex;
    align-items: center;
    padding: 30px;
    width: 100%;
    background: #fff;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}

.counts .count-box i {
    font-size: 42px;
    line-height: 0;
    margin-right: 20px;
    color: #f4932a;
}

.counts .count-box img {
    margin-right: 20px;
}

.counts .count-box span {
    font-size: 36px;
    display: block;
    font-weight: 600;
    color: #0b198f;
}

.counts .count-box p {
    padding: 0;
    margin: 0;
    font-family: "Nunito", sans-serif;
    font-size: 14px;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .feature-box {
    padding: 24px 20px;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
    transition: 0.3s;
    height: 100%;
}

.features .feature-box h3 {
    font-size: 18px;
    color: #012970;
    font-weight: 700;
    margin: 0;
}

.features .feature-box i {
    line-height: 0;
    background: #ecf3ff;
    padding: 4px;
    margin-right: 10px;
    font-size: 24px;
    border-radius: 3px;
    transition: 0.3s;
}

.features .feature-box:hover i {
    background: #f4932a;
    color: #fff;
}

.features .feture-tabs {
    margin-top: 120px;
}

.features .feture-tabs h3 {
    color: #012970;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .features .feture-tabs h3 {
        font-size: 28px;
    }
}

.features .feture-tabs .nav-pills {
    border-bottom: 1px solid #eee;
}

.features .feture-tabs .nav-link {
    background: none;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    color: #012970;
    padding: 12px 0;
    margin-right: 25px;
    margin-bottom: -2px;
    border-radius: 0;
}

.features .feture-tabs .nav-link.active {
    color: #f4932a;
    border-bottom: 3px solid #f4932a;
}

.features .feture-tabs .tab-content h4 {
    font-size: 18px;
    margin: 0;
    font-weight: 700;
    color: #012970;
}

.features .feture-tabs .tab-content i {
    font-size: 24px;
    line-height: 0;
    margin-right: 8px;
    color: #f4932a;
}

.features .feature-icons {
    margin-top: 40px;
}

.features .feature-icons h3 {
    color: #012970;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .features .feature-icons h3 {
        font-size: 28px;
    }
}

.features .feature-icons .content .icon-box {
    display: flex;
}

.features .feature-icons .content .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #012970;
}

.features .feature-icons .content .icon-box i {
    font-size: 44px;
    line-height: 44px;
    color: #f4932a;
    margin-right: 15px;
}

.features .feature-icons .content .icon-box p {
    font-size: 15px;
    color: #848484;
}

.features .nav-tabs {
    border: 0;
}

.features .nav-link {
    border: 0;
    padding: 25px 20px;
    color: #485664;
    box-shadow: 5px 5px 25px rgba(72, 86, 100, 0.15);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: 0s;
    cursor: pointer;
    height: 100%;
}

.features .nav-link i {
    font-size: 32px;
    line-height: 0;
}

.features .nav-link h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0 0 0;
    color: #485664;
}

.features .nav-link:hover {
    color: var(--color-primary);
}

.features .nav-link.active {
    transition: 0.3s;
    background: #f4932a;
    border-color: var(--color-primary);
    color: #fff;
}

.features .nav-link.active h4 {
    color: var(--color-white);
}

.features .nav-link.active i {
    color: var(--color-white) !important;
}

.features .tab-content {
    margin-top: 30px;
}

.features .tab-pane.active {
    animation: fadeIn 0.5s ease-out;
}

.features .tab-pane h3 {
    font-weight: 600;
    font-size: 2rem;
    color: #012970;
    margin: 0 0 13px 0;
}

.features .tab-pane ul {
    list-style: none;
    padding: 0;
}

.features .tab-pane ul li {
    padding-bottom: 10px;
}

.features .tab-pane ul i {
    font-size: 24px;
    margin-right: 4px;
    color: #f4932a;
}

.features .tab-pane p:last-child {
    margin-bottom: 0;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .service-box {
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
    height: 100%;
    padding: 60px 30px;
    text-align: center;
    transition: 0.3s;
    border-radius: 5px;
}

.services .service-box .icon {
    font-size: 36px;
    padding: 40px 20px;
    border-radius: 4px;
    position: relative;
    margin-bottom: 25px;
    display: inline-block;
    line-height: 0;
    transition: 0.3s;
}

.services .service-box h3 {
    color: #444444;
    font-size: 24px;
    font-weight: 700;
}

.services .service-box .read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 20px;
}

.services .service-box .read-more i {
    line-height: 0;
    margin-left: 5px;
    font-size: 18px;
}

.services .service-box.blue {
    border-bottom: 3px solid #2db6fa;
}

.services .service-box.blue .icon {
    color: #2db6fa;
    background: #dbf3fe;
}

.services .service-box.blue .read-more {
    color: #2db6fa;
}

.services .service-box.blue:hover {
    background: #2db6fa;
}

.services .service-box.orange {
    border-bottom: 3px solid #f68c09;
}

.services .service-box.orange .icon {
    color: #f68c09;
    background: #fde3c4;
}

.services .service-box.orange .read-more {
    color: #f68c09;
}

.services .service-box.orange:hover {
    background: #f68c09;
}

.services .service-box.green {
    border-bottom: 3px solid #08da4e;
}

.services .service-box.green .icon {
    color: #08da4e;
    background: #cffddf;
}

.services .service-box.green .read-more {
    color: #08da4e;
}

.services .service-box.green:hover {
    background: #08da4e;
}

.services .service-box.red {
    border-bottom: 3px solid #e9222c;
}

.services .service-box.red .icon {
    color: #e9222c;
    background: #fef7f8;
}

.services .service-box.red .read-more {
    color: #e9222c;
}

.services .service-box.red:hover {
    background: #e9222c;
}

.services .service-box.purple {
    border-bottom: 3px solid #b50edf;
}

.services .service-box.purple .icon {
    color: #b50edf;
    background: #f8e4fd;
}

.services .service-box.purple .read-more {
    color: #b50edf;
}

.services .service-box.purple:hover {
    background: #b50edf;
}

.services .service-box.pink {
    border-bottom: 3px solid #f51f9c;
}

.services .service-box.pink .icon {
    color: #f51f9c;
    background: #feecf7;
}

.services .service-box.pink .read-more {
    color: #f51f9c;
}

.services .service-box.pink:hover {
    background: #f51f9c;
}

.services .service-box:hover h3,
.services .service-box:hover p,
.services .service-box:hover .read-more {
    color: #fff;
}

.services .service-box:hover .icon {
    background: #fff;
}

#services .animated {
    animation: in-out 2s ease-in-out infinite alternate-reverse both;
}

@keyframes in-out {
    0% {
        transform: scale(1) rotate(3deg);
    }

    100% {
        transform: scale(1.1) rotate(-3deg);
    }
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
    padding: 40px 20px;
    background: #fff;
    text-align: center;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.pricing .box:hover {
    transform: scale(1.1);
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.pricing h3 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
}

.pricing .price {
    font-size: 36px;
    color: #444444;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

.pricing .price sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
}

.pricing .price span {
    color: #bababa;
    font-size: 16px;
    font-weight: 300;
}

.pricing img {
    padding: 30px 40px;
}

.pricing ul {
    padding: 0;
    list-style: none;
    color: #444444;
    text-align: center;
    line-height: 26px;
    font-size: 16px;
    margin-bottom: 25px;
}

.pricing ul li {
    padding-bottom: 10px;
}

.pricing ul .na {
    color: #ccc;
    text-decoration: line-through;
}

.pricing .btn-buy {
    display: inline-block;
    padding: 8px 40px 10px 40px;
    border-radius: 50px;
    color: #f4932a;
    transition: none;
    font-size: 16px;
    font-weight: 400;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    transition: 0.3s;
    border: 1px solid #f4932a;
}

.pricing .btn-buy:hover {
    background: #f4932a;
    color: #fff;
}

.pricing .featured {
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px 0;
    background: #f4932a;
    color: #fff;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq {
    background: #f6f9ff;
}

.faq .accordion-collapse {
    border: 0;
}

.faq .accordion-button {
    padding: 15px 15px 20px 0;
    font-weight: 600;
    border: 0;
    font-size: 18px;
    color: #444444;
    text-align: left;
}

.faq .accordion-button:focus {
    box-shadow: none;
}

.faq .accordion-button:not(.collapsed) {
    background: none;
    color: #f4932a;
    border-bottom: 0;
}

.faq .accordion-body {
    padding: 0 0 25px 0;
    border: 0;
}

.faq .accordion-item {
    margin: 15px 0;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #fff;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 25px auto;
    list-style: none;
    text-align: center;
    background: white;
    border-radius: 50px;
    padding: 2px 15px;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 20px 10px 20px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    color: #444444;
    margin: 0 4px 8px 4px;
    transition: 0.3s;
    border-radius: 50px;
    border: 1px solid #fff;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    color: #f4932a;
    border-color: #f4932a;
}

.portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

.portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(255, 255, 255, 0.75);
}

.portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(255, 255, 255, 0.75);
    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
    bottom: 30px;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
}

.portfolio .portfolio-wrap img {
    transition: 1s;
}

.portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    top: 35px;
    left: 35px;
    border-top: 3px solid rgba(1, 41, 112, 0.2);
    border-left: 3px solid rgba(1, 41, 112, 0.2);
    transition: all 0.5s ease 0s;
    z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    bottom: 35px;
    right: 35px;
    border-bottom: 3px solid rgba(1, 41, 112, 0.2);
    border-right: 3px solid rgba(1, 41, 112, 0.2);
    transition: all 0.5s ease 0s;
    z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #012970;
    font-weight: 700;
}

.portfolio .portfolio-wrap .portfolio-info p {
    color: #012970;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
    text-align: center;
    z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
    color: #fff;
    background: #f4932a;
    margin: 10px 2px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a i {
    font-size: 24px;
    line-height: 0;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
    background: #012970;
}

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

.portfolio .portfolio-wrap:hover::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
    top: 15px;
    left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
    bottom: 15px;
    right: 15px;
}

/*--------------------------------------------------------------
# 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 #f4932a;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #f4932a;
}

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 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;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 30px;
    margin: 40px 30px;
    box-shadow: 0px 0 20px rgba(1, 41, 112, 0.1);
    background: #fff;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: 0.3s;
}

.testimonials .testimonial-item .stars {
    margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    border: 4px solid #fff;
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #111;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #f4932a;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #f4932a;
}

.testimonials .swiper-slide {
    opacity: 0.3;
}

@media (max-width: 1199px) {
    .testimonials .swiper-slide-active {
        opacity: 1;
    }

    .testimonials .swiper-pagination {
        margin-top: 0;
    }
}

@media (min-width: 1200px) {
    .testimonials .swiper-slide-next {
        opacity: 1;
        transform: scale(1.12);
    }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
    background: #fff;
    padding: 60px 0;
}

.team .member {
    overflow: hidden;
    text-align: center;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
    transition: 0.3s;
}

.team .member .member-img {
    position: relative;
    overflow: hidden;
}

.team .member .member-img:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: url(../img/team-shape.svg) no-repeat center bottom;
    background-size: contain;
    z-index: 1;
}

.team .member .social {
    position: absolute;
    right: -100%;
    top: 30px;
    opacity: 0;
    border-radius: 4px;
    transition: 0.5s;
    background: rgba(255, 255, 255, 0.3);
    z-index: 2;
}

.team .member .social a {
    transition: color 0.3s;
    color: rgba(1, 41, 112, 0.5);
    margin: 15px 12px;
    display: block;
    line-height: 0;
    text-align: center;
}

.team .member .social a:hover {
    color: rgba(226, 148, 23, 0.8);
}

.team .member .social i {
    font-size: 18px;
}

.team .member .member-info {
    padding: 10px 15px 20px 15px;
}

.team .member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
    color: #012970;
}

.team .member .member-info span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #aaaaaa;
}

.team .member .member-info p {
    font-style: italic;
    font-size: 14px;
    padding-top: 15px;
    line-height: 26px;
    color: #5e5e5e;
}

.team .member:hover {
    transform: scale(1.08);
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.team .member:hover .social {
    right: 8px;
    opacity: 1;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .clients-slider .swiper-slide img {
    opacity: 0.5;
    transition: 0.3s;
}

.clients .clients-slider .swiper-slide img:hover {
    opacity: 1;
}

.clients .clients-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.clients .clients-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #f4932a;
}

.clients .clients-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #f4932a;
}

/*--------------------------------------------------------------
# Recent Blog Posts
--------------------------------------------------------------*/
.recent-blog-posts .post-box {
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
    transition: 0.3s;
    height: 100%;
    overflow: hidden;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.recent-blog-posts .post-box .post-img {
    overflow: hidden;
    margin: -30px -30px 15px -30px;
    position: relative;
}

.recent-blog-posts .post-box .post-img img {
    transition: 0.5s;
}

.recent-blog-posts .post-box .post-date {
    font-size: 16px;
    font-weight: 600;
    color: rgba(1, 41, 112, 0.6);
    display: block;
    margin-bottom: 10px;
}

.recent-blog-posts .post-box .post-title {
    font-size: 20px;
    color: #012970;
    font-weight: 600;
    margin-bottom: 18px;
    position: relative;
    transition: 0.3s;
}

.recent-blog-posts .post-box .readmore {
    display: flex;
    align-items: center;
    font-weight: 600;
    line-height: 1;
    transition: 0.3s;
}

.recent-blog-posts .post-box .readmore i {
    line-height: 0;
    margin-left: 4px;
    font-size: 18px;
}

.recent-blog-posts .post-box:hover .post-title {
    color: #f4932a;
}

.recent-blog-posts .post-box:hover .post-img img {
    transform: rotate(6deg) scale(1.2);
}

.full_img {
    width: 100%;
    height: 650px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
    color: #444444;
    background: #fafbff;
    padding: 30px;
    height: 100%;
}

.contact .info-box i {
    font-size: 38px;
    line-height: 0;
    color: #f4932a;
}

.contact .info-box h3 {
    font-size: 20px;
    color: #012970;
    font-weight: 700;
    margin: 20px 0 10px 0;
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.contact .php-email-form {
    background: #fafbff;
    padding: 30px;
    height: 100%;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 0;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #f4932a;
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"] {
    padding: 10px 15px;
}

.contact .php-email-form textarea {
    padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
    background: #f4932a;
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: #012970;
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 575px) {
    .contact .php-email-form {
        padding: 30px 0;
    }
}

@media screen and (max-width: 400px) {
    .blog .entry .entry-title {
        font-size: 20px !important;
    }

    .blog .entry .entry-meta ul {
        gap: 10px;
    }

    .blog .entry .entry-meta ul li+li,
    .blog .blog-comments .comment.comment-reply {
        padding-left: 0 !important;
    }

    .blog .entry .entry-content blockquote {
        padding: 60px 10px !important;
    }

    .blog .entry .entry-content blockquote p {
        font-size: 16px !important;
    }

    .blog .blog-author {
        flex-wrap: wrap;
        gap: 15px;
    }

    .blog .sidebar {
        margin: 0 0 60px 0 !important;
        padding: 30px 15px !important;
    }

    .blog .entry {
        padding: 30px 15px !important;
    }
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
    padding: 40px 0 20px 0;
}

.blog .entry {
    padding: 30px;
    margin-bottom: 60px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
    max-height: 440px;
    margin: -30px -30px 20px -30px;
    overflow: hidden;
}

.blog .entry .entry-title {
    font-size: 28px;
    font-weight: bold;
    padding: 0;
    margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
    color: #012970;
    transition: 0.3s;
}

.blog .entry .entry-title a:hover {
    color: #f4932a;
}

.blog .entry .entry-meta {
    margin-bottom: 15px;
    color: #4084fd;
}

.blog .entry .entry-meta ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.blog .entry .entry-meta ul li+li {
    padding-left: 20px;
}

.blog .entry .entry-meta i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
}

.blog .entry .entry-meta a {
    color: #777777;
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

.blog .entry .entry-content p {
    line-height: 24px;
}

.blog .entry .entry-content .read-more {
    -moz-text-align-last: right;
    text-align-last: right;
}

.blog .entry .entry-content .read-more a {
    display: inline-block;
    background: #f4932a;
    color: #fff;
    padding: 6px 20px;
    transition: 0.3s;
    font-size: 14px;
    border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
    background: #012970;
}

.blog .entry .entry-content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}

.blog .entry .entry-content blockquote {
    overflow: hidden;
    background-color: #fafafa;
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
    color: #444444;
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #012970;
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog .entry .entry-footer {
    padding-top: 10px;
    border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
    color: #0d64fd;
    display: inline;
}

.blog .entry .entry-footer a {
    color: #013289;
    transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
    color: #f4932a;
}

.blog .entry .entry-footer .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
}

.blog .entry .entry-footer .cats li {
    display: inline-block;
}

.blog .entry .entry-footer .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
}

.blog .entry .entry-footer .tags li {
    display: inline-block;
}

.blog .entry .entry-footer .tags li+li::before {
    padding-right: 6px;
    color: #6c757d;
    content: ",";
}

.blog .entry .entry-footer .share {
    font-size: 16px;
}

.blog .entry .entry-footer .share i {
    padding-left: 5px;
}

.blog .entry-single {
    margin-bottom: 30px;
}

.blog .blog-author {
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
    width: 120px;
    margin-right: 20px;
}

.blog .blog-author h4 {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 0px;
    padding: 0;
    color: #012970;
}

.blog .blog-author .social-links {
    margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
    color: rgba(1, 41, 112, 0.5);
    margin-right: 5px;
}

.blog .blog-author p {
    font-style: italic;
    color: #b7b7b7;
}

.blog .blog-comments {
    margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
    font-weight: bold;
}

.blog .blog-comments .comment {
    margin-top: 30px;
    position: relative;
}

.blog .blog-comments .comment .comment-img {
    margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
    width: 60px;
}

.blog .blog-comments .comment h5 {
    font-size: 16px;
    margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
    font-weight: bold;
    color: #444444;
    transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
    color: #f4932a;
}

.blog .blog-comments .comment h5 .reply {
    padding-left: 10px;
    color: #012970;
}

.blog .blog-comments .comment h5 .reply i {
    font-size: 20px;
}

.blog .blog-comments .comment time {
    display: block;
    font-size: 14px;
    color: #013ca3;
    margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
    padding-left: 40px;
}

.blog .blog-comments .reply-form {
    margin-top: 30px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
    font-weight: bold;
    font-size: 22px;
}

.blog .blog-comments .reply-form p {
    font-size: 14px;
}

.blog .blog-comments .reply-form input {
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
    box-shadow: none;
    border-color: #a0aaf8;
}

.blog .blog-comments .reply-form textarea {
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
    box-shadow: none;
    border-color: #a0aaf8;
}

.blog .blog-comments .reply-form .form-group {
    margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
    border-radius: 4px;
    padding: 10px 20px;
    border: 0;
    background-color: #012970;
}

.blog .blog-comments .reply-form .btn-primary:hover {
    background-color: #013289;
}

.blog .blog-pagination {
    color: #024ed5;
}

.blog .blog-pagination ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.blog .blog-pagination li {
    margin: 0 5px;
    transition: 0.3s;
}

.blog .blog-pagination li a {
    color: #012970;
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
    background: #f4932a;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
    color: #fff;
}

.blog .sidebar {
    padding: 30px;
    margin: 0 0 60px 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
    font-size: 20px;
    font-weight: 700;
    padding: 0 0 0 0;
    margin: 0 0 15px 0;
    color: #012970;
    position: relative;
}

.blog .sidebar .sidebar-item {
    margin-bottom: 30px;
}

.blog .sidebar .search-form form {
    background: #fff;
    border: 1px solid #ddd;
    padding: 3px 10px;
    position: relative;
}

.blog .sidebar .search-form form input[type="text"] {
    border: 0;
    padding: 4px;
    border-radius: 4px;
    width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 15px;
    margin: -1px;
    background: #f4932a;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    line-height: 0;
}

.blog .sidebar .search-form form button i {
    line-height: 0;
}

.blog .sidebar .search-form form button:hover {
    background: #012970;
}

.blog .sidebar .categories ul {
    list-style: none;
    padding: 0;
}

.blog .sidebar .categories ul li+li {
    padding-top: 10px;
}

.blog .sidebar .categories ul a {
    color: #012970;
    transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
    color: #f4932a;
}

.blog .sidebar .categories ul a span {
    padding-left: 5px;
    color: #aaaaaa;
    font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
    margin-top: 15px;
}

.blog .sidebar .recent-posts img {
    width: 80px;
    float: left;
}

.blog .sidebar .recent-posts h4 {
    font-size: 15px;
    margin-left: 95px;
    font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
    color: #012970;
    transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
    color: #f4932a;
}

.blog .sidebar .recent-posts time {
    display: block;
    margin-left: 95px;
    font-style: italic;
    font-size: 14px;
    color: #aaaaaa;
}

.blog .sidebar .tags {
    margin-bottom: -10px;
}

.blog .sidebar .tags ul {
    list-style: none;
    padding: 0;
}

.blog .sidebar .tags ul li {
    display: inline-block;
}

.blog .sidebar .tags ul a {
    color: #012970;
    font-size: 14px;
    padding: 6px 14px;
    margin: 0 6px 8px 0;
    border: 1px solid #d7e6ff;
    display: inline-block;
    transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
    color: #fff;
    border: 1px solid #f4932a;
    background: #f4932a;
}

.blog .sidebar .tags ul a span {
    padding-left: 5px;
    color: #a5c5fe;
    font-size: 14px;
}

@media screen and (max-width: 400) {
    .blog .entry .entry-title {
        font-size: 20px;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    background: #f6f9ff;
    padding: 0 0 30px 0;
    font-size: 14px;
}

.footer .footer-newsletter {
    padding: 50px 0;
    background: #f6f9ff;
    border-top: 1px solid #e1ecff;
}

.footer .footer-newsletter h4 {
    font-size: 24px;
    margin: 0 0 10px 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    color: #012970;
}

.footer .footer-newsletter form {
    margin-top: 20px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 4px;
    border: 1px solid #e1ecff;
}

.footer .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 8px;
    width: calc(100% - 140px);
}

.footer .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 30px;
    margin: 3px;
    background: #f4932a;
    color: #fff;
    transition: 0.3s;
    border-radius: 4px;
}

.footer .footer-newsletter form input[type="submit"]:hover {
    background: #012970;
}

.footer .footer-top {
    background: white url(../img/footer-bg.png) no-repeat right top;
    background-size: contain;
    border-top: 1px solid #e1ecff;
    border-bottom: 1px solid #e1ecff;
    padding: 60px 0 30px 0;
}

.form-control:focus {
    box-shadow: none;
}

@media (max-width: 992px) {
    .footer .footer-top {
        background-position: center bottom;
    }
}

.footer .footer-top .footer-info {
    margin-bottom: 30px;
}

.footer .footer-top .footer-info .logo {
    line-height: 0;
    margin-bottom: 15px;
}

.footer .footer-top .footer-info .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.footer .footer-top .footer-info .logo span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #012970;
    font-family: "Nunito", sans-serif;
    margin-top: 3px;
}

.footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Nunito", sans-serif;
}

.footer .footer-top .social-links a {
    font-size: 20px;
    display: inline-block;
    color: rgba(1, 41, 112, 0.5);
    line-height: 0;
    margin-right: 10px;
    transition: 0.3s;
}

.footer .footer-top .social-links a:hover {
    color: #f4932a;
}

.footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #012970;
    text-transform: uppercase;
    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: #d0d4fc;
    font-size: 12px;
    line-height: 0;
}

.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: #013289;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

.footer .footer-top .footer-links ul a:hover {
    color: #f4932a;
}

.footer .footer-top .footer-contact p {
    line-height: 26px;
}

.footer .copyright {
    text-align: center;
    padding-top: 30px;
    color: #012970;
}

.footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #012970;
}

/* ------------------------------------------
      Career Page
---------------------------------------------*/
.career .card-body {
    padding: 40px;
}

.apply_btn {
    background-color: #f68c09;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    color: #fff;
    padding: 7px 20px;
    transition: all 0.3s ease-in-out;
}

.apply_btn:hover {
    background-color: #012970;
    color: #fff;
}

.job-item .btn-light {
    background-color: #f9ece1;
}

/* .job-item span{
  color: #f4932a;
} */

.career .card {
    transition: 0.4s;
    background-color: #f4f8ff;
}

.career .card:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.career .animat {
    animation: slow-up 2s ease-in-out infinite alternate-reverse;
}


.job-item h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.job-item h6 {
    color: #f4932a;
    font-size: 18px;
    margin-bottom: 30px;
}

.job-item p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 40px;
}

.job-item .btn-read-more {
    line-height: 0;
    padding: 15px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #f4932a;
    box-shadow: 0px 5px 30px rgba(247, 147, 42, 0.4);
}

.job-item .btn-read-more span {
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}

.job-item .btn-read-more i {
    margin-left: 5px;
    font-size: 18px;
    transition: 0.3s;
}

.job-item .btn-read-more:hover i {
    transform: translateX(5px);
}


@keyframes slow-up {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

/* =========================================
          Job Detils
===========================================*/
.job-detils .box {
    padding: 30px;
    box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08);
    text-align: start;
    transition: 0.3s;
    height: 100%;
}

.job-detils .box h4 {
    font-weight: 600;
}

.job-detils .box .card h5 {
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.job-detils .box .card span {
    color: #f68c09;
    font-weight: 500;
}

.job_desc .box p {
    color: #575a7b;
    line-height: 27px;
    font-size: 15px;
}

.responsiblity .box ul {
    padding: 0;
    margin: 0;
}

.responsiblity .box ul li {
    list-style-type: none;
    font-size: 15px;
    line-height: 33px;
}

.responsiblity .box ul li i {
    color: #f68c09;
    margin-right: 3px;
}

.sticky-job .btn-get-started {
    line-height: 0;
    padding: 25px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #f4932a;
    box-shadow: 0px 5px 30px rgba(247, 147, 42, 0.4);
}

.job_loacation {
    margin-top: 40px;
}

.job_loacation .box {
    padding: 10px;
}

.socail-media .social-links a {
    font-size: 30px;
    text-align: center;
    display: inline-block;
    color: rgba(1, 41, 112, 0.5);
    line-height: 0;
    margin-right: 10px;
    transition: 0.3s;
}

.job_form h4 {
    text-align: center;
    font-weight: 600;
    text-transform: capitalize;
}

.resume_upload {
    background: #f8f8f9;
    border: 1px dashed #b4bac5;
    padding: 30px;
    text-align: center;
    position: relative;
}

.resume_upload span {
    color: #f68c09;
    font-size: 13px;
    margin-bottom: 5px;
}

.resume_upload p {
    margin-bottom: 0;
    font-size: 12px;
    color: #868e96;
}

.upload_resume {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
}

.job_form .form-group .form-control {
    border-radius: 0;
}

.job_form .form-group .form-control:focus {
    border-color: #f68c09;
}

.box {
    padding: 30px;
    box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08);
    text-align: start;
    transition: 0.3s;
    height: 100%;
}

.submit_btn button {
    background-color: #f68c09;
    margin-top: 20px;
    padding: 8px 40px;
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    box-shadow: 0px 5px 30px rgba(247, 147, 42, 0.4);
}

/* ================ Custome chatbot ================= */
.chatbot-toggler {
    position: fixed;
    bottom: 25px;
    right: 20px;
    outline: none;
    border: none;
    height: 50px;
    width: 50px;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #012970;
    transition: all 0.2s ease;
}

.chatbot-toggler:hover {
    background: #f68c09;
}

/* .color_change {
  animation: in-out 2s ease-in-out infinite alternate-reverse;
}

@keyframes in-out {
  0% {
    background-color: #f68c09;
  }

  100% {
    background-color: #012970;
  }
} */

body.show-chatbot .chatbot-toggler {
    transform: rotate(90deg);
}

.chatbot-toggler span {
    color: #fff;
    position: absolute;
}

.chatbot-toggler span:last-child,
body.show-chatbot .chatbot-toggler span:first-child {
    opacity: 0;
}

body.show-chatbot .chatbot-toggler span:last-child {
    opacity: 1;
}

.chatbot {
    position: fixed;
    right: 35px;
    bottom: 90px;
    width: 420px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.5);
    transform-origin: bottom right;
    box-shadow: 0 0 128px 0 rgba(0, 0, 0, 0.1),
        0 32px 64px -48px rgba(0, 0, 0, 0.5);
    transition: all 0.1s ease;
    z-index: 99999;
}

body.show-chatbot .chatbot {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.chatbot header {
    padding: 16px 0;
    position: relative;
    text-align: center;
    color: #fff;
    background: #f68c09;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.chatbot header span {
    position: absolute;
    right: 15px;
    top: 50%;
    display: none;
    cursor: pointer;
    transform: translateY(-50%);
}

header h2 {
    font-size: 1.4rem;
    margin-bottom: 0;
}

.chatbot .chatbox {
    overflow-y: auto;
    height: 510px;
    padding: 30px 20px 100px;
}

.chatbot :where(.chatbox, textarea)::-webkit-scrollbar {
    width: 6px;
}

.chatbot :where(.chatbox, textarea)::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 25px;
}

.chatbot :where(.chatbox, textarea)::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 25px;
}

.chatbox .chat {
    display: flex;
    list-style: none;
}

.chatbox .outgoing {
    margin: 20px 0;
    justify-content: flex-end;
}

.chatbox .incoming span {
    /* width: 32px;
  height: 32px; */
    color: #fff;
    cursor: default;
    text-align: center;
    line-height: 32px;
    align-self: flex-end;
    /* background: #724ae8; */
    border-radius: 4px;
    margin: 0 10px 7px 0;
}

.chatbox .incoming span img {
    width: 35px;
}

.chatbox .chat p {
    white-space: pre-wrap;
    padding: 12px 16px;
    border-radius: 10px 10px 0 10px;
    max-width: 75%;
    color: #fff;
    font-size: 0.95rem;
    background: #724ae8;
}

.chatbox .incoming p {
    border-radius: 10px 10px 10px 0;
}

.chatbox .chat p.sucess {
    color: #000;
    background: #f2f2f2;
}

.chatbox .incoming p {
    color: #000;
    background: #f2f2f2;
}

.chatbot .chat-input {
    display: flex;
    gap: 5px;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #fff;
    padding: 3px 20px;
    border-top: 1px solid #ddd;
    z-index: 9999;
}

.chat-input textarea {
    height: 55px;
    width: 100%;
    border: none;
    outline: none;
    resize: none;
    max-height: 180px;
    padding: 15px 15px 15px 0;
    font-size: 0.95rem;
}

.chat-input span {
    align-self: flex-end;
    color: #724ae8;
    cursor: pointer;
    height: 55px;
    display: flex;
    align-items: center;
    visibility: hidden;
    font-size: 1.35rem;
}

.chat-input textarea:valid~span {
    visibility: visible;
}

@media (max-width: 490px) {
    .chatbot-toggler {
        right: 20px;
        bottom: 20px;
    }

    .chatbot {
        right: 0;
        bottom: 0;
        height: 100%;
        border-radius: 0;
        width: 100%;
    }

    .chatbot .chatbox {
        height: 90%;
        padding: 25px 15px 100px;
    }

    .chatbot .chat-input {
        padding: 5px 15px;
    }

    .chatbot header span {
        display: block;
    }
}



/* ================ Custome chatbot ================= */

#message-section #user {
    border: 1.5px solid #000;
    border-radius: 1.5vw 0vw 1.5vw 1.8vw !important;
    background-color: #012970 !important;
    float: right;
    color: #fff !important;
}

#message-section #bot {
    background-color: #f5f5f5 !important;
    color: #000 !important;
}

#message-section #bot,
#message-section #user {
    position: relative;
    bottom: 0;
    min-height: 1.5vw;
    border: 0.15vw solid #777;
    border-radius: 0px 1.5vw 1.5vw 1.8vw;
    padding: 14px;
    margin: 10px 0;
}

#message-section .message {
    color: #000;
    clear: both;
    line-height: 1.2vw;
    font-size: 15px;
    padding: 8px;
    position: relative;
    margin: 8px 0;
    max-width: 85%;
    word-wrap: break-word;
    z-index: 2;
}

.bpw-layout {
    width: 360px !important;
    height: 60vh !important;
    border-radius: 10px;
    right: 10px;
    bottom: 5px;
    border: 1px;
}

.bpw-chat-container {
    animation: fadeIn 0.4s ease-out 0ms 1 normal forwards running,
        slideUp 0.4s ease-out 0ms 1 normal forwards running;
    border: none;
    color: #171717;
    height: 60vh;
}

/* bot css */
/* This CSS rule sets the default font size of the entire document */
html {
    font-size: 16px;
}

/* These CSS rules sets the text direction of the paragraph (RTL or LTR) */
p,
.bpw-from-bot>div,
#input-message {
    direction: ltr;
}

/* This rule changes the color of the text in the input message */
#input-message {
    color: #000000;
}

/* Changes the color of the new message indicator */
.bpw-new-messages-indicator {
    background-color: #f5f5f5;
    color: #ffffff;
}

/* Styling for the chat header container */
.bpw-header-container {
    margin: 10px;
    background: #f68c09;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    border: 1px;
    border-radius: 10px;
    color: #ffffff;
}

.bpw-header-name {
    color: #ffffff;
}

/* Styling for the typing bubble */
.bpw-typing-bubble {
    background: #000000;
}

/* Styling for the chat bubble content */
.bpw-chat-bubble-content {
    background-color: #f5f5f5;
    border-radius: 3px;
    border: 1px transparent;
}

/* Styling for the date container, header name, and header subtitle */
.bpw-date-container,
.bpw-header-name,
.bpw-header-subtitle {
    color: #ffffff;
}

/* Styling for the layout of the chat bubble. Width, height, border, position and radius of the chat bubble */
.bpw-layout {
    width: 360px !important;
    height: 60vh;
    border-radius: 10px;
    right: 10px;
    bottom: 5px;
    border: 1px;
}

/* Responsive design rules for devices with width less than or equal to 767px */
@media screen and (max-device-width: 767px) {
    .bpw-layout {
        width: 100% !important;
        height: 100%;
        right: 0;
        bottom: 0;
        border-radius: 0;
    }
}

/* Changes the fill color of the header icons to white */
.bpw-header-icon,
.bpw-header-icon svg,
.bpw-header-icon svg path {
    fill: #ffffff !important;
}

/* Changes the color of the placeholder text in the input message */
#input-message::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

.bpw-composer textarea {
    outline: none !important;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.bpw-composer textarea:focus {
    outline: none !important;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

/* Styling for the keyboard single choice option */
.bpw-keyboard-single-choice {
    background-color: #ffffff;
    border: none;
}

/* Styling for the buttons in the chat interface */
.bpw-button,
.bpw-button-alt {
    background-color: #dcdcdc;
    color: #000000;
    border-radius: 10px;
    border: none;
}

/* Styling for hover effect on the buttons in the chat interface */
.bpw-button:hover,
.bpw-button-alt:hover {
    background-color: #f5f5f5;
}

/* Styling for hyperlinks in the chat interface */
a {
    color: #ffffff;
    /* text-decoration: underline; */
}

/* Styling for the chat container, including color, scrollbar width and color, and border */
.bpw-chat-container {
    background-color: #ffffff;
    scrollbar-width: thin;
    scrollbar-color: #f5f5f5 #ffffff;
    border: none;
}

/* Styling for the chat bubble content when it's from the bot */
.bpw-from-bot .bpw-chat-bubble .bpw-chat-bubble-content {
    background-color: #f5f5f5;
    color: #000000;
}

/* Styling for the chat bubble content when it's from the user */
.bpw-from-user .bpw-chat-bubble .bpw-chat-bubble-content {
    background-color: #f68c09;
    color: #ffffff;
}

/* Styling for the composer section of the chat interface */
.bpw-composer {
    background-color: #ffffff;
    border-top: none;
}

/* Styling for the scrollbar in the chat container */
.bpw-chat-container::-webkit-scrollbar,
.bpw-chat-container::-moz-scrollbar {
    width: 10px;
    background-color: #ffffff;
    border: none;
}

/* Styling for the avatar of the bot */
.bpw-bot-avatar img,
.bpw-bot-avatar svg {
    background: #000000;
    border: 3px solid #ffffff;
}

/* Styling for the general scrollbar in the web page */
::-webkit-scrollbar {
    width: 0.5rem;
}

/* Styling for the track of the general scrollbar and the chat container scrollbar */
::-webkit-scrollbar-track,
.bpw-chat-container::-webkit-scrollbar-track,
.bpw-chat-container::-moz-scrollbar-track {
    background-color: transparent;
}

/* Styling for the thumb of the general scrollbar and the chat container scrollbar */
::-webkit-scrollbar-thumb,
.bpw-chat-container::-webkit-scrollbar-thumb,
.bpw-chat-container::-moz-scrollbar-thumb {
    background-color: #ffffff;
    border-radius: 1rem;
    border: 0.5rem solid transparent;
}

/* Styling for the floating button icon in the chat interface */
.bpw-floating-button i svg path {
    fill: #f68c09;
}

/* Styling for the 'powered by' section of the chat interface */
.bpw-powered {
    text-align: center;
    padding: 10px;
    color: #000000;
    background: #ffffff;
    font-size: 14px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

/* Styling for the hyperlinks in the 'powered by' section of the chat interface */
.bpw-powered a {
    color: #000000;
    text-decoration: underline;
}

/* Styling for hover effect on the hyperlinks in the 'powered by' section of the chat interface */
.bpw-powered a:hover {
    text-decoration: underline;
}

.bpw-send-button {
    background: #f68c09;
}

/* Change Bot Widget Icon */

.bpw-widget-btn {
    border-radius: 50%;
    background: #f68c09;
}

.bpw-floating-button::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='white' class='w-6 h-6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M8.625 12a.375.375 0 11-.75 0 .375.375 0 01.75 0zm0 0H8.25m4.125 0a.375.375 0 11-.75 0 .375.375 0 01.75 0zm0 0H12m4.125 0a.375.375 0 11-.75 0 .375.375 0 01.75 0zm0 0h-.375M21 12c0 4.556-4.03 8.25-9 8.25a9.764 9.764 0 01-2.555-.337A5.972 5.972 0 015.41 20.97a5.969 5.969 0 01-.474-.065 4.48 4.48 0 00.978-2.025c.09-.457-.133-.901-.467-1.226C3.93 16.178 3 14.189 3 12c0-4.556 4.03-8.25 9-8.25s9 3.694 9 8.25z' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: undefinedpx !important;
    width: undefinedpx !important;
}

.bpw-floating-button {
    box-shadow: none !important;
}

.bpw-floating-button:hover {
    box-shadow: none !important;
}

/* // .bpw-floating-button > i {
// display: none;
// } */



.load-more {
    background-color: #f4932a;
    color: #fff;
    border-radius: 5px;
    margin: 20px 0 0 0;
    transition: 0.3s;
}

.load-more:hover {
    background-color: #012970;
    color: #fff;
}

/*--------------------------------------------------------------
# Website Design Services Section
--------------------------------------------------------------*/
.website-design-services .service-box {
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
    height: 100%;
    padding: 40px 30px;
    transition: 0.3s;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.website-design-services .service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0px 15px 30px rgba(1, 41, 112, 0.18);
}

.website-design-services .service-box .icon {
    font-size: 40px;
    color: #f4932a;
    margin-bottom: 20px;
    display: inline-block;
    transition: 0.4s;
}

.website-design-services .service-box:hover .icon {
    color: #012970;
}

.website-design-services .service-box h3 {
    color: #012970;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 15px;
}

.website-design-services .service-box p {
    line-height: 24px;
    font-size: 15px;
    margin-bottom: 20px;
}

.website-design-services .service-features {
    padding-left: 0;
    list-style: none;
    margin-bottom: 20px;
}

.website-design-services .service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.website-design-services .service-features li i {
    color: #f4932a;
    margin-right: 8px;
    font-size: 16px;
}

.website-design-services .read-more {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    color: #f4932a;
}

.website-design-services .read-more i {
    margin-left: 5px;
    font-size: 18px;
    transition: 0.3s;
}

.website-design-services .read-more:hover i {
    transform: translateX(5px);
}

.website-design-services .read-more:hover {
    color: #012970;
}

.website-design-services .service-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: #444444;
}

/* .website-design-services .service-cta {
    background: linear-gradient(rgba(1, 41, 112, 0.05), rgba(1, 41, 112, 0.1));
    padding: 40px;
    border-radius: 10px;
    margin-top: 30px;
}

.website-design-services .service-cta h4 {
    color: #012970;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 15px;
}

.website-design-services .service-cta p {
    font-size: 16px;
    margin-bottom: 25px;
}

.website-design-services .btn-service-cta {
    display: inline-block;
    padding: 12px 30px;
    background: #f4932a;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.website-design-services .btn-service-cta:hover {
    background: #012970;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(1, 41, 112, 0.2);
} */

/*--------------------------------------------------------------
# Design Process Section
--------------------------------------------------------------*/
.design-process {
    background-color: #f6f9ff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.design-process .process-journey {
    position: relative;
    padding: 30px 0;
}

.design-process .journey-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(244, 147, 42, 0.3), #f4932a, #012970, rgba(1, 41, 112, 0.3));
    transform: translateX(-50%);
    z-index: 1;
}

.design-process .row {
    margin-bottom: 80px;
    position: relative;
}

.design-process .process-box {
    padding: 30px;
    box-shadow: 0px 5px 25px rgba(1, 41, 112, 0.1);
    border-radius: 15px;
    background: #fff;
    height: 100%;
    transition: all 0.5s;
    position: relative;
    z-index: 2;
}

.design-process .process-box.left {
    margin-right: 30px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.design-process .process-box.right {
    margin-left: 30px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.design-process .process-box:hover {
    transform: translateY(-10px);
    box-shadow: 0px 15px 30px rgba(1, 41, 112, 0.15);
}

.design-process .process-icon {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f6f9ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 0 20px rgba(1, 41, 112, 0.1);
    border: 3px solid #fff;
}

.design-process .process-icon.pulse {
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0 rgba(244, 147, 42, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(244, 147, 42, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(244, 147, 42, 0);
    }
}

.design-process .process-icon i {
    font-size: 32px;
    color: #f4932a;
    position: relative;
    z-index: 2;
}

.design-process .process-icon span {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #012970;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 0 10px rgba(1, 41, 112, 0.3);
    border: 2px solid #fff;
}

.design-process .process-content h3 {
    color: #012970;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 15px;
}

.design-process .process-content p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #444444;
    line-height: 1.6;
}

.design-process .process-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.design-process .process-features span {
    display: flex;
    align-items: center;
    background: rgba(244, 147, 42, 0.1);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 14px;
    color: #012970;
    font-weight: 500;
    transition: all 0.3s;
}

.design-process .process-features span:hover {
    background: rgba(244, 147, 42, 0.2);
    transform: translateY(-3px);
}

.design-process .process-features span i {
    color: #f4932a;
    margin-right: 8px;
    font-size: 16px;
}

.design-process .process-img {
    border: 8px solid #fff;
    box-shadow: 0 0 30px rgba(1, 41, 112, 0.15);
    transition: all 0.5s;
}

.design-process .process-image-right {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.design-process .process-image-left {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.design-process .process-end {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: -30px;
}

.design-process .process-success {
    background: #012970;
    color: #fff;
    padding: 25px 40px;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(1, 41, 112, 0.2);
}

.design-process .process-success i {
    font-size: 40px;
    margin-bottom: 10px;
    display: block;
}

.design-process .process-success h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

@media (max-width: 991px) {
    .design-process .journey-line {
        left: 30px;
    }

    .design-process .process-box.left,
    .design-process .process-box.right {
        margin-left: 60px;
        margin-right: 0;
        border-radius: 15px;
    }

    .design-process .process-image-left,
    .design-process .process-image-right {
        justify-content: center;
        margin-bottom: 30px;
    }

    .design-process .row {
        margin-bottom: 40px;
    }

    .design-process .process-img {
        max-width: 250px;
    }
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta {
    background: linear-gradient(rgba(1, 41, 112, 0.9), rgba(1, 41, 112, 0.9)), url("../img/cta-bg.jpg") fixed center center;
    background-size: cover;
    padding: 80px 0;
}

.cta h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta p {
    color: #fff;
    margin-bottom: 30px;
}

.cta .cta-btn-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta .cta-btn {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    transition: 0.5s;
    background: #f4932a;
    color: #fff;
}

.cta .cta-btn:hover {
    background: #fff;
    color: #f4932a;
}

.cta .cta-btn-secondary {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    transition: 0.5s;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.cta .cta-btn-secondary:hover {
    background: #fff;
    color: #012970;
}

.cta .img {
    text-align: center;
}

@media (max-width: 768px) {
    .cta .img {
        margin-top: 25px;
    }
}

/* Web Development Page Styles */
.technologies {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.tech-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.tech-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 5px solid #012970;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(65, 84, 241, 0.15);
}

.tech-icon {
    width: 80px;
    height: 80px;
    background: #f6f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.tech-card:hover .tech-icon {
    background: #012970;
}

.tech-icon i {
    font-size: 36px;
    color: #012970;
    transition: all 0.3s ease;
}

.tech-card:hover .tech-icon i {
    color: #fff;
}

.tech-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #012970;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.tech-card h3:after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #012970;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tech-badges li {
    list-style: none;
}

.tech-badge {
    display: inline-block;
    padding: 8px 15px;
    background: #f6f9ff;
    color: #012970;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.tech-badge:hover {
    background: #012970;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(1, 41, 112, 0.2);
}

/* Process Timeline Styles */
.process-timeline {
    position: relative;
    padding: 40px 0;
}

.process-timeline:before {
    content: '';
    position: absolute;
    width: 2px;
    background: #e0e0e0;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
    z-index: 1;
}

.process-box {
    position: relative;
    margin-bottom: 50px;
    z-index: 2;
}

.process-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #012970;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
    top: 0;
    z-index: 3;
}

.process-box.left .process-icon {
    right: -40px;
}

.process-box.right .process-icon {
    left: 20px;
}

.process-icon span {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

.process-icon i {
    font-size: 24px;
}

.process-content {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.process-box.left .process-content {
    /* margin-right: 60px; */
    background: none;
    box-shadow: none;
}

.process-box.right .process-content {
    /* margin-left: 60px; */
    background: none;
    box-shadow: none;
}

.process-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #012970;
    margin-bottom: 15px;
}

.process-content p {
    margin-bottom: 20px;
}

.process-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.process-features span {
    display: inline-flex;
    align-items: center;
    background: #f6f9ff;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 13px;
    color: #012970;
    margin-right: 5px;
}

.process-features span i {
    color: #4154f1;
    margin-right: 5px;
}

.process-end {
    text-align: center;
    position: relative;
    z-index: 2;
    padding-top: 20px;
}

.process-success {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: #4154f1;
    color: #fff;
    padding: 20px 40px;
    border-radius: 50px;
}

.process-success i {
    font-size: 30px;
    margin-bottom: 10px;
}

.process-success h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

/* Pulse Animation */
.pulse {
    position: relative;
}

.pulse:before,
.pulse:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(65, 84, 241, 0.3);
    z-index: -1;
    opacity: 0;
}

.pulse:before {
    animation: pulse 2s infinite;
}

.pulse:after {
    animation: pulse 2s 0.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* ------ process box */
.development-process .process-timeline .process-content {
    background: #fff;
    box-shadow: 0 5px 25px rgba(1, 41, 112, 0.1);
}

/* Service Box Enhancements */
.service_box {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    border-bottom: 3px solid transparent;
}

.service_box:before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(65, 84, 241, 0.05);
    z-index: -1;
    transition: all 0.5s ease;
}

.service_box:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, rgba(65, 84, 241, 0.03) 0%, rgba(65, 84, 241, 0.01) 100%);
    z-index: -1;
    transition: all 0.5s ease;
}

.service_box:hover:before {
    transform: scale(1.8);
}

.service_box:hover:after {
    height: 100%;
}

.service_box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #4154f1;
}

.service_box .icon {
    font-size: 42px;
    color: #4154f1;
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.4s ease;
    background: rgba(65, 84, 241, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
}

.service_box:hover .icon {
    transform: scale(1.1) rotate(10deg);
    color: #fff;
    background: #4154f1;
    box-shadow: 0 10px 20px rgba(65, 84, 241, 0.3);
}

/* Additional styling for Web Development Services section */

.web-development-services {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.web-development-services:before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(65, 84, 241, 0.05) 0%, rgba(65, 84, 241, 0.02) 100%);
    border-radius: 50%;
    top: -150px;
    left: -150px;
    z-index: 0;
}

.web-development-services:after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(65, 84, 241, 0.05) 0%, rgba(65, 84, 241, 0.02) 100%);
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
    z-index: 0;
}

.web-development-services .section-header {
    position: relative;
    z-index: 1;
}

.web-development-services .section-header h2:after {
    content: '';
    width: 80px;
    height: 3px;
    background: #4154f1;
    display: block;
    margin: 15px auto 0;
}

.service-list {
    padding: 0;
    list-style: none;
    margin-top: 20px;
}

.service-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-list li:hover {
    transform: translateX(5px);
}

.service-list li i {
    color: #4154f1;
    margin-right: 10px;
    font-size: 18px;
}

.service_box h3 {
    font-size: 22px;
    font-weight: 700;
    color: #012970;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
    transition: all 0.3s ease;
}

.service_box h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #4154f1;
    transition: all 0.5s ease;
}

.service_box:hover h3:after {
    width: 50px;
}

.service_box p {
    margin-bottom: 0;
    color: #444;
    line-height: 1.7;
}

.service-cta {
    background: linear-gradient(135deg, #4154f1 0%, #2a36b1 100%);
    padding: 40px;
    border-radius: 15px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(65, 84, 241, 0.2);
}

.service-cta:before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.service-cta:after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.service-cta h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-cta p {
    margin-bottom: 25px;
    font-size: 16px;
    opacity: 0.9;
}

.btn-service-cta {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #4154f1;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-service-cta:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .process-timeline:before {
        left: 40px;
    }

    .process-box.left .process-icon,
    .process-box.right .process-icon {
        left: 0;
    }

    .process-box.left .process-content,
    .process-box.right .process-content {
        margin-left: 100px;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .tech-category {
        margin-bottom: 20px;
    }

    .process-features {
        flex-direction: column;
        gap: 5px;
    }

    .process-features span {
        font-size: 12px;
    }
}

/* ---------- End Web Development Section ---------- */


/*--------------------------------------------------------------
# Mobile App Development Page Styles
--------------------------------------------------------------*/
.mobile-service-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(1, 41, 112, 0.08);
}

.mobile-service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(1, 41, 112, 0.1);
}

.mobile-icon-container {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(145deg, #f4932a, #f68c09);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.mobile-icon-container::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    top: -50%;
    left: -50%;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.mobile-service-box:hover .mobile-icon-container::before {
    top: 100%;
    left: 100%;
}

.mobile-icon-container .icon {
    font-size: 32px;
    color: #fff;
    line-height: 3;
    z-index: 2;
}

/*  carousel styling *

/* Mobile process timeline */
.mobile-process-container {
    position: relative;
    padding: 30px 0;
}

.mobile-process-container::before {
    content: '';
    position: absolute;
    width: 3px;
    background-color: #f4932a;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
    border-radius: 5px;
}

.mobile-process-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.process-phone {
    width: 80px;
    height: 140px;
    background: #012970;
    border-radius: 15px;
    padding: 5px;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-right: 30px;
}

.development-process .process-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.development-process .process-screen i {
    font-size: 30px;
    color: #f4932a;
    margin-bottom: 10px;
}

.process-number {
    font-size: 18px;
    font-weight: 700;
    color: #012970;
}

.development-process .process-content {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(1, 41, 112, 0.1);
    border-left: 5px solid #f4932a;
}

.development-process .process-content h3 {
    margin: 0 0 15px;
    font-size: 20px;
    font-weight: 700;
    color: #012970;
}

.development-process .process-features {
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
    gap: 10px;
}

.development-process .process-features span {
    background: #f6f9ff;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
}

.development-process .process-features span i {
    color: #f4932a;
    margin-right: 5px;
    font-size: 16px;
}

/* Mobile tech categories */
.mobile-tech {
    position: relative;
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(1, 41, 112, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    border-top: 5px solid #012970;
}

.mobile-tech:hover {
    transform: translateY(-10px);
}

.mobile-tech h3 {
    display: flex;
    align-items: center;
    color: #012970;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
}

.mobile-tech h3 i {
    margin-right: 10px;
    font-size: 24px;
    color: #012970;
}

.btn-view-all {
    display: inline-block;
    background: #f4932a;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
    margin-top: 20px;
}

.btn-view-all:hover {
    background: #012970;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(244, 147, 42, 0.3);
}