* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* [data-aos] {
    opacity: 1 !important;
    transform: none !important;
} */

/* HEADER */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    padding: 20px 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: rgb(37 37 37 / 41%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(32px);
    border-radius: 20px;
}

.logo img {
    width: 130px;
}

nav ul {
    gap: 15px;
}

.nav-link {
    font-size: 14px;
    font-family: "Manrope", sans-serif;
}

.navbar .nav-link.active {
    color: #005fcc !important;
    font-weight: 900;
}

.phone1 {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone2 a {
    text-decoration: none;
    font-size: 14px;
    font-family: "Manrope", sans-serif;
}

.header-btn a {
    font-size: 14px;
    font-family: "Manrope", sans-serif;
    background: #0077ff;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-btn a:hover {
    background: #005fcc;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 119, 255, 0.3);
}

.hover-dropdown {
    position: relative;
}

/* hidden state */
.hover-dropdown .dropdown-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 2 columns */
    min-width: 500px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
    pointer-events: none;

    margin-top: 0;
    border: none;
    border-radius: 12px;
    padding: 15px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hover-dropdown:hover .dropdown-menu,
.hover-dropdown .dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.hover-dropdown .dropdown-item {
    padding: 10px 15px;
    border-radius: 8px;
    white-space: nowrap;
}

.hover-dropdown .dropdown-item:hover {
    background: #0d6efd;
    color: #fff;
}

/* HERO */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px 0px;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.521);
}

/* Keep content above overlay */
.hero-content {
    position: relative;
    z-index: 2;
    margin-top: 70px;
}

/* LEFT SIDE */
.hero-left {
    color: white;
}

.hero-left h1 {
    font-size: 60px;
    font-family: "Sora", sans-serif;
    line-height: 1.2;
}

.hero-left h1 span {
    color: #2f8cff;
}

.hero-left p {
    margin: 20px 0;
    font-size: 18px;
}

.ban1 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.ban2 {
    border: 1px solid #ffcc00;
    padding: 7px 20px;
    border-radius: 30px;
}

/* text */
.ban2 h4 {
    font-size: 14px;
    font-weight: 700;
    font-family: "Manrope", sans-serif;
    color: #fff;
    margin-bottom: 0;
}

/* dot animation */
.dot {
    color: #ffcc00;
    font-size: 30px;
    line-height: 0.5;
    display: inline-block;
    animation: blinkDot 1s infinite;
}

@keyframes blinkDot {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.2;
        transform: scale(1.3);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* rating style */
.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
}

/* yellow stars */
.rating i {
    color: #ffcc00;
    font-size: 10px;
}

/* text */
.rate-text {
    font-size: 12px;
}

#typeText {
    color: #2f8cff;
    font-weight: 700;
    font-family: "Sora", sans-serif;
}


/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.hero-buttons .btn {
    padding: 12px 20px;
    border-radius: 30px;
}

.btn1 {
    background: #0077ff;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn1:hover {
    color: #fff;
    background: #005fcc;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 119, 255, 0.3);
}

/* FORM */
.hero-form {
    background: rgb(0 0 0 / 30%);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 20px;
}

.hero-form h4 {
    color: #329AFF;
    font-size: 14px;
    font-weight: 400;
    font-family: "Manrope", sans-serif;
}

.hero-form h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    font-family: "Sora", sans-serif;
    margin-bottom: 20px;
}

.hero-form input,
.hero-form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 14px;
    border: none;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 400;
    font-family: "Manrope", sans-serif;
}

.hero-form button {
    width: 100%;
    padding: 14px;
    background: #0077ff;
    color: white;
    border: none;
    border-radius: 8px;
}

.hero-form1 {
    /* background: rgb(0 0 0 / 30%);
    backdrop-filter: blur(15px); */
    padding: 30px;
    border-radius: 20px;
}

.hero-form1 input,
.hero-form1 textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 14px;
    border: none;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 400;
    font-family: "Manrope", sans-serif;
}


/* mouse aninmation  */
.svg {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: white;
    animation: bounce 3s infinite;
}

.wheel {
    animation: scrollWheel 2s infinite;
    transform-origin: center;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(8px);
        opacity: 0.5;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* marque css start  */
.marquee {
    overflow: hidden;
    /* hide the scrolling overflow */
    width: 100%;
}

.marquee__inner {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee__group {
    display: flex;
}

.marquee__group span {
    margin: 0 1.5rem;
    white-space: nowrap;
    color: white;
    padding: 4px 16px 4px 12px;
}

.marquee__group span h4 {
    font-size: 16px;
    font-weight: 400;
    font-family: "Manrope", sans-serif;
}

.marquee__group span h4 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.marquee__group span h4::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #3093FD;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* marque css end  */

/* scroll bar css start  */

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: #0C1322;
}

body::-webkit-scrollbar-thumb {
    background-color: #fff;
    border-radius: 20px;
    border: 1px solid #00aaff;
}

/* scroll bar css end  */

/* scroll to top css start  */
.progress-wrap {
    position: fixed;
    bottom: 50px;
    left: 25px;
    height: 55px;
    width: 55px;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 400ms linear;
    background-color: #0a0a7e;
    border: 1.2px solid #000;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap i {
    position: absolute;
    color: #fff;
    font-size: 16px;
    z-index: 2;
    pointer-events: none;
}

.progress-circle path {
    fill: none;
    stroke: #fff;
    stroke-width: 4;
    stroke-dasharray: 307.919, 307.919;
    stroke-dashoffset: 307.919;
    transition: stroke-dashoffset 10ms linear;
}

.progress-wrap:hover {
    animation: bounce 4s infinite alternate;
}

/* scroll to top css end  */


.home1 {
    padding: 30px 0px;
    background-color: #0C1322;
}

.home2 {
    padding: 60px 0px;
}


.home3 h4 {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: #3d8dff;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-family: "Manrope", sans-serif;
}

.home3 h2 {
    font-size: 48px;
    font-family: "Sora", sans-serif;
    line-height: 1.1;
    font-weight: 700;
    color: #0d1321;
    margin-bottom: 20px;
}

.home3 p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
    font-family: "Manrope", sans-serif;
}

.feature-boxes {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    border: 1px solid #eee;
    transition: .3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 45px;
    height: 45px;
    background: #EAF4FF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 20px;
    font-family: "Manrope", sans-serif;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    font-family: "Manrope", sans-serif;
    margin-bottom: 6px;
    color: #000000;
}

.feature-card p {
    font-size: 14px;
    font-family: "Manrope", sans-serif;
    color: #666;
}

.feature-highlight {
    background: #0C1322;
    color: white;
    padding: 15px 20px;
    border-radius: 15px;
}

.feature-highlight p {
    font-size: 14px;
    font-weight: 400;
    font-family: "Manrope", sans-serif;
    margin-bottom: 8px;
}

.feature-highlight h2 {
    font-size: 38px;
    font-weight: 700;
    font-family: "Manrope", sans-serif;
    color: #3d8dff;
}

.feature-highlight span {
    font-size: 13px;
    font-weight: 400;
    font-family: "Manrope", sans-serif;
    color: #c7d0e0;
}


.framework-btn {
    display: inline-block;
    padding: 14px 28px;
    border: 1px solid #c1dfff;
    border-radius: 40px;
    text-decoration: none;
    color: #111;
    font-size: 14px;
    font-weight: 600;
    font-family: "Manrope", sans-serif;
    transition: .3s;
}

.framework-btn:hover {
    background: #0d1321;
    color: white;
}

.blue {
    color: #3b98fc;
    font-weight: 900;
}

.home4 {
    position: relative;
    border-radius: 20px;
}

.home4 img {
    border-radius: 20px;
}

.home4 p {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 35px;
    font-weight: 700;
    font-family: "Manrope", sans-serif;
    color: #fff;
}

.home5 img {
    border-radius: 20px;
}

.home6 {
    display: flex;
    gap: 20px;
    padding: 30px 0px;
}

.home7 span {
    color: #3b98fc;
    font-size: 55px;
    font-weight: 700;
    font-family: "Sora", sans-serif;
}

.home8 h4 {
    font-size: 30px;
    font-weight: 700;
    font-family: "Sora", sans-serif;
    color: #000000;
}

.home8 p {
    font-size: 14px;
    font-weight: 500;
    font-family: "Manrope", sans-serif;
    color: #959aa5;
    width: 80%;
}

.home8 a {
    font-size: 16px;
    font-weight: 500;
    font-family: "Manrope", sans-serif;
    text-decoration: none;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h4 {
    color: #4da3ff;
    font-size: 16px;
    font-family: "Manrope", sans-serif;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: 55px;
    font-weight: 700;
    font-family: "Sora", sans-serif;
    color: #111;
    width: 75%;
    margin: 0 auto;
}

.section-title p {
    font-size: 18px;
    font-weight: 400;
    margin-top: 10px;
    color: #666;
    font-family: "Manrope", sans-serif;
}

/* Capability Grid */
.capability-grid {
    display: grid;
    grid-template-columns: repeat(4, 2fr);
    gap: 20px;
}

.card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 250px;
}

.card.large {
    grid-column: span 2;
    grid-row: span 2;
    height: auto;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}

.card:hover img {
    transform: scale(1.1);
}

.overlay1 {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
}

.overlay1 img {
    width: 50px;
    background-color: #3F4F6E;
    padding: 10px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.overlay1 h3 {
    font-size: 20px;
    font-weight: 700;
    font-family: "Sora", sans-serif;
}

.overlay1 p {
    font-size: 14px;
    font-weight: 400;
    font-family: "Manrope", sans-serif;
}

.overlay2 {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.overlay2 a {
    color: white;
    font-size: 14px;
    font-weight: 400;
    font-family: "Manrope", sans-serif;
    text-decoration: none;
}

/* RESULTS */
.results {
    position: relative;
    padding: 100px 0;
}

.overlay3 {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.results .container {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-box {
    background: rgb(255 255 255 / 5%);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #ffffff2d;
    backdrop-filter: blur(3px);
    text-align: left;
}

.stat-box small {
    color: #e4e4e4;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 2;
    font-family: "Manrope", sans-serif;
}

.stat-box h3 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    font-family: "Sora", sans-serif;
}

/* Progress Line */
.line {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    overflow: hidden;
}

.line span {
    display: block;
    width: 0;
    height: 100%;
    background: #2b8cff;
    border-radius: 20px;
    transition: width 1.8s ease;
}

/* Growth Grid */
.growth-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.growth-box {
    background: rgb(255 255 255 / 5%);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #ffffff2d;
    backdrop-filter: blur(3px);
    text-align: left;
}

.card-growth1 {
    display: flex;
    justify-content: space-between;
}

.card-growth2 small {
    color: #2b8cff;
    font-size: 12px;
    font-weight: 700;
    font-family: "Manrope", sans-serif;
}

.card-growth2 h3 {
    color: white;
    font-size: 28px;
    margin: 10px 0;
    font-family: "Sora", sans-serif;
}

.card-growth2 p {
    color: #aaa;
    font-size: 14px;
    font-family: "Manrope", sans-serif;
}

.card-growth3 h3 {
    color: white;
    font-size: 24px;
    font-family: "Sora", sans-serif;
}

.card-growth3 p {
    color: #aaa;
    font-size: 12px;
    font-family: "Manrope", sans-serif;
}

/* Mini Graph Bars */
.mini-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-top: 20px;
}

.mini-bars span {
    width: 38px;
    background: #2b8cff;
    border-radius: 4px 4px 0 0;
    animation: growBars 1.5s ease forwards;
}

.mini-bars span:nth-child(1) {
    height: 25px;
}

.mini-bars span:nth-child(2) {
    height: 40px;
}

.mini-bars span:nth-child(3) {
    height: 55px;
}

.mini-bars span:nth-child(4) {
    height: 35px;
}

.mini-bars span:nth-child(5) {
    height: 60px;
}

.mini-bars span:nth-child(6) {
    height: 55px;
}

.mini-bars span:nth-child(7) {
    height: 25px;
}

@keyframes growBars {
    from {
        height: 0;
    }
}

/* Process */
.process1 {
    background-color: #ebebee;
    padding: 10px 15px;
    border-radius: 10px 10px 0px 0px;
    border-bottom: 1px solid #2b8bf83f;
}

.process1 h4 {
    font-size: 12px;
    font-weight: 400;
    font-family: "Manrope", sans-serif;
    text-transform: uppercase;
}

.process1 h3 {
    font-size: 16px;
    font-weight: 400;
    font-family: "Manrope", sans-serif;
    text-decoration: line-through;
}

.process2 {
    padding: 10px 15px;
}

.process2 h4 {
    color: #0077ff;
    font-size: 12px;
    font-weight: 400;
    font-family: "Manrope", sans-serif;
    text-transform: uppercase;
}

.process2 h3 {
    color: #000000;
    font-size: 20px;
    font-weight: 400;
    font-family: "Sora", sans-serif;
}

.process2 p {
    font-size: 12px;
    font-weight: 400;
    font-family: "Manrope", sans-serif;
}

.process3 {
    border: 1px solid #ccc;
    border-radius: 10px;
    transition: all 0.4s ease;
}

.process3:hover {
    background: #f8fbff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.journey1 {
    padding: 20px 25px;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.journey1:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.journey1 h4 {
    color: #0077ff;
    font-size: 20px;
    font-weight: 700;
    font-family: "Sora", sans-serif;
}

.journey1 h3 {
    color: #000;
    font-size: 15px;
    font-weight: 600;
    font-family: "Sora", sans-serif;
    line-height: 2;
}

.journey1 p {
    color: #000;
    font-size: 13px;
    font-weight: 400;
    font-family: "Manrope", sans-serif;
}

/* process bar css start  */
.progress-bar {
    width: 100%;
    height: 6px;
    background: #ddd;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: #0077ff;
    transition: width 0.5s ease;
}

.process-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.tab {
    padding: 15px 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 150px;
}

.tab.active {
    background: #0077ff44;
    color: #000;
    box-shadow: 0 8px 20px rgba(0, 119, 255, 0.3);
    transform: translateY(-3px);
}


.tabset1 h4 {
    color: #0077ff;
    font-size: 16px;
    font-weight: 600;
    font-family: "Sora", sans-serif;
}

.tabset1 h3 {
    color: #000000;
    font-size: 14px;
    font-weight: 700;
    font-family: "Sora", sans-serif;
}

.tabset1 p {
    color: #000000;
    font-size: 12px;
    font-weight: 400;
    font-family: "Manrope", sans-serif;
    margin-bottom: 0;
}

.portfolio-item {
    display: none;
}

#toggleBtn {
    display: flex;
    margin: 0 auto;
    padding: 14px 28px;
    border: 1px solid #c1dfff;
    border-radius: 40px;
    text-decoration: none;
    color: #111;
    font-size: 14px;
    font-weight: 600;
    font-family: "Manrope", sans-serif;
    transition: .3s;
    cursor: pointer;
    margin-top: 30px;
}

#toggleBtn:hover {
    background: #0d1321;
    color: white;
}

.zoom-img {
    cursor: pointer;
    transition: 0.3s;
}

.zoom-img:hover {
    transform: scale(1.05);
}

/* popup background */
.popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* popup image */
.popup img {
    max-width: 85%;
    max-height: 85%;
    border-radius: 10px;
}

/* close button */
.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.leads1 {
    position: relative;
    padding: 100px 0px;
    background: url(../images/pic42.jpg) center / cover no-repeat;
}

.leads1 .container {
    position: relative;
    z-index: 2;
}

.rating1 {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    justify-content: end;
}

/* yellow stars */
.rating1 i {
    color: #3294fd;
    font-size: 10px;
}

.testi1 img {
    margin-bottom: 20px;
}

.testi1 p {
    font-size: 16px;
    font-weight: 600;
    font-family: "Manrope", sans-serif;
}

.testi2 {
    padding: 30px 35px;
    border: 1px solid #959aa53f;
    border-radius: 20px;
    height: 250px;
}

.testi3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.testi4 h4 {
    font-size: 16px;
    font-weight: 600;
    font-family: "Manrope", sans-serif;
    margin-bottom: 0;
}

.testi4 p {
    font-size: 13px;
    font-weight: 400;
    font-family: "Manrope", sans-serif;
    margin-bottom: 0;
}

.pub1 {
    position: relative;
    padding: 60px 0px;
}

.pub2 {
    position: relative;
    background: #172a55be;
    /* dark base */
    border-radius: 20px;
    padding: 60px;
    overflow: hidden;
}

/* soft moving light inside */
.pub2::before {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 60%;
    height: 100%;

    background: linear-gradient(90deg,
            transparent,
            rgba(48, 147, 253, 0.15),
            rgba(48, 147, 253, 0.35),
            rgba(48, 147, 253, 0.15),
            transparent);

    filter: blur(10px);
    animation: light-sweep 8s ease-in-out infinite;
}

/* content always above */
.pub2>* {
    position: relative;
    z-index: 2;
}

/* smooth left → right light movement */
@keyframes light-sweep {
    0% {
        left: -60%;
    }

    50% {
        left: 120%;
    }

    100% {
        left: -60%;
    }
}

.section-title1 {
    text-align: center;
    margin-bottom: 50px;
}

.section-title1 h4 {
    color: #4da3ff;
    font-size: 14px;
    font-family: "Manrope", sans-serif;
    text-transform: uppercase;
}

.section-title1 h2 {
    font-size: 45px;
    font-weight: 700;
    font-family: "Sora", sans-serif;
    color: #fff;
    width: 70%;
    margin: 0 auto;
    margin-bottom: 20px;
    margin-top: 20px;
}

.section-title1 p {
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    font-family: "Manrope", sans-serif;
    width: 70%;
    margin: 0 auto;
}

/* services css start  */
.breadcrumb li a {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    font-family: "Manrope", sans-serif;
    text-decoration: none;
}

.breadcrumb li a:hover {
    color: #005fcc;
}

.breadcrumb-item.active {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    font-family: "Manrope", sans-serif;
}

.ser1 {
    margin-top: 30px;
}

.ser1 h6 {
    color: #005fcc;
    font-size: 18px;
    font-weight: 400;
    font-family: "Manrope", sans-serif;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.ser1 h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 900;
    font-family: "Sora", sans-serif;
    text-transform: uppercase;
}

.ser1 p {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    font-family: "Manrope", sans-serif;
}

/* services css end  */

/* publishing css start  */
.publish1 img {
    border-radius: 20px;
}

.publish2 h2 {
    font-size: 30px;
    font-weight: 800;
    font-family: "Sora", sans-serif;
    margin-bottom: 20px;
}

.publish2 p {
    font-size: 14px;
    font-weight: 400;
    font-family: "Manrope", sans-serif;
}

.publish3 {
    text-align: center;
    margin-bottom: 50px;
}


.publish3 h2 {
    font-size: 45px;
    font-weight: 700;
    font-family: "Sora", sans-serif;
    color: #000;
    width: 70%;
    margin: 0 auto;
    margin-bottom: 20px;
    margin-top: 20px;
}

.publish3 p {
    font-size: 13px;
    font-weight: 400;
    color: #000;
    font-family: "Manrope", sans-serif;
    width: 70%;
    margin: 0 auto;
    margin-bottom: 10px;
}

/* publishing css end  */

/* Ghostwriting css start  */

.ghost1 h4 {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    font-family: "Manrope", sans-serif;
    margin: 15px 0px;
}

.ghost1 p {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    font-family: "Manrope", sans-serif;
}

/* Ghostwriting css end  */

/* Results css start  */

.resul1 h4 {
    font-size: 30px;
    font-weight: 900;
    color: #000;
    font-family: "Manrope", sans-serif;
    margin: 10px 0px;
}

.resul1 p {
    font-size: 14px;
    font-weight: 400;
    color: #3F4F6E;
    font-family: "Manrope", sans-serif;
    text-transform: uppercase;
}

.resul2 {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.resul2 h3 {
    font-size: 22px;
    font-weight: 900;
    font-family: "Manrope", sans-serif;
    margin-bottom: 20px;
    color: #000;
}

.resul2 p {
    font-size: 13px;
    color: #666;
    font-family: "Manrope", sans-serif;
    margin-bottom: 15px;
}

.resul2 p strong {
    color: #000;
}

.resul3 {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.resul3 span {
    background: #f1f3f7;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-family: "Manrope", sans-serif;
    color: #666;
}

.resul3 span:first-child {
    color: #3b82f6;
}

.divider {
    height: 1px;
    background: #e5e7eb;
    margin: 25px 0;
}

.resul4 {
    display: flex;
    gap: 80px;
}

.stat-box1 h4 {
    font-size: 20px;
    color: #3b82f6;
    font-weight: 700;
    font-family: "Manrope", sans-serif;
    margin-bottom: 5px;
}

.stat-box1 p {
    font-size: 12px;
    font-family: "Manrope", sans-serif;
    color: #666;
    margin: 0;
}

/* Results css end  */

/* testimonial css start  */
.video1 h2 {
    font-size: 30px;
    font-weight: 900;
    font-family: "Sora", sans-serif;
    color: #000;
    text-align: center;
}

.video2 {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 30px;
}

.video2 video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.25);
    transition: 0.3s;
}

.video-overlay button {
    width: 70px;
    height: 70px;
    border: none;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    font-size: 22px;
}

.video-overlay button i {
    color: #111;
}


/* testimonial css end  */

/* book Marketing css start  */
.mark1 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mark1 span {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    font-family: "Sora", sans-serif;
    background-color: #40555f93;
    border: 1px solid #40555F;
    border-radius: 20px;
    padding: 10px 16px;
    animation: float 3s ease-in-out infinite;
    will-change: transform;
}

.mark1 span:nth-child(2) {
    animation-delay: .3s;
}

.mark1 span:nth-child(3) {
    animation-delay: .6s;
}

.mark1 span:nth-child(4) {
    animation-delay: .9s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-6px);
    }

    50% {
        transform: translateY(-8px);
    }

    75% {
        transform: translateY(-0px);
    }
}

.challenge-box {
    border-radius: 20px;
    padding: 35px;
    height: 100%;
}

.challenge-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.challenge-title i {
    color: #FF6B6B;
    font-size: 25px;
}

.challenge-title h3 {
    margin: 0;
    font-size: 25px;
    font-weight: 700;
    color: #1D2238;
    font-family: "Sora", sans-serif;
}

.challenge-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.challenge-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.challenge-list li:last-child {
    margin-bottom: 0;
}

.challenge-list i {
    color: #FF6B6B;
    font-size: 18px;
    margin-top: 4px;
    flex-shrink: 0;
}

.challenge-list span {
    color: #444;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 400;
    font-family: "Manrope", sans-serif;
}

.mark2 {
    background-color: #F3F4F6;
    border: 1px solid #bbc9e4;
    padding: 30px;
    border-radius: 20px;
    height: stretch;
}

.mark2 img {
    background-color: #005fcc;
    border-radius: 20px;
    padding: 15px;
    filter: brightness(1.5);
    width: 60px;
    margin-bottom: 20px;
}

.mark2 h4 {
    font-size: 25px;
    font-weight: 900;
    font-family: "Sora", sans-serif;
    color: #000;
}

.mark2 p {
    font-size: 14px;
    font-weight: 400;
    font-family: "Manrope", sans-serif;
    color: #3F4F6E;
}

.mark2 h6 {
    font-size: 16px;
    font-weight: 700;
    font-family: "Sora", sans-serif;
    color: #000;
    margin-top: 10px;
}

.mark3 {
    padding-left: 15px;
}

.mark3 li {
    font-size: 15px;
    font-weight: 400;
    font-family: "Manrope", sans-serif;
    color: #3F4F6E;
}

.mark4 {
    background-color: #F3F4F6;
    border: 1px solid #bbc9e4;
    padding: 30px;
    border-radius: 20px;
    /* height: stretch; */
}

.mark5 {
    background-color: #fff;
    border: 1px solid #0077ff;
    border-radius: 20px;
    padding: 20px;
}

.mark5 h4 {
    font-size: 20px;
    font-weight: 900;
    font-family: "Sora", sans-serif;
    color: #0077ff;
    text-align: center;
}

.mark5 p {
    font-size: 12px;
    font-weight: 400;
    font-family: "Manrope", sans-serif;
    color: #3F4F6E;
    text-align: center;
    margin-bottom: 0;
}

.feature-card1 {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: linear-gradient(135deg, #ffffff, #f3f7ff);
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 18px;
    transition: 0.3s;
}

.feature-card1:hover {
    transform: translateY(-3px);
}

.feature-card1 .icon {
    min-width: 35px;
    height: 35px;
    background: #4da3ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

.feature-card1 .text h6 {
    margin: 0;
    font-weight: 600;
    font-size: 15px;
    color: #1d2b4f;
}

.feature-card1 .text p {
    margin: 4px 0 0;
    font-size: 13px;
    color: #6b7a99;
}

/* book Marketing css end  */

/* Terms & Condition css start  */

.terms1 li {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    font-family: "Manrope", sans-serif;
    line-height: 2;
}

.terms2 h4 {
    font-size: 30px;
    font-family: "Sora", sans-serif;
    line-height: 1.1;
    font-weight: 900;
    color: #0d1321;
    margin-bottom: 20px;
}

.terms2 p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
    font-family: "Manrope", sans-serif;
}

/* Terms & Condition css end  */

/* Children book css start  */
.child1 h2 {
    font-size: 30px;
    font-weight: 600;
    color: #2C8FFA;
    font-family: "Sora", sans-serif;
}

.child1 h4 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    font-family: "Sora", sans-serif;
}

.child1 p {
    font-size: 14px;
    font-weight: 400;
    color: #aeb0b6;
    font-family: "Manrope", sans-serif;
}

/* Children book css end  */

/* FOOTER */
.footer {
    background: #09152b;
    color: white;
    padding: 60px 0 20px;
}

.footer-logo img {
    width: 140px;
    margin-bottom: 15px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    margin-top: 10px;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 15px;
}

.copyright {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, .2);
    padding-top: 20px;
}

.footer1 p {
    font-size: 16px;
    font-weight: 400;
    font-family: "Manrope", sans-serif;
}

.footer2 a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    font-family: "Manrope", sans-serif;
}


/* Responsive */
@media(max-width:991px) {

    .capability-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid,
    .compare-box,
    .journey-steps {
        flex-direction: column;
    }
}

/* @media(max-width:768px) {

    .capability-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 30px;
    }

} */