/* Helvetica Regular */
@font-face {
    font-family: 'Helvetica';
    src: url('fonts/Helvetica.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

/* Helvetica Bold */
@font-face {
    font-family: 'Helvetica';
    src: url('fonts/Helvetica-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

/* Helvetica Italic */
@font-face {
    font-family: 'Helvetica';
    src: url('fonts/Helvetica-Oblique.woff') format('woff');
    font-weight: 400;
    font-style: italic;
}

/* Helvetica Bold Italic */
@font-face {
    font-family: 'Helvetica';
    src: url('fonts/Helvetica-BoldOblique.woff') format('woff');
    font-weight: 700;
    font-style: italic;
}

/* Helvetica Light */
@font-face {
    font-family: 'Helvetica';
    src: url('fonts/helvetica-light-587ebe5a59211.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

/* Helvetica Rounded Bold */
@font-face {
    font-family: 'Helvetica Rounded';
    src: url('fonts/helvetica-rounded-bold-5871d05ead8de.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

/* header section */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    width: 90%;
    margin: auto;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 120px;
    height: auto;
    display: block;
}

.navbar ul {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.navbar a {
    text-decoration: none;
    color: #0B0B2E;
    font-size: 16px;
    font-weight: 500;
    transition: .3s;
}

.navbar a:hover {
    color: #7c3aed;
}

.audit-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    background: linear-gradient(90deg, #7B61FF 12%, #CCBBF5 95.67%);

    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
}

.audit-btn:hover {
    background: #7c3aed;
}

.audit-btn svg {
    transition: .3s;
}

.audit-btn:hover svg {
    transform: translateX(4px);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #111827;
    margin: 3px 0;
    transition: .3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media(max-width:991px) {

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;

        background: #fff;

        max-height: 0;
        overflow: hidden;

        transition: .4s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    }

    .navbar.active {
        max-height: 400px;
    }

    .navbar ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }

    .navbar li {
        width: 100%;
    }

    .navbar a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

    .hamburger {
        display: block;
    }

    .audit-btn {
        display: none;
    }
}

@media(max-width:480px) {

    .site-header .container {
        min-height: 65px;
    }

    .logo img {
        width: 100px;
    }
}

/* ends here */


/* hero section */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;

    display: flex;
    align-items: center;

    margin-top: 0px;

    max-width: 90%px;
    margin-left: auto;
    margin-right: auto;
}

.hero-bg {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;

    width: 90%;

    margin: 0 auto;

    color: #fff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 22px;
    color: rgba(245, 246, 255, 1);
    font-family: Roboto;
    font-style: Medium;
    line-height: 22px;
    letter-spacing: 0.2px;
    vertical-align: middle;

}

.hero h1 {
    width: 100%;
    max-width: 9500px;
    margin-bottom: 22px;
    font-family: "Space Grotesk", "Inter", Arial, sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 55px;
    line-height: 63px;
    letter-spacing: 0.4%;
    vertical-align: middle;
    color: rgba(245, 246, 255, 1);
}

.hero p {
    width: 100%;
    max-width: 940px;
    color: rgba(245, 246, 255, 1);
    margin-bottom: 30px;
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero .audit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: rgb(11, 11, 46);
    color: #fff;
    padding: 15px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
}

.hero .audit-btn:hover {
    transform: translateY(-2px);
}

.hero-note {
    color: rgba(255, 255, 255, 1);
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 1.2%;

}

.stars {
    color: #ffcc00;
    font-size: 24px;
    margin-bottom: 8px;
}

.rating-text {
    margin-bottom: 5px;
    font-family: Space Grotesk;
    font-weight: 500;
    font-style: Medium;
    font-size: 17px;
    line-height: 25px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: rgba(245, 246, 255, 1);
}

.review {
    font-family: Space Grotesk;
    font-weight: 500;
    font-style: Medium;
    font-size: 17px;
    line-height: 25px;
    vertical-align: middle;
    color: rgba(245, 246, 255, 1);
}




@media (max-width:1024px) {





    .hero p {
        font-size: 16px;
    }
}

@media (max-width:768px) {


    .hero-content {
        width: 92%;
    }



    .hero p {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero .audit-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-note {
        width: 100%;
    }
}

@media (max-width:480px) {





    .hero-badge {
        font-size: 10px;
    }

    .hero p {
        font-size: 14px;
    }
}

/* ends here */


/* The Strategy section */
.strategy-section {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
}

.container {
    width: 90%;
    margin: auto;
    position: relative;
    z-index: 2;
}

.strategy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #d9d9d9;
    border-radius: 30px;
    padding: 6px 14px;
    background: #ffffff;
    margin-bottom: 20px;
}

.strategy-badge img {
    width: 12px;
    height: 12px;
}

.strategy-badge span {
    font-size: 13px;
    color: #444;
}

.strategy-header {
    max-width: 700px;
    margin-bottom: 40px;
}

.strategy-header h2 {
    color: #141433;
    margin-bottom: 15px;
    font-family: "Space Grotesk", "Inter", Arial, sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 44px;
    line-height: 52px;
    vertical-align: middle;
}

.strategy-header h2 span {
    color: #7d65ff;
}

.strategy-header p {
    color: rgba(95, 93, 104, 1);
    max-width: 650px;
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    line-height: 26px;
    vertical-align: middle;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    position: relative;
    z-index: 2;
}

.strategy-card {
    border-radius: 12px;
    padding: 22px;
    min-height: 250px;
}

.card-light {
    background: rgba(157, 123, 255, 1);
}

.card-dark {
    background: rgba(11, 11, 46, 1);
}

.card-number {
    display: block;
    font-size: 60px;
    line-height: 1;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1.5px #fff;
    margin-bottom: 25px;
}

.strategy-card h3 {
    font-size: 34px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 800;
    font-style: 500;

}

.strategy-card p {
    width: 273px;
    color: rgba(255, 255, 255, .85);
    font-family: Helvetica;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 2%;
    vertical-align: middle;
}

.card-bg-shape {
    position: absolute;
    right: 7%;
    margin-top: 150px;
    width: 345px;
    z-index: 1;
    opacity: .8;
    pointer-events: none;
    top: 0;
    transform: rotate(94deg);
}

@media(max-width:1200px) {

    .strategy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-bg-shape {
        right: 5%;
        top: 120px;
    }
}

@media(max-width:768px) {

    .strategy-section {
        padding: 60px 0;
    }

    .strategy-header h2 {
        font-size: 40px;
    }

    .strategy-grid {
        grid-template-columns: 1fr;
    }

    .card-bg-shape {
        width: 180px;
        right: -30px;
        top: 130px;
    }

    .strategy-card h3 {
        font-size: 28px;
    }
}

@media(max-width:480px) {

    .strategy-header h2 {
        font-size: 32px;
    }

    .strategy-card {
        min-height: auto;
    }

    .card-number {
        font-size: 50px;
    }
}

/* ends here */


/* Who we reach */

.reach-section {
    position: relative;
    background: rgba(230, 226, 255, 1);
    padding: 50px 0;
    overflow: hidden;
}

.container {
    width: 90%;
    margin: auto;
    position: relative;
    z-index: 2;
}

.reach-badge {
    display: table;
    margin: auto;
    border: 1px solid #cfc9ea;
    border-radius: 30px;
    padding: 6px 14px;
    background: rgba(230, 226, 255, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    width: max-content;
}

.reach-badge img {
    width: 14px;
    height: 14px;
    color: black;
}

.reach-badge span {
    font-size: 13px;
    color: #3d3d5a;
}

.reach-heading {
    text-align: center;
    max-width: 700px;
    margin: 20px auto 60px;
}

.reach-heading h2 {
    color: #16163d;
    margin-bottom: 15px;
    font-family: Space Grotesk;
    font-weight: 700;
    font-style: Bold;
    font-size: 44px;
    line-height: 52px;
    text-align: center;
    vertical-align: middle;
}

.reach-heading h2 span {
    color: #7d68ff;
}

.reach-heading p {
    color: rgba(95, 93, 104, 1);
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    max-width: 645px;
    width: 100%;
}

.reach-section .reach-bg-star {
    position: absolute;
    top: 50%;
    left: 78%;
    transform: translate(-50%, -50%);
    max-width: 400px;
    width: 100%;
}

.reach-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.reach-image img {
    width: 100%;
    display: block;
    border-radius: 16px;

    height: 100%;
    max-height: 420px;
}

.image-info {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.image-info img {
    width: 20px;
    height: 20px;
}

.image-info span {
    font-size: 16px;
    font-weight: 600;
    color: #444;
}

.reach-points {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.point-item img {
    width: 22px;
    height: 22px;
    margin-top: 3px;
}

.point-item h3 {
    color: rgba(11, 11, 46, 1);
    margin-bottom: 8px;
    font-family: Space Grotesk;
    font-weight: 500;
    font-style: Medium;
    font-size: 24px;
    line-height: 32px;
    vertical-align: middle;
}

.point-item p {
    color: rgba(71, 70, 80, 1);
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 1.2%;
    vertical-align: middle;
}

.reach-bg-star {
    position: absolute;
    right: 12%;
    width: 180px;
    z-index: 1;
    opacity: .6;
    pointer-events: none;
}

@media(max-width:1024px) {

    .reach-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .reach-points {
        max-width: 700px;
        margin: auto;
    }

    .reach-bg-star {
        right: 5%;
    }
}

@media(max-width:768px) {

    .reach-section {
        padding: 60px 0;
    }

    .reach-heading h2 {
        font-size: 40px;
    }

    .reach-bg-star {
        width: 120px;
        top: 100px;
    }

    .point-item h3 {
        font-size: 24px;
    }
}

@media(max-width:480px) {

    .container {
        width: 92%;
    }

    .reach-heading h2 {
        font-size: 32px;
    }

    .reach-heading p {
        font-size: 15px;
    }

    .point-item {
        gap: 12px;
    }

    .point-item h3 {
        font-size: 22px;
    }

    .point-item p {
        font-size: 14px;
    }

    .reach-bg-star {
        width: 90px;
    }
}

/* ends here */


/* Compounding assets */


.section {
    background-color: rgba(209, 199, 255, 1);
    padding: 52px 0;
}

.section-inner {
    display: flex;
    align-items: center;
    gap: 48px;
}

.content {
    /* flex: 1 1 0; */
    min-width: 0;
    width: 40%;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #d6d0ee;
    border-radius: 999px;
    padding: 5px 14px 5px 10px;
    font-size: 13px;
    font-weight: 500;
    color: #3d3d3d;
    margin-bottom: 22px;
    letter-spacing: 0.01em;
}

.badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    color: #7c6fcd;
}

.headline {
    color: rgba(11, 11, 46, 1);
    margin-bottom: 4px;
    font-family: Space Grotesk;
    font-weight: 700;
    font-style: Bold;
    font-size: 44px;
    line-height: 52px;
    vertical-align: middle;
}

.headline-accent {
    color: rgba(245, 246, 255, 1);
}

.body-copy {
    color: rgba(71, 70, 80, 1);
    margin-top: 16px;
    margin-bottom: 20px;
    max-width: 622px;
    max-height: 104px;
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 1.2%;
    vertical-align: middle;

}

.pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 18px;
    max-width: 400px;
}

.pill-one {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgb(230, 226, 255);
    border: 1px solid rgba(184, 167, 255, 1);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #3d3d3d;
    white-space: nowrap;
}

.pill-two {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #D1C7FF;
    border: 1px solid rgba(184, 167, 255, 1);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #3d3d3d;
    white-space: nowrap;
}

.pill svg {
    color: #7c6fcd;
    flex-shrink: 0;
}

.footer-note {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(71, 70, 80, 1);
    font-family: Helvetica;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 24px;

}

.image-wrap {
    /* flex: 0 0 42%; */
    /* max-width: 42%; */
    width: 60%;
}

.image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    display: block;

}

/* ends here */




/*Geography section   */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.geo-section {
    width: 100%;
    overflow: hidden;
    background: #ececec;
}

.geo-top {
    max-width: 90%;
    margin: auto;
    text-align: center;
    padding: 40px 0 30px;
}

.geo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border: 1px solid #b9acee;
    border-radius: 100px;
    background: #f5f2ff;
    margin-bottom: 18px;
}

.geo-badge img {
    width: 14px;
}

.geo-badge span {
    font-size: 12px;
    color: #555;
}

.geo-top h2 {
    font-size: 44px;
    line-height: 1.05;
    color: #0B0B2E;
    font-weight: 700;
    font-family: "Space Grotesk", Inter, Arial, sans-serif;
}

.geo-top h2 span {
    color: #7166ff;
}

.geo-top p {
    margin-top: 16px;
    font-size: 18px;
    line-height: 1.7;
    color: #474650;
    font-weight: 500;
    font-family: Inter;
}

.island-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.island-tabs button {
    background: #fff;
    border: 1px solid #d7ccff;
    border-radius: 999px;
    padding: 10px 20px;
    font-size: 14px;
    color: #23233f;
    cursor: pointer;
    transition: .3s ease;
    font-weight: 500;
}

.island-tabs button:hover {
    background: #f3efff;
}

.island-tabs button.active {
    background: #ece6ff;
    border-color: #9f8cff;
    color: #1f1f3d;
    box-shadow: 0 2px 8px rgba(113, 102, 255, .15);
}

.geo-map {
    position: relative;
    width: 100%;
    min-height: 620px;
}

.bg-image {
    width: 100%;
    height: 620px;
    object-fit: cover;
    display: block;
}

.market-card {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 820px;
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 28px;
    padding: 32px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.market-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.market-title img {
    width: 18px;
}

.market-title span {
    font-size: 17px;
    font-weight: 600;
    color: #1d1d3e;
}

.popular-badge {
    background: #12195f;
    color: white;
    padding: 10px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
}

.market-card p {
    margin-top: 12px;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

.market-tags {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 25px;
}

.market-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #ece8ff;
    border: 1px solid #cbbfff;
    border-radius: 50px;
    font-size: 14px;
    color: #34344d;
}

.market-tag:last-child {
    grid-column: 2 / 4;
    justify-content: center;
}

.market-tag img {
    width: 16px;
}

@media(max-width:1200px) {

    .geo-top h2 {
        font-size: 48px;
    }

    .market-card {
        max-width: 760px;
    }
}

@media(max-width:991px) {

    .geo-top h2 {
        font-size: 40px;
    }

    .geo-map {
        min-height: 700px;
    }

    .bg-image {
        height: 700px;
    }

    .market-card {
        width: 90%;
    }
}

@media(max-width:768px) {

    .geo-top {
        padding: 60px 0 25px;
    }

    .geo-top h2 {
        font-size: 32px;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .market-card {
        padding: 24px;
        border-radius: 22px;
    }

    .market-tag {
        width: 100%;
    }

    .geo-map {
        min-height: 900px;
    }

    .bg-image {
        height: 900px;
    }
}

@media(max-width:480px) {

    .geo-top h2 {
        font-size: 28px;
    }

    .market-card {
        width: 92%;
        padding: 20px;
    }

    .popular-badge {
        font-size: 12px;
    }

    .market-title span {
        font-size: 15px;
    }
}

/* ends here */



/* Transparent tiring */
.pricing-section {
    width: 90%;
    margin: auto;
    padding: 50px 0;
    background: #fff;
}

.pricing-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: #f2eeff;
    border: 1px solid #d9d0ff;
    border-radius: 100px;
    font-size: 13px;
    color: #5b5675;
}

.pricing-badge img {
    width: 18px;
}

.pricing-header h2 {
    margin: 20px auto 0;
    max-width: 606px;
    font-size: 44px;
    line-height: 52px;
    font-weight: 700;
    color: #16163c;
    font-family: "Space Grotesk", Inter, Arial, sans-serif;
}

.pricing-header h2 span {
    color: #7767ff;
}

.pricing-header p {
    margin: 18px auto 0;
    max-width: 606px;
    font-size: 18px;
    line-height: 26px;
    color: #474650;
    font-family: Inter;
}

.pricing-wrapper {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid #D1C7FF;
    transition: .35s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
}

.card-top {
    padding: 33px;
    background: #f3efff;
    background: linear-gradient(180deg, #D8D8FF 50.2%, #FFFFFF 100%);
}

.featured .card-top {
    background: linear-gradient(180deg, #05063E 12.98%, rgba(123, 97, 255, 0.5) 61.54%, #D8D8FF 92.31%);
}

.plan-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-top img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    background: #ffffff;
    border-radius: 48%;
    padding: 10px 10px;
}

.plan-top h3 {
    font-size: 22px;
    font-weight: 700;
    color: #16163c;
    font-family: "Space Grotesk", Inter, Arial, sans-serif;
}

.featured .plan-top h3 {
    color: #fff;
}

.price {
    margin-top: 18px;
}

.price h4 {
    color: #16163c;
    font-family: Space Grotesk;
    font-weight: 500;
    font-style: Medium;
    font-size: 24px;
    line-height: 32px;
}

.price span {
    color: #666;
    font-family: Helvetica;
    font-weight: 700;
    font-style: Bold;
    font-size: 13px;
    line-height: 100%;
}

.featured .price h4,
.featured .price span {
    color: #fff;
}

.plan-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 22px;
    width: 100%;
    height: 50px;
    border-radius: 999px;
    background: #fff;
    text-decoration: none;
    font-weight: 600;
    color: #1b1b3d;
}

.featured .plan-btn {
    background: #fff;
    color: #7767ff;
}

.card-bottom {
    padding: 24px;
    background: #fff;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    color: rgba(11, 11, 46, 1);
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 1.2%;
    text-align: center;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-list li img {
    width: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}


.article-last span {
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 1.2%;
    vertical-align: middle;

}

.article-last {

    width: 100%;
    max-width: 852px;
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 1.2%;
    vertical-align: middle;


}

.featured {
    transform: scale(1.04);
    z-index: 2;
    box-shadow: 0 15px 40px rgba(119, 103, 255, .18);
}

@media(max-width:991px) {

    .pricing-wrapper {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin: 60px auto 0;
    }

    .featured {
        transform: none;
    }

}

@media(max-width:768px) {

    .pricing-section {
        padding: 70px 0;
    }

    .pricing-header h2 {
        font-size: 34px;
        line-height: 42px;
    }

    .pricing-header p {
        font-size: 16px;
    }

}

@media(max-width:480px) {

    .pricing-header h2 {
        font-size: 28px;
        line-height: 36px;
    }

    .plan-top h3 {
        font-size: 18px;
    }

    .price h4 {
        font-size: 34px;
    }

}


/* faq */

/* ends here */



/* banner scetion */

.cta-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    overflow: hidden;
    background: url("./Images/bannersection.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(238, 232, 255, .92) 0%,
            rgba(238, 232, 255, .70) 35%,
            rgba(238, 232, 255, .15) 70%,
            rgba(238, 232, 255, 0) 100%);
}

.cta-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1440px;
    margin: auto;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.cta-content {
    max-width: 560px;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid #cfc4ff;
    border-radius: 100px;
    background: rgba(255, 255, 255, .35);
    backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 500;
    color: #59556f;
}

.cta-content h2 {
    margin-top: 18px;
    font-size: 56px;
    line-height: 1.08;
    font-weight: 800;
    color: #17173d;
}

.cta-content h2 span {
    color: #7565ff;
}

.cta-content p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.8;
    color: #56566f;
    max-width: 520px;
}

.cta-btn {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 22px;
    border-radius: 12px;
    text-decoration: none;
    background: #7b68ff;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: .3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

.cta-btn svg {
    flex-shrink: 0;
}

@media(min-width:1920px) {

    .cta-container {
        max-width: 1440px;
    }

}

@media(max-width:1200px) {

    .cta-content h2 {
        font-size: 48px;
    }

}

@media(max-width:991px) {

    .cta-section {
        min-height: 500px;
    }

    .cta-container {
        min-height: 500px;
    }

    .cta-content {
        max-width: 500px;
    }

    .cta-content h2 {
        font-size: 42px;
    }

}

@media(max-width:768px) {

    .cta-section {
        min-height: 550px;
        background-position: 70% center;
    }

    .cta-overlay {
        background:
            linear-gradient(180deg,
                rgba(238, 232, 255, .95) 0%,
                rgba(238, 232, 255, .85) 45%,
                rgba(238, 232, 255, .45) 100%);
    }

    .cta-content h2 {
        font-size: 34px;
    }

    .cta-content p {
        font-size: 15px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }

}

@media(max-width:480px) {

    .cta-section {
        min-height: 500px;
    }

    .cta-content h2 {
        font-size: 28px;
        line-height: 1.15;
    }

    .cta-badge {
        font-size: 12px;
    }

    .cta-btn {
        padding: 14px 18px;
        font-size: 14px;
    }

}

/* ends here */

/* Footer section */

.footer {
    width: 100%;
    background: #05053d;
    padding: 80px 0 30px;
    overflow: hidden;
}

.footer-container {
    width: 90%;
    margin: auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 70px;
    align-items: start;
}

.footer-logo {
    display: inline-block;
}

.footer-logo img {
    width: 130px;
    display: block;
    object-fit: contain;
}

.footer-desc {
    margin-top: 22px;

    color: #c7cae2;

    font-size: 16px;
    line-height: 1.8;

    max-width: 320px;
}

.newsletter {
    margin-top: 40px;
}

.newsletter h3 {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
}

.newsletter p {
    margin-top: 8px;

    color: #c7cae2;

    font-size: 15px;
    line-height: 1.7;
}

.newsletter-form {
    margin-top: 18px;
    width: 100%;
    max-width: 330px;
    height: 56px;
    display: flex;
    align-items: center;
    background: #121255;
    border: 1px solid rgba(255, 255, 255, .12);
    
    border-radius: 30px;
}

.newsletter-form input {
    flex: 1;

    border: none;
    outline: none;

    background: transparent;

    padding: 0 18px;

    color: #ffffff;

    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: #a8add4;
}

.newsletter-form button {
    border: none;
    cursor: pointer;

    width: 145px;
    height: 44px;

    margin-right: 6px;

    border-radius: 100px;

    background: #ffffff;
    color: #05053d;

    font-size: 13px;
    font-weight: 700;

    transition: .3s;
}

.newsletter-form button:hover {
    transform: translateY(-1px);
}


.footer-links {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.footer-column h4 {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 18px;

    color: #ffffff;

    font-size: 18px;
    font-weight: 600;
}

.footer-column h4 img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.sub-heading {
    margin-top: 28px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    text-decoration: none;

    color: #c7cae2;

    font-size: 15px;
    line-height: 1.7;

    transition: .3s;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-contact {
    margin-top: 50px;

    padding: 22px 0;

    border-top: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .12);

    display: flex;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
}

.footer-contact a,
.footer-contact span {
    display: flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;

    color: #c7cae2;

    font-size: 15px;
}

.footer-contact img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}


.footer-social {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 22px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;

    transition: .3s;
}

.footer-social a:hover {
    transform: translateY(-2px);
}

.footer-social img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}


.footer-bottom {
    margin-top: 28px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    color: #8f95c1;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-legal a {
    text-decoration: none;

    color: #8f95c1;

    font-size: 14px;

    transition: .3s;
}

.footer-legal a:hover {
    color: #ffffff;
}

@media(min-width:2000px) {

    .footer-container {
        max-width: 1440px;
    }

}

@media(max-width:1200px) {

    .footer-top {
        gap: 50px;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }

}

@media(max-width:991px) {

    .footer-top {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-desc {
        max-width: 100%;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media(max-width:768px) {

    .footer {
        padding: 60px 0 25px;
    }

    .newsletter h3 {
        font-size: 28px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-legal {
        flex-wrap: wrap;
        gap: 15px;
    }

}


@media(max-width:480px) {

    .footer-container {
        width: 90%;
    }

    .newsletter h3 {
        font-size: 24px;
    }

    .newsletter-form {
        height: auto;
        flex-direction: column;
        background: none;
        border: none;
        gap: 12px;
    }



    .newsletter-form button {
        width: 100%;
        height: 54px;

        margin-right: 0;
    }

    .footer-contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .footer-social {
        flex-wrap: wrap;
    }

}

/* ends here */

@media screen and (max-width:640px) {
    .hero h1 {
        font-size: 25px;
        line-height: 30px;
    }

    .hero-badge {
        margin-top: 80px;
        margin-bottom: 10px;
    }

    .rating {
        margin-bottom: 30px;
    }

    .section-inner {
        flex-wrap: wrap;
    }

    .content,
    .image-wrap {
        width: 100%;
    }

    .pills {
        opacity: 0;
    }

    .days-section {
        padding: 50px 10px !important;
    }

    input[type="email"] {
        width: 100%;
        min-height: 67px;
        /* margin-bottom: 6px; */
        border: 1px solid #A8AED0;
        border-radius: 20px;
    }
}