:root {
    --background: #F5F7FA;
    --primary: #3367EA;
    --secondary: #9d57f5;
    --muted-text: #828283;
    --muted-text-2: #d0d0d0;
    --light: #FFFFFF;
    --black: #121212;
    --font-family: "Onest", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    background-color: var(--background);
    color: var(--black);
    line-height: 1.6;
}

h6 {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.7em;
    letter-spacing: 0.7px;
    margin-bottom: 15px;
}

h2 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--black);
    line-height: 1.08em;
}

.container {
    width: 100%;
    margin: 0 auto;
    /* padding: 0 20px; */
}

.grad-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 51%, var(--primary) 100%) 0/200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.top-section {
    background: linear-gradient(180deg, #D1DDFF 0%, #D1DDFF00 100%);
}

/* Navigation Bar - Starts */
.navbar {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
    z-index: 1000;
    min-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 50px;
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-logo img {
    max-height: 80px;
}

.nav-button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 51%, var(--primary) 100%) 0/200%;
    color: var(--light);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.nav-button:hover {
    background-position: 100% 0;
}

.nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 15px 0;
    margin: 0;
}

.nav-list li {
    margin: 0 20px;
}

.nav-list a {
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
    background: var(--black);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-list a:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 51%, var(--primary) 100%) 0/200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-position: 100% 0;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
}

.nav-toggle {
    display: none;
}

@media (max-width: 768px) {
    .nav-right {
        display: none;
        position: absolute;
        top: 70px;
        right: 40px;
        background: transparent;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
    }

    .nav-right.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
        cursor: pointer;
        font-size: 26px;
    }
}

/* Navigation Bar - Ends */
/* Hero Section - Starts */
.hero-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center; 
    padding: 80px 20px;
}

.hero-background {
    left: 45vw;
    max-width: 100%;
    top: 0px;
    height: 100%;
    position: absolute;
    display: inline-block;
}

.hero-background img {
    position: revert;
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    vertical-align: middle;
    display: inline-block;
    opacity: 0.5;
}

.hero-wrapper {
    display: flex;
    width: 100%;
    max-width: 1200px;
    z-index: 1;
}

.hero-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--black);
    text-align: left;
}

.hero-content>h2 {
    font-size: 70px;
    margin-bottom: 30px;
}

.hero-content p {
    font-size: 16px;
    font-weight: 400;
    color: var(--muted-text);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 30px;
}

.hero-image {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); */
    object-fit: cover;
}

.hero-button {
    max-width: 170px;
    font-size: 1.1rem;
    padding: 15px 40px;
    color: var(--light);
    cursor: pointer;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 51%, var(--primary) 100%) 0/200%;
    transition: background 0.3s ease;
}

.hero-button:hover {
    background-position: 100% 0;
}

@media (max-width: 1200px) {

    .hero-section,
    .about-section {
        padding: 85px 40px 0
    }

    .hero-content>h2,
    .about-content>h2 {
        font-size: 60px;
    }

    .hero-image {
        padding: 20px;
    }

    .hero-background {
        top: 15%;
    }
}

@media (max-width: 992px) {

    .hero-section,
    .about-section {
        padding: 85px 20 0
    }

    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .hero-content>h2,
    .about-content>h2 {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .hero-content p,
    .about-content p {
        font-size: 15px;
        max-width: 90%;
    }

    .hero-image {
        width: 100%;
        padding: 20px 0;
    }

    .hero-button {
        font-size: 1rem;
        padding: 12px 30px;
    }

    .hero-background {
        top: 50%;
    }
}

@media (max-width: 768px) {

    .hero-section,
    .about-section {
        padding: 85px 15px 0;
    }

    .hero-content>h2,
    .about-content>h2 {
        font-size: 36px;
    }

    .hero-content p,
    .about-content p {
        font-size: 14px;
    }

    .hero-button {
        font-size: 1rem;
        padding: 10px 25px;
    }

    .hero-image img {
        max-width: 90%;
    }

    .hero-background {
        top: 50%;
        left: 0;
        opacity: 0.3;
    }
}

@media (max-width: 480px) {

    .hero-section,
    .about-section {
        padding: 85px 40px 0
    }

    .hero-content>h2,
    .about-content>h2 {
        font-size: 28px;
    }

    .hero-content p,
    .about-content p {
        font-size: 13px;
    }

    .hero-button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .hero-image img {
        border-radius: 6px;
    }

    .hero-background img {
        display: none;
    }
}

/* Hero Section - Ends */
/* About Section - Starts */
.about-section {
    padding: 0px 20px 60px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    max-width: 1130px;
}

.about-section p {
    font-size: 16px;
    font-weight: 400;
    color: var(--muted-text);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* About Section - Ends */
/* Feature Section - Starts */
.feature-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 60px 20px;
    background-image: url('../images/background/bg05.png');
    /* background-blend-mode: multiply; */
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
    /* margin-bottom: 15vh; */
}

.feature-card {
    background-color: var(--light);
    border-radius: 10px;
    width: 260px;
    height: 375px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease;
    z-index: 1;
    cursor: pointer;
}

.feature-card:nth-child(even) {
    margin-top: 30px;
}

.feature-icon i {
    font-size: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 51%, var(--primary) 100%) 0/200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-position: 100% 0;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
    margin-bottom: 25px;
    transition: color 0.4s;
}

.feature-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    transition: color 0.4s;
}

.feature-description {
    font-size: 16px;
    color: var(--muted-text);
    margin-bottom: 30px;
    transition: color 0.4s;
}

.feature-button {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%) 0/100%;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    transition: background 0.4s;
}

.feature-button i {
    color: var(--light);
    font-size: 16px;
    transition: color 0.4s;
}

.feature-card:hover .feature-icon i,
.feature-card:hover .feature-title,
.feature-card:hover .feature-description,
.feature-card:hover .feature-button i {
    color: var(--light);
}

.feature-card:hover .feature-button {
    background: var(--light);
}

.feature-card:hover .feature-icon i {
    background: var(--light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.feature-card:hover .feature-button i {
    color: var(--primary);
}

.feature-card::before {
    content: attr(data-step);
    position: absolute;
    top: -35px;
    width: 120px;
    height: 120px;
    font-size: 100px;
    font-weight: bold;
    color: rgba(253, 253, 253, 0.28);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    transition: transform 0.6s ease-in-out;
    z-index: 1;
    pointer-events: none;
    line-height: 1;
    padding: 10px;
    border-radius: 50%;
    opacity: 0.4;
    align-items: center;
    justify-content: center;
    display: grid;
    right: -20px;
}

.feature-card:hover::before {
    background: none;
    transition: transform 0.6s ease-in-out;
}

.feature-card::after {
    content: "";
    position: absolute;
    top: -35px;
    right: -35px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 51%, var(--primary) 100%) 0/100%;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.feature-card:hover::after {
    transform: scale(20);
}

.feature-card>* {
    position: relative;
    z-index: 2;
}

.scrambler {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

/* Feature Section - Ends */
/* Scrolling Section - Starts */
.scrolling-section {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    /* margin-bottom: 15vh; */
}

.scrolling-content {
    display: inline-flex;
    animation: scroll-left 40s linear infinite;
    width: max-content;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.scrolling-item {
    display: inline-flex;
    align-items: center;
    margin: 0 20px;
}

.scrolling-item img {
    height: 30px;
}

.scrolling-item span {
    position: relative;
    display: inline-block;
    font-family: "Onest", sans-serif;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 0.125em;
    color: var(--light);
    -webkit-text-stroke: 2px transparent;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-stroke-color: transparent;
    background-clip: text;
    -webkit-text-fill-color: var(--light);
    text-shadow:
        0 0 2px rgba(255, 255, 255, 0.3),
        0 0 8px rgba(255, 255, 255, 0.1);
}

/* Scrolling Section - Ends */
/* Highlights Section - Starts */
.highlight-section {
    display: flex;
    flex-wrap: wrap;
    padding: 0 70px;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    /* margin-bottom: 15vh; */
}

.highlight-left {
    position: relative;
    flex: 1 1 28%;
    max-width: 48%;
    height: auto;
}

.image-container {
    position: relative;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.image-wrapper.main-img {
    position: absolute;
    z-index: 2;
}

.image-wrapper.overlay-img {
    position: absolute;
    transform: translate(0%, 50%);
    left: 0px;
    z-index: 1;
}

.highlight-right {
    flex: 1 1 50%;
    max-width: 50%;
    padding: 0 40px;
}

.icon-box {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.icon-box i {
    font-size: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 51%, var(--primary) 100%) 0/200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.icon-box-content h3 {
    font-size: 22px;
    margin: 0 0 8px;
}

.icon-box-content p {
    font-size: 16px;
    color: var(--black);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .highlight-section {
        padding: 0 40px;
        gap: 40px;
    }

    .highlight-right {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .highlight-right {
        padding: 0 20px;
    }

    .image-container {
        height: 500px;
    }

    .icon-box i {
        font-size: 42px;
    }

    .icon-box-content h3 {
        font-size: 20px;
    }

    .icon-box-content p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .highlight-left {
        max-width: 95%;
    }

    .image-wrapper.main-img {
        position: relative;
    }

    .highlight-section {
        flex-direction: column;
        padding: 0 20px;
        gap: 30px;
        margin-bottom: 80px;
    }

    .image-container {
        height: 400px;
    }

    .highlight-right h2 {
        font-size: 24px;
        line-height: 1.4;
    }

    .icon-box {
        gap: 20px;
    }

    .icon-box i {
        font-size: 36px;
    }

    .icon-box-content h3 {
        font-size: 18px;
    }

    .icon-box-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {

    .highlight-left {
        max-width: 95%;
    }

    .image-wrapper.main-img {
        position: relative;
    }

    .image-container {
        height: 300px;
    }

    .highlight-right h2 {
        font-size: 22px;
    }

    .icon-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .icon-box i {
        font-size: 32px;
    }

    .icon-box-content h3 {
        font-size: 16px;
    }

    .icon-box-content p {
        font-size: 13px;
    }
}

/* Hightlights Section - Ends */
/* FAQ Section - Starts */
.faq-section {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding: 30px 80px;
    justify-content: space-between;
    background: transparent;
    overflow: hidden;
}

.faq-section::before {
    content: "";
    display: block;
    position: absolute;
    mix-blend-mode: multiply;
    opacity: 1;
    top: 0;
    left: 0;
    width: max(100%, 100%);
    height: max(100%, 100%);
    background-image: url('../images/background/bg04.png');
    background-repeat: no-repeat;
    background-position: bottom left;
}

.faq-left {
    flex: 1 1 45%;
    max-width: 45%;
    z-index: 2;
}

.faq-right {
    flex: 1 1 50%;
    max-width: 50%;
    z-index: 2;
}

.accordion {
    display: flex;
    flex-direction: column;
}

.accordion-item {
    background-color: transparent;
    overflow: hidden;
    border-bottom: 1px solid var(--muted-text);
}

.accordion-item:first-child {
    border-top: 1px solid var(--muted-text);
}

.accordion-header {
    background: none;
    border: none;
    padding: 20px;
    width: 100%;
    text-align: left;
    font-size: 18px;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 25px;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    padding: 0 20px;
    color: var(--muted-text);
    display: none;
    font-size: 16px;
    line-height: 1.6;
    margin-left: 50px;
    margin-bottom: 20px;
}

.accordion-item.active .accordion-body {
    display: block;
}

@media (max-width: 1024px) {
    .faq-section {
        padding: 30px 40px;
    }

    .faq-left,
    .faq-right {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .faq-left h2 {
        font-size: 26px;
    }

    .accordion-header {
        font-size: 17px;
    }

    .accordion-body {
        font-size: 15px;
        margin-left: 30px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        flex-direction: column;
        padding: 30px 20px;
    }

    .faq-left,
    .faq-right {
        max-width: 100%;
    }

    .faq-left {
        margin-bottom: 30px;
    }

    .faq-left h6 {
        font-size: 14px;
    }

    .faq-left h2 {
        font-size: 24px;
        line-height: 1.4;
    }

    .accordion-header {
        font-size: 16px;
        gap: 15px;
        padding: 15px;
    }

    .accordion-body {
        font-size: 14px;
        padding: 0 15px 15px;
        margin-left: 20px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 20px 40px;
    }

    .faq-left h2 {
        font-size: 22px;
    }

    .accordion-header {
        font-size: 15px;
        gap: 10px;
    }

    .accordion-body {
        font-size: 13px;
        margin-left: 10px;
    }

    .faq-section::before {
        background-size: cover;
        background-position: bottom left;
        opacity: 0.3;
    }
}

/* FAQ Section - Ends */

/* Footer - Starts */
.footer-section {
    background-color: #1c1c1c;
    color: var(--muted-text-2);
    padding: 40px 80px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px 0;
}

.footer-column {
    flex: 1;
}

.footer-logo {
    max-width: 100px;
    height: auto;
    margin-bottom: 15px;
}

.footer-column.about {
    max-width: 350px;
}

.footer-column.links,
.footer-column.contact,
.footer-column.social {
    max-width: 200px;
}

.contact a {
    color: var(--muted-text-2);
    text-decoration: none;
}

.contact a:hover {
    color: var(--light);
    text-decoration: none;
}

.footer-column h6 {
    color: var(--light);
    margin-bottom: 10px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column p,
.footer-column ul {
    margin: 0;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    gap: 20px;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: var(--muted-text-2);
    text-decoration: none;
}

.footer-column ul li a:hover {
    color: var(--light);
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    color: var(--muted-text-2);
    text-decoration: none;
    font-size: 18px;
}

.social-icons a:hover {
    color: var(--light);
}

.social-icons svg {
    width: 24px;
    height: 24px;
    stroke-width: 0;
    fill: currentColor;
    transition: color 0.3s ease;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
}

.footer-bottom hr {
    border-color: #444;
    margin: 10px 0;
}

@media (max-width: 1024px) {
    .footer-section {
        padding: 40px;
    }

    .footer-content {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-column {
        max-width: 100%;
        width: 100%;
    }

    .footer-column h6 {
        font-size: 15px;
    }

    .footer-column p,
    .footer-column ul li a {
        font-size: 13px;
    }

    .social-icons {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 30px 20px;
        font-size: 13px;
    }

    .footer-column h6 {
        font-size: 14px;
    }

    .social-icons svg {
        width: 20px;
        height: 20px;
    }

    .footer-bottom {
        font-size: 12px;
    }

    .feature-card {
        width: 350px;
        height: 375px;
        padding: 60px 50px;
    }
}

/* Footer - Ends */