/* ============================
   🎨 Global Variables
   ============================ */
   :root {
    /* 🎨 Colors */
    --primary-color: #0954F4;
    --secondary-color: #f5f5f5;
    --text-primary: #010135;
    --text-secondary: #48486F;
    --background-color: #ffffff;

    /* 🖋️ Typography */
    --font-primary: "Neue Montreal", sans-serif;
    --font-secondary: "Inter", sans-serif;

    /* 🔠 Headings */
    --h1-size: 72px;
    --h1-line-height: 84px;
    --h2-size: 48px;
    --h2-line-height: 58px;
    --h3-size: 32px;
    --h3-line-height: 42px;
    --body-text-size: 18px;
   

    /* 📏 Spacing */
    --section-padding: 100px;
    --container-width: 1600px;

    /* 🌟 Buttons & Radius */
    --button-padding: 16px 52px;
    --button-radius: 100px;
    --card-radius: 12px;
}

/* ============================
   🌍 Global Reset
   ============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background-color: var(--background-color);
    line-height: var(--body-line-height);
}


/* ============================
   📌 Navigation Bar (Adjusted)
   ============================ */
   .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    width: 100%; /* Make it full width */
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 100;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.navbar.shrink {
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}




.navbar-content {
    max-width: var(--container-width); /* Limit content width */
    margin: 0 auto; /* Center content */
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; /* Ensure content takes full width of navbar */
}

/* Move the logo, nav-links, and contact-btn into the navbar-content */
.navbar .logo,
.navbar .nav-links,
.navbar .contact-btn,
.navbar .hamburger {
    /* No changes here */
}




.navbar .logo {
    font-size: 24px;
    font-weight: 600;
    max-height: 50px;
    width: auto;
}

.navbar .nav-links {
    display: flex;
    gap: 52px;
}

.navbar .nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar .nav-links a:hover {
    color: #0954F4; /* Blue color on hover */
    text-decoration: underline;
}

.navbar .contact-btn {
    background-color: transparent;
    border: 1px solid #98B7F9;
    color: #0954F4;
    font-size: 18px;
    padding: 8px 32px;
    border-radius: var(--button-radius);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: background-color 0.6s ease, color 0.6s ease, filter 0.6s ease;
    overflow: hidden; /* Keep overflow hidden */
    position: relative; /* Needed for absolute positioning of fill-element */
}

.navbar .contact-btn img {
    width: 40px;
    height: 40px;
    margin-right: -22px;
    transition: filter 0.6s ease; /* Icon transition */
}

.navbar .contact-btn:hover {
    background-color: #0954F4;
    border: 1px solid #0954F4;
    color: #ffffff;
    filter: brightness(1.1);
}

.navbar .contact-btn:hover img {
    filter: brightness(0) invert(1);
}

/* Styles for the fill element */
.fill-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 0; /* Start with 0 width */
    height: 100%;
    background-color: #0954F4;
    z-index: -1;
    transition: width 0.3s ease; /* Only transition width */
}



/* ============================
   📱 Mobile Navigation
   ============================ */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 30px;
    height: 4px;
    background-color: var(--text-primary);
    margin: 5px;
    border-radius: 4px;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

.mobile-menu a {
    padding: 10px;
    text-decoration: none;
    color: var(--text-primary);
}

/* ============================
   🏆 Hero Section
   ============================ */
.hero {
    text-align: center;
    padding: var(--section-padding) 20px 0px;
}

.hero h1 {
    font-size: var(--h1-size);
    font-weight: 400;
    line-height: var(--h1-line-height);
}

.cta-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 20px 40px;
    margin-top: 52px;
    margin-bottom: 28px;
    border-radius: var(--button-radius);
    border: none;
    font-size: 18px;
    box-shadow: 0 40px 32px rgba(9, 84, 244, 0.12);
    cursor: pointer;
    transition: 0.3s;
}

.cta-btn:hover {
    background-color: darkblue;
}

.hero-image-container {
    position: relative;
    text-align: center;

}

.hero-image {
    max-width: 100%;
    margin-bottom: -4px;
}

.hero-card {
    position: absolute;
    top: 0%;
    right: 10%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid #ffffff;
    padding: 52px 36px;
    border-radius: 24px;
    box-shadow: 0px 50px 80px rgba(2, 70, 146, 0.1);
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 16px;
    max-width: 392px;
}

.hero-card-header {
    display: flex;
}

.profile-pic {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-right: -5px;
    border: 2px solid white;
}

.hero-card h3 {
    font-size: 54px;
    font-weight: 400;
    margin: 12px 0;
    color: #49496F;
    text-align: left;
}

.hero-card-content {
    flex: 1; /* Allows content to take up space, pushing the icon down */
    width: 100%;
}

.hero-card-text {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Aligns the icon to the bottom */
    width: 100%;
   
}

.hero-card p {
    font-size: 18px;
    color: #49496F;
    text-align: left;
    line-height: 22px;
    max-width: 248px;
    margin: 0;
}

.hero-card-link {
    display: flex;
    align-items: flex-end; /* Align icon to the bottom */
}

.hero-card-link img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}


.hero {
    background: linear-gradient(to bottom, #fff, #D9E1EE); 
}

/* ============================
   🏆 logo stack
   ============================ */


.logo-stack {
    background: #E6EBF3;
    overflow: hidden;
    white-space: nowrap;
}

.logo-container {
    display: inline-flex;
    height: 120px;
    gap: 160px;
}

.logo-stack img {
    max-width: 120px;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logo-stack img:hover {
    opacity: 1;
}

.logo-stack {
    display: flex; /* Make logo-container inline */
}

.logo-stack .logo-container {
    animation: logo-scroll 20s linear infinite; /* Adjust speed as needed */
}

@keyframes logo-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%); /* Move to the left */
    }
}





/* ============================
   ⭐ Features Section
   ============================ */
   .features {
    background: #2444C4;
    text-align: center;
    padding: 240px;
    position: relative; /* Ensures child elements can be positioned absolutely */
    overflow: hidden; /* Prevents any unwanted scrolling */
}

.features h1 {
    font-size: 72px;
    line-height: var(--h1-line-height);
    font-weight: 400;
    color: white;
}


.highlight {
    font-style: italic;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 400; /* Adjust as needed */
    background: linear-gradient(to right, #4ABFFF, #CE93D8); /* Gradient effect */
    -webkit-background-clip: text; /* Apply gradient to text */
    -webkit-text-fill-color: transparent; /* Hide original text color */
}


/* ============================
   ⭐ Blur tag
   ============================ */

   .blur-tag {
    background: linear-gradient(to bottom, rgba(162, 107, 244, 0.3), rgba(87, 255, 233, 0.1));
    color: white;
    font-size: 16px;
    font-weight: 500;
    padding: 20px 32px; /* Adjust padding */
    border-radius: 100px;
    margin-top: 240px;
    margin-bottom: 68px;
    display: inline-flex; /* Use flexbox */
    align-items: center; /* Vertically center items */
    justify-content: space-between; /* Distribute space evenly */
    white-space: nowrap;
    position: relative;
    border: 1px solid transparent;
    border-image: linear-gradient(to bottom, rgba(169, 239, 255, 0.01), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 40px rgba(26, 0, 139, 0.1);
}

.blur-tag:hover {
    /* Add hover styles if needed */
}

.star-svg {
    width: 20px;
    height: 20px;
    margin-left: 10px; /* Add some space between text and star */
}









.features-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    max-width: 1600px;
    margin: auto;
    padding: 20px;
    grid-template-rows: 240px 240px 240px;
}

.feature-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-card:hover {
    transform: scale(1.03);
}

.feature-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 20px;
}

.feature-card .content {
    padding: 0;
    border-radius: 0;
    max-width: 100%;
}

.feature-card h3 {
    font-size: 32px;
    color: #010135;
    font-weight: 500;
    margin-bottom: 14px;
    text-align: left;
}

.feature-card p {
    font-size: 17px;
    color: #49496F;
    line-height: 1.4;
    text-align: left;
}

.tall {
    grid-column: span 3;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.tall .feature-image {
    flex: 1;
    margin-bottom: 20px;
}

.tall .content {
    margin-top: auto;
}



.wide .feature-image {
    margin-right: 20px; /* Add space between image and text */
}

.wide p {
    max-width: 300px; /* Limit paragraph width */
}

/* Specific card positioning */
.features-grid > div:nth-child(1) {
    grid-column: 1 / 4; 
    grid-row: 1 / 3;
}

.features-grid > div:nth-child(2) {
    grid-column: 4 / 7;
    grid-row: 1 / 3;
}

.features-grid > div:nth-child(3) {
    grid-column: 7 / 13;
    grid-row: 1 / 2;
}

.features-grid > div:nth-child(4) {
    grid-column: 7 / 13;
    grid-row: 2 / 3;
}

.features-grid > div:nth-child(5) {
    grid-column: 1 / 7;
    grid-row: 3 / 4;
}

.features-grid > div:nth-child(6) {
    grid-column: 7 / 13;
    grid-row: 3 / 4;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .feature-card {
        grid-column: 1 / -1;
    }
    .tall {
        grid-row: auto;
    }
}







.background-line {
    position: absolute;
    bottom: 0; /* Position at the bottom */
    left: 50%; /* Center align */
    transform: translateX(-50%); /* Perfect centering */
    width: 100%; /* Adjust width as needed */
    opacity: 0.4; /* Optional: Adjust visibility */
    pointer-events: none; /* Prevents any interaction */
  
}

/* ============================
   📊 Stats Section
   ============================ */
   .stats {
    text-align: center;
    padding: var(--section-padding);
}

.stats h2 {
    font-size: var(--h2-size);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-top: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat span.number-row {
    display: flex; /* Display numbers and symbols in a row */
    align-items: baseline; /* Align symbols to the baseline of the numbers */
}

.stat span.count {
    font-size: 100px;
    font-weight: 400;
    color: #020617;
}

.stat sup, .stat span sup, .stat span % {
    font-size: 20px;
}

.stat p {
    margin-top:-10px;
    font-size: 20px;
    text-align: center;
}




/* ============================
   🦶 showcase
   ============================ */

   .showcase {
    width: 100%;
    height: 100vh;
    background-color: #your-background-color;
    overflow: hidden;
    position: relative; /* Add position: relative; */
    z-index: 1; /* Set a lower z-index */
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}






/* ============================
   🦶 map
   ============================ */
   .map-section {
    width: 100%;
    border-radius: 52px 52px 0px 0px ; /* Rounded corners */
    background-color: #020617; /* Dark blue background */
    padding: 40px 0; /* 40px padding on top and bottom */
    box-sizing: border-box; /* Include padding in width */
    margin-top: -40px; /* Adjust as needed */
    position: relative; /* Add position: relative; */
    z-index: 2; /* Set a higher z-index */
    
}


.map-wrapper {
    width: 100%;
    max-width: 1840px; /* Optional: Adjust as needed */
    height: 500px;
    margin: 0 auto; /* Auto margins for horizontal centering */
    border-radius: 28px; /* Rounded corners */
    overflow: hidden; /* Hide iframe overflow */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    border-radius: 20px; /* Match map-wrapper's border-radius */
}


/* ============================
   🔄 Responsive Design
   ============================ */
@media (max-width: 1024px) {
    .navbar .nav-links {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
}

@media (max-width: 768px) {
    :root {
        --h1-size: 48px;
        --h2-size: 28px;
    }

    .stats-grid {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    :root {
        --h1-size: 32px;
        --h2-size: 24px;
    }
}


/* ============================
   ⭐ Simple Process Section (Single Image)
   ============================ */
   .simple-process {
    padding: 100px 20px;
    background: #F8F5FB;
    text-align: center;
}

.simple-process-container {
    max-width: 1600px;
    margin: auto;
    position: relative; /* Allow absolute positioning */
    overflow: hidden; /* Hide overflowing title */
}

.parallax-title-container {
    width: 100%; /* Full width of container */
    position: relative; /* Allow translation */
}

.simple-process h5 {
    font-family: "Neue Montreal", sans-serif;
    font-size: 120px;
    margin-bottom: 40px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    width: 100%; /* Fill container width */
    white-space: nowrap; /* Prevent text wrapping */
    transition: transform 0.5s ease; /* Smooth animation */
}

.simple-process h5 .star-svg {
    width: 1.2em;
    height: auto;
    vertical-align: middle;
    margin-left: 5px;
}

.simple-process-content-wrapper {
    display: flex;
    align-items: center;
    max-width: 1600px; /* Limit content width */
    margin: 0 auto;
}

/* ... rest of your CSS ... */

.simple-process-image-single {
    flex: 1; /* Take up 1/2 of the space */
    text-align: left; /* Align image to the left */
}

.simple-process-text-content {
    flex: 1; /* Take up 1/2 of the space */
    text-align: left; /* Align text to the left */
    padding-left: 60px; /* Add space between image and text */
}

.phone-mockup {
    max-width: 800px; /* Adjusted image size */
    height: auto;
}

.simple-process-text-content h3 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
}

.simple-process-text-content p {
    font-size: 26px;
    color: #48486F;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 560px;
}

.pill-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill {
    background-color: #F1ECF8;
    color: #8B8AA5;
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid #DFD5EF;
    font-size: 14px;
    font-weight: 500;
}

.star-emoji {
    font-size: 1.2em;
    vertical-align: middle;
    margin-left: 20px;
}

.blue-ye {
    font-style: italic;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 400; /* Adjust as needed */
    background: linear-gradient(to right, #019AFF, #7522FA); /* Gradient effect */
    -webkit-background-clip: text; /* Apply gradient to text */
    -webkit-text-fill-color: transparent; /* Hide original text color */
    margin-left: 20px;
}





/* Responsive adjustments */
@media (max-width: 768px) {
    .simple-process-content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .simple-process-image-single {
        text-align: center;
        margin-bottom: 30px;
    }

    .simple-process-text-content {
        padding-left: 0;
    }

    .phone-mockup {
        max-width: 300px;
    }

    .pill-container {
        justify-content: center;
    }
}




/* ============================
   📊 Stats Section (Card) - Labels Under Numbers
   ============================ */
   .stats {
    text-align: center;
    padding: 20px 20px;
    background-color: #F8F5FB;
}

.stats-card {
    background: white;
    border-radius: 20px;
    padding-top: 120px;
    padding-bottom: 80px;
    max-width: 1840px;
    margin: 0 auto;
}

.stats h2 {
    font-size: 72px;
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 1000px;
    text-align: center;
    margin: 0 auto; /* Center the h2 element */
}

.stats h2 span {
    font-style: italic;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 400; /* Adjust as needed */
    background: linear-gradient(to right, #019AFF, #7522FA); /* Gradient effect */
    -webkit-background-clip: text; /* Apply gradient to text */
    -webkit-text-fill-color: transparent; /* Hide original text color */
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 60px 200px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
}

.stat span {
    font-size: 112px;
    color: #202022;
    font-weight: 400;
    margin-bottom: 10px;
}

.stat span sup {
    font-size: 52px;
    color: #7521FA;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stats-card {
        padding: 40px;
    }

    .stats h2 {
        font-size: 30px;
    }

    .stat {
        font-size: 20px;
        margin: 10px;
    }

    .stat span {
        font-size: 36px;
    }
}




/* ============================
   ⭐ Customer Experiences Section (Adjusted)
   ============================ */
   .customer-experiences {
    padding: 100px 20px;
    background: #F8F5FB;
    text-align: left;
}

.customer-experiences-container {

    margin-top: 100px;
    max-width: 1600px;
    margin: auto;
}

.customer-experiences-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Change to flex-end */
    margin-bottom: 40px;
}

.title-container {
    margin-top: 100px;
    flex-basis: 70%;
}

.customer-experiences h2 {
    font-size:60px;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    text-align: left;
}



.trust-container {
  display: flex;
  align-items: center;
}

.trust-span {
    font-style: italic;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 400; /* Adjust as needed */
    background: linear-gradient(to right, #019AFF, #7522FA); /* Gradient effect */
    -webkit-background-clip: text; /* Apply gradient to text */
    -webkit-text-fill-color: transparent; /* Hide original text color */
}

.likes-svg {
    height: 56px;
    margin-left: 20px; /* Adjust as needed */
    margin-top: 10px;
}






.testimonials {
    margin-bottom: 80px;
    margin-top: 80px;
    display: flex;
    max-width: 1800px;
    justify-content: space-between;
    gap: 60px;
    transition: transform 0.5s ease-in-out; /* Add smooth transition */
    position: relative; /* Add position relative */
    display: flex; /* Ensure flexbox is used */
}

.testimonial {
    background: #F8F5FB;
    border-radius: 10px;
    text-align: left;
    max-width: 1800px;
    flex: 1;
    transition: all 0.3s ease;
}

.testimonial p {
    font-size: 28px;
    line-height: 1.6;
    color: #BFBECE;
    margin-bottom: 60px;
}

.testimonial:hover {

    color: black;
}

.testimonial:hover p {
    color: black;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 24px;
    background-color: transparent;
}

.testimonial:hover .user-info {
    background-color: #e0eafefe;
    padding: 10px;
    border-radius: 20px;
}

.user-photo {
    width: 84px;
    height: 84px;
    border-radius: 50%;
}

.user-details {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 6px;
}

.user-title {
    font-size: 14px;
    color: #898BA3;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
    flex-basis: 10%;
}

.nav-button {
    background: #F8F5FB;
    color: #0954f4;
    border-radius: 10%;
    border: 1px solid #0954f4;
    width: 68px;
    height: 68px;
    font-size: 20px;
    cursor: pointer;
    margin: 0 10px;
    transition: background-color 1s ease; /* Add smooth transition */
}

.nav-button:hover {
    background-color: #0954f4; /* Change background color on hover */
    color: #F8F5FB; /* Change text color on hover */
}

@media (max-width: 768px) {
    .testimonials {
        flex-direction: column;
    }

    .testimonial {
        margin-bottom: 20px;
    }
}






/* ============================
   🦶 Footer (Adjusted)
   ============================ */
   footer {
    background-color: #020617; /* Dark background */
    color: white;
    padding-top: 120px;
    padding-bottom: 40px;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;    
    padding-bottom: 80px;
}

.footer-left {
    text-align: left;
}

.footer-logo {
    max-width: 200px; /* Adjust logo size as needed */
    height: auto;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    padding-top: 110px;
    gap: 10px;
}

.social-icon img {
    width: 60px; /* Adjust icon size as needed */
    height: 60px;
}

.footer-center {
    text-align: left;
}

.footer-links {
    display: flex;
    font-size: 20px;
    font-weight: 300;
    flex-direction: column;
    gap: 32px;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-right {
    text-align: left;
}

.contact-info p {
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-info .label {
    font-weight: 400; /* Make labels bold */
    font-size: 16px;
    color:#9399A4;
    color: #your-label-color; /* Replace with your desired label color */
}

.contact-info .detail {
    padding-bottom: 20px;
    color: #your-detail-color; /* Replace with your desired detail color */
    font-size: 24px;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2); /* Subtle divider */
    margin-top: 32px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-left, .footer-center, .footer-right {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

