@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&family=Rosario:ital,wght@0,300..700;1,300..700&display=swap');

/* Calibri Regular */
@font-face {
    font-family: 'Calibri';
    src: url('../fonts/calibri.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Calibri Bold */
@font-face {
    font-family: 'Calibri';
    src: url('../fonts/calibri_bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Regular */
@font-face {
    font-family: 'Candara';
    src: url('../fonts/candara.ttf') format('truetype');
}

/* Italic */
@font-face {
    font-family: 'Candara';
    src: url('../fonts/Candara_Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

/* Bold */
@font-face {
    font-family: 'Candara';
    src: url('../fonts/Candara_Bold.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

/* Bold Italic */
@font-face {
    font-family: 'Candara';
    src: url('../fonts/Candara_Bold_Italic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Bahnschrift';
    src: url('../fonts/Bahnschrift.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


:root {

    --blue-color: #4079FF;
    --Purple-color: #7C24FF;
    --dark-pink-color: #F5367F;
    --Purple2-color: #A52CC7;
    --light-dark-color: #2b2a29;
    --white-color: #fff;
    --color-paragraph: #2b2a29;
    --font-paragraph: 'Bahnschrift', sans-serif;
    --font-heading: 'Candara', sans-serif;
    --font-Calibri: 'Calibri';
    --bg-gradient: linear-gradient(90deg, rgba(27, 70, 255, 1) 0%, rgba(236, 13, 108, 1) 75%, rgba(126, 30, 243, 1) 100%);
    --bg-gradient2: linear-gradient(270deg, rgba(64, 121, 255, 1) 25%, rgba(124, 36, 255, 1) 50%, rgba(245, 54, 127, 1) 75%, rgba(130, 70, 147, 1) 100%);
    --bg-gradient3: linear-gradient(90deg, rgba(44, 12, 254, 1) 0%, rgba(220, 28, 99, 1) 74%);
    --text-gradient: linear-gradient(90deg, rgba(2, 0, 252, 1) 25%, rgba(239, 142, 179, 1) 61%, rgba(187, 33, 71, 1) 100%);
    --btn-gradient: linear-gradient(90deg, rgba(219, 60, 123, 1) 0%, rgba(3, 94, 247, 1) 100%);
}

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

body,
html {
    height: 100%;

}

html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

html,
body,
div,
span,
img,
ol,
ul,
li,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
option,
legend,
label,
table,
th,
td,
tr,
article,
aside,
caption,
figure,
footer,
header,
hgroup,
mark,
nav,
section,
time,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

.wrapper {
    height: 100%;
}

img {
    border: none;
    outline: none;
    max-width: 100%;
}

label {
    display: inline-block;
    font-weight: normal;
    margin-bottom: 5px;
    max-width: 100%;
}

a {
    outline: none;
    text-decoration: none;
    color: var(--color-heading);
}

a img {
    border: none;
}

a:active {
    outline: none;
    text-decoration: none;
    color: var(--color-heading);
    opacity: 1;
}

a:focus {
    outline: none;
    text-decoration: none;
    color: var(--color-heading);
}

a:hover {
    outline: none;
    text-decoration: none;
    color: var(--color-primary);
    opacity: 1;
}

.color-style-two a:hover {
    color: var(--color-style-two);
}

button {
    outline: medium none;
}

iframe {
    border: none;
}

hr {
    margin-top: 0;
    margin-bottom: 0;
    border: 0;
    border-top: 1px solid #eeeeee;
}

input {
    border: 1px solid #e7e7e7;
    border-radius: inherit;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
    min-height: 50px;
}

input:focus {
    outline: none;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
}

textarea:focus {
    outline: none;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
}

select:focus {
    outline: none;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
}

ul {
    list-style-type: none;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

b {
    font-weight: 600;
}

strong {
    font-weight: 600;
}

.row {
    --bs-gutter-x: 30px;
}

i::before {
    line-height: inherit !important;
}

/* Bounce To Right */
.btn-bounce-to-right {
    display: inline-block;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0);
    position: relative;
    transition-property: color;
    transition-duration: 0.5s;
    overflow: hidden;
}

.btn-bounce-to-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark-pink-color);
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition-property: transform;
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
}

.btn-bounce-to-right:hover:before,
.btn-bounce-to-right:focus:before,
.btn-bounce-to-right:active:before {
    transform: scaleX(1);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

body {
    font-family: var(--font-paragraph);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: normal;
    overflow-x: hidden;
    color: var(--color-paragraph);
    background-color: #f9f9fa;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-heading);
    font-weight: 600;
    font-family: var(--font-heading);
    margin: 0;
    margin-bottom: 15px;
}

a,
.btn,
button {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    outline: medium none;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Calibri';
    font-size: 16px;
    padding-right: 30px;
    padding-left: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
}

p {
    color: var(--color-paragraph);
    margin: 0 0 25px;
    text-transform: none;
    font-weight: 400;
    font-family: var(--font-rosario);
}

.gradient-color {
    background-image: var(--text-gradient);
    color: transparent;
    background-clip: text;
}

/*-- Header Section --*/
.offer-bar {
    background: var(--bg-gradient);
    color: var(--white-color);
}

.offer-bar .offer-text {
    font-weight: 200;
    font-family: Arial, Helvetica, sans-serif;
}

.offer-bar .offer-text strong {
    font-family: Arial, Helvetica, sans-serif;
}

.offer-bar .fa-bullhorn {
    transform: rotate(-22deg)
}

.offer-bar a span {
    background-image: var(--text-gradient);
    color: transparent;
    background-clip: text;
}

.offer-bar .offer-btn {
    min-width: 230px;
    height: 40px;
    margin-left: 12px;
    background: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: .3s ease;
}

.offer-bar .offer-btn:hover {
    transform: translateY(-3px);

}

.offer-bar .offer-btn:hover span {
    background-image: inherit;
    color: #fff;
}

@media (max-width:480px) {
    .offer-bar .offer-text {
        font-size: 8px;
        line-height: 16px;
    }

    .offer-bar .offer-btn {
        padding: 5px;
        padding-left: 8px;
        padding-right: 8px;
        font-size: 9px;
        min-width: 82px;
    }
}

.navbar {
    padding: .5rem 1rem;
}

.navbar-brand {
    padding-left: 0px;
    padding-right: 0px;
}

.navbar-brand img {
    max-width: 250px;
}

@media (max-width:480px) {
    .navbar {
        padding-left: 0;
        padding-right: 0;
    }

    .navbar-brand {
        padding-left: 4px;
    }

    .navbar-brand img {
        max-width: 190px;
    }
}

.dropdown-menu {
    padding: 0;
    margin: 0;
    border: 0 solid transition !important;
    border: 0 solid rgba(0, 0, 0, .15);
    border-radius: 0;
    box-shadow: none !important
}

#header-wrap .btn {
    padding: 4px 20px;
    min-width: 120px;
}

header.fixed-header {
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 11;
    transition: .4s ease-in-out;
    background: hsl(0deg 0% 100% / 55%);
    backdrop-filter: blur(28px);
    box-shadow: 0px 10px 13px -17px #000000, 0px 0px 3px 0px rgba(0, 0, 0, 0);
    ;
}

.custom-toggler {
    width: 52px;
    height: 52px;
    border: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    transition: all 0.35s ease;
}



.custom-toggler span {
    width: 24px;
    height: 2.5px;
    background: var(--color-paragraph);
    border-radius: 50px;
    transition: all 0.35s ease;
    display: block;
}

/* Animation */
.custom-toggler[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.custom-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.custom-toggler[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Remove Bootstrap default */
.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    display: none;
}

@media (max-width:767px) {
    .navbar-collapse {
        backdrop-filter: blur(42px);
        position: relative;
        z-index: 99;
        padding-bottom: 20px;
    }

    header .consult-now {
        padding: 0 12px;
    }

    .mainmenu .navbar-nav .nav-item .nav-link {
        border-bottom: 1px dashed rgb(164 33 159 / 34%);
    }
}

/*.mainmenu a,*/

.mainmenu .navbar-nav .nav-link {
    color: var(--bg-gradient);
    padding-left: 12px;
    padding-right: 12px;
    font-weight: 600;
    font-size: 16px;
    animation: all .5s ease-in-out;
}

.mainmenu .navbar-nav .nav-item:hover .nav-link {
    display: inline-block;
    background-image: var(--text-gradient);
    color: transparent;
    background-clip: text;
}

.navbar-default .navbar-nav>.show>a,
.navbar-default .navbar-nav>.show>a:focus,
.navbar-default .navbar-nav>.show>a:hover {
    color: #fff;
    background-color: #0f3c9e;
    outline: 0;
}

.navbar-light .navbar-toggler {
    padding: 0;
}

.navbar-light .navbar-toggler .fa-bars {
    color: #fff;
    border: 1px solid #fff;
    padding: 5px 10px;
}

.only-mobile {
    display: none;
}

.only-desktop {
    display: block;
}

/*==========Sub Menu=v==========*/
.mainmenu .collapse ul>li:hover>a {
    text-decoration: none;
    transition: all 0.5s ease;
}


.mainmenu .collapse ul ul>li:hover a {
    background-image: var(--text-gradient);
    color: transparent;
    background-clip: text;
}

.mainmenu .collapse ul ul,
.mainmenu .collapse ul ul.dropdown-menu {
    background-color: var(--white-color);
}




/******************************Drop-down menu work on hover**********************************/

@media only screen and (min-width: 767px) {

    /* Level 1 */
    .mainmenu .collapse ul ul {
        position: absolute;
        top: 80px;
        left: 0;
        min-width: 250px;
        display: block;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: 0.5s ease all;
        transition: 0.5s ease all;
        border: 2px solid var(--dark-pink-color);
    }

    .mainmenu .collapse ul ul:after,
    .mainmenu .collapse ul ul:before {
        bottom: 100%;
        left: 50%;
        border: solid transparent;
        content: "";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
    }

    .mainmenu .collapse ul ul:after {
        border-color: rgba(136, 183, 213, 0);
        border-bottom-color: var(--white-color);
        border-width: 15px;
        margin-left: -80px;
    }

    .mainmenu .collapse ul ul:before {
        border-color: rgba(194, 225, 245, 0);
        border-bottom-color: var(--dark-pink-color);
        border-width: 16px;
        margin-left: -82px;
    }

    .mainmenu .collapse ul ul::before {}

    .mainmenu .collapse ul li:hover>ul {
        visibility: visible;
        opacity: 1;
        top: 100%;
        /* border-bottom: 2px solid var(--dark-pink-color); */
    }

    /* Level 2 */
    .mainmenu .collapse ul ul li {
        position: relative;
        padding: 10px 15px;
        border-bottom: 1px dashed #fab2dc;
    }

    .mainmenu .collapse ul ul li:last-child {
        border-bottom: 0;
    }

    .mainmenu .collapse ul ul li a {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 17px;
    }



}

@media only screen and (max-width: 767px) {

    .mainmenu .collapse ul ul,
    .mainmenu .collapse ul ul.dropdown-menu {
        background: hsl(0deg 0% 100% / 18%);
        backdrop-filter: blur(10px);
    }

    .mainmenu .navbar-nav .nav-item:hover .nav-link {
        display: block;
    }

    /* Level 1 mobile arrow */
    .mainmenu ul li a .fa-angle-down {
        position: absolute;
        right: 15px;
        top: 10px;
        width: 25px;
        height: 25px;
        background-color: hsl(0deg 0% 100% / 54%);
        color: #e11073;
        text-align: center;
        line-height: 25px;
        backdrop-filter: blur(40px);
        transition: .3s all ease-in-out;
        border-radius: 50%;
    }

    .mainmenu ul li a.show .fa-angle-down {
        transform: rotate(180deg);
    }

    .mainmenu .collapse ul ul li {
        position: relative;
        padding: 10px 10px;
    }

    .mainmenu .collapse ul ul li a {
        font-size: 16px;
    }
}

.btn-gradient {
    background: var(--bg-gradient3);
    color: var(--white-color) !important;
}

/*custom css*/
.mainmenu ul li a.dropdown-toggle::after {
    display: none;
}

section {
    padding: 60px 0px;
}

.heading-title h2 {
    font-size: 46px;
    text-transform: capitalize;
}

.slider {
    padding: 60px 0px;
    padding-top: 120px;
    background: linear-gradient(0deg, rgba(251, 251, 252, 1) 0%, rgba(249, 226, 237, 1) 42%, rgba(189, 189, 251, 1) 100%);

}

#carouselExampleIndicators {
    position: relative;
    z-index: 9;
}

.shape {
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    z-index: 0;
    filter: blur(50px);
    overflow: hidden;
    z-index: 0;
    opacity: .8;
}

.shape ul {
    display: flex;
    align-items: end;
    justify-content: space-around;

}

.shape ul li {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation: blobMove 3s infinite ease-in-out;
}

/* Circle 1 */
.shape ul li:nth-child(1) {
    background: #78ff12;
    animation: smoothMove1 12s infinite;
}

/* Circle 2 */
.shape ul li:nth-child(2) {
    width: 300px;
    height: 300px;
    background: #43f9ff;
    animation: smoothMove2 8s infinite
}

/* Circle 3 */
.shape ul li:nth-child(3) {
    width: 300px;
    height: 300px;
    background: #ffff22;
    animation: smoothMove2 6s infinite
}

/* Animations */

@keyframes smoothMove1 {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(180px, -140px);
    }

    50% {
        transform: translate(540px, -360px);
    }

    75% {
        transform: translate(260px, 120px);
    }

    100% {
        transform: translate(-340px, 40px);
    }
}

@keyframes smoothMove2 {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-100px, 50px);
    }

    50% {
        transform: translate(-150px, -60px);
    }

    75% {
        transform: translate(-50px, -120px);
    }

    100% {
        transform: translate(40px, -20px);
    }
}

@keyframes smoothMove3 {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(60px, -80px);
    }

    50% {
        transform: translate(-80px, -140px);
    }

    75% {
        transform: translate(-140px, 20px);
    }

    100% {
        transform: translate(40px, 100px);
    }
}

.slider .text-aria h2 {
    font-size: 54px;
    font-family: 'Calibri';
}

.slider .text-aria h2 span {
    display: inline-block;
    background-image: var(--text-gradient);
    color: transparent;
    background-clip: text;
}

.slider .text-aria p {
    font-size: 22px;
    padding-right: 30px;
}

/* .slider .carousel-item {
    transition: opacity 1s ease-in-out;
} */
.slider .carousel-indicators button {
    width: 30px;
    height: 4px;
    border: none;
    background: #ccc;
    opacity: 1;
    position: relative;
    overflow: hidden;
}

.slider .carousel-indicators button.active {
    background: #ddd;
}

.slider .carousel-indicators button.active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #0e2140;
    /* Active animation color */
    animation: indicatorProgress 5s linear forwards;
}

@keyframes indicatorProgress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

@media (max-width:480px) {
    .slider {
        padding-top: 80px;
        padding-bottom: 20px;
    }

    .slider .text-aria h2 {
        font-size: 34px;
    }

    .slider .text-aria p {
        font-size: 20px;
        padding-right: 0;
    }

    .banner {
        margin-top: 22px;
    }
}

.ui-e-carousel ul {
    display: flex;
    align-items: center;
    padding: 4px 0px;
}

.ui-e-carousel li {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 14px;
}

.ui-e-carousel .swiper-wrapper {
    transition-timing-function: linear !important;
}


.service-section {
    padding: 60px 0;
}

/* Card */
.service-card {
    background: #f7f7f7;
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
}

/* Icon Circle */
.icon-box {
    width: 120px;
    height: 120px;
    background: #dfe6f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* Icon */
.icon-box i {
    font-size: 50px;
    color: #2d5bd1;
}

/* Text */
.service-card p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Section */
.stats-section {
    position: relative;
    padding: 20px 0;
    background: linear-gradient(90deg, #c7d2fe, #fbcfe8);
}

.stats-section .stats-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: 'Calibri';
    background: var(--bg-gradient);
    color: transparent;
    background-clip: text;
}


/* Numbers */

.stats-section ul li {
    position: relative;
}

.stats-section ul li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 3px;
    height: 100%;
    border-radius: 50%;
    background: var(--color-paragraph);
}

.stats-section ul li:first-child:after {
    background: transparent;
}

.stats-section .stat-number {
    position: relative;
    font-size: 36px;
    font-weight: bold;
    background: var(--text-gradient);
    color: transparent;
    background-clip: text;
    display: inline-block;
    line-height: normal;
}

/* Label */
.stats-section .stat-label {
    font-size: 15px;
}

@media(max-width:480px) {
    .service-section {
        padding: 20px 0;
    }

    .service-card {
        padding: 20px 20px;
    }

    .stats-section .stats-text {
        margin-bottom: 22px !important;
    }

    .icon-box {
        width: 90px;
        height: 90px;
        padding: 16px;
    }

    .stats-section ul li::after {
        width: 2px;
    }

    .stats-section .stats-title {
        font-size: 32px;
    }

    .stats-section .stat-number {
        font-size: 26px;
    }

    .stats-section .stat-label {
        font-size: 14px;
        line-height: 18px;
    }
}


/* Section */
.hero-section {
    padding: 80px 0;
}

.hero-section .heading-title span {
    display: block;
}

/* Left Image */
.hero-img {
    max-width: 100%;
}

/* Step Number */
.step-circle {
    width: 60px;
    height: 60px;
    background: #e0e7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: #4f46e5;
    margin-bottom: 15px;
}

/* Content */
.hero-content h3 {
    font-size: 32px;
}

.hero-content p {
    margin-top: 10px;
}

/* Features */
.hero-section .feature-box {
    text-align: center;
    margin-top: 25px;
}

.hero-section .feature-icon {
    width: 40px;
    margin: 0 auto 10px;
}

.hero-section .feature-box p {
    margin: 0;
    line-height: normal;
}

.feature-box p span {
    display: block;
}

.hero-section .second-sec .step-circle {
    background: #d1e9d2;
    color: #1eb742;
}

.hero-section .third-sec .step-circle {
    background: #feeee1;
    color: #fa6d1c;
}

@media(max-width:480px) {
    .hero-section {
        padding: 30px 0px;
    }

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

    .hero-content h3 {
        font-size: 26px;
    }

    .hero-content p {
        margin-bottom: 0;
    }

    .hero-section .feature-box p {
        font-size: 12px;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(90deg, rgba(209, 224, 251, 1) 0%, rgba(244, 209, 219, 1) 100%);
    padding: 20px 0;
}



/* Heading */
.cta-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 5px;
    background: var(--text-gradient);
    color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Subtext */
.cta-text {
    margin-bottom: 0;
    font-size: 18px;
}

/* Button */
.cta-btn {
    padding: 10px 55px;
    min-width: 250px;

}

@media (max-width:480px) {
    .cta-section img {
        width: 150px;
    }

    .cta-title {
        font-size: 26px;
    }

    .cta-text {
        font-size: 18px;
    }
}



/* Section */
.about-section {
    padding: 80px 0;

}

.about-section h6 {
    font-size: 22px;
    font-family: var(--font-paragraph);
}

/* Left Heading */
.about-title {
    font-size: 40px;
    font-weight: 700;
    background: var(--text-gradient);
    color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Paragraph */
.about-text {

    line-height: 1.7;
}

/* Stats */
.stat {
    text-align: center;
}

/* Circle with gradient border */
.circle {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    position: relative;
    margin: auto;
}

/* Gradient border effect */
.circle::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 8px;
    background: linear-gradient(122deg, rgba(32, 87, 229, 1) 44%, rgba(218, 24, 129, 1) 59%, rgba(246, 245, 250, 1) 59%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}
.progress-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 180px;
    padding: 0px 12px;
}
/* Number */
.stat-number {
    /* height: 96%;
    display: flex;
    align-items: center;
    justify-content: center; */
    font-weight: bold;
    font-size: 40px;
    background: var(--text-gradient);
    color: transparent;
    background-clip: text;
    line-height: normal;
}

/* Label */
.stat .circle p {
    margin: 0px;
    font-size: 15px;
    line-height: normal;
    /* position: absolute;
    left: 50%;
    bottom: 16%;
    transform: translateX(-50%); */
}

/* Image circle */
.img-box {
    position: relative;
    width: 580px;
    height: 580px;
    margin: auto;
    border-radius: 100%;
    border: 12px solid #fefefe;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.img-box img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 12px solid #d7e5fa;
}

/* Floating circles */
.float {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(90deg, rgba(215, 226, 254, 1) 0%, rgba(247, 213, 224, 1) 100%);
    border: 8px solid #fefefe;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.float1 {
    width: 110px;
    height: 110px;
    top: 0;
    right: -60px;
}

.float2 {
    width: 150px;
    height: 150px;
    bottom: 5%;
    right: -30px;
}

@media (max-width:480px) {
    .about-section {
        padding: 30px 0;
    }

    .about-section h6 {
        font-size: 18px;
    }

    .about-title {
        font-size: 32px;
    }

    .circle {
        width: 110px;
        height: 110px;
    }

    .circle::before {
        padding: 3px;
    }

    .stat-number {
        font-size: 30px;
    }

    .stat .circle p {
        font-size: 15px;
    }

    .img-box {
        width: 320px;
        height: 320px;
        border-width: 6px;
    }

    .img-box img {
        border-width: 6px;
    }

    .float {
        border-width: 4px;
    }

    .float1 {
        width: 80px;
        height: 80px;
        right: -8px;
    }

    .float2 {
        width: 104px;
        height: 104px;
        right: -26px;
    }
}


/* Section */
.why-section {
    padding: 80px 0;
    text-align: center;
}

.why-section .heading-title h2 {
    font-family: 'Calibri';
}

.why-section .heading-title h2 span {
    color: var(--dark-pink-color);
}

/* Dotted Line */
.line {
    position: relative;
    margin: 50px 0;
}

.line::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    border-top: 2px dashed var(--color-paragraph);
}

/* Icons */
.icon-wrap {
    position: relative;
    display: flex;
    justify-content: space-around;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cards */
.card-box {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    text-align: left;
    height: 100%;
    transition: 0.3s;
}

.card-box:hover {
    transform: translateY(-8px);
}
.why-section .card-box h5{font-size: 20px;}
.card-box h5 {
    font-weight: 600;
    font-size: 24px;
    font-family: 'Calibri';
    position: relative;
}

.card-box h5::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ebecec;
}

.card-box hr {
    margin: 15px 0;
}

.card-box p {
    font-size: 16px; 
}

@media (max-width:480px) {
    .why-section {
        padding: 30px 0;
    }

    .line {
        margin: 20px 0;
    }

    .icon-circle {
        width: 40px;
        height: 40px;
    }

    .icon-circle img {
        width: 24px;
    }
}

/* Section */
.testimonial-section {
    padding: 80px 0;
    padding-top: 0;
    text-align: center;
}


/* Card */
.testimonial-card {
    background: #fff;
    border-radius: 15px;
    text-align: left;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    overflow: hidden;
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

/* Bottom Gradient Strip */
.testimonial-footer {
    width: 100%;
    padding: 15px 20px;
    background: var(--bg-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.testimonial-footer::before {
    content: "";
    position: absolute;
    bottom: 86px;
    left: 0;
    border-style: solid;
    border-width: 0px 50px 50px 0px;
    border-color: transparent transparent #1e45fc transparent;
}

/* Avatar */
.avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 4px solid #fefefe;
    object-fit: cover;
}

/* Name */
.name {
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 1px;
    font-family: var(--font-heading);
}

/* Role */
.role {
    font-size: 15px;
    opacity: 0.8;
    text-transform: uppercase;
}

/* Card text */
.testimonial-card p {
    padding: 20px;
    margin-bottom: 0;
    min-height: 240px;
}

@media (max-width:767px) {
    .testimonial-section {
        padding: 30px 0;
    }
}

/*-- Swiper Pagination --*/
.swiper-pagination {
    position: relative;
    margin-top: 35px;
    text-align: center;
}

.swiper-pagination-bullet {
    width: 32px;
    height: 5px;
    border-radius: 0px;
    background: #cfcfcf;
    opacity: 1;
    margin: 0 6px !important;
    overflow: hidden;
    position: relative;
}

.swiper-pagination-bullet::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 0%;
    background: var(--dark-pink-color);
    border-radius: 0px;
}

/* fill animation */
.swiper-pagination-bullet-active::before {
    animation: fillPagination 4s linear forwards;
}

@keyframes fillPagination {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

@media (max-width:767px) {
    .swiper-pagination {
        margin-top: 14px
    }
}

/* Section */
.blog-section {
    padding: 80px 0;
    padding-top: 0;
}


/* Subtext */
.blog-text {
    text-align: center;
    color: #555;
    margin-top: 10px;
}

/* Card */
.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    padding: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: 0.3s;
}

.blog-card:hover {
    transform: translateY(-8px);
}

/* Image */
.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* Content */
.blog-card .blog-content {
    padding: 20px;
}

/* Date */
.blog-card .blog-date {
    color: #e11d48;
    font-size: 14px;
    font-weight: 600;
}

/* Title */
.blog-card .blog-content h5 {
    font-size: 24px;
    font-family: var(--font-paragraph);
    margin-top: 10px;
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* Text */
.blog-card .blog-content p {
    color: #555;
    margin-bottom: 8px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    text-overflow: ellipsis;
}

/* Read More */
.blog-card .read-more {
    color: #e11d48;
    padding-left: 0;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.blog-card .read-more:hover {
    background-image: var(--text-gradient);
    color: transparent;
    background-clip: text;
}

.blog-details .blog-style-two .thumb {
    margin-bottom: 18px;
}

.blog-details .blog-style-two .thumb img {
    border-radius: 12px;
}

.blog-details .blog-style-two .info .meta ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    margin-bottom: 20px;
}

.blog-details .blog-style-two .info .meta ul li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-details .blog-style-two .info .meta ul li i {
    color: var(--blue-color);
}

.blog-details .blog-style-two .info ul {
    margin-bottom: 20px;
}

.blog-details .blog-style-two .info ul li {
    list-style: inside;
}

.blog-content .comments-area .comments-title {
    font-family: var(--font-paragraph);
}

.blog-content .comments-area .comments-title h4 {
    font-size: 22px;
    font-family: var(--font-paragraph);
}

.blog-content .comments-area .comments-title .comments-list {
    margin-bottom: 50px;
}

.blog-content .comments-area .comments-title .comments-list .comment-item {
    margin-top: 30px;
    display: flex;
    padding: 37px;
    box-shadow: 0 0 25px rgb(0 0 0 / 8%);
    background: var(--white);
    position: relative;
    border-radius: 8px;
}

.blog-content .comments-area .comments-title .comments-list .comment-item .avatar {
    height: 120px;
    width: 120px;
    min-width: 120px;
}

.blog-content .comments-area .comments-title .comments-list .comment-item .avatar img {
    height: 90px;
    width: 90px;
    border-radius: 50%;
}

.blog-content .comments-area .comments-title .comments-list .comment-item .title {
    margin-bottom: 20px;
}

.blog-content .comments-area .comments-title .comments-list .comment-item .title h5 {
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.blog-content .comments-area .comments-title .comments-list .comment-item .title h5 .reply a {
    background: var(--color-paragraph);
    color: #fff;
    display: inline-block;
    padding: 8px;
    font-size: 15px;
    border-radius: 5px;
}

.blog-content .comments-area .comments-title .comments-list .comment-item .title .date {
    color: #8c8c8d;
}

.blog-content .comments-area .comments-title .comments-list .comment-item p {
    margin-bottom: 0;
    font-size: 15px;
}

.blog-content .comments-area .comments-title .comments-list .comment-item.reply {
    margin-left: 80px;
}


.blog-content .comment-section .comment-title {
    font-family: var(--font-paragraph);
    margin-bottom: 35px;
}

.blog-content .comment-section .form-group {
    margin-bottom: 25px;
}



.blog-content .comment-section .form-group input {
    height: 60px;
}

.blog-content .comment-section .form-group textarea {
    height: 260px;
    resize: none;
    padding-top: 18px;
}



.blog-content .comment-section .comment-btn {
    border: none;
    background: #2f6df6;
    transition: 0.3s;
}

.blog-content .comment-section .comment-btn:hover {
    background: #1f58d7;
}

.sidebar-sticky {
    position: sticky;
    top: 20px;
    transition: top 0.3s ease;
}

.sidebar-item {
    margin-bottom: 41px;
    width: 100%;
    background: #f7f7f7;
    padding: 32px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}

.sidebar-item .search-form {
    position: relative;
}

.sidebar-item .search-form input {
    height: 62px;
    border-radius: 6px;
    padding: 0 85px 0 22px;
    font-size: 20px;
    outline: none;
}

.sidebar-item .search-form button {
    position: absolute;
    top: 4px;
    right: 4px;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
}

.sidebar-item .search-form button:hover {
    background: #1e56d0;
}

/* RECENT POST */

.sidebar-item .sidebar-title {
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 18px;
    font-size: 22px;
}

.sidebar-item .sidebar-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 3px;
    background: #2f6df6;
}

.sidebar-item .recent-post-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.sidebar-item .recent-post-item:last-child {
    margin-bottom: 0;
}

.sidebar-item .recent-thumb {
    width: 150px;
}

.sidebar-item .recent-thumb img {
    width: 100%;
    height: 90px;
    border-radius: 6px;
    object-fit: cover;
}

.sidebar-item .recent-content span {
    display: block;
    font-size: 16px;
    color: #8c8c8c;
    margin-bottom: 10px;
}

.sidebar-item .recent-content h4 {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.sidebar-item .recent-content h4 a {
    text-decoration: none;
    transition: 0.3s;
    padding: 0;
    font-size: 16px;
    color: var(--color-paragraph);
    font-family: var(--font-paragraph);
}

.sidebar-item .recent-content h4 a:hover {
    color: #2f6df6;
}


.footer {
    background: linear-gradient(90deg, rgba(209, 217, 251, 1) 0%, rgba(245, 209, 217, 1) 100%);
    padding: 60px 0 20px;
    font-family: 'Calibri';
    border-top: 4px solid;
    border-image: radial-gradient(149% 94% at 100% 90%, #7d9aff80, #e1afff80) 5;
    -webkit-backdrop-filter: blur(31.5319480896px);
    backdrop-filter: blur(31.5319480896px);
}

/* TEXT */
.footer-text {
    margin-bottom: 15px;
}

/* SOCIAL */
.social {
    display: flex;
    gap: 10px;
}

.footer .social a {
    width: 32px;
    height: 32px;
    background: linear-gradient(90deg, rgba(92, 153, 251, 1) 0%, rgba(9, 61, 183, 1) 100%);
    color: #d6d8fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0;
    transition: 0.6s;
    font-size: 18px;
}

.footer .social a:hover {
    background: var(--dark-pink-color);
    color: var(--white-color);
    font-family: var(--font-paragraph);
}

.footer .addressBox h4 {
    font-size: 22px;
    text-transform: capitalize;
    margin-top: 20px;
}

.footer .addressBox ul {
    padding: 0;
}

.footer .addressBox li {
    list-style: none;
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--color-paragraph);
}

.footer .addressBox li i {
    position: relative;
    top: 4px;
}

.footer .addressBox li strong {
    font-weight: 500;
    font-family: var(--font-paragraph);
    margin-bottom: 10px;
    color: var(--color-paragraph);
}

.footer .addressBox li span {
    font-size: 16px;
    line-height: 24px;
    color: var(--color-paragraph);

}

/* LINKS */
.footer h6 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Calibri';
    position: relative;
}

.footer h6::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 1.5px;
    background: var(--color-paragraph);
}

.footer .footer-menu ul {}

.footer .footer-menu li {
    text-align: left;
}

.footer .footer-menu a {
    display: block;
    font-size: 16px;
    color: var(--color-paragraph);
    padding: 4px 0;
    text-decoration: none;
    font-weight: 500;
}

.footer .footer-menu li:hover a {
    background-image: var(--text-gradient);
    color: transparent;
    background-clip: text;
}


/* RIGHT SIDE */
.right-box {
    border-left: 1px solid rgba(0, 0, 0, 0.5);
    padding-left: 25px;
}

.footer .right-box h6::before {
    background: transparent;
}

.footer .right-box .small-text {
    line-height: 26px;
}

/* ICON */
.mail-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(90deg, rgba(92, 153, 251, 1) 0%, rgba(9, 61, 183, 1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ecd3e2;
}



/* INPUT GROUP */
.subscribe {
    display: flex;
    margin-top: 0px;
    overflow: hidden;
    border-radius: 30px;
    background: #fff;
}

.subscribe input {
    flex: 1;
    border: none;
    padding: 10px 12px;
    padding-right: 4px;
    outline: none;
    font-size: 14px;
    min-height: 30px;
}

.subscribe button {
    border: none;
    padding: 8px 14px;
    color: #fff;
    background: var(--bg-gradient);
    white-space: nowrap;
    transition: .3s;
    font-size: 16px;
}

.subscribe button i {
    position: relative;
    top: 2px;
    transition: .3s;
}

.subscribe button:hover i {
    transform: rotate(-40deg);
    top: 0px;
}

/* FEATURES */
.features {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 44px;
}

.feature-item {
    text-align: center;
    flex: 1;
}

/* Circle */
.f-circle {
    width: 40px;
    height: 40px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon */
.f-circle i {
    color: #ecd3e2;
    font-size: 22px;
}

/* Text */
.feature-item p {
    margin-top: 8px;
    line-height: 22px;
    font-size: 16px;
    margin-bottom: 0;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.5);
    margin-top: 30px;
    padding-top: 10px;
    text-align: center;
}

/*-- LOGIN SECTION --*/

.login-sec {
    padding: 40px 0;
    background: linear-gradient(0deg, rgba(251, 251, 252, 1) 0%, rgba(249, 226, 237, 1) 42%, rgba(189, 189, 251, 1) 100%)
}


/* LEFT */


.login-sec .login-left a {
    padding-left: 0;
}

.login-sec .logo {
    width: 300px;
    margin-bottom: 25px;
}

.login-sec .login-left h1 {
    font-size: 46px;
    font-family: 'Calibri';
    margin-bottom: 12px;
}

.login-sec .login-left h1 span {
    background-size: 200%;
    animation: gradientMove 5s ease-in-out infinite;
}

@keyframes gradientMove {

    0% {
        background-position: 0% 50%;
    }

    25% {
        background-position: 50% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    75% {
        background-position: 50% 50%;
    }

    100% {
        background-position: 0% 50%;
    }

}

.login-sec .login-left p {
    font-size: 26px;
    line-height: 1.5;
    margin-bottom: 0;
}

.login-sec .main-img {
    width: 100%;
    max-width: 600px;
    margin-top: 0px;
}

/* RIGHT */

.login-sec .login-right {
    display: flex;
    align-items: center;
    justify-content: end;
}

.login-sec .login-card {
    width: 100%;
    max-width: 520px;
    background: linear-gradient(0deg, rgba(254, 240, 246, 1) 0%, rgba(254, 254, 254, 1) 100%);
    border-radius: 14px;
    padding: 20px;

}

.login-sec .login-card h2 {
    text-align: center;
    font-size: 36px;
    position: relative;
    font-family: var(--font-Calibri);
}

.login-card h2::after {
    content: "";
    width: 90px;
    height: 3px;
    background: var(--bg-gradient);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
}

.login-sec .sub-title {
    text-align: center;
    font-size: 22px;
    line-height: 1.1;
    margin: 30px 0;
}

.login-sec .input-group {
    position: relative;
    margin-bottom: 20px;
}

.login-sec .input-group input {
    width: 100%;
    height: 56px;
    border: 2px solid #e6e6e6;
    border-radius: 12px !important;
    padding: 0 50px;
    font-size: 16px;
    outline: none;
}

.login-sec .input-group i {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: #485175;
    font-size: 20px;
}

.login-sec .eye {
    position: absolute;
    right: 62px;
    top: 50%;
    transform: translateY(-50%);
    color: #667;
    cursor: pointer;
}

.login-sec .forgot-wrap {
    text-align: right;
    margin-top: -10px;
    margin-bottom: 16px;
}

.login-sec .forgot-wrap a {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 15px;
    padding: 0;

}

.login-sec .login-right a {
    position: relative;
}

.login-sec .login-right a::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 2%;
    height: 2px;
    background: var(--text-gradient);
    opacity: 0;
    transition: .3s ease-in-out;
}

.login-sec .login-right a:hover::before {
    width: 100%;
    opacity: 1;
}

.login-sec .login-btn {
    width: 100%;
    height: 60px;
    border: none;
    font-weight: 500;
    border-radius: 14px;
    background: var(--bg-gradient);
    color: #fff;
    font-size: 30px;
    letter-spacing: 1px;
}

.login-sec .login-btn:hover {
    transform: translateY(-3px);
}

.login-sec .divider {
    margin: 20px 0 22px;
    text-align: center;
    position: relative;
}

.login-sec .divider::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background: #d8d8d8;
}

.login-sec .divider span {
    background: #fef3f8;
    padding: 0 18px;
    position: relative;
    z-index: 2;
    color: #666;
    font-size: 18px;
}

.login-sec .social-login {
    display: flex;
    gap: 20px;
}

.login-sec .social-btn {
    flex: 1;
    height: 56px;
    border: 2px solid #e6e6e6;
    background: #fff;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
}

.login-sec .social-btn img {
    width: 26px;
}

.login-sec .social-btn:hover {
    background: #fff5f5;
}

.login-sec .signup-text {
    text-align: center;
    margin-top: 15px;
    font-size: 16px;
    color: #555;
}

.login-sec .signup-text a {
    text-decoration: none;
    font-weight: 600;
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding: 0;
    font-size: 16px;
    margin-left: 4px;
}

.business-sec {
    background: #eef2ff;
    padding: 40px 0;
}

.business-sec .business-img img {
    width: 100%;
}

.business-sec .business-content {
    padding-left: 40px;
}

.business-sec .business-title {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.business-sec .business-title img {
    width: 50px;
}

.business-sec .business-title h2 {
    font-size: 36px;
    margin: 0;
}

.business-sec .business-para {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 500px;
}

.business-sec .blue-line {
    width: 140px;
    height: 5px;
    background: var(--blue-color);
    border-radius: 20px;
    margin-bottom: 30px;
}

.business-sec .business-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.business-sec .feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.business-sec .feature-item img {
    width: 35px;
}

.business-sec .feature-item span {
    text-align: left;
}

.business-sec.feature-item span {
    font-size: 28px;
    color: #333;
    font-weight: 500;
}

.business-sec .business-stats {
    display: flex;
    align-items: center;
    gap: 40px;
}

.business-sec .stat-box p {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
}

.business-sec .stat-box h3 {
    font-size: 60px;
    color: #2563eb;
    font-family: var(--font-Calibri);
    font-weight: 700;
    margin: 0;
}

.business-sec .stat-divider {
    width: 1px;
    height: 100px;
    background: #cfcfcf;
}

/* RESPONSIVE */



.business-sec-two {
    background: #f4f0ff;

}

.purple-line {
    width: 140px;
    height: 5px;
    background: #6d28ff;
    border-radius: 20px;
    margin-bottom: 30px;
}

.business-sec-two .stat-box h3 {
    color: #6d28ff;
}

.social-seller-sec {
    background: #edf7ec;
    padding-bottom: 0;
}

.green-line {
    width: 140px;
    height: 5px;
    background: #39b54a;
    border-radius: 20px;
    margin-bottom: 30px;
}

.social-seller-sec .stat-box h3 {
    color: #39b54a;
}

.offline-store-sec {
    padding-bottom: 0;
    background: #f7f3eb;
}

.orange-line {
    width: 140px;
    height: 5px;
    background: #ff6600;
    border-radius: 20px;
    margin-bottom: 30px;
}

.offline-store-sec .stat-box h3 {
    color: #ff6600;
}

.integration-sec {
    background: #fff;
}

.integration-heading {
    margin-bottom: 50px;
}

.integration-heading h2 {
    font-size: 62px;
    line-height: 1.35;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.integration-heading h2 span {
    background: linear-gradient(90deg, #1e40ff, #ff00a8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.integration-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
}

.logo-box {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: .3s ease;
}

.logo-box img {
    width: 100%;
    display: block;
}

.logo-box:hover {
    transform: translateY(-5px);
}

/* RESPONSIVE */

@media(max-width:1200px) {

    .integration-heading h2 {
        font-size: 50px;
    }

    .integration-logos {
        grid-template-columns: repeat(4, 1fr);
    }

}

.contact-sec {
    background: linear-gradient(0deg, rgb(255 255 255) 0%, rgba(254, 243, 248, 1) 28%, rgba(234, 234, 254, 1) 100%);
    padding: 100px 0;
    overflow: hidden;
    padding-bottom: 30px;
}

.contact-sec .contact-card {
    background: #fff;
    border-radius: 30px;
    padding: 60px 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);

}

.contact-sec .contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-sec .contact-icon img {
    width: 36px;
}

.contact-sec .contact-info h4 {
    font-size: 28px;
    margin-bottom: 8px;
}

.contact-sec .contact-info p {
    font-size: 20px;
    line-height: 1.8;
    color: #444;
    margin: 0;
}

.contact-sec .contact-info address {

    font-family: var(--font-Calibri);
    margin-bottom: 0;
}

.contact-sec .contact-divider {
    width: 100%;
    height: 1px;
    background: #ddd;
    margin: 30px 0;
}

/* RIGHT */

.contact-sec .contact-content {
    position: relative;
    text-align: center;
    max-width: 600px;
    margin: auto;
}

.contact-sec .contact-content h2 {
    font-size: 46px;
    margin-bottom: 20px;
}

.contact-sec .contact-content h2 span {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.contact-sec .contact-content h3 {
    font-size: 26px;
    margin-bottom: 20px;
}



/* FLOATING */

.contact-sec .floating-img {
    position: absolute;
    border-radius: 50%;
}

.contact-sec .girl-img {
    width: 90px;
    top: -150px;
    left: 70px;
}

.contact-sec .boy-img {
    width: 40px;
    left: 50%;
    top: -80px;
    transform: translateX(-50%);
}

.contact-sec .floating-icon {
    position: absolute;
}

.contact-sec .top-icon {
    width: 70px;
    right: 0;
    top: -150px;
}

.contact-sec .bottom-icon {
    width: 70px;
    bottom: -90px;
    left: 50%;
    transform: translateX(-50%);
}

.contact-sec .bottom-boy {
    width: 90px;
    bottom: -120px;
    right: 0;
}

.contact-sec .bottom-girl {
    width: 47px;
    bottom: -50px;
    left: 0;
}


.support-level-sec {
    padding: 80px 0;
    background: #fff;
}

.support-level-sec .support-card {
    background: #eef0ff;
    border-radius: 24px;
    overflow: hidden;
    padding: 50px;
}

.support-level-sec .support-img img {
    width: 100%;
    border-radius: 24px;
    display: block;
}



.support-level-sec .level-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 50px;
    padding: 0 25px;
    border-radius: 8px;
    background: var(--bg-gradient);
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
}

.support-level-sec .support-content h2 {
    font-size: 44px;
}

.support-level-sec .support-content h2 span {
    background: linear-gradient(90deg, #2b35ff, #ff0090);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.support-level-sec .support-content p {
    font-size: 24px;
    margin-bottom: 36px;
}

.support-level-sec .support-content p strong {
    color: var(--dark-pink-color);
}

.support-level-sec .support-content h4 {
    font-size: 28px;
    margin: 0;
}

.support-level-sec .support-card .details {
    margin-top: 20px;
}

.support-level-sec .support-card .details strong {
    padding: 0;
}

.support-level-sec .support-card .details p {
    margin-bottom: 0;
    font-size: 18px;
}

.level-two-sec {
    padding: 0px;
}

.level-two-sec .support-card {
    background: #f8f1e6;

}

.level-three-sec {
    padding: 80px 0;
}

.level-three-sec .support-card {
    background: #eef8ec;
}

.future-sec {
    position: relative;
    padding: 40px 0;
    background: linear-gradient(90deg, rgba(213, 228, 254, 1) 0%, rgba(248, 213, 221, 1) 100%);
}

.future-sec .future-content h2 {
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 40px;
    margin-bottom: 20px;
}



.future-sec .future-content p {
    margin-bottom: 45px;
}

.future-sec .future-btn {
    min-width: 220px;
    border-radius: 60px;
    font-size: 28px;
}


/* RIGHT */

.future-sec .future-img {
    position: absolute;
    right: 0;
    top: -71px;
}

.future-img .main-img {
    width: 100%;
    max-width: 630px;
    position: relative;
    z-index: 2;
}



.map-wrapper {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    filter: grayscale(0%);
}

.about-sec {
    padding: 90px 0;
    padding-bottom: 0;
    background: linear-gradient(0deg, rgba(249, 245, 247, 1) 0%, rgba(241, 241, 250, 1) 100%);

}

.about-sec .about-images {
    position: relative;
    min-height: 650px;
}

.about-sec .about-images .img {
    position: absolute;
}

/* TOP TRUCK */

.about-sec .truck-top {
    width: 460px;
    top: 0;
    left: 0;
}

/* LOCATION PIN */

.about-sec .pin-img {
    width: 90px;
    top: 50px;
    right: 90px;
}

/* BOXES */

.about-sec .box-img {
    width: 350px;
    top: 228px;
    right: 0px;
}

/* BAGS */

.about-sec .bags-img {
    width: 416px;
    bottom: 114px;
    left: 0;
}

/* RIGHT */

.about-sec .about-content {
    padding-left: 30px;
}

.about-sec .about-tag {
    font-size: 22px;
    font-weight: 700;
    color: #1f3fff;
}

.about-sec .about-content h2 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.about-sec .about-content h2 span {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.about-sec .about-content p {

    margin-bottom: 0px;
}

.about-sec .about-bottom-img img {
    width: 100%;
    max-width: 650px;
}

.logistics-sec {
    padding: 90px 0;
}

.logistics-sec .logistics-images {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.logistics-sec .logistics-img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
}

/* CONTENT */

.logistics-sec .logistics-content {
    padding-left: 20px;
}

.logistics-sec .box-icon {
    width: 60px;
    margin-bottom: 25px;
}

.logistics-sec .logistics-content h2 {
    font-size: 32px;
    line-height: 1.35;
}

.logistics-sec .logistics-content p {
    margin-bottom: 12px;
}

.logistics-sec .learn-btn {
    min-width: 220px;
    height: 60px;
    border: 3px solid #2042ff;
    background: transparent;
    border-radius: 10px;
    color: #2042ff;
    font-size: 26px;
    transition: .3s ease;
    padding: 0;
}

.logistics-sec .learn-btn:hover {
    background: #2042ff;
    color: #fff;
}

/* FEATURE GRID */

.logistics-sec .feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.logistics-sec .feature-box {
    background: #eef0ff;
    padding: 25px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: .3s ease;
}

.logistics-sec .feature-box:first-child,
.logistics-sec .feature-box:last-child {
    background: #e4e8ff;
}

.logistics-sec .feature-box:hover {
    background: #ffeaf0;
}

.logistics-sec .feature-box img {
    width: 55px;
    margin: 0 auto 25px;
}

.logistics-sec .feature-box h3 {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
}

.logistics-sec .feature-box p {
    line-height: 28px;
    margin: 0;
}

.counter-sec {
    background: linear-gradient(90deg, rgba(10, 20, 255, 1) 0%, rgba(228, 24, 92, 1) 100%);
    padding: 20px 0;
}

.counter-sec .counter-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.counter-sec .counter-box {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.774);
    padding: 0 20px;
}

.counter-box:last-child {
    border: none;
}

.counter-sec .counter-box img {
    width: 54px;
    margin-bottom: 20px;
}

.counter-sec .counter-box h2.stat-number {
    font-size: 56px;
    color: #fff;
    margin-bottom: 12px;
    height: auto;
    font-family: var(--font-Calibri);
}



.counter-sec .counter-box p {
    color: hsl(0deg 0% 100% / 70%);
    margin: 0;
}

.mission-sec {
    padding: 30px 0;
    background: #fff;
}

.mission-sec .mission-img img {
    width: 100%;
    border-radius: 18px;
    display: block;
}

.mission-sec .mission-content {
    padding-left: 30px;
}

.mission-sec .mission-tag {
    position: relative;
    font-size: 22px;
    font-weight: 700;
    color: #2042ff;
    padding-right: 120px;
}

.mission-sec .mission-tag::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 95px;
    height: 3px;
    background: #2042ff;
    transform: translateY(-50%);
}

.mission-sec .mission-content h2 {
    font-size: 52px;
    max-width: 500px;
    font-family: var(--font-Calibri);
}

.mission-sec .mission-content p {

    margin-bottom: 20px;
}

.mission-sec .mission-btn {
    min-width: 230px;
    height: 65px;
    border: 3px solid #2042ff;
    background: transparent;
    border-radius: 10px;
    color: #2042ff;
    font-size: 24px;
    transition: .3s ease;
}

.mission-sec .mission-btn:hover {
    background: #2042ff;
    color: #fff;
}

/*-- TRACKING SECTION -- */

.tracking-sec {
    padding: 90px 0;
    padding-bottom: 60px;
    background: linear-gradient(0deg, rgba(254, 249, 251, 1) 0%, rgba(234, 234, 254, 1) 100%);
}


/* TRACK BOX */

.tracking-sec .tracking-box {
    background: #fefdfd;
    border-radius: 24px;
    padding: 22px 30px;
    display: flex;
    align-items: center;
    gap: 35px;
    margin-bottom: 35px;
}

.tracking-sec .tracking-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.tracking-sec .tracking-form {
    flex: 1;
}

.tracking-sec .tracking-form label {
    font-size: 22px;
    font-weight: 600;
}

.tracking-sec .track-input-wrap {
    display: flex;
    gap: 20px;
}

.tracking-sec .track-input-wrap input {
    flex: 1;
    height: 56px;
    border: 2px solid #9195a5;
    border-radius: 10px;
    padding: 0 20px;
    font-size: 22px;
    outline: none;
}

.tracking-sec .track-input-wrap button {
    min-width: 240px;
    font-size: 24px;
    line-height: 1;
}

.tracking-sec .tracking-form small {
    display: block;
    margin-top: 12px;
    font-size: 16px;
    color: #777;
}

/* STATUS */
.tracking-status-card {
    background: #fff;
    border-radius: 35px;
    padding: 35px 40px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
}

/* TOP */

.tracking-status-card .tracking-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 70px;
}

.tracking-status-card .tracking-top h2 {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.tracking-status-card .tracking-id {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: #333;
}

.tracking-status-card .tracking-id img {
    width: 24px;
}

/* STEPS */

.tracking-status-card .tracking-steps {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.tracking-status-card .progress-line {
    position: absolute;
    top: 48px;
    left: 11%;
    width: 78%;
    height: 2px;
    border-top: 4px dashed #d7d7d7;
    z-index: 1;

}

.tracking-status-card .track-step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.tracking-status-card .step-circle {
    width: 100px;
    height: 100px;
    padding: 12px;
    background: #fff;
    border: 4px solid #d9d9d9;
    margin: 0 auto 12px;
}

.tracking-status-card .step-circle img {
    max-width: 100%;
    filter: grayscale(1);
}

/* ACTIVE */

.tracking-status-card .track-step.active .step-circle {
    border-color: #14b75a;
    background: #eefef3;
}

.tracking-status-card .track-step.active .step-circle img {
    filter: initial;
}

.tracking-status-card .track-step.active h3 {
    color: #14b75a;
}

/* CURRENT */

.tracking-status-card .track-step.current .step-circle {
    background: #4b4cff;
    border-color: #4b4cff;
}

.tracking-status-card .track-step.current h3 {
    color: #4b4cff;
}

.tracking-status-card .track-step.current .step-circle img {
    filter: brightness(0) invert(1);
}

/* TEXT */

.tracking-status-card .track-step h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.tracking-status-card .track-step p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* DELIVERY BOX */

.tracking-status-card .delivery-box {
    height: 70px;
    background: #f2f2fc;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 20px;
    color: #555;
}

.tracking-status-card .delivery-box img {
    width: 24px;
}

.tracking-status-card .delivery-box span {
    color: #4b4cff;
    font-weight: 700;
}


/* DETAILS */

.tracking-sec .detail-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.tracking-sec .detail-card h3 {
    font-size: 22px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #727271;
}

.tracking-sec .detail-card h3 img {
    width: 24px;
}

.tracking-sec .detail-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #727271;
}

.tracking-sec .detail-card ul li {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}

.tracking-sec .detail-card ul li:first-child {
    padding-top: 0;
}

.tracking-sec .detail-card ul li:last-child {
    border-bottom: none;
}

/* TIMELINE */


.shipment-timeline {
    position: relative;
}

.shipment-timeline .timeline-item {
    display: grid;
    grid-template-columns: 30px 180px 1fr;
    gap: 20px;
    position: relative;
    margin-bottom: 5px;
}

.shipment-timeline .timeline-left {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shipment-timeline .timeline-dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #d9d9d9;
    position: relative;
    z-index: 2;
}

.shipment-timeline .timeline-line {
    width: 5px;
    height: 60px;
    background: #d9d9d9;
    margin-top: 5px;
    border-radius: 20px;
}

/* ACTIVE */

.shipment-timeline .timeline-item.active .timeline-dot {
    background: #10b759;
}

.shipment-timeline .timeline-item.active .timeline-line {
    background: #10b759;
}

/* CURRENT */

.shipment-timeline .timeline-item.current .timeline-dot {
    background: #4a4cff;
}

.shipment-timeline .timeline-item.current .timeline-line {
    background: #4a4cff;
}

/* TEXT */

.shipment-timeline .timeline-date {
    font-size: 16px;
    color: #777;
    line-height: 1.4;
}

.shipment-timeline .timeline-content h3 {
    font-size: 16px;
    margin-bottom: 1px;
    font-family: var(--font-paragraph);
}

.shipment-timeline .timeline-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #7a7a8d;
    margin: 0;
}

/*-- FAQ SECTION -- */

.faq-sec {
    padding: 80px 0;
    padding-bottom: 30px;
}

.faq-sec .faq-title h2 {
    font-size: 50px;
    margin-bottom: 40px;
}

/* TAB */

.faq-sec .faq-tab-box {
    gap: 15px;
}

.faq-sec .faq-tab {
    border: none;
    border-radius: 14px;
    background: #ebecec;
    padding: 18px 20px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .3s ease;
}

.faq-sec .faq-tab.active {
    background: var(--bg-gradient3);
    color: #fff;
}

/* ACCORDION */

.faq-sec .faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-sec .faq-item {
    border: none;
    border-radius: 10px !important;
    overflow: hidden;
    background: #f7f7f7;
    border: 1px solid #ebecec;
}

.faq-sec .faq-question {
    background: #ebecec !important;
    box-shadow: none !important;
    font-size: 15px;
    font-weight: 600;
    color: #222 !important;
    padding: 18px 22px;
}

.faq-sec .faq-answer {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

.faq-sec .accordion-button::after {
    background-size: 14px;
}

/* REMOVE BLUE */

.faq-sec .accordion-button:not(.collapsed) {
    background: #f7f7f7;
}


.privacy-policy {
    padding-top: 90px;
    background: linear-gradient(0deg, rgba(254, 249, 251, 1) 0%, rgba(234, 234, 254, 1) 100%)
}

.privacy-sec {
    padding-top: 40px;
    background: #f1f1f7;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

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


.privacy-box {
    background: #fff;
    padding: 40px;
    border-radius: 5px;
}

.privacy-box p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
}

.privacy-item {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #ececec;
}

.privacy-item h2 {
    font-size: 28px;
    margin-bottom: 18px;
}

.privacy-box .privacy-item h4 {
    margin-top: 0px;
}

.privacy-item h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
}

.privacy-item ul {
    padding-left: 20px;
}

.privacy-item ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
    list-style: circle;
}

.privacy-item ul li::marker {
    color: #db1279;
    font-size: 22px;
}

.services-sec {
    width: 100%;
    display: grid;
    grid-template-rows: repeat(var(--cards-count), var(--card-height));
    gap: 40px 0;
}

.service-box {
    position: sticky;
    top: 0;
    background: #f9f9fa;
}

.custom-pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.custom-pagination .page-btn {
    width: 50px;
    height: 50px;
    border: 1px solid #d9d9d9;
    transition: 0.3s;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-pagination .page-btn:hover {
    background: #3166f5;
    color: #fff;
    border-color: #3166f5;
}

.custom-pagination .page-btn.active {
    background: #3166f5;
    color: #fff;
    border-color: #3166f5;
}

.custom-pagination .arrow-btn {
    font-size: 20px;
}


.book-demo-sec {
    padding: 90px 0;
}

.book-demo-sec .demo-left {
    padding-right: 40px;
}

.book-demo-sec .demo-tag {
    display: inline-block;
    background: #ffffff;
    color: #2f55ff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.book-demo-sec .demo-left h1 {
    position: relative;
    margin-bottom: 50px;
    font-family: var(--font-Calibri);
}

.book-demo-sec .demo-left h1::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: #2f55ff;
}



.demo-feature-list li {
    display: flex;
    gap: 18px;
    margin-bottom: 20px;
}

.demo-feature-list li .icon-box {
    width: 52px;
    min-width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #eef2ff;
    color: #2f55ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: inherit;
}

.demo-feature-list li .icon-box i {
    font-size: 28px;
}

.demo-feature-list h4 {
    font-size: 20px;
    margin-bottom: 6px;
    font-family: var(--font-Calibri);
}

.demo-feature-list span {
    color: #666;
    font-size: 16px;
}

.demo-illustration {
    width: 100%;
    max-width: 320px;
}



/* FORM */

.book-demo-sec .demo-form-box {
    background: #fff;
    padding: 35px;
    border-radius: 30px;
    box-shadow: 0 10px 45px rgba(0, 0, 0, 0.08);
}

.book-demo-sec .demo-form-top {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    margin-bottom: 35px;
    border-bottom: 1px solid #eee;
}

.demo-form-box .calendar-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #eef2ff;
    color: #2f55ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.demo-form-box .calendar-icon i {
    position: initial;
}

.book-demo-sec .demo-form-top h2 {
    font-family: var(--font-Calibri);
}

.demo-form-box .form-group {
    margin-bottom: 24px;
    position: relative;
}

.demo-form-box .form-group label {
    display: block;
    font-size: 16px;
    margin-bottom: 12px;
}

.demo-form-box .form-group input,
.demo-form-box .form-group select,
.demo-form-box .form-group textarea {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 0 18px;
}

.demo-form-box .form-group input,
.demo-form-box .form-group select {
    height: 62px;
}

.demo-form-box .form-group input {
    padding-left: 36px;
}

.form-group textarea {
    height: 140px;
    resize: none;
    padding-top: 18px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2f55ff;
    box-shadow: rgba(18, 190, 248, 0.16) 0px 10px 36px 0px, rgba(32, 192, 255, 0.06) 0px 0px 0px 1px;
}

.demo-form-box i {
    position: absolute;
    bottom: 22px;
    left: 12px;
}

.demo-form-box .btn {
    min-height: 62px;
}

.demo-form-box .btn i {
    position: initial;
}

.secure-text {
    text-align: center;
    margin-top: 25px;
    color: #666;
    font-size: 16px;
}

.secure-text i {
    margin-right: 8px;
    position: initial;
}

.career-sec {
    padding: 100px 0;
    background: linear-gradient(0deg, rgba(251, 251, 252, 1) 0%, rgba(249, 226, 237, 1) 42%, rgba(189, 189, 251, 1) 100%);
    overflow: hidden;
    padding-bottom: 20px;
}

.career-sec .career-tag {
    display: inline-block;
    padding: 8px 32px;
    border-radius: 40px;
    background: linear-gradient(90deg, rgba(194, 204, 255, 1) 0%, rgba(229, 190, 228, 1) 87%, rgba(207, 197, 235, 1) 100%);
    font-size: 16px;
    margin-bottom: 35px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.career-sec .career-content h1 {
    font-size: 52px;
    line-height: 1.15;
    font-family: var(--font-Calibri)
}


.career-sec.career-content p {
    font-size: 22px;
}

/* RIGHT */


.why-join-sec {
    padding: 60px 0;
    background: #fff;
}

.why-join-sec .join-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    position: relative;
}

.why-join-sec .join-gallery::after {
    content: "";
    position: absolute;
    right: -40px;
    top: 0;
    width: 1px;
    height: 100%;
    background: #37e6d7;
}

.why-join-sec .gallery-item {
    overflow: hidden;
    border-radius: 70px 0 70px 0;
    position: relative;
}

.why-join-sec .gallery-item::before {
    content: "";
    position: absolute;
    inset: -150%;
    background: conic-gradient(from 0deg,
            #1f1f1f 0deg,
            #1f1f1f 69deg,
            rgba(66, 133, 244, 0.55) 115deg,
            rgba(26, 166, 74, 0.5) 193deg,
            #1f1f1f 270deg,
            rgba(252, 189, 0, 0.5) 291deg,
            rgba(219, 55, 45, 0.5) 322deg,
            #1f1f1f 360deg);
    z-index: -0;
    animation: rotate-gradient 10s linear infinite;
}

@keyframes rotate-gradient {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.why-join-sec .gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: .4s;
    position: relative;
    z-index: 1;
    padding: 3px;
}

.why-join-sec .gallery-item:hover img {
    transform: scale(1.08);
}

/* RIGHT */

.why-join-sec .why-content {
    padding-left: 50px;
}


.why-join-sec .intro-text {
    font-size: 22px;
}

/* Mission Vision */

.why-join-sec .info-box {
    display: flex;
    gap: 20px;
    margin-bottom: 45px;
}

.why-join-sec .info-box .icon {
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-join-sec .info-box .icon i {
    font-size: 34px;
    color: #2d47ff;
}



.why-join-sec .info-box p {
    font-size: 18px;
    line-height: 1.8;
}

.team-sec {
    padding: 60px 0;
    background: #fff;
}


 

/* Card */

.team-sec .team-card {
    text-align: center;
}

.team-sec .team-role {
    background: #1f33ff;
    color: #fff;
    font-size: 13px;
    padding: 2px 10px;
    line-height: 1.2;
    width: 95%;
    margin: auto;
    border-radius: 15px 0px 15px 0px;
    min-height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    left: 16px;
    margin-bottom: 6px;
}

.team-sec .team-image {
    overflow: hidden;
    border-radius: 25px 0px 25px 0px;
    background: #f5f5f5;
}

.team-sec .team-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: .4s;
}

.team-sec .team-card:hover img {
    transform: scale(1.05);
}

.team-sec .team-name {
    background: #ffeef2;
    color: #333;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 10px;
    margin-top: 8px;
    font-size: 15px;
}

.benefits-sec {
    padding: 60px 0;
    background: linear-gradient(90deg, #e7f0ff, #ffeef5);
}


.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.benefit-item {
    padding: 35px;
    border-right: 1px solid rgba(99, 102, 241, 0.15);
    border-bottom: 1px solid rgba(99, 102, 241, 0.15);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    display: flex;
    gap: 12px;
}

/* Last column ka right border remove */
.benefit-item:nth-child(3n) {
    border-right: none;
}

/* Last row ka bottom border remove */
.benefit-item:nth-last-child(-n+3) {
    border-bottom: none;
}

.benefit-content h4 {
    font-size: 22px;
}

.benefit-content p {
    margin-bottom: 0px;
}

.benefit-item .benefit-icon img {
    width: 80px;
    max-width: 40px;
}

.career-jobs-sec {
    padding: 60px 0;
}

.career-jobs-sec p.sub-title {
    font-size: 18px;
}

.career-jobs-sec p.sub-title .fa-envelope-o {
    color: #2d47ff
}

.career-jobs-sec p.sub-title a {
    color: #2d47ff;
    text-decoration: underline;
    font-size: 18px;
    padding-left: 6px;
}

/* Filter */

.job-filter ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.job-filter button {
    border: none;
    background: #f4e7f2;
    padding: 4px 28px;
    border-radius: 50px;
    font-weight: 500;
}

.job-filter .active,
.job-filter button:hover {
    background: var(--bg-gradient3);
    color: #fff;
}

/* Grid */

.job-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Card */

.job-grid .job-card {
    background: #fff;
    border-radius: 15px;
    padding: 12px 16px;
    border-left: 4px solid #2d47ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .08);
    transition: .3s;
}

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

.job-grid .job-content h4 {
    font-size: 18px;
    font-family: var(--font-Calibri)
}

.job-grid .job-meta {
    display: flex;
    gap: 25px;
    color: #777;
    font-size: 14px;
}

.job-grid .job-btn {
    min-width: 120px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(90deg, #2d47ff, #ff1f75);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

/* Responsive */

 

@media(max-width:576px) {
 .job-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .job-grid  .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px 16px;border-left: 2px solid #2d47ff;
    }

    .job-grid  .jobs-heading h2 {
        font-size: 38px;
    }
    .job-grid .job-content h4{font-size: 16px;}
    .job-grid .job-meta{
        flex-direction: column;
        gap: 0;
    }
.job-grid .job-btn{ font-size: 14px;   height: 30px;}
}