body {
    font-family: "Inter", serif;
    overflow-x: hidden !important;
    position: relative;
}

html {
    overflow-x: hidden !important;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.25); /* Initial background */
    color: #333; /* Initial text color */
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease; /* Smooth transitions */
}

header nav a {
    color: #333; /* Initial link color */
    text-decoration: none;
    transition: color 0.3s ease; /* Smooth text color transition */
}

#logo-full {
    transition: opacity 0.3s ease; /* Smooth logo transition */
}

.burger {
    width: 50px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-end;
}

.burger .line {
    height: 2px;
    background-color: #8e8e8e;
}

.line-1 {
    width: 100%;
}

.line-2 {
    width: 60%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    /* border: 1px solid red; */
    padding: 20px 0;
    /* background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px); */
    border-radius: 10px;
    align-items: center;
}

/* nav {
    padding-top: 20px;
} */

nav {
    font-size: 18px;
}

.nav-middle ul {
    list-style: none;
    display: flex;
    gap: 40px;
    margin-bottom: 0 !important;
}

.nav-middle ul li a {
    font-size: 18px;
    color: #000;
    font-weight: 400;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.menu-shortcut {
    cursor: pointer;
    /* display: flex; */
    align-items: center;
    gap: 10px;
    display: none;
}

.menu-links i {
    font-size: 28px;
    margin-left: 5px;
    /* color: #8e8e8e; */
}

/* .menu-shortcut.active .burger .line-1 {
    transform: rotate(45deg) translate(3px, 3px);
}

.menu-shortcut.active .burger .line-2 {
    transform: rotate(-45deg) translate(3px, -3px);
} */

nav h6 {
    font-size: 14px;
    font-weight: 500;
}

button {
    background-color: transparent;
    border: 1px solid #000;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 15px;
    font-weight: 400;
    width: fit-content;
}

nav .circle {
    border: 1px solid #000;
    width: 40px;
    height: 40px;
    border-radius: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000;
}

/* hero */

.hero button i {
    margin-left: 20px;
}

.hero-wrapper {
    position: relative;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 20vh;
    background: -webkit-linear-gradient(
        top,
        #ececec00 0%,
        #ffffff 100%
    ); /* Safari 6-9 */
    background: linear-gradient(
        to bottom,
        #ececec00 0%,
        #ffffff 100%
    ); /* Standard */
    z-index: 2;
}

.hero {
    position: absolute;
    padding-top: 12vh;
    /* height: 70vh; */
    /* overflow: hidden; */
    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
    color: #000; /* For better contrast */
    /* text-align: center; */
    /* border: 1px solid black; */
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    /* border: 3px solid #000; */
}

.hero-video {
    width: 100%;
    height: 110vh;
    object-fit: cover;
    z-index: -1;
}

.hero-container {
    z-index: 2; /* Ensure content is above the video */
}

.hero-left {
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-left h1 {
    font-size: 92px;
    line-height: 92px;
    font-family: "Space Grotesk", serif;
}

.hero-left p {
    font-size: 16px;
    max-width: 400px;
}

.hero button {
    position: relative;
    overflow: hidden;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 24px;
    text-transform: uppercase;
    margin-top: 30px;
    background-color: transparent;
    border: 2px solid #000;
    color: #000;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}

.hero button::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    transition: top 0.3s ease-in-out;
    z-index: -1;
}

.hero button:hover::before {
    top: 0;
}

.hero button:hover {
    color: #fff;
}

#blob {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

@keyframes scroll-right {
    0% {
        transform: translateX(0); /* Start position */
    }
    100% {
        transform: translateX(calc(-100%)); /* End position */
    }
}

.scroll-text-wrapper {
    overflow-x: hidden;
}

.scroll-text {
    display: flex; /* Align items in a single row */
    gap: 30px;
    animation: scroll-right 30s linear infinite; /* Slowed down animation */
    /* white-space: nowrap; */
    margin-top: 80px;
    margin-bottom: 80px;
}

.scroll-text h1 {
    display: inline-block; /* Ensure <h1> stays inline */
    /* margin-right: 50px;  */
    white-space: nowrap;
    font-size: 80px;
    font-family: "Space Grotesk", serif;
    font-weight: 400;
}

.scroll-text i {
    color: #b3b3b3;
    font-size: 30px;
    /* margin-left: 20px; */
    margin-right: 20px;
    vertical-align: middle;
}

/* word */
.improve {
    margin-top: 60px;
}

.word-list {
    /* border: 1px solid red; */
    /* margin: auto; */
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 1100px;
    margin: auto;
}

.word {
    border: 1px solid #8e8e8e;
    max-width: 1000px;
    margin: auto;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 100px;
    width: 100%;
}

.word-title h1 {
    font-size: 77px;
    text-align: center;
    margin-bottom: 80px;
}

.word:nth-child(2n) {
    margin-right: 0;
}

.word:nth-child(2n + 1) {
    margin-left: 0;
}

.word h1 {
    font-size: 58px;
    font-weight: 400;
}

.word img {
    border-radius: 100px;
}

.word-icon {
    /* border: 1px solid #000; */
    border-radius: 200px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

.word i {
    font-size: 58px;
}

.word div {
    display: flex;
    gap: 10px;
}

/* infograph */
.infograph-left h4 {
    font-size: 38px;
    font-weight: 400;
    color: #b3b3b3;
}

.infograph-left h4 span {
    color: #000;
}

.infographs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 100px;
    row-gap: 50px;
    /* border: 1px solid red; */
}

.infograph p {
    /* margin-bottom: 50px; */
    /* color: #b3b3b3; */
    font-size: 32px;
}

.line {
    background-color: #8e8e8e;
    height: 1px;
}

.infograph {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.infograph-container {
    margin: auto;
    max-width: 1000px;
    margin-bottom: 100px;
}

#infograph {
    width: 100%;
}

.infograph-left {
    display: flex;
    flex-direction: column;
    gap: 150px;
}

.infograph h1 {
    font-size: 62px;
}
.infograph i {
    font-size: 62px;
}

.infograph-icon {
    background-color: #f5f5f5;
    width: 130px;
    height: 130px;
    border-radius: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* #chart {
    width: 100% !important;
} */

#chart-section {
    width: 100%;
    /* height: 100%; */
    display: flex;
    justify-content: center;
    align-items: center;
}

#chart {
    width: 100%; /* Adjust as needed */
    height: auto;
}

/* methodology */
.method {
    padding-top: 15vh;
    /* padding-bottom: 15vh; */
}

.method-header h1 {
    font-size: 72px;
    text-transform: uppercase;
    font-weight: 400;
}

.method-card {
    background: rgb(139, 124, 228);
    background: radial-gradient(
        circle,
        rgba(139, 124, 228, 1) 8%,
        rgba(167, 156, 235, 1) 40%
    );
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 18px;
    /* opacity: 0.6; */
    /* border: 1px solid rgba(255, 255, 255, 0.18); */
    /* border: 1px solid rgba(128, 128, 128, 0.219); */
    padding: 40px;
    display: flex;
    gap: 30px;
}

.method-card i {
    font-size: 42px;
    /* color: #8b7ce4; */
    /* color: #8e8e8e;  */
}

.method-card h2 {
    font-size: 42px;
    font-weight: 400;
    /* color: #8b7ce4; */
    /* color: #000; */
}

.method-card p {
    font-size: 18px;
    /* color: #8e8e8e; */
    font-weight: 400;
    /* margin-top: 30px; */
}

.method-header {
    margin-bottom: 30px;
}

.method-list {
    /* display: flex; */
    /* flex-direction: column; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* .method-card:nth-child(3) {
    grid-column: span 2;
} */

.method-card:nth-child(1) {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #8b7ce4 !important;
}

.method-card:nth-child(1) h1 {
    font-size: 72px;
    text-transform: uppercase;
    font-weight: 600;
    color: transparent; /* Makes the text itself invisible */
    -webkit-text-stroke: 2px #fff; /* Adds a stroke around the text */
    text-align: center; /* Optional, uncomment if needed */
    font-family: "Space Grotesk", serif;
}

.method-left {
    display: flex;
    align-items: flex-start;
    /* margin-top: -10px; */
}

.method-card:nth-child(4) ul {
    list-style: none; /* Removes default bullets */
    padding-left: 20px; /* Adds some padding for alignment */
}

.method-card:nth-child(4) ul li {
    position: relative;
    padding-left: 30px; /* Adds space for the image */
}

.method-card:nth-child(4) ul li::before {
    content: "";
    background: url("your-image-url.png") no-repeat center;
    background-size: contain;
    width: 20px; /* Adjust based on your image size */
    height: 20px;
    position: absolute;
    left: 0;
    top: 0;
}
.method-body span {
    border: 2px solid #fff;
    border-radius: 50px;
    padding: 10px 20px;
    display: block;
    width: fit-content;
    font-size: 14px;
}

.method-body {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* about */
/* .about img {
    width: 100%;
    max-width: 300px;
    margin: auto;
} */

.about {
    margin-top: 150px;
    margin-bottom: 100px;
}

.about-img {
    background-image: url("../../assets/img/ceo.png");
    height: 600px;
    width: 400px;
    background-size: cover;
    border-radius: 30px;
    overflow: hidden;
    margin: auto;
    z-index: 2;
    position: relative; /* Ensure z-index applies */
}

.about .line {
    margin-top: -30px;
    z-index: 1; /* Lower z-index than .about-img */
    position: relative; /* Ensure z-index applies */
}

.about h1 {
    color: #8b7ce4;
    font-size: 72px;
    font-weight: 400;
    margin-top: -180px;
    z-index: 10;
    text-align: center;
    font-family: "Space Grotesk", serif;
    position: relative; /* Ensure z-index applies */
}

.about-details {
    padding-top: 80px;
    max-width: 790px;
    margin: auto;
    text-align: center;
    /* color: #8e8e8e; */
    color: #b3b3b3;
}

.about-details span {
    color: #000;
}

.about-details h4 {
    padding-bottom: 70px;
}

/* process */
/* Timeline styles */

.process {
    /* padding: 40px 20px; */
    /* background-color: #f9f9f9; */
}

.process-title h1 {
    font-size: 72px;
    margin-bottom: 50px;
}

.process-content {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
}

.process-left {
    flex: 1;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.process-item {
    cursor: pointer;
    padding: 30px;
    border: 1px solid #ddd;
    /* margin-bottom: 15px; */
    border-radius: 30px;
    transition: all 0.3s ease;
    background-color: #fff;
}

.process-item.active {
    border-color: #8b7ce4;
    /* background-color: #eaf4ff; */
}

.process-item h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #8b7ce4;
}

.process-right {
    flex: 1;
    /* height: 100%; */
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 30px;
    transition: background-image 0.3s ease;
}

/* Set the default background for the right section */
#process-background {
    background-image: url("../../assets/img/process-1.jpg");
}

.process-item p,
.process-item ul {
    display: none; /* Hide by default */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-item.active p,
.process-item.active ul,
.process-item:hover p,
.process-item:hover ul {
    display: block; /* Show content */
    opacity: 1;
}

/* client */
.clients {
    /* margin-bottom: 100px; */
    margin-top: -60px;
    padding-left: 20px;
    padding-right: 20px;
    z-index: 50;
    position: relative;
}

.clients img {
    width: 100%;
    box-sizing: border-box;
    filter: grayscale(100%);
}

.clients img:hover {
    filter: grayscale(0%);
    transition: filter 0.3s ease-in-out;
}

/* .client {
    border-radius: 8px;
    border: 1px solid #f5f5f5;
} */

.client-container {
    background: linear-gradient(to right, #d9d9d94b 30%, #ffffff57 50%);
    border: 1px solid #66666628;
    border-radius: 30px;
    padding: 30px 0;
}

/* plans */
.plans {
    margin-top: 200px;
    margin-bottom: 100px;
}

.plans-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.plans-header h1 {
    font-size: 77px;
}

.plan {
    background-color: #f5f5f5;
    border-radius: 30px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}

.plan-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.plan button {
    font-size: 14px;
    height: fit-content;
}

.plan > h1 {
    font-size: 30px;
    max-width: 280px;
}

.plan-head {
    display: flex;
    justify-content: space-between;
}

.plan-head h1 {
    font-size: 32px;
}

.plan-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.plan-footer h1 {
    font-size: 164px;
    font-family: "Space Grotesk", serif;
    height: 120px;
    overflow: hidden;
    color: #d9d9d9;
}

.plan .buttons {
    display: flex;
    align-items: center;
}

.plan .buttons i {
    border: 1px solid #8e8e8e;
    border-radius: 50px;
    height: 35px;
    width: 35px;
    color: #8e8e8e;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.plan .plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    position: relative;
    padding-left: 30px; /* Space for the icon */
    font-size: 20px;
    line-height: 1.8;
}

.plan-features li::before {
    content: "\2713"; /* Unicode for checkmark */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #8e8e8e; /* Green tick */
    font-weight: bold;
}

/* sales */
.sales-header {
    font-size: 72px;
    font-weight: 500;
    margin-bottom: 30px;
    max-width: 800px;
}

.sales-word-list {
    background-color: #f5f5f5;
    border-radius: 30px;
    padding: 30px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.sales-word {
    /* border: 1px solid #000; */
    border-radius: 100px;
    padding: 20px;
    width: fit-content;
    font-size: 54px;
    font-weight: 400;
    background-color: #fff;
}

/* reviews */

.reviews {
    margin-top: 200px;
    margin-bottom: 200px;
}

.reviews-container {
    padding-top: 120px;
    padding-bottom: 120px;
    max-width: 800px;
    margin: auto;
}

.review i {
    font-size: 80px;
    color: #8b7ce4;
}

.review {
    display: flex;
    gap: 40px;

    /* border: 1px solid red; */
}

.review-body {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.review-body p {
    font-size: 32px;
    font-weight: 500;
}

.review-footer h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
}

.review-footer p {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 0;
}

.review-footer {
    display: flex;
    gap: 10px;
}

.review-footer img {
    height: 36px;
}

.quote-mark {
    margin-top: -5px;
}

.review-btns {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.review-btns i {
    font-size: 20px;
    border: 2px solid #8b7ce4;
    padding: 10px 12px;
    border-radius: 100px;
    color: #8b7ce4;
}

/* video */
video {
    width: 100%;
    height: 110vh;
    /* border-radius: 30px; */
    /* margin-top: 150px; */
    /* margin-bottom: 100px; */
    /* filter: brightness(1) contrast(1);
    filter: grayscale(100%); */
}

.video video {
    border-radius: 30px;
    overflow: hidden;
    height: unset;
    margin-top: 100px;
    margin-bottom: 150px;
}

/* contact */
/* Form and button container */
form {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}

.inputs {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}

/* Form inputs */
.input-top {
    display: flex;
    gap: 10px;
    width: 100%;
}

input,
textarea {
    background-color: #f5f5f5;
    border: none;
    border-radius: 77px;
    padding: 30px;
    width: 100%;
    box-sizing: border-box;
}

textarea {
    border-radius: 55px;
    width: 100%;
    resize: none;
}

/* Button container */
.button-container {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    width: 30%; /* Adjust width of button container */
}

#send-button {
    padding: 15px 30px;
    background: rgb(139, 124, 228);
    background: radial-gradient(
        circle,
        rgba(139, 124, 228, 1) 8%,
        rgba(167, 156, 235, 1) 40%
    );
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 18px;
    width: 100%; /* Button takes full width of its container */
    height: 100%;
    opacity: 0.6;
}

#send-button i {
    margin-right: 10px;
}

.contact h1 {
    font-size: 176px;
    text-align: center;
    margin-bottom: 50px;
}

.contact {
    margin-bottom: 100px;
}

#logo-short {
    display: none;
}

/* Footer General */
.footer {
    background-color: #222;
    color: #fff;
    padding: 50px 20px 20px;
}

.footer h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Footer Row */
.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.footer-column {
    flex: 1 1 calc(25% - 30px); /* 4 columns with spacing */
    min-width: 250px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

/* Social Links */
.social-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
}

.social-links a {
    color: #aaa;
    font-size: 16px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #fff;
}

/* Newsletter */
.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    outline: none;
    font-size: 14px;
}

.newsletter-form button {
    padding: 10px 20px;
    background-color: #444;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #555;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 12px;
    color: #aaa;
    display: flex;
    justify-content: space-between;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #00bcd4;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 90;
    padding-top: 30vh;
    overflow-y: auto;
    padding-bottom: 20px; /* Prevents content from touching the bottom */
}

/* Show Mobile Menu when Active */
.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
    width: fit-content;
    margin: auto;
    align-items: flex-start;
}

.mobile-menu ul li {
    font-size: 18px;
    text-align: center;
}

.mobile-menu ul li a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.mobile-menu ul li a:hover {
    color: #8b7ce4;
}

/* Contact Section */
.mobile-contact {
    padding: 20px;
    /* text-align: center; */
    border-top: 1px solid #ddd;
    margin-top: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
}

.mobile-contact h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.mobile-contact p {
    font-size: 14px;
    margin: 5px 0;
    color: #8e8e8e;
}

.mobile-contact a {
    color: #8e8e8e;
    text-decoration: none;
    /* font-weight: bold; */
}

.mobile-contact a:hover {
    text-decoration: underline;
}

/* Newsletter Section */
.mobile-newsletter {
    padding: 20px;
    text-align: center;
    /* border-top: 1px solid #ddd; */
    margin-top: 50px;
}

.mobile-newsletter h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.mobile-newsletter p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #555;
}

.mobile-newsletter form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.mobile-newsletter input {
    width: 80%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.mobile-newsletter button {
    width: 80%;
    padding: 15px;
    background-color: #8b7ce4;
    color: #fff;
    font-size: 18px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    border: none;
}

.mobile-newsletter button:hover {
    background-color: #8b7ce4;
}

.mobile-menu ul li a {
    font-size: 32px;
    font-weight: 600;
}

/* footer */
footer img {
    width: 100%;
}

footer {
    /* background-color: #f5f5f5; */
    background-color: #484554;
    /* background-image: url(/assets/img/footer-bg.jpg); */
    background-size: cover;
    color: #fff;
    /* margin-top: 200px; */
}

.footer-top {
    padding-top: 150px;
    padding-bottom: 150px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-top i {
    font-size: 32px;
}

.social {
    display: flex;
    gap: 20px;
}

.location h2 {
    font-size: 14px;
}

.location p {
    font-size: 20px;
    font-weight: 500;
}

footer a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

#footer-top {
    margin-top: 200px;
    width: 100%;
    margin-bottom: -10vh;
}

#logo-white {
    width: 200px;
}
/* Responsive Design */
@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
        gap: 40px;
    }

    .footer-column {
        flex: 1 1 100%;
    }
}

@media only screen and (max-width: 800px) {
    .hero-left {
        gap: 0;
    }

    .word-icon {
        width: 80px;
    }
    .word i {
        font-size: 32px;
    }

    .word-title h1 {
        font-size: 24px;
        margin-bottom: 40px;
        text-align: unset;
    }
    .word {
        padding: 20px;
    }

    .word span {
        font-size: 13px;
    }
    /* sales */
    .sales-header {
        font-size: 32px;
    }

    /* .sales-word-list {
    background-color: #f5f5f5;
    border-radius: 30px;
    padding: 30px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
} */

    .sales-word {
        padding: 20px;
        font-size: 24px;
    }

    .hero {
        padding-left: 20px;
        padding-right: 20px;
    }
    .hero-video {
        height: 90vh;
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
        align-items: unset;
        padding-left: 20px;
        padding-right: 20px;
    }
    .word img {
        width: 100px;
    }
    .word h1 {
        font-size: 20px;
    }

    .improve {
        margin-bottom: 60px;
    }

    .review {
        flex-direction: column;
        gap: 10px;
        padding: 0 20px;
    }

    .review-body > p {
        font-size: 18px;
    }

    .review-body {
        gap: 20px;
    }

    .review-btns {
        justify-content: flex-start;
        margin-top: 50px;
        gap: 30px;
        padding: 0 20px;
    }

    .review-btns i {
        font-size: 32px;
    }

    .review i {
        font-size: 72px;
    }

    .reviews {
        margin-top: 100px;
        margin-bottom: 100px;
    }

    nav {
        padding: 10px;
    }

    .nav-container {
        padding: 10px 20px;
    }

    .nav-right {
        display: none;
    }

    .nav-middle {
        display: none;
    }

    .nav-left {
        width: 100%;
        justify-content: space-between;
    }

    .menu-shortcut {
        display: flex;
    }

    .method-card:nth-child(1) h1 {
        font-size: 42px;
    }

    #blob {
        display: none;
    }

    #logo-full {
        display: none;
    }

    #logo-short {
        display: block;
        width: 35px;
    }
    .burger .line {
        background-color: #000;
    }

    .hero-left p {
        font-size: 16px;
    }

    .hero-left h1 {
        font-size: 32px;
        line-height: unset;
    }

    .hero-left p:last-of-type {
        font-size: 14px;
        margin-bottom: 0;
    }

    .hero button {
        padding: 15px 30px;
        border-radius: 50px;
        font-size: 16px;
        background: #000;
        color: #fff;
        /* margin-top: unset; */
    }

    .scroll-text {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .scroll-text h1 {
        font-size: 36px;
    }

    html {
        overflow-x: hidden !important;
    }

    .infograph-container {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 30px;
    }

    .infograph-left h4 {
        font-size: 24px;
    }

    .infograph-left {
        gap: 50px;
    }

    .infograph-right p {
        margin-bottom: 20px;
    }

    .infographs {
        column-gap: 30px;
        row-gap: 20px;
    }

    .infograph h1 {
        font-size: 42px;
    }

    .infograph p {
        font-size: 14px;
    }

    /* chart */
    #chart-section {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    #chart {
        width: 100%;
        height: 0;
        padding-bottom: 100%; /* Maintain square aspect ratio */
        position: relative;
    }

    svg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .about-img {
        width: 100%;
        height: 400px;
    }

    .about .line {
        margin-top: 0;
    }

    .about h1 {
        font-size: 42px;
        margin-top: -100px;
    }

    .about {
        margin-bottom: 0;
        margin-top: 100px;
    }

    .about-details {
        padding-top: 50px;
    }

    .about-details h4 {
        font-size: 14px;
        font-weight: 300;
        padding-bottom: 30px;
    }

    .client-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients h4 {
        font-size: 18px;
    }

    .clients {
        margin-bottom: 30px;
    }

    .improve {
        margin-top: 30px;
    }

    .process-title h1 {
        font-size: 32px;
        line-height: 36px;
        margin-bottom: 30px;
    }

    .process-text h4 {
        font-size: 18px;
        font-weight: 300;
    }

    .process button {
        margin-top: 20px;
        margin-bottom: 10px;
        padding: 15px 30px;
        border-radius: 50px;
    }

    .timeline {
        flex-direction: column;
        gap: 20px;
    }

    .timeline-item {
        width: 100%;
        flex-direction: row;
        gap: 10px;
    }

    .timeline::before {
        width: 2px;
        height: 100%;
        margin-left: 10px;
        top: 0;
    }

    .timeline-item .text {
        margin-top: 0;
    }

    .timeline-item .circle {
        width: 28px;
    }

    .process-text h4 {
        margin-bottom: 0;
        font-size: 16px;
    }

    .process {
        margin-bottom: 70px;
    }

    .method {
        padding-top: 10vh;
    }

    .method-list {
        grid-template-columns: 1fr;
    }

    .method-card {
        padding: 20px;
        gap: 10px;
        flex-direction: column;
    }

    .method-header {
        margin-bottom: 10px;
    }

    .method-card h2 {
        font-size: 32px;
    }

    .method-card p {
        font-size: 14px;
    }

    .process-content {
        flex-direction: column;
    }

    .plans-header {
        flex-direction: column-reverse;
        align-items: unset;
    }

    .plans-header h1 {
        font-size: 24px;
    }

    .plans-header p {
        font-size: 14px;
    }

    .plan-list {
        grid-template-columns: 1fr;
    }

    .plan img {
        width: 60px;
    }

    .plan {
        gap: 20px;
    }

    .plan-footer h1 {
        font-size: 100px;
        height: 75px;
    }

    .plan > h1 {
        font-size: 24px;
        max-width: 230px;
    }

    .plans {
        margin-top: 90px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .contact h1 {
        font-size: 42px;
    }

    form {
        flex-direction: column;
    }

    .button-container {
        width: 100%;
    }

    .input-top {
        flex-direction: column;
    }

    .infograph i {
        font-size: 32px;
    }

    .infograph-icon {
        width: 60px;
        height: 60px;
    }

    .footer-bottom {
        display: block;
    }

    footer {
        margin-top: 0;
    }

    .video {
        margin-bottom: -30px;
    }

    .improve {
        gap: 20px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .infographs {
        padding-left: 20px;
        padding-right: 20px;
    }

    .contact {
        padding-left: 10px;
        padding-right: 10px;
    }

    .video video {
        padding-left: 10px;
        padding-right: 10px;
    }

    #footer-top {
        margin-bottom: -3vh;
        margin-top: 80px;
    }

    .footer-top {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}
