:root {
    /* --primary-color: #1ABC9C;
    --secondry-color: #0A3D62; */
    /* --primary-color: #077b79; */
    --primary-color: #48A8AD;
    --secondry-color: #1D4B68;
    /* --secondry-color: #14356e; */
    /* --black-color: #252525; */
    --black-color: #393d44;
    /* --gray-color: #555555; */
    --gray-color: #4b5563;
    --font-18: 18px;
    --font-20: 20px;
    --white-color: #ffffff;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-second-primary {
    color: var(--secondry-color) !important;
}

.text-gray {
    color: var(--gray-color) !important;
}

.text-black {
    color: var(--black-color) !important;
}

.font-18 {
    font-size: 18px !important;
}
.font-14{
    font-size: 14px;
}
.font-16{
    font-size: 16px !important;
}
.font-20 {
    font-size: 20px !important;
}
.font-24 {
    font-size: 24px;
}

.border-radius-15 {
    border-radius: 15px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--black-color);
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 45px;
}

.section-title p {
    font-size: 18px;
}

.section-title h2 {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 42px;
    color: var(--secondry-color);
    /* line-height: 60px; */
}

.section-title h2 span,
.section-title h2 strong {
    color: var(--primary-color);
    font-weight: 600;
}

.g-4 {
    --bs-gutter-y: 30px;
    --bs-gutter-x: 30px;
}

/* .main-navbar {
    background-color: #fff;
    padding: 12px 0;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
    z-index: 1000;
}

.main-navbar.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
} */

/* Default (not fixed yet) */
.main-navbar {
    width: 100%;
    /* background-color: #fff; */
    padding: 12px 0;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
    z-index: 1000;
}

/* When active after scroll */
.main-navbar.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #ffffff;

    /* Run animation only when becoming fixed */
    animation: slideDown 0.6s ease-out;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Slide animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}


.navbar-brand h2 {
    color: var(--primary-color) !important;
    font-size: 35px;
    font-weight: 700;
}

.main-logo {
    width: 260px;
    padding: 10px 0;
}

.main-header-wrapper {
    justify-content: center !important;
}

.header-links ul li a {
    font-size: 18px;
    text-decoration: none;
    color: var(--secondry-color);
    font-weight: 600;
    flex-grow: 1;
}

.header-links ul .dropdown-custom:hover a {
    color: var(--primary-color);
    background-color: #f8fcff;
}

.text-accent {
    color: var(--primary-color);
}

/* Menu Toggle */
.menu-toggle {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    display: none;
}

/* SIDEBAR BASE */
.sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    padding: 0;
    transition: all 0.4s ease;
    box-shadow: 3px 0 10px rgba(0, 0, 0, 0.1);
}

/* Show Sidebar */
.sidebar.active {
    left: 0;
}

.overlay.active {
    display: block;
}

/* Back Button */
#backBtn {
    font-size: 16px;
    cursor: pointer;
}

/* Sidebar Menu List */
.sidebar-links {
    padding: 0;
    list-style: none;
}

.sidebar-links li {
    padding: 15px;
    border-bottom: 1px solid #f5f5f5;
}

.sidebar-links li a {
    display: flex;
    justify-content: space-between;
    color: #000;
    text-decoration: none;
    font-size: 16px;
}

.sidebar-links li i {
    font-size: 14px;
}

/* Add Right Arrow */
.sidebar-links li .right-arrow {
    font-size: 14px;
}

/* Close Button */
.close-btn {
    border: none;
    font-size: 16px;
    color: #000;
    cursor: pointer;
    padding: 14px 18px;
    background-color: #80808012;
}

.sidebar-header {
    border-bottom: 1px solid #8080805e;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1100;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

nav .btn {
    padding: 10px 15px;
}

nav .btn-solid {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid transparent;
    background-color: var(--primary-color);
    transition: background-color .5s ease, color .5s ease;
    white-space: nowrap;
}

.hero-section .hero-input-box {
    background: #fff;
    border-radius: 50px;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.hero-section .hero-input {
    border: none;
    padding: 14px 20px;
    font-size: 18px;
    border-radius: 50px;
    width: 100%;
    outline: none;
}

.input-container {
    margin: 50px 0 60px 0;
}


.hero-section .hero-input-box .btn-solid {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid transparent;
    background-color: var(--secondry-color);
    transition: background-color .5s ease, color .5s ease;
    white-space: nowrap;
    border-radius: 50px;
}

.hero-section .hero-input-box .btn-solid:hover {
    border-color: var(--secondry-color);
    background-color: #fff;
    color: var(--secondry-color) !important;
}

nav .btn.btn-solid:hover,
.hero-section form .btn-solid:hover {
    border-color: var(--primary-color);
    background-color: #fff;
    color: var(--primary-color) !important;
}




.hero-section {
    padding: 150px 0 50px 0;
}
.banner-title{
    max-width: 800px;
    margin: auto;
}
.banner-title h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 80px;
    word-break: break-word;
}

.banner-desc p {
    font-size: 20px;
    max-width: 800px;
    margin: auto;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 40px;
    color: var(--gray-color);
}


.hero-section form {
    margin: 70px 0 50px 0;
}

.partner-badges {
    gap: 40px;
}

.partner-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 20px;
    color: rgb(0 0 0 / 70%);
}




.funnel-section {
    margin: 0 auto;
}

.funnel-container {
    display: flex;
    gap: 65px;
    align-items: stretch;
}


.funnel-graphic {
    flex-shrink: 0;
    position: relative;
}

.funnel-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.funnel-graphic img {
    height: 760px;
    z-index: 1;
    position: relative;
}

.funnel-row {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 70px;
    padding: 35px 0;
    align-items: center;
}

.blue-border {
    position: relative;
}

.blue-border::before {
    content: "";
    position: absolute;
    height: 0px;
    width: 95vw;
    border: 2px dashed blue;
    bottom: 0;
    left: -33%;
}

.dark-green-border {
    position: relative;
}

.dark-green-border::before {
    content: "";
    position: absolute;
    height: 0px;
    width: 95vw;
    border: 2px dashed darkgreen;
    bottom: 0;
    left: -33%;
}

.light-green-border {
    position: relative;
}

.light-green-border::before {
    content: "";
    position: absolute;
    height: 0px;
    width: 95vw;
    border: 2px dashed lightgreen;
    bottom: 0;
    left: -33%;
}

.yellow-border {
    position: relative;
}

.yellow-border::before {
    content: "";
    position: absolute;
    height: 0px;
    width: 95vw;
    border: 2px dashed yellow;
    bottom: 0;
    left: -33%;
}


.funnel-row:last-child {
    border-bottom: none;
}

.funnel-title {
    font-size: 26px;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 0;
}

.funnel-links{
    /* display: grid;
    grid-template-columns: repeat(2, 440px);
    gap: 20px 60px; */
}
.funnel-links a {
    position: relative;
    color: var(--black-color);
    text-decoration: none;
    font-size: 20px;
    transition: all 0.2s ease;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
}
.funnel-links a::after {
    content: "\f178";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    padding-left: 10px;
    transition: all 0.3s;

}
.funnel-links a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}
.funnel-links a:hover::after {
    padding-left: 15px;
}

.funnel-link {
    color: var(--black-color);
    text-decoration: none;
    font-size: 20px;
    transition: all 0.2s ease;
}

.funnel-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.funnel-link:hover i {
    transform: translateX(4px);
}

.arrow i {
    font-size: 22px;
    transition: transform 0.2s ease;
    margin-left: 5px;
}

.why-strategy-wrapper {
    max-width: 1320px;
    margin: 0 auto;
}

.why-box {
    background: #ffffff;
    border: 1px solid var(--secondry-color);
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    height: 100%;
}

.why-box:hover {
    transform: translateY(-6px);
}

.why-icon {
    font-size: 35px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.why-icon i {
    background-color: rgba(26, 188, 156, 0.15);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-box h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondry-color);
    font-size: 22px;
}

.why-box p {
    font-size: 17px;
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 0;
}

.case-card {
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}


.case-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.case-body {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.case-title {
    font-weight: 600;
    font-size: 22px;
    color: var(--secondry-color);
    margin-bottom: 8px;
}

.case-desc {
    font-size: 18px;
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 16px;
}

.case-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--primary-color);
    padding-top: 12px;
    margin-top: auto;
}

.case-metric {
    font-weight: 600;
    font-size: 20px;
    color: var(--primary-color);
}

.case-link {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondry-color);
    text-decoration: none;
    transition: all 0.2s ease;
}

.case-link:hover i {
    transform: translateX(4px);
}

.case-link i {
    font-size: 20px;
    transition: transform 0.2s ease;
}


.ai-tabs-modern {
    text-align: center;
}

.tabs-container {
    margin: 0 auto;
}

.tab-wrapper {
    background: var(--white-color);
    border-bottom: 1px solid var(--secondry-color);
    display: inline-flex;
    justify-content: center;
    margin-bottom: 20px;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tab-titles {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
}

.tab-titles li {
    padding: 8px 20px;
    font-weight: 500;
    font-size: 20px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    color: var(--secondry-color);
}

.tab-titles li.active {
    color: var(--white-color);
    border-bottom: 3px solid var(--secondry-color);
    background-color: var(--secondry-color);
    border-radius: 10px 10px 0 0;
}

.tab-content {
    display: none;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
    background: linear-gradient(90deg, #fafcff, #f5faff);
    border-radius: 30px;
    box-shadow: 0px 4px 20px rgba(26, 188, 156, 0.08);
    position: relative;
    overflow: hidden;
    padding: 30px;
    z-index: 1;
    animation: fadeIn 0.6s ease;
    transition: all 0.4s ease;
}

.tab-content::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(120, 200, 255, 0.08);
    top: -60px;
    right: -60px;
    z-index: -1;
}
.round-box{
    overflow: hidden;
    position: relative;
}
.round-box::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(120, 200, 255, 0.08);
    top: -60px;
    right: -60px;
}
.tab-content::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(120, 200, 255, 0.08);
    bottom: -60px;
    left: -60px;
    z-index: -1;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 30px;
    font-weight: 600;
    color: var(--secondry-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.tab-content p {
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 20px;
}

.tab-content ul.ai-list {
    font-size: 20px;
    color: var(--gray-color);
}

.result {
    color: var(--primary-color);
    margin-top: 10px;
    border-left: 5px solid var(--primary-color);
    padding-left: 10px;
}

.result span {
    font-size: 22px;
    font-weight: 600;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    position: relative;
    padding: 15px 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 10px;
}

.btn-solid {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    border: 2px solid transparent;
    background-color: var(--secondry-color);
    transition: background-color .5s ease, color .5s ease;
}

.btn.btn-solid:hover {
    border-color: var(--secondry-color);
    background-color: transparent;
    color: var(--secondry-color) !important;
}

.note {
    font-size: 22px;
    color: var(--gray-color);
    text-align: center;
    position: relative;
    display: inline-block;
    max-width: 700px;
    line-height: 1.6;
    padding: 12px 25px;
    background: #edf7ff85;
    border-radius: 15px;
    border-left: 4px solid var(--secondry-color);
    border-right: 4px solid var(--secondry-color);
    box-shadow: 0 4px 15px rgba(26, 188, 156, 0.1);
}

/* .note span {
    color: var(--secondry-color);
    font-weight: 600;
}

.note strong {
    color: var(--black-color);
    font-weight: 600;
} */

.expertise-section {
    background: #fff;
}

.expertise-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 25px;
}

.expertise-item i {
    color: var(--primary-color);
    font-size: 26px;
    margin-top: 5px;
}

.expertise-item h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondry-color);
    margin-bottom: 6px;
}

.expertise-item p {
    font-size: 20px;
    color: var(--gray-color);
    margin: 0;
    line-height: 1.6;
}

.expertise-right {
    position: relative;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 15px;
}

.expertise-right .expertise-right-box {
    position: relative;
    padding: 40px 30px;
    z-index: 1;
    background: #fff;
    border-radius: 15px;
    border: 3px solid var(--primary-color);
}

.expertise-right::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(26, 188, 156, 0.1);
    border-radius: 15px;
    top: 10px;
    left: 15px;
    transform: rotate(6deg);
}

.stat i {
    background-color: rgba(26, 188, 156, 0.15);
    color: var(--primary-color);
    font-size: 28px;
    padding: 14px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.stat h3 {
    color: var(--secondry-color);
    font-size: 30px;
    margin-bottom: 5px;
    font-weight: 700;
}

.stat p {
    color: var(--gray-color);
    font-size: 18px;
    margin: 0;
    line-height: 21px;
}

.stat {
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    background-color: #eff8ff;
    border-radius: 15px;
    height: 120px;
}

.stat img {
    margin-top: auto;
}

.orange-bg {
    background-color: #fff0d6;
}

.yellow-bg {
    background-color: #ffffcd;
}

.gray-bg {
    background-color: #ececec;
}

.expertise-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 22px;
}

.kpi-tabs .tab-content {
    display: block;
    padding: 30px;
}

.kpi-tabs .nav-pills {
    position: sticky;
    top: 110px;
}

.kpi-tabs .nav-link {
    border: none;
    border-left: 4px solid transparent;
    border-radius: 0;
    text-align: left;
    color: var(--black-color);
    font-weight: 600;
    padding: 15px;
    background: transparent;
    transition: all 0.3s ease;
    font-size: 20px;
}

.kpi-tabs .nav-link:hover {
    background: #f4fcff;
}

.kpi-tabs .nav-link.active {
    color: var(--secondry-color);
    background: #E6F4FA;
    border-left: 4px solid var(--secondry-color);
    font-weight: 600;
}

.kpi-tabs .tab-content h3 {
    color: var(--secondry-color);
    font-weight: 600;
    font-size: 25px;
    display: flex;
    align-items: center;
}

.kpi-tabs ul {
    padding-left: 18px;
}

.kpi-tabs ul li {
    margin-bottom: 10px;
    color: var(--gray-color);
    font-size: 20px;
    list-style: none;
}

.icon-bg {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background-color: rgba(26, 188, 156, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-right: 12px;
    vertical-align: middle;
    flex-shrink: 0;
}

.icon-bg i {
    font-size: 30px;
}

span.step-tag {
    display: none;
}

.feature-list li {
    position: relative;
    /* background: linear-gradient(90deg, rgba(26, 188, 156, 0.08), rgba(10, 61, 98, 0.05)); */
    /* border: 1px solid rgba(26, 188, 156, 0.25); */
    /* border-radius: 10px; */
    /* padding: 12px 18px 12px 44px; */
    padding: 0 0 0 44px;
    font-weight: 500;
    color: var(--secondry-color);
    margin-bottom: 10px;
    /* transition: all 0.3s ease; */
}

.feature-list {
    border: 1px solid rgba(26, 188, 156, 0.25);
    border-radius: 10px;
    padding: 12px 18px 12px 44px;
    font-weight: 500;
    color: var(--secondry-color);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.feature-list li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 16px;
    top: 14px;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 18px;
}



.testimonial-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.testimonial-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.testimonial-body {
    /* text-align: center; */
    padding: 20px;
    position: relative;
}

.client-img {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
}

.client-img img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.stars {
    margin-top: 50px;
    color: #FFD43B;
}

.testimonial-body h3 {
    color: var(--secondry-color);
    font-weight: 700;
    font-size: 25px;
    margin: 15px 0 0 0;
}

.testimonial-body p {
    color: var(--gray-color);
    font-size: 20px;
    margin-top: 14px;
    margin-bottom: 0;
}

.testimonial-body ul li {
    font-size: 20px;
    padding: 2px 0;
}

.mySwiper .swiper-slide {
    width: auto;
    display: flex;
    height: auto;
}

.testimonial-body i {
    font-size: 20px;
}

.cr-link i {
    transition: transform 0.3s ease;
}

.cr-link a:hover {
    color: var(--primary-color);
}

.cr-link a:hover i {
    transform: translateX(6px);
}

.kpi-link a {
    color: var(--primary-color);
    font-size: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.kpi-link i {
    position: relative;
    top: 3px;
    left: 8px;
}

.kpi-link a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}


.team-card-box {
    background-color: #edf7ff5c;
    border-radius: 15px;
    box-shadow: 0 0px 4px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    position: relative;
    max-width: 90%;
    margin: 0 auto;
}

.emp-img img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.emp-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
}

.emp-img:not(:first-child) {
    margin-left: -35px;
    z-index: 0;
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}

.blog-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.blog-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
}

.blog-body {
    position: relative;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    width: 90%;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

.blog-body h3 {
    color: var(--secondry-color);
    font-weight: 600;
    font-size: 20px;
    margin: 0 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 52px;
    line-height: 1.3;
}


.blog-link a {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
}

.blog-link i {
    transition: transform 0.3s ease;
}

.blog-link a:hover {
    color: var(--secondry-color);
}

.blog-link a:hover i {
    transform: translateX(6px);
}

.section-gap {
    padding-top: 50px;
    padding-bottom: 50px;
}

.accordion-body h3 {
    display: flex;
    align-items: center;
}

.kpi-link {
    margin-top: 30px;
}

.team-desc {
    font-size: 25px !important;
}

.team-card .section-title {
    max-width: 70%;
}

.team-card .section-title p {
    color: var(--gray-color);
}

.company-title {
    font-size: 18px !important;
}

.creative-footer {
    background: linear-gradient(90deg, #07141d 0%, #213d50 88%, #000000 297%);
    color: #e7f7f5;
    position: relative;
    overflow: hidden;
    padding: 50px 0 0 0;
}

.footer-wrapper {
    max-width: 1320px;
    margin: 0 auto;
}

.footer-logo {
    width: 300px;
}

.text-accent {
    color: var(--primary-color);
}

.creative-footer h4 {
    font-size: 30px;
}

.creative-footer h6 {
    font-size: 22px;
    font-weight: 700;
}

.creative-footer p {
    font-size: 18px;
    color: #d2ebe8;
}

.copy-right {
    padding: 25px 0;
}

.footer-links a {
    color: #d6f4ef;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 18px;
}

.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links a:hover::after {
    width: 100%;
}

.contact-info li:hover,
.contact-info a:hover,
.contact-info li:hover a {
    color: var(--primary-color) !important;
}

.social-icons a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: transparent;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-menu-list li a:before{
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
    color: #ffffff;
    position: absolute;
}
.social-menu-list li.facebook-icon a:before {
    content: "\f39e";
}
.social-menu-list li.twitter-icon a:before {
    content: "\f099";
}
.social-menu-list li.linkedin-icon a:before {
    content: "\f0e1";
}
.social-menu-list li.instagram-icon a:before {
    content: "\f16d";
}
.social-menu-list li.pinterest-icon a:before {
    content: "\f0d2";
}
.social-menu-list{
    padding: 0;
    display: flex;
    gap: 15px;
}
.social-menu-list li{
    list-style: none;
}
.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.contact-info li {
    margin-bottom: 8px;
    color: #d6f4ef;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.creative-footer hr {
    border-color: #fff;
}

.location-tags {
    font-weight: 700;
}


.navbar-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #1ABC9C;
}

/* Dropdown List (Hidden by Default) */
.dropdown-custom .dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    padding: 30px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    width: 100%;
    background-color: #f8fcff;
    box-shadow: 0 8px 12px -10px rgba(0, 0, 0, 0.2);
}

.service-box {
    background-color: #fff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    height: 100%;
    overflow: hidden;
}

.service-box-cta .btn-solid {
    background-color: transparent;
    font-size: 22px;
}

.service-box-cta .btn-solid:hover {
    border: 0;
}

.service-box-cta i {
    transition: transform 0.3s ease;
}

.service-box-cta:hover i {
    transform: translateX(5px);
    /* move arrow to right */
}

.service-box h4 {
    padding: 12px 15px 12px 15px;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    border-bottom: 1px solid #80808014;
}

/* Show dropdown on hover */
.dropdown-custom:hover .dropdown-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown items */
.dropdown-list li a {
    display: block;
    padding: 15px 15px 15px 25px;
    color: var(--black-color) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-size: 18px !important;
    font-weight: 400 !important;
    background-color: #fff !important;
}

.dropdown-list li a i {
    font-size: 16px;
    position: relative;
    top: 6px;
}

.dropdown-list li:first-child a {
    padding-top: 25px;
}

.dropdown-list li:last-child a {
    padding-bottom: 25px !important;
}


.dropdown-list li a span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.dropdown-list li a:hover span::after {
    width: 100%;
}

.dropdown-list li a:hover {
    color: var(--primary-color) !important;
}

/* Rotate arrow on hover */
.dropdown-custom:hover .fa-chevron-down {
    transform: rotate(180deg);
    transition: transform 0.6s ease;
}

.main-header {
    gap: 35px;
}

.hiring-badge {
    background: rgba(26, 188, 156, 0.1);
    color: var(--primary-color);
    font-size: 14px;
    padding: 2px 6px;
    border-radius: 6px;
    margin-left: 6px;
    font-weight: 600;
    display: inline-block;
}

.sidebar-btn .btn-solid {
    font-size: 14px;
    padding: 10px 20px;
}


/* .menu-panel {
    display: none;
}

.menu-panel.active {
    display: block;
}

.submenu-header {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
} */
.menu-panel {
    display: none;
}

.menu-panel.active {
    display: block;
    overflow: auto;
}

#sidebarTitle {
    visibility: visible;
}

.back-arrow {
    font-size: 20px;
    cursor: pointer;
    padding: 18px 16px;
    background-color: #80808012;
}


.service-box-bg-1 {
    position: relative;
    background-image: url("../images/menu-1.webp");
    background-size: cover;
    background-position: center;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.service-box-bg-3 {
    position: relative;
    background-image: url("../images/menu-3.webp");
    background-size: cover;
    background-position: center;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.service-box-bg-4 {
    position: relative;
    background-image: url("../images/menu-4.webp");
    background-size: contain;
    background-position: top;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background-repeat: no-repeat;
}

.service-box-bg-5 {
    position: relative;
    background-image: url("../images/menu-5.webp");
    background-size: cover;
    background-position: center;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.service-box-bg-2 {
    position: relative;
    background-image: url("../images/menu-2.webp");
    background-size: cover;
    background-position: center;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.service-box-bg::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, #000, transparent);
    z-index: 1;
}

.service-box-bg h3 {
    font-size: 35px;
    color: #fff;
    line-height: 60px;
}

.service-box-bg>div {
    position: relative;
    z-index: 2;
}

.service-box-bg .btn-solid {
    color: #fff !important;
    font-size: 20px;
    font-weight: 600;
    border: 2px solid transparent;
    background-color: var(--primary-color) !important;
    transition: background-color .5s ease, color .5s ease;
    padding: 10px 15px;
    white-space: normal;
}

.service-box-bg .btn-solid:hover {
    background-color: #fff !important;
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

/* Universal card styling */
.feature-box .card {
    padding: 20px;
    border-radius: 15px;
    text-align: left;
    height: 100%;
    transition: transform 0.4s ease;
    box-shadow: 0 0 15px 0px rgb(0 0 0 / 4%);
    border: 1px solid #80808021;
}

/* Paragraph line height */
.feature-box .card p {
    line-height: 30px;
    color: var(--gray-color);
}

/* Icon box shared style */
.feature-box .icon-box {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    transition: transform 0.6s ease;
    background-color: rgb(72 168 173 / 20%);
    color: var(--primary-color);
}
.feature-box .icon-box.h50w50{
    width: 50px;
    height: 50px;
    min-width: 50px;
}
.feature-box .icon-box.h50w50 i {
    font-size: 18px;
    transition: transform 0.6s ease;
}
/* Icon styling universal */
.feature-box .icon-box i {
    font-size: 30px;
    transition: transform 0.6s ease;
}

/* Hover animation */
.feature-box .card:hover .icon-box i {
    transform: scale(1.2);
}

/* ---------- Individual color themes ---------- */
/* Card 1 */
.feature-box .card-1 .icon-box {
    background-color: #ef44441a;
}

.multimulticolor .multimultiCard:nth-child(6n+1) .icon-box {
    background-color: #ef44441a;
}

.multimulticolor .multimultiCard:nth-child(6n+2) .icon-box {
    background-color: #e1ffee;
}

.multimulticolor .multimultiCard:nth-child(6n+3) .icon-box {
    background-color: #136dec1a;
}

.multimulticolor .multimultiCard:nth-child(6n+4) .icon-box {
    background-color: #ffeeac73;
}

.multimulticolor .multimultiCard:nth-child(6n+5) .icon-box {
    background-color: #f3e8ff;
}

.multimulticolor .multimultiCard:nth-child(6n+6) .icon-box {
    background-color: #00d0ff36; 
}

.feature-box .card-1 .icon-box {
    background-color: #ef44441a;
}

.multimulticolor .multimultiCard:nth-child(6n+1) .icon-box i {
    color: #ef4444;
}

.multimulticolor .multimultiCard:nth-child(6n+2) .icon-box i {
    color: #28bd66;
}

.multimulticolor .multimultiCard:nth-child(6n+3) .icon-box i {
    color: #136dec;
}

.multimulticolor .multimultiCard:nth-child(6n+4) .icon-box i {
    color: #fbbf24;
}

.multimulticolor .multimultiCard:nth-child(6n+5) .icon-box i {
    color: #a855f7;
}

.multimulticolor .multimultiCard:nth-child(6n+6) .icon-box i {
    color: #1bbfe5;
}

.feature-box .card-1 i {
    color: #ef4444;
}

/* Card 2 */
.feature-box .card-2 .icon-box {
    background-color: #e1ffee;
}

.feature-box .card-2 i {
    color: #28bd66;
}

/* Card 3 */
.feature-box .card-3 .icon-box {
    background-color: #136dec1a;
}

.feature-box .card-3 i {
    color: #136dec;
}

/* Add more cards easily */
.feature-box .card-4 .icon-box {
    background-color: #ffeeac73;
}

.feature-box .card-4 i {
    color: #fbbf24;
}

.feature-box .card-5 .icon-box {
    background-color: #f3e8ff;
}

.feature-box .card-5 i {
    color: #a855f7;
}

.feature-box .card-6 .icon-box {
    background-color: #ffa50036;
}

.feature-box .card-6 i {
    color: orange;
}

.stats-marquee {
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    padding: 20px 0;
}

.stats-track {
    display: inline-flex;
    gap: 40px;
    will-change: transform;
    /* smoother */
}

.stats-marquee {
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    padding: 20px 0;
}



.stats-marquee .stats-box {
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
}

.stats-marquee .stats-box .stats-box-title {
    color: var(--gray-color);
    font-size: 20px;
    margin-right: 30px;
}

.stats-marquee .stats-box i {
    font-size: 24px;
    color: var(--primary-color);
}





.result-box {
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
    background: linear-gradient(90deg, #fafcff, #f5faff);
    border-radius: 30px;
    box-shadow: 0px 4px 20px rgba(26, 188, 156, 0.08);
    position: relative;
    overflow: hidden;
    padding: 40px;
    z-index: 1;
}

.result-box::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(120, 200, 255, 0.08);
    top: -60px;
    right: -60px;
    z-index: 0;
}

.result-box::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(120, 200, 255, 0.08);
    bottom: -60px;
    left: -60px;
    z-index: -1;
}


.result-box h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondry-color);
    text-align: center;
    line-height: 35px;
}

.powered {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    text-align: center;
}

.powered-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    /* background: var(--secondry-color); */
    /* backdrop-filter: blur(4px); */
    border-radius: 20px;
    font-size: 16px;
    /* color: #fff; */
}

.powered-pill i {
    font-size: 16px;
}

.deliver-hand {
    font-size: 26px;
    animation: handBounce 1.3s infinite ease-in-out;
    margin-bottom: 10px;
}

@keyframes handBounce {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }

    100% {
        transform: translateY(0);
    }
}




.btn-solid-sm {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid transparent;
    background-color: var(--secondry-color);
    transition: background-color .5s ease, color .5s ease;
    padding: 12px 25px;
}

.btn.btn-solid-sm:hover {
    border-color: var(--secondry-color);
    background-color: transparent;
    color: var(--secondry-color) !important;
}

.client-review-box {
    padding: 25px;
    border-radius: 15px;
    text-align: left;
    height: 100%;
    transition: transform 0.4s ease;
    box-shadow: 0 0 15px 0px rgb(0 0 0 / 4%);
    border: 1px solid #80808021;
    display: flex;
    flex-direction: column;
}


.client-image img {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    border: 4px solid #80808021;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.client-name {
    font-size: 25px;
    font-weight: 600;
    color: var(--secondry-color);
    margin-bottom: 0;
}

.industry-label {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 8px;
}

.client-review-results li {
    position: relative;
    background: linear-gradient(90deg, rgba(26, 188, 156, 0.08), rgba(10, 61, 98, 0.05));
    border: 1px solid rgba(26, 188, 156, 0.25);
    border-radius: 10px;
    padding: 12px 18px 12px 44px;
    font-weight: 500;
    color: var(--secondry-color);
    margin-bottom: 14px;
    transition: all 0.3s ease;
    font-size: 18px;
}

.client-review-results li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 16px;
    top: 24px;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 18px;
}

.client-quote {
    margin-bottom: 25px;
    flex-grow: 1;
    position: relative;
    font-size: 20px;
}


.seo-top-tab-section .tab-content {
    display: block;
    max-width: 100%;
}

.seo-top-tab-section .nav-pills {
    margin-bottom: 40px;
}

.seo-top-tab-section .nav-pills .nav-link {
    font-size: 25px;
    padding: 15px 40px;
    font-weight: 600;
    color: var(--gray-color);
    width: 100%;
}

.seo-top-tab-section .nav-pills .nav-link.active {
    background-color: #0094ff2b;
    color: var(--primary-color);
}

.seo-top-tab-section .nav-item {
    width: 33.33%;
    flex-grow: 1;
}

.tab-box-icon i {
    font-size: 25px;
    color: var(--primary-color);
    position: relative;
    top: 5px;
}

.common-list {
    font-size: 20px;
    color: var(--gray-color);
}

.list-inside li {
    list-style: disc !important;
}

.tab-box-second-title {
    font-size: 24px;
}


.steps-wrapper {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.step-tabs {
    display: flex;
    gap: 14px;
    justify-content: space-between;
    overflow-x: auto;
    padding-bottom: 10px;
}

.step-tab {
    flex: 1;
    min-width: 180px;
    background: #dae8f285;
    padding: 14px;
    border-radius: 15px;
    text-align: left;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.25s;
    display: flex;
    gap: 20px;
    align-items: center;
}

.step-tab.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--primary-color);
    font-weight: 700;
    color: var(--primary-color);
    font-size: 18px;
}

.step-tab.active .step-number {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.step-title {
    font-size: 20px;
}

.step-content ul {
    font-size: 20px;
    color: var(--gray-color);
}

.step-content ul li {
    margin-bottom: 15px;
}

/* PROGRESS BAR */
.progress-line-wrapper {
    position: relative;
    margin-top: 5px;
    height: 6px;
    background: #e3e6ea;
    border-radius: 10px;
}

.progress-line {
    height: 6px;
    background: var(--primary-color);
    width: 0%;
    transition: width 0.35s ease;
    border-radius: 10px;
}

.content-section {
    margin-top: 30px;
}

.content-section h4 {
    font-weight: 700;
    color: var(--secondary-color);
}

.content-section p {
    color: #555;
    font-size: 20px;
    line-height: 1.6;
}

.divider {
    height: 1px;
    background: #e6e6e6;
    margin: 24px 0;
}

.step-badge-title {
    font-weight: 700;
    margin-bottom: 18px;
}

.badge-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 5px 20px 5px 5px;
    border: 1px solid #D5DDFF;
    border-radius: 30px;
    font-size: 20px;
    margin-bottom: 16px;
    color: #555;
}

.badge-outline .badge {
    background: #d5ddff69;
    color: #555;
    padding: 12px 15px;
    font-size: 20px;
    font-weight: 400;
    border-radius: 30px;
}

.step-label {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
}

.step-4-content {
    border-right: 1px solid #dee2e6;
}


.pricing-section .feature-box .card {
    padding: 25px;
}

.pricing-section .feature-box .icon-box {
    width: 50px;
    min-width: 50px;
    height: 50px;
}

.pricing-section .feature-box .icon-box i {
    font-size: 20px;
}

.pricing-section .feature-box .card h5 {
    line-height: 30px;
}

.pricing-section .pricing-panel {
    background-color: var(--secondry-color);
    border-radius: 26px;
    color: #fff;
    box-shadow: 0 0 15px 0px rgb(0 0 0 / 4%);
}

.pricing-section .price-box {
    padding: 30px 30px 10px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-section .small-label {
    font-size: 20px;
    margin-bottom: 8px;
}

.pricing-section .price-value {
    font-size: 50px;
    font-weight: 600;
}

.pricing-section .price-value span {
    font-size: 24px;
}

.pricing-section .roadmap-title {
    margin: 0px 0 25px;
    font-weight: 600;
    font-size: 22px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.pricing-section .roi-timeline {
    padding: 25px 30px 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-section .roi-timeline ul li p {
    font-size: 18px;
    line-height: 25px;
    font-weight: 200;
}

.pricing-section .roi-timeline ul li {
    position: relative;
    list-style-type: none;
    padding-left: 38px;
}

.pricing-section .roi-timeline ul li:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 10px;
    width: 2px;
    height: 100%;
    background: #fff;
}

.pricing-section .roi-timeline ul li::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 6px;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
}

.pricing-section .roi-timeline ul li h5 {
    font-size: 22px;
}

.pricing-section .price-box-footer-icon {
    color: #fff;
    width: 35px;
    height: 35px;
    min-width: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.pricing-section .price-box-footer .price-box-footer-text {
    font-size: 20px;
    line-height: 30px;
    color: #fff;
}

.pricing-section .price-box-footer .price-box-footer-text span {
    font-size: 25px;
}

.pricing-section .price-box-footer {
    padding: 25px;
}






.faq-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px 0px rgb(0 0 0 / 4%);
}

.faq-question {
    background: #fff;
    border: none;
    width: 100%;
    text-align: left;
    padding: 18px 20px;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--black-color);
    transition: background 0.3s ease;
    box-shadow: 0 0 15px 0px rgb(0 0 0 / 4%);
    border-radius: 15px;
    gap: 15px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    transition: max-height 0.45s ease, padding 0.3s ease;
    padding: 0 20px;
    line-height: 1.6;
    color: var(--gray-color);
}

.faq-item.active .faq-answer {
    max-height: 100%;
    padding: 15px 20px;
}

.faq-answer p {
    font-size: 20px;
}


.faq-icon {
    font-size: 30px;
    transition: transform 0.7s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-left-title {
    font-size: 30px;
    font-weight: 600;
    padding: 15px 0;
}


.book-call-box {
    margin: 0 auto;
    text-align: left;
    background: linear-gradient(90deg, #fafcff, #f5faff);
    border-radius: 30px;
    box-shadow: 0px 4px 20px rgba(26, 188, 156, 0.08);
    position: relative;
    overflow: hidden;
    padding: 40px;
    z-index: 1;
}

.book-call-box::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(120, 200, 255, 0.08);
    top: -60px;
    right: -60px;
    z-index: 0;
}

.book-call-box::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(120, 200, 255, 0.08);
    bottom: -60px;
    left: -60px;
    z-index: -1;
}

.book-call-box .section-title p {
    font-size: 24px;
    line-height: 40px;
}


/* Left Card */
.trust-card {
    background: #fff;
    border-radius: 18px;
}

.trust-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.trust-item h4 {
    font-size: 20px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: #e9f9f5;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    min-width: 50px;
}

/* Proof Box */
.proof-box {
    background: var(--secondry-color);
    color: #fff;
    border-radius: 15px;
}

.rate-per {
    font-size: 30px;
    font-weight: 600;
}

.proof-icon {
    font-size: 25px;
    margin-right: 10px;
    color: var(--primary-color);
}



.ai-seo-hero {
    text-align: left;
    padding: 100px 0 0 0;
    position: relative;
    overflow: hidden;
}

.ai-seo-hero .neural-grid {
    position: absolute;
    inset: 0;
    background-size: 50px 50px;
    background-image: linear-gradient(rgb(72 168 173 / 5%) 1px, #48A8AD00 1px),
        linear-gradient(90deg, rgb(29 75 104 / 5%) 1px, #1D4B6800 1px);
    opacity: 0.9;
    z-index: -1;
}

.ai-seo-hero .node {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    filter: drop-shadow(0 0 8px var(--primary-color));
    animation: floatNode 6s infinite ease-in-out;
}

@keyframes floatNode {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(-20px);
        opacity: 0.7;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.ai-seo-hero .hero-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 54px;
    margin-bottom: 0;
    color: var(--secondry-color);
}

.ai-seo-hero .hero-sub {
    font-size: 18px;
}

.ai-seo-hero .trust-box {
    display: flex;
    gap: 10px 30px;
    background-color: #f2f2f2;
    padding: 10px 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.ai-seo-hero .trust-box span {
    font-size: 18px;
}

.ai-seo-hero .trust-box span i {
    color: var(--primary-color);
}

.ai-seo-hero .btn-solid {
    font-size: 14px;
    padding: 12px 16px;
}

.ai-seo-hero .btn-default {
    color: var(--secondry-color);
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--secondry-color);
    background-color: transparent;
    transition: background-color .5s ease, color .5s ease;
}

.ai-seo-hero .btn-default:hover {
    background-color: var(--secondry-color);
    color: #fff;
    border: 2px solid transparent;
}



.ai-seo-hero .img-box {
    position: relative;
    display: inline-block;
}

.ai-seo-hero .img-box img {
    display: block;
    width: 100%;
    position: relative;
    z-index: 2;
}

.warning-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.warning-list li {
    position: relative;
    padding-left: 47px;
    margin-bottom: 25px;
    font-size: 20px;
    margin-left: 8px;
}

.warning-list li::before {
    content: "!";
    font-weight: bold;
    font-size: 20px;
    width: 30px;
    height: 30px;
    background: rgba(255, 0, 0, 0.1);
    color: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
}

.inner-title {
    padding: 10px;
    border-bottom: 1px solid lightgray;
    font-size: 22px;
}

.ai-check-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.ai-check-list li {
    position: relative;
    padding-left: 47px;
    margin-bottom: 25px;
    font-size: 20px;
    margin-left: 8px;
}

.ai-check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 20px;
    width: 30px;
    height: 30px;
    background: rgba(72, 168, 173, 0.15);
    border-radius: 50%;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0px;
}


.results-section .metric-card {
    padding: 24px;
    border-radius: 15px;
    text-align: left;
    height: 100%;
    box-shadow: 0 0 15px 0px rgb(0 0 0 / 4%);
    border: 1px solid #80808021;
}

/* .results-section .metric-header {
    display: flex;
    align-items: center;    
    margin-bottom: 20px;
} */

.results-section .metric-header i {
    font-size: 30px;
    color: var(--primary-color);
}

.results-section .metric-header h4 {
    font-size: 22px;
    margin: 0;
}

.results-section .metric-box {
    background: #f4f9f76e;
    padding: 18px 20px;
    border-radius: 14px;
    margin-bottom: 15px;
}

.results-section .metric-title {
    margin: 0;
    font-size: 20px;
}

.results-section .metric-value {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.results-section .metric-value.negative {
    color: #ff6b6b;
}



.results-section .testimonial-box {
    position: relative;
}

.results-section .quote-icon {
    position: absolute;
    top: -30px;
    left: 130px;
    font-size: 40px;
    color: var(--secondry-color);
}

.results-section .testimonial-content {
    display: flex;
    gap: 25px;
    margin-top: 25px;
    align-items: center;
}

.results-section .testimonial-img {
    width: 150px;
    height: 150px;
    border-radius: 15px;
    object-fit: cover;
}

.results-section .testimonial-text {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 500;
}

.results-section .client-name {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.results-section .client-role {
    font-size: 16px;
    color: var(--gray-color);
    margin: 0;
}

.ai-seo-top-tab-section .tab-content {
    padding: 0;
    background: none;
    border-radius: 0;
    box-shadow: none;
}

.ai-seo-top-tab-section .tab-content::before,
.tab-content::after {
    display: none;
}

.ai-seo-top-tab-section .ai-check-list li {
    margin-bottom: 20px;
}

.ai-seo-top-tab-section .badge-outline {
    padding: 5px;
    max-width: max-content;
    margin-bottom: 35px;
}

.ai-seo-top-tab-section .tab-content ul {
    font-size: 20px;
    color: var(--gray-color);
}

.ai-seo-top-tab-section .feature-box .card p {
    line-height: 35px;
}

.ai-seo-top-tab-section .faq-question {
    background-color: #ecf0ff69;
}

.ai-seo-top-tab-section .divider-line {
    border-top: 1px dashed #80808021;
    margin-top: 20px;
}

.ai-seo-top-tab-section .custom-list li {
    font-size: 20px;
    margin-bottom: 10px;
}

.common-tab-section .badge-outline .badge {
    background-color: #fecdca5c;
}

.common-tab-section .badge-outline {
    border: 1px solid #fecdca5c;
}

.common-tab-section {
    font-size: 20px;
}

.timeline {
    padding: 10px 30px;
    background-color: #feecca8f;
    color: #ffa700;
    font-size: 20px;
    border-radius: 15px;
    border-left: 3px solid #ffa700;
    border-right: 3px solid #ffa700;
}



.main-nav-bar ul {
    display: flex;
    list-style: none;
    gap: 8px;
    margin: 0;
    padding: 0;
}
.disabled-div{
    cursor: none;
    user-select: none;
    opacity: 0.5;
    /* z-index: -1; */
    position: relative;
     pointer-events: none;
}

.main-nav-bar ul li a {
    text-decoration: none;
}


.main-nav-bar ul li.current-menu-item a {
    color: #1ABC9C;
}







.main-nav-bar .main-nav>a {
    font-size: 16px;
    text-decoration: none;
    color: var(--secondry-color);
    font-weight: 600;
    padding: 15px 35px 15px 15px;
    display: flex;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}

.main-nav-bar .main-nav.open {
    background-color: #f8fcff;
}

.main-nav-bar .main-nav:hover a,
.main-nav-bar .main-nav:hover a::before,
.main-nav-bar .main-nav.open a,
.main-nav-bar .main-nav.open a::before {
    color: var(--primary-color);
}

.main-nav-bar .main-nav>a::before {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.main-nav-bar .main-nav.open>a::before {
    transform: translateY(-50%) rotate(180deg);
}

.main-nav.open .sub-menu:not(.inner-menu .sub-menu) {
    position: absolute;
    top: 100%;
    left: 0;
    padding: 30px;
    list-style: none;
    /* opacity: 0;
    visibility: hidden; */
    transition: all 0.3s ease;
    z-index: 999;
    width: 100%;
    background-color: #f8fcff;
    box-shadow: 0 8px 12px -10px rgba(0, 0, 0, 0.2);
    height: calc(100vh - 78px);
}

.main-nav .sub-menu .inner-menu>a {
    padding: 12px 15px 12px 15px;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    border-bottom: 1px solid #80808014;
    color: var(--secondry-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.main-nav .sub-menu .ai-sco-icon.inner-menu>a {
    position: relative;
}

.main-nav .sub-menu .inner-menu>a::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: rgba(26, 188, 156, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.main-nav .sub-menu .ai-sco-icon.inner-menu>a::before {
    content: "\f544";
}

.main-nav .sub-menu .digital-advertising-icon.inner-menu>a::before {
    content: "\f0a1";
}

.main-nav .sub-menu .content-marketing-icon.inner-menu>a::before {
    content: "\f5ad";
}

.main-nav .sub-menu .e-commerce-management-icon.inner-menu>a::before {
    content: "\f54e";
}

.main-nav .sub-menu .organic-and-advertising-icon.inner-menu>a::before {
    content: "\f53f";
}

.main-nav .sub-menu .design-icon.inner-menu>a::before {
    content: "\e098";
}

.main-nav .sub-menu .development-icon.inner-menu>a::before {
    content: "\f121";
}

.main-nav .sub-menu .mobile-marketing-icon.inner-menu>a::before {
    content: "\f3cd";
}

.main-nav .sub-menu .about-icon.inner-menu>a::before {
    content: "\f05a";
}

.main-nav .sub-menu .inner-menu>.sub-menu .menu-item a {
    font-size: 18px;
    font-weight: 400;
    color: var(--black-color);
    padding: 15px 15px 15px 45px;
    position: relative;
    display: flex;
    width: 100%;
    transition: all 0.3s;
}

.main-nav .sub-menu .inner-menu>.sub-menu .menu-item a:hover {
    color: var(--primary-color);
}

.main-nav .sub-menu .inner-menu>.sub-menu .menu-item a:hover::after {
    background-color: var(--primary-color);
}

.main-nav .sub-menu .inner-menu>.sub-menu .menu-item a::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: var(--black-color);
    left: 20px;
    top: 21px;
    border-radius: 50%;
    transition: all 0.3s;
}

.main-nav .sub-menu .inner-menu>.sub-menu .menu-item a::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    left: 24px;
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}

.menu-item-has-children.open>.sub-menu .inner-menu {
    flex-grow: 1;
    width: 50%;
    background-color: #fff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    margin-bottom: auto;
    overflow: auto;
}

.menu-item-has-children.open>.sub-menu .inner-menu>.sub-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.menu-item-has-children.open>.sub-menu .inner-menu .sub-menu .menu-item {
    width: 100%;
    display: flex;
}

.menu-item-has-children.open>.sub-menu .inner-menu.e-commerce-management-icon>.sub-menu,
.menu-item-has-children.open>.sub-menu .inner-menu.about-icon>.sub-menu {
    display: flex;
    flex-direction: row;
    gap: 0;
    flex-wrap: wrap;
}

.menu-item-has-children.open>.sub-menu .inner-menu.e-commerce-management-icon .sub-menu .menu-item,
.menu-item-has-children.open>.sub-menu .inner-menu.about-icon .sub-menu .menu-item {
    width: 50%;
}


.menu-item-has-children.open>.sub-menu .inner-menu.e-commerce-management-icon .sub-menu .menu-item:nth-child(1),
.menu-item-has-children.open>.sub-menu .inner-menu.e-commerce-management-icon .sub-menu .menu-item:nth-child(2) {
    width: 100%;
}

.sub-menu:not(.inner-menu .sub-menu) {
    display: none !important;
}

.menu-item-has-children.open>.sub-menu:not(.inner-menu .sub-menu) {
    display: flex !important;
    gap: 30px;
}

.custom-logo{
    width: 180px;
}
footer .custom-logo{
    filter: brightness(15);
    margin-bottom: 15px;
}
.main-nav-bar ul > .main-nav{
    display: flex;
    align-items: center;
}



@media (max-width: 991px) {
    .main-nav-bar {
        position: fixed;
        top: 0;
        left: 0;
        background-color: white;
        width: 100%;
        height: 100vh;
        overflow: auto;
        box-shadow: 3px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 3;
        display: none;
        flex-direction: column;
    }
    .main-nav-bar.active{
        display: flex !important;
    }

    .main-nav-bar ul {
        flex-direction: column;
    }

    .main-nav-bar .main-nav>a {
        display: none;
    }

    .sub-menu:not(.inner-menu .sub-menu) {
        display: flex !important;
    }

    .main-nav .sub-menu .inner-menu>.sub-menu .menu-item a {
        padding: 8px 15px 8px 45px;
    }

    .main-nav .sub-menu .inner-menu>.sub-menu .menu-item a::after {
        top: 12px;
    }

    .main-nav .sub-menu .inner-menu>.sub-menu .menu-item a::before {
        top: 16px;
    }

    .sidebar-header {
        justify-content: space-between;
        position: sticky;
        top: 0;
        background: white;
        z-index: 3;
    }

    .main-nav .sub-menu .inner-menu>a {
        padding: 8px 15px 8px 15px;
    }
    .main-nav .sub-menu .inner-menu>a::before {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 18px;
    }
    .main-nav .sub-menu .inner-menu>a {
        font-size: 18px;
        border-bottom-color: transparent;
        gap: 10px;
        padding-top: 20px !important;
    }
      .menu-toggle {
        display: block;
    }
    .main-nav .sub-menu .inner-menu>.sub-menu .menu-item a{
        font-size: 16px;
    }
}




/* .background-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(26, 188, 156, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.shape:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.shape:nth-child(4) {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 20%;
    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.logo {
    margin-bottom: 30px;
}

.logo h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--primary-color)
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(26, 188, 156, 0.5);
    }

    to {
        text-shadow: 0 0 20px rgba(26, 188, 156, 0.8), 0 0 30px rgba(26, 188, 156, 0.6);
    }
}

.logo p {
    font-size: 1.2rem;
    color: #1abc9c;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.coming-soon {
    margin: 60px 0;
}

.coming-soon h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.coming-soon h2:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #1abc9c;
    bottom: -10px;
    left: 0;
    border-radius: 2px;
    transform: scaleX(0);
    animation: expandLine 2s ease-in-out infinite;
}

@keyframes expandLine {

    0%,
    100% {
        transform: scaleX(0);
    }

    50% {
        transform: scaleX(1);
    }
}

.coming-soon p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 40px auto;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.9);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.countdown-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px 20px;
    min-width: 120px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-10px);
    background-color: rgba(26, 188, 156, 0.2);
}

.countdown-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1abc9c;
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.countdown-label {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
}

.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 80px 0;
    flex-wrap: wrap;
}

.feature {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px 25px;
    border-radius: 15px;
    border-top: 4px solid #1abc9c;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background-color: rgba(26, 188, 156, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: #1abc9c;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.notify {
    margin: 60px 0;
}

.notify h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #ffffff;
}

.notify-form {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.notify-input {
    flex: 1;
    padding: 18px 20px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-size: 1.1rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
    transition: all 0.3s ease;
}

.notify-input:focus {
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 2px #1abc9c;
}

.notify-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.notify-button {
    background-color: #1abc9c;
    color: #0a3d62;
    border: none;
    border-radius: 0 50px 50px 0;
    padding: 0 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notify-button:hover {
    background-color: #16a085;
    color: #ffffff;
    letter-spacing: 1px;
}

.social {
    margin: 60px 0 30px;
}

.social h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #ffffff;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: #1abc9c;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #1abc9c;
    color: #0a3d62;
    transform: scale(1.1) rotate(5deg);
}


.highlight {
    color: #1abc9c;
    font-weight: 600;
}

@media (max-width: 768px) {
    .logo h1 {
        font-size: 2.5rem;
    }

    .coming-soon h2 {
        font-size: 2.8rem;
    }

    .coming-soon p {
        font-size: 1.2rem;
    }

    .countdown-item {
        min-width: 100px;
        padding: 20px 15px;
    }

    .countdown-number {
        font-size: 2.8rem;
    }

    .notify-form {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .notify-input,
    .notify-button {
        border-radius: 50px;
        width: 100%;
        max-width: 350px;
    }

    .notify-button {
        padding: 18px 20px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 2rem;
    }

    .logo p {
        font-size: 1rem;
        letter-spacing: 5px;
    }

    .coming-soon h2 {
        font-size: 2.2rem;
    }

    .countdown {
        gap: 15px;
    }

    .countdown-item {
        min-width: 80px;
        padding: 15px 10px;
    }

    .countdown-number {
        font-size: 2.2rem;
    }

    .countdown-label {
        font-size: 1rem;
    }

    .feature {
        min-width: 100%;
    }
}
 */



.twoCard {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.text-gray-color,
.feature-list li.text-gray-color{
    color: var(--gray-color);
}

.f30{
    font-size: 30px;
}
.f32{
    font-size: 32px;
}
.gap10{
    gap: 10px;
}
.gap20{
    gap: 20px;
}
.gap15{
    gap: 15px;
}
.gap30{
    gap: 30px;
}
.gap40{
    gap: 40px;
}
.gap60{
    gap: 60px;
}
.common-border{
    border-color: rgb(128 128 128 / 13%) !important;
}
.common-box-shadow{
    box-shadow: 0 0 15px 0px rgb(0 0 0 / 4%);
}
.p20{
    padding: 20px;
}
.radius15{
    border-radius: 15px;
}
.bg-color-white{
    background-color: #ffffff;
}
.bg-primary10{
    background: rgb(72 168 173 / 10%);
}
.border-primary40{
    border-color: rgb(72 168 173 / 40%) !important;
}
.h35w35{
    height: 35px;
    width: 35px;
    min-width: 35px;
}
.h40w40{
    height: 40px;
    width: 40px;
    min-width: 40px;
}
.font-22{
    font-size: 22px;
}
.p40{
    padding: 40px;
}
.p24{
    padding: 24px;
}
.bg-muted-color-50{
    background-color: rgb(240 242 244 / 50%);
}
.pill{
    background: rgb(72 168 173 / 10%);
    border: 1px solid rgb(72 168 173 / 40%);
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 12px;
    color: var(--gray-color);
    font-weight: 600;
}
.opportunity-box{
    padding: 6px 10px 14px 10px;
}
.mt_30px{
    margin-top: -30px !important;
}
.swiper-pagination{
    bottom: 0 !important;
}
.swiper-pagination-bullet-active{
    background-color: var(--primary-color) !important;
}
.pb30{
    padding-bottom: 30px;
}
.tab-sticky{
    position: sticky;
    top: 78px;
    z-index: 2;
    background: #ffffff;
    margin-bottom: 0px;
}
.lh-1_4{
    line-height: 1.4 !important;
}