html {
    scroll-behavior: smooth;
}

body {
    /* Remove or ensure this stays commented out */
    /* cursor: none; */
    font-family: "Roboto", sans-serif;
    color: black;
    margin: 0;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

.custom-cursor {
    /* Comment out or remove if not using custom cursor */
    /* position: fixed; */
    /* width: 5px; */
    /* height: 5px; */
    /* background: #83C5BE; */
    /* border-radius: 50%; */
    /* pointer-events: none; */
    /* box-shadow: 0 0 20px 10px #006D77; */
    /* z-index: 9999; */
    /* transition: transform 0.1s ease; */
}
a {
text-decoration: none;
    color: #1D2130;
}

a:hover {
text-decoration: underline;
}

h1 {
font-weight: 600;
}

h1,
h2,
h3,
h4 {
font-family: "Roboto", sans-serif;
    position: relative;
    font-weight: 600;
}

blockquote {
color: #999;
    border-left: 2px solid #ccc;
    padding-left: 20px;
    margin-left: 20px;
}

/* Inline Header Anchor Links */

h2:hover .header-anchor-icon,
h3:hover .header-anchor-icon,
h4:hover .header-anchor-icon {
display: inline-block;
}

.header-anchor-icon {
position: absolute;
    left: -33px;
    font-size: 16px;
    padding: 5px 10px;
    display: none;
}

.header-anchor-icon:hover {
text-decoration: none;
    cursor: pointer;
}

h2 .header-anchor-icon {
top: 2px;
}

h3 .header-anchor-icon {
top: 0px;
}

h4 .header-anchor-icon {
top: -3px;
}

summary:hover {
cursor: pointer;
}

details summary::-webkit-details-marker,
details summary::marker {
color: #2457b1;
    padding-right: 3px;
    display: inline-block;
    font-size: 14px;
}

details[open] {
background: #f2f5fa;
    box-shadow: -10px 0px 0px 0px #f2f5fa, 10px 0px 0px 0px #f2f5fa;
    margin-bottom: 10px;
    border-color: transparent;
}

details+details {
    margin-top: -1px;
}

table {
margin: 5px 0;
    background: #fff;
    border-spacing: 0;
    border: 1px solid #ddd;
    border-radius: 3px;
}

th {
font-weight: 500;
    border-bottom: 1px solid #ddd;
    color: #000;
    background: #f9f9f9;
}

td,
th {
padding: 5px 10px;
    text-align: left;
}

tr td {
border-bottom: 1px solid #ddd;
}

tr:last-child td {
border-bottom: 0px;
}

img {
vertical-align: middle;
}


.underlined {
border-bottom: 3px solid #6096ff;
    color: #000;
    padding-bottom: 2px;
}

/* Common Structure */

.wrapper {
max-width: 1200px;
    margin: 0 auto;
}

@media only screen and (max-width: 800px) {
.wrapper {
        padding: 0 10px;
    }
}

.header-skew {
font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-style: normal;
    transform: skew(-7deg);
    background: #006D77;
    border-left: 5px solid #006D77;
    border-right: 5px solid #006D77;
    padding: 2px 10px 4px 10px;
    font-size: 32px;
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
    /*margin: 20px 0;*/
}

.header-skew.light {
    background: #83C5BE;
    color: #fff;
    border-left: 5px solid #006D77;
    border-right: 5px solid #006D77;
}

.header-skew.small {
    border-left-width: 3px;
    border-right-width: 3px;
    padding: 2px 5px 4px 5px;
    font-size: 18px;
    margin: 5px 0;
}

.header-skew.medium {
    border-left-width: 5px;
    border-right-width: 5px;
    padding: 2px 7px 4px 7px;
    font-size: 24px;
    margin: 5px 0;
}

.header-skew a {
    color: #fff;
    text-decoration: none;
}

.header-skew a:hover {
text-decoration: underline;
    cursor: pointer;
}

.text-center {
text-align: center;
}

.uppercase {
text-transform: uppercase;
}

.img-center {
display: block;
    margin: 0 auto;
    max-width: 100%;
}

.img-full {
width: 100%;
}

.attribution {
color: #ddd;
    font-size: 8px;
    text-align: center;
    padding: 10px 0;
}

.attribution a {
color: #ddd;
    text-decoration: none;
}

.hidden {
display: none;
}

/* Forms */

input {
    height: 30px;
    font-size: 14px;
    padding: 3px 5px;
    border-radius: 3px;
    border-width: 0px;
    border: 1px solid rgba(0, 0, 0, 0.5);
}

textarea {
font-size: 14px;
    padding: 3px 5px;
    border-radius: 3px;
    border-width: 0px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    font-family: sans-serif;
}


button:hover,
.button:hover {
cursor: pointer;
}

.form-row {
margin-bottom: 20px;
}

/* Top Nav */

#nav-container {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: 100%; /* Changed from min-width to width */
}

#nav {
    background-color: #006D77;
    border-radius: 30px;
    box-shadow: 0 4px 8px #FFDDD2;
    margin: 20px;
    overflow: hidden;
    width: 90%; /* Base width for mobile */
    max-width: 700px; /* Maximum width on large screens */
    position: fixed;
    z-index: 1000;
}

/* Add media queries for responsive behavior */
@media screen and (min-width: 768px) {
    #nav {
        width: 80%; /* Medium screens */
    }
}

@media screen and (min-width: 1024px) {
    #nav {
        width: 70%; /* Large screens */
    }
}

@media screen and (min-width: 1440px) {
    #nav {
        width: 60%; /* Extra large screens */
    }
}

#nav .wrapper {
    margin: 0 auto;
    align-items: center;
    padding: 15px 0px;
    width: 100%;
    max-width: 640px; /* 40px less than nav max-width for padding */
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
}

.nav-right ul {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;    
}

.nav-right ul li a {
    color: #EDF6F9;
        font-size: 18px;
    font-weight: 500;
    padding: 10px 1vw;
    text-decoration: none;
    /* font-weight: bold; */
    white-space: nowrap;
}

.nav-right ul li a.nav-button {
    display: grid;
    place-content: center;
    text-align: center;
    text-decoration: none;
    color: white;
    border-radius: 15px;

    --border-angle: 0turn;
    /* For animation. */
--main-bg: conic-gradient(from var(--border-angle),
        #006D77,
        #006D77 5%,
        #006D77 60%,
        #006D77 95%);

    border: solid 5px transparent;
    --gradient-border: conic-gradient(from var(--border-angle),
            transparent 25%,
            #83C5BE,
            #e6e3ff 99%,
            transparent);

    background:
        var(--main-bg) padding-box,
        /* Main background */
        var(--gradient-border) border-box,
        /* Border background */
        var(--main-bg) border-box;
    /* Duplicate main background */

    animation: bg-spin 3s linear infinite;
}

@keyframes bg-spin {
    to {
        --border-angle: 1turn;
    }
}

.nav-right ul li a.nav-button:hover {
    animation-play-state: paused;
}

@property --border-angle {
    syntax: "<angle>";
    inherits: true;
    initial-value: 0turn;
}

/* .nav-left {
    background: radial-gradient(circle, rgba(237, 246, 249, 0.8) 0%, rgba(237, 246, 249, 0.4) 60%, rgba(237, 246, 249, 0.2) 100%);
    border: none;
    outline: none;
    box-shadow: none;
} */

.nav-left img {
    /* background: radial-gradient(circle closest-side, rgba(255, 221, 210, 0.6) 0%, rgba(255, 221, 210, 0.3) 60%, rgba(255, 221, 210, 0.1) 80%); */
    max-height: 34px;
    margin-top: 8px;
    margin-left: 20px;
}


.nav-right>ul {
    margin: 0;
    padding: 0;
    list-style: none;
    justify-content: center;
}

.nav-right li {
    margin: 0;
    padding-right: 20px;
    display: inline-block;
}

.nav-right li a {
    padding: 15px 20px 15px 15px;
    display: inline-block;
}

.nav-right li a.button {
padding: 5px 10px 0px 10px;
    display: inline-block;
}


.nav-item.nav-dropdown:hover>a {
    text-decoration: none;
}

.nav-dropdown {}

@media only screen and (max-width: 800px) {
.nav-dropdown>a {
        color: #1D2130;
        padding-bottom: 0 !important;
        text-decoration: underline;
    }

  .nav-dropdown .caret {
      display: none;
  }
}

@media only screen and (min-width: 801px) {
.nav-right {
        text-align: right;
    }
}

.caret {
position: relative;
    display: inline-block;
    vertical-align: top;
    margin-left: 5px;
    margin-top: 9px;
}

.caret:before {
content: "";
    position: absolute;
    top: 0;
    left: 0;
border-top: 5px solid #2276ad;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}

.caret:after {
content: "";
    position: absolute;
    left: 2px;
    top: 0;
    border-top: 3px solid #fff;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
}

.nav-active {}

.nav-active>a {}

.nav-dropdown-content {
position: absolute;
    border-radius: 3px;
    vertical-align: top;
    background: #f5f5f5;
    z-index: 99;
    text-align: left;
}

@media only screen and (max-width: 800px) {
.nav-dropdown-content {
        position: relative;
    }
}

@media only screen and (min-width: 801px) {
.nav-dropdown-content {
        position: absolute;
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.4);
        display: none;
    }
}

.nav-active .nav-dropdown-content {
display: table;
    left: 0;
}

.nav-active .nav-dropdown-content-right {
right: 0;
    left: auto;
}

.nav-dropdown-content li {
margin-right: 0px;
}

.nav-dropdown-main,
.nav-dropdown-secondary {
display: table-cell;
    vertical-align: top;
    padding-left: 0;
}

.nav-dropdown-main {
background: #fff;
    border-radius: 3px;
}

.nav-dropdown-main li {
padding-right: 0px;
}

@media only screen and (max-width: 800px) {
.nav-dropdown-main {
        width: 100%;
    }
}

@media only screen and (min-width: 801px) {
.nav-dropdown-main {
        max-width: 260px;
    }

  .nav-dropdown-wide {
      max-width: 345px;
  }
}

.nav-dropdown-main>li>div,
.nav-dropdown-main>li>a {
    padding: 15px 25px 15px 20px;
    display: inline-block;
}

.nav-dropdown-main li:not(:first-child):not(:last-child) a {
padding-top: 5px;
    padding-bottom: 5px;
}

.nav-dropdown-secondary {
max-width: 300px;
    padding-bottom: 20px;
}

@media only screen and (max-width: 800px) {
.nav-dropdown-secondary {
        display: none !important;
    }
}

@media only screen and (min-width: 801px) {
.nav-dropdown-secondary {}
}

.nav-dropdown-secondary li {
margin: 0;
    display: block;
}

.nav-dropdown-secondary li:first-child {
margin-top: 10px;
}

.nav-dropdown-secondary li a {
padding: 5px 30px 5px 20px;
    font-size: 14px;
    font-weight: 500;
}

.nav-dropdown-header {
font-weight: 600;
    color: #666;
    font-size: 12px;
    text-transform: uppercase;
    padding: 15px 30px 10px 20px;
font-family: "Roboto", sans-serif;
}

.nav-dropdown-icon {
height: 26px;
    width: 26px;
    position: absolute;
    margin-bottom: 30px;
    margin-top: 5px;
}

√√√

.nav-dropdown-standalone {
font-size: 16px;
    display: block;
    vertical-align: top;
    margin-left: 45px;
    line-height: 36px;
}

.nav-dropdown-text {
font-size: 16px;
    display: block;
    vertical-align: top;
    margin-left: 40px;
}

.nav-dropdown-caption {
font-size: 13px;
    color: #999;
    display: block;
    vertical-align: top;
    margin-left: 40px;
    margin-top: 3px;
    font-weight: 300;
}

/* Mobile Nav Togglew */

.nav-mobile {
display: inline-block;
    position: absolute;
    top: -7px;
    right: 69px;
}

@media only screen and (max-width: 800px) {
.nav-right {}

  .nav-right ul {
      display: none;
  }

  .nav-right li {
      display: block;
  }

  .nav-right input[type="checkbox"]:not(:checked)~ul {
      display: none;
  }

  .nav-right input[type="checkbox"]:checked~ul {
      display: block;
  }
}

.nav-left .checkbox {
position: absolute;
    display: block;
    height: 32px;
    width: 32px;
    top: 20px;
    left: 20px;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
}

.nav-left .hamburger-lines {
display: block;
    height: 26px;
    width: 32px;
    position: absolute;
    top: 17px;
    left: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nav-left .hamburger-lines .line {
display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #0e2431;
}

.nav-left .hamburger-lines .line1 {
transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
}

.nav-left .hamburger-lines .line2 {
transition: transform 0.2s ease-in-out;
}

.nav-left .hamburger-lines .line3 {
transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
}

.nav-left input[type="checkbox"]:checked~.hamburger-lines .line1 {
    transform: rotate(45deg);
}

.nav-left input[type="checkbox"]:checked~.hamburger-lines .line2 {
    transform: scaleY(0);
}

.nav-left input[type="checkbox"]:checked~.hamburger-lines .line3 {
    transform: rotate(-45deg);
}


/* Newsletter Partial */

#newsletter form p {
margin-bottom: 15px;
    margin-top: 0px;
}

#newsletter input {
height: 30px;
    font-size: 14px;
    padding: 3px 5px;
    border-radius: 3px;
    border-width: 0px;
    width: 200px;
    border: 1px solid rgba(0, 0, 0, 0.5);
}

#newsletter button {
margin-left: 5px;
}

#newsletter button:hover {
cursor: pointer;
}

/* Single Page */

.single-page-header {
text-align: center;
    margin-bottom: 50px;
    margin-top: 50px;
}

.single-page-header-desc {
font-size: 18px;
    font-weight: 300;
    line-height: 1.4;
font-family: "Roboto", sans-serif;
}

.single-page-desc {
max-width: 500px;
    margin: 0 auto;
}

/* About Page */

/* About Top */

.about-top-container {
    width: 100%;
    /* max-width: 1200px; */
    margin: auto;
    padding: 20px;
    text-align: center;
    padding-top: 100px;
    background: url('../img/top-section.png');
}

.about-top-subcontainer {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    text-align: center;
}

.about-top-subcontainer p {
    color: #EDF6F9;
    margin: 10px 0 20px;
}

.about-top-subcontainer h1 {
    font-size: 2em;
    color: #FFDDD2;
}

.about-top-image-container {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.about-top-image {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.about-top-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-top-image:hover img {
    transform: scale(1.05);
}

.about-subheading {
    color: #006D77;
    margin: 0;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}
/* About team of */

.about-team-of-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 150px;
}

.about-team-of-container p {
    font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        color: #1D2130;
        opacity: 0.87;
    margin: 10px 0 20px;
}

.about-team-of-container h1 {
    font-size: 48px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
        color: #1D2130;
}

.role-color {
    color: #83C5BE;
    }
    
    .home-titles-color {
    color: #FFDDD2;
}

/* About Goals/Vision */

.about-goals-container {
    display: flex;
    justify-content: space-between;
    padding: 5% 10%;
    background: url('../img/top-section.png');
}

.about-goals-block {
    width: 45%;
}

.about-goals-title {
    font-size: 28px;
    margin-bottom: 0px;
}

.about-goals-subtitle {
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
        line-height: 120%;
    color: #EDF6F9;
    margin-bottom: 20px;
}

.about-goals-text {
    font-size: 16px;
    font-style: normal;
        font-weight: 400;
        line-height: 150%;
        color: #EDF6F9;
}

/* About Values */

.about-values-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 50px;
}

.about-values-container h1 {
    text-align: center;
    color: #1D2130;
    margin-bottom: 20px;
}

.about-values-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.about-values-item {
    background-color: #F9F0FB;
    border-radius: 8px;
    width: 30%;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-values-icon {
    font-size: 30px;
    color: #555;
}

.about-values-item h2 {
    color: #1D2130;
    margin: 10px 0;
}

.about-values-item p {
    color: #666;
    line-height: 1.6;
}

/* About Where Worked */

.about-worked-container {
    padding-top: 50px;
}

.about-worked-logos {
    display: flex;
    justify-content: center;
    max-width: 100%;
        /* Allows the logo container to be flexible */
    margin: 0 auto;
    flex-wrap: wrap;
        /* Ensures logos wrap on smaller screens */
}

.about-worked-logos+.about-worked-logos {
    margin-top: 10px;
}

.about-worked-logo {
    max-width: 20%;
    /* Adjust percentage based on number of logos */
    max-height: 10vh;
    /* Uses viewport height for dynamic scaling */
    align-self: center;
    display: flex;
    padding: 10px 30px;
        /* Increase padding for better spacing */
        object-fit: contain;
        /* Ensures logos are contained nicely within the space */
}

.about-worked-header {
    font-size: 2em;
    color: #1D2130;
    text-align: center;
    margin-bottom: 50px;
}

/* */
.about-mission {
margin-bottom: 30px;
}

.about-mission-header {
text-align: center;
    margin-bottom: 30px;
    margin-top: 0;
}

.about-mission-subtext {
font-size: 18px;
    color: #1D2130;
    margin-bottom: 15px;
    font-weight: 300;
    line-height: 1.4em;
}

/* Splash */

.splash-logo {
display: inline-block;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
}

.splash-newsletter {
margin-top: 20px;
    margin-bottom: 50px;
background: #6096ff;
    padding: 15px 30px 20px 30px;
    transform: skew(-4deg);
    display: inline-block;
}

.splash-newsletter p {
margin-bottom: 20px;
}

.splash-footer {
text-align: center;
    font-size: 12px;
    color: #666;
}

/* Blog List */

.blog-header-subscribe {
margin-top: 30px;
}

.blog-list {
max-width: 850px;
    margin: 0 auto;
}

.blog-list-entry {
padding: 40px;
    border: 1px solid #ddd;
    margin-bottom: 30px;
    border-radius: 3px;
    box-shadow: 1px 1px 8px rgb(0 0 0 / 10%);
}

.blog-list-title {
font-size: 22px;
font-family: "Roboto", sans-serif;
    margin-bottom: 10px;
}

.blog-list-author {
font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}

.blog-list-preview {
font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.6em;
    margin-bottom: 10px;
    font-weight: 300;
}

.blog-list-link {}

/* Blog Post */

.blog-post {}

.blog-post-header {
background: #f5f5f5;
    text-align: center;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding-bottom: 30px;
    padding-top: 10px;
}

.blog-post-back {
border: 1px solid #ddd;
    padding: 5px 10px;
    background: #fff;
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 14px;
    display: inline-block;
    border-radius: 3px;
}

.blog-post-title {
font-size: 42px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-post-author {
color: #fff;
}

.blog-post-date {
font-size: 14px;
    color: #1D2130;
    margin-bottom: 10px;
}

.blog-post-content {
padding: 30px 0;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.5;
}

.blog-post-content p+p {
    padding-bottom: 10px;
}

.blog-post-content h2 {
border-bottom: 1px solid #ddd;
    margin-top: 30px;
}

.blog-post-content p>a {
    border-bottom: 2px solid #2276ad;
    font-weight: 500;
}

.blog-post-content p>a:hover {
    text-decoration: none;
border-bottom: 2px solid #6096ff;
    color: #6096ff;
}

.blog-post-content p+ul,
.blog-post-content p+ol {
    margin-top: -10px;
}

@media only screen and (max-width: 801px) {
.blog-post-content {
        padding-right: 15px;
        padding-left: 15px;
    }

  .blog-post-content img {
      width: 100%;
  }
}

.blog-caption {
font-size: 14px;
    color: #999;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.blog-list-checkmark,
.blog-list-x,
.blog-list-indeterminate {
list-style: none;
    padding-left: 20px;
}

.blog-list-checkmark li:before {
content: "\2713\0020";
    color: green;
    padding-right: 2px;
    vertical-align: middle;
}

.blog-list-x li:before {
content: "\2715\0020";
    color: red;
    padding-right: 3px;
    vertical-align: middle;
}

.blog-list-indeterminate li:before {
content: "\007E";
color: #f19e38;
    padding-right: 8px;
    vertical-align: middle;
    font-weight: 900;
    font-size: 18px;
}

/* Blog Recent Posts Partial */

.blog-recent-list {
border-top: 1px solid #ccc;
    padding: 20px 20px 20px 20px;
}

.blog-recent-header {
font-size: 22px;
    font-weight: 300;
font-family: "Roboto", sans-serif;
    margin-bottom: 20px;
    color: #666;
    margin: 20px 0 20px 25px;
}

.blog-recent-post {
border: 1px solid #ddd;
    border-radius: 3px;
    padding: 20px 30px;
    display: inline-block;
    margin: 0 10px 20px 10px;
    box-shadow: 1px 1px 8px rgb(0 0 0 / 10%);
    width: 100%;
}

.blog-recent-title {
font-size: 18px;
    margin-bottom: 10px;
font-family: "Roboto", sans-serif;
    max-height: 40px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.blog-recent-author {
font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}

.blog-recent-preview {
font-size: 14px;
    line-height: 1.4;
    /*    max-height: 40px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;*/
}

.blog-recent-button {
margin: 20px 0 10px 0;
}

/* Footer */

#footer {
background: #006D77;
    box-shadow: 0 0 0 6px #006D77, 0 0 0 12px #006D77;
    padding: 75px 30px 40px 30px;
    font-size: 16px;
    color: #fff;
    margin-top: 12px; 
    overflow-x: hidden;
}

#footer a {
    color: #EDF6F9;
}

#footer a:hover {
color: #FFDDD2;
    text-decoration: none;
    border-bottom: 3px solid #FFDDD2;
}

#footer .footer-left {
    margin-bottom: 30px;
}

#footer .footer-category {
padding-right: 60px;
    display: inline-block;
    min-width: 130px;
    vertical-align: top;
    margin-bottom: 30px;
}

#footer .footer-category strong {
font-size: 16px;
font-family: "Roboto", sans-serif;
    font-weight: 600;
    padding-bottom: 10px;
    display: inline-block;
    color: #fff;
}

#footer .footer-category ul {
margin: 0;
    padding: 0;
    list-style: none;
}

#footer .footer-category li {
line-height: 40px;
}

#footer .footer-etc {
margin-top: 30px;
    font-size: 12px;
    text-align: center;
}

#footer .footer-prompt {
font-size: 14px;
    display: inline-block;
    margin-top: 30px;
    line-height: 1.6em;
    color: #fff;
    max-width: 300px;
}

#footer .footer-muted {
color: #fff;
}

#footer .footer-social {
    margin-top: 50px;
}

#footer .footer-social-icon {
    border-bottom: none;
    margin-right: 10px;

}

#footer .footer-social-icon svg {
max-height: 20px;
}

#footer .footer-social-icon:hover {
border-bottom: none;
}

#footer .footer-social-icon path {
fill: #6096ff;
}

#footer .footer-social-icon:hover path {
fill: #888888;
}

#footer .footer-soc2 {
max-width: 100px;
    margin-top: 50px;
    display: block;
}

.footer-logo-container {
    background: radial-gradient(circle closest-side, rgba(237, 246, 249, 0.3) 0%, rgba(237, 246, 249, 0.1) 50%, rgba(237, 246, 249, 0) 100%);
    background-position: -125px center;
}

/* High Quality Section Partial */

.content-wrapper {
text-align: center;
    padding: 50px 20px;
}

.high-quality-highlighted-text {
font-size: 25px;
    font-weight: bold;
    margin-bottom: 10px;
}

.gradient-text {
    /* background: linear-gradient(to right, #006D77, #83C5BE); */
        /* background: linear-gradient(to right, #FFDDD2, #83C5BE); */
        background: linear-gradient(to right, #FFE6DC, #FFDDD2, #FFC4B8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.high-quality-main-title {
font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
}

.high-quality-features-section {
display: flex;
    justify-content: center;
    background-color: #f0f4ff;
    border-radius: 15px;
    padding: 30px;
}

.high-quality-feature-card {
flex: 1;
    padding: 20px;
    max-width: 350px;
    text-align: left;
}

.high-quality-feature-icon {
font-size: 40px;
    color: #1a73e8;
    margin-bottom: 20px;
}

.high-quality-feature-title {
font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.high-quality-feature-description {
font-size: 14px;
    color: #666;
}

/* Grow Bussiness (Elevate) Partial */

.home-grow-meta-container {
    margin-top: 100px;
    margin-left: 75vw;
    position: absolute;
    z-index: -1;
}

.home-grow-meta-container img {
    object-fit: cover;
    height: 100px;
    opacity: 0.5;
    transform: rotate(45deg);
}

.home-grow-google-container {
    margin-top: 100px;
    margin-left: 20vw;
    position: absolute;
    z-index: -1;
}

.home-grow-google-container img {
    object-fit: cover;
    height: 100px;
    opacity: 0.5;
    transform: rotate(-45deg);
}

.grow-business-body {
    position: relative;
    /* Keeps background positioned relative to this container */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
    /* Full viewport height */
    width: 100%;
    /* Full width */
    overflow: hidden;
    /* Prevents any overflow */
}

.grow-business-background {
    position: absolute;
    top: 60%;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, #FFDDD2 0%, #9BFFA5 50%, #AED3FF 100%);
    opacity: 0.68;
    filter: blur(100px);
    /* Adjust blur to match your design */
    z-index: -1;
    /* Ensures it stays behind all other content */
}

.grow-business-container {
    z-index: 1;
        color: #1D2130;
        /* Adjust text color as needed */
    text-align: center;
    padding: 20px;
        /* Adds padding inside the container */
        width: 80%;
        /* Adjust width to control content size */
        margin: auto;
        /* Centers the container horizontally */
    }
    
    .grow-business-heading,
    .grow-business-paragraph,
    .grow-business-button {
        z-index: 1;
        /* Ensure these elements stay above the background */
}

.grow-business-heading {
    font-size: 2.5em;
    /* Larger font size */
    margin-bottom: 0.5em;
    /* Space between heading and paragraph */
}

.grow-business-paragraph {
    font-size: 1.2em;
    /* Larger font size */
    margin-bottom: 2em;
    /* Increased space before the button */
}

.grow-business-button {
    background-color: #006D77;
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 20px;
    transition: background-color 0.3s, box-shadow 0.3s;
    text-align: center;
    display: inline-block;
    line-height: 5px;
}

.grow-business-button:hover {
    background-color: #313852;
    /* Darker on hover */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    /* Subtle shadow on hover */
}

/* Why Work with us partial */ 

.why-work-container {
    display: flex;
    align-items: flex-start;
    /* Align items at the start of the container */
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
    padding-bottom: 10%;
    padding-top: 10%;
    /* Adds space between the two sections */
}

.why-work-left-section {
    flex: 1;
    /* Allows this section to grow and take necessary space */
    padding-right: 20px;
    /* Adds some padding to separate text from the right section */
}

.why-work-subheading {
    color: #007bff;
    margin: 0;
    font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
}

.why-work-main-heading {
    font-size: 2.5em;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 20px;
    color: #000000;
}

.why-work-description {
    font-size: 1em;
    color: #666666;
}

.why-work-right-section {
    flex: 1;
    /* Allows this section to grow and take necessary space */
}

.why-work-bullet-point {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    transition: transform 0.2s ease-in-out;
}

.why-work-bullet-point:hover {
    transform: translateX(10px);
}

.why-work-icon {
    background-color: #ffcccc;
    color: #000000;
    border-radius: 50%;
    padding: 10px;
    margin-right: 15px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    min-width: 40px;
    min-height: 40px;
    text-align: center;
}

.why-work-bullet-point p {
    margin: 0;
    color: #333333;
    font-size: 1.1em;
    /* Slightly larger text for better readability */
    line-height: 1.6;
    /* Improved line spacing */
    font-family: 'Arial', sans-serif;
    /* More modern font */
}

/* More partial */

.more-body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55vh;
    background: linear-gradient(to bottom right, #f0f4ff, #dff4e5, #e0e9ff);
}

.more-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    padding: 0 50px;
}

.text-container {
    margin-right: 20px;
    /* Adds space between the text and the stats container */
}
.text-container h1 {
    font-size: 24px;
    color: #1D2130;
}

.text-container p {
    font-size: 16px;
    color: #666;
}

.more-button {
    background-color: #006D77;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 20px;
    transition: background-color 0.3s, box-shadow 0.3s;
    text-align: center;
    display: inline-block;
    line-height: 5px;
}

.stats-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 50%;
    /* Ensure this width fits alongside the text-container */
}
    
.more-img {
    height: 400px;
        width: 500px;
}

/* Carousel of Companies */

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    padding-top: 50px;
}

.carousel-wrapper div {
    position: absolute;
    padding: 20px;
    animation: slider 20s infinite linear;
    /* Increased duration to 20 seconds */
}

.carousel-wrapper div:nth-child(1) {
    left: 100%;
    vertical-align: middle;
    animation-delay: -20s;
    /* Adjusted to match new duration */
}

.carousel-wrapper div:nth-child(2) {
    left: 100%;
    vertical-align: middle;
    animation-delay: -16.7s;
    /* Adjusted for smooth transition */
}

.carousel-wrapper div:nth-child(3) {
    left: 100%;
    vertical-align: middle;
    animation-delay: -13.3s;
}

.carousel-wrapper div:nth-child(4) {
    left: 100%;
    vertical-align: middle;
    animation-delay: -10s;
}

.carousel-wrapper div:nth-child(5) {
    left: 100%;
    vertical-align: middle;
    animation-delay: -6.7s;
}

.carousel-wrapper div:nth-child(6) {
    left: 100%;
    animation-delay: -3.3s;
}

@keyframes slider {
    0% {
        left: 100%;
        visibility: visible;
    }

    99% {
        left: -150px;
        /* Adjust if necessary to match your layout */
        visibility: hidden;
    }

    100% {
        left: 100%;
        visibility: hidden;
    }
}
/* Features Partial */

.features-section {
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 50px;
    /* padding: 50px 10px; */
    background-color: #ffffff;
}

.features-title {
    font-size: 2em;
    margin-bottom: 50px;
}

.features-container {
    display: flex;
    justify-content: space-around;
    background-color: #f8f3fd;
    border-radius: 10px;
    padding: 20px;
}

.feature-item {
    flex: 1;
    margin: 0 10px;
    padding: 20px;
    text-align: center;
}

.feature-item:not(:last-child) {
    border-right: 1px solid #dddddd;
}

.feature-icon {
    width: 75px;
    height: 75px;
    margin-bottom: 10px;
}

.feature-title {
    font-size: 1.25em;
    margin: 10px 0;
    color: #2b2b2b;
}

.feature-description {
    font-size: 1em;
    color: #555555;
}

/* Discover Partial */

.discover-container {
    display: flex;
    align-items: flex-start;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
    padding-bottom: 10%;
    padding-top: 10%;
}

.discover-left-section {
    flex: 1;
    padding-right: 20px;
}

.discover-subheading {
    color: #007bff;
    margin: 0;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

.discover-main-heading {
    font-size: 2.5em;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 20px;
    color: #000000;
}

.discover-description {
    font-size: 1em;
    color: #666666;
}

.discover-right-section {
    flex: 1;
}

.discover-bullet-point {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.discover-icon img {
    background-color: #f0f3f7;
    border-radius: 50%;
    padding: 10px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    text-align: center;
}

.discover-bullet-content h3 {
    margin: 0;
    font-size: 1.2em;
    color: #000000;
}

.discover-bullet-content p {
    margin: 0;
    color: #666666;
    font-size: 0.9em;
}

/* Home top partial */

.top-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    margin-bottom: 20vh;
}

.top-row {
    flex:1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-homepage-detail {
    background: url('../img/top-section.png');
        /* background: linear-gradient(to bottom, #006D77, #83C5BE); */
    border: none;
    outline: none;
    height: 100vh;
}

.top-content-wrapper {
    flex: 1;
    padding-right: 20px;
}

.top-container {
    max-width: 1200px;
    min-width: 600px;
    margin: auto;
    padding: 20px;
    text-align: center;
    padding-top: 150px;
}

.top-header h1 {
    font-size: 40px;
        font-style: normal;
        font-weight: 400;
        line-height: 110%;
        color: var(--Primary, #EDF6F9);
}

.top-header p {
    font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        color: var(--Primary, #EDF6F9);
        opacity: 0.87;
}

.top-email-signup {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.bottom-email-signup {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.bottom-email-signup input[type="email"] {
    max-width: 300px;
    width: 100%;
    padding: 20px 20px;
    border: 0;
    outline: 0;
    font-size: 1rem;
    border-radius: 50px 0 0 50px;
    background: linear-gradient(to left, transparent 0%, #f9fafb 30%);
}

.bottom-email-signup input[type="email"]::placeholder {
    color: #a0aec0;
}

.bottom-email-signup .cta-button {
    padding: 20px 30px;
    border: 0;
    border-radius: 0 50px 50px 0;
    background-color: #2d3748;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
    display: inline-block;
    line-height: 2px;
    width: 250px;

}

.bottom-email-signup .cta-button:hover {
    background-color: #4a5568;
}
.input-wrapper {
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.top-email-signup input[type="email"] {
    max-width: 300px;
    width: 100%;
    padding: 20px 20px;
    border: 0;
    outline: 0;
    font-size: 1rem;
    border-radius: 50px 0 0 50px;
    background: linear-gradient(to left, transparent 0%, #f9fafb 30%);
}

.top-email-signup input[type="email"]::placeholder {
    color: #a0aec0;
}

.top-email-signup .cta-button {
    padding: 20px 30px;
    border: 0;
    border-radius: 0 50px 50px 0;
    background-color: #2d3748;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
    display: inline-block;
    line-height: 2px;
    width: 250px;

}

.top-email-signup .cta-button:hover {
    background-color: #4a5568;
}

.top-dashboard-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 150px;
    background: radial-gradient(circle closest-side, rgba(237, 246, 249, 0.3) 0%, rgba(237, 246, 249, 0.1) 50%, rgba(237, 246, 249, 0) 80%);
    border: none; 
    outline: none;
}

.top-dashboard-image img {
    max-width: 100%;
    border-radius: 10px;
    margin-top: 60px;
}
/* Waitlist */
.top-waitlist-message {
    padding: 15px;
    color: #FFDDD2;
        font-size: 22px;
    text-align: center;
}

.bottom-waitlist-message-response {
    padding: 15px;
    color: #006D77;
    font-size: 22px;
    text-align: center;
}
.waitlist-message span {
    font-weight: bold;
}

.waitlist-error-tooltip {
    display: none;
    position: absolute;
    background-color: #ff6666;
    /* Red background to indicate error */
    color: #fff;
    padding: 8px;
    border-radius: 4px;
    font-size: 12px;
    z-index: 100;
    white-space: nowrap;
}

/* Tooltip arrow */
.waitlist-error-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    /* Position arrow at the bottom of tooltip */
    left: 10px;
    border-width: 6px;
    border-style: solid;
    border-color: #ff6666 transparent transparent transparent;
}

/* Position tooltip relative to the input field */
.waitlist-error-tooltip.visible {
    display: inline-block;
}

/* Pricing/Plans Page */

.pricing-plans-container {
    width: 100%;
    margin: 40px auto;
    text-align: center;
    background-color: white;
    padding: 50px;
    z-index: 1;
}

.pricing-header {
    padding-bottom: 30px;
}

.pricing-plans {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    margin-top: 40px;
}

.pricing-plans-plan {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 27%;
    height: 700px;
    z-index: 1;
}

/* Highlight for the featured plan */
.featured {
    border: 4px solid var(--Blue, #006D77);
    background: linear-gradient(176deg, #D7E7F9 13.12%, #D5F4EC 96.48%);
    transform: scale(1.05);
    /* Slightly larger */
    z-index: 10;
}

.plan-header {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    /* Padding around the elements to ensure they are not too cramped */
}

.pricing-plans-plan h2 {
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 4px;
}

.pricing-plans-plan p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    color: var(--Primary, #1D2130);
    opacity: 0.6;
    margin-top: 0;
}

.pricing-plans-features-container {
    width: 300px;
    padding: 0px;
}

.pricing-plans-bottom-container {
    width: 300px;
    align-items: center;
}

.pricing-plans-plan ul {
    width: 100%;
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.pricing-plans-plan li {
    list-style: none;
    color: var(--Primary, #1D2130);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    position: relative;
    padding-left: 30px;

}

.pricing-plans-plan button {
    background-color: #000;
    color: white;
    border: none;
    font-size: 16px;
    border-radius: 25px;
    width: 75%;
    cursor: pointer;
    transition: background-color 0.3s;
    padding: 20px 30px;
    text-align: center;
    display: inline-block;
    line-height: 2px;
    margin-top: 20px;
}

.pricing-plans-plan button:hover {
    background-color: #1D2130;
    /* Darker on hover */
}

.pricing-plans-plan button:focus {
    background-color: #d0d0d0;
    color: #1D2130;
}

.plan-icon {
    width: 40px;
    height: 40px;
    margin-right: 20px;
}

.check-icon {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.pricing-plans-left-background {
    position: absolute;
    top: 150px;
    right: 50%;
    width: 100%;
    height: 100%;
    opacity: 0.68;
    background: radial-gradient(#D798E1 17.55%, #9BFFA5 27.56%, #AED3FF 49.89%, #C9D4EF 56.53%, #CACFFA 65.69%);
    filter: blur(300px);
    border-radius: 550px;
    z-index: 0;
}

.pricing-plans-right-background {
    position: absolute;
    top: 450px;
    left: 50%;
    width: 100%;
    height: 100%;
    opacity: 0.68;
    background: radial-gradient(#D798E1 17.55%, #9BFFA5 27.56%, #AED3FF 49.89%, #C9D4EF 56.53%, #CACFFA 65.69%);
    filter: blur(300px);
    border-radius: 550px;
    z-index: 0;
}

/* home products section */

.home-products-container {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    color: #333;
    margin-top: 150px;
    position: relative;
    z-index: 0;
    margin-bottom: 200px;
}

.home-products-spiral-container {
    margin-top: 500px;
    position: absolute;
    z-index: -1;
}

.home-products-spiral-container img {
    object-fit: cover;
}

.home-products-meta-container {
    margin-top: 100px;
    margin-left: 70vw;
    position: absolute;
    z-index: -1;
}

.home-products-meta-container img {
    object-fit: cover;
    height: 100px; 
    opacity: 0.5;
    transform: rotate(45deg);
}

.home-products-google-container {
    margin-top: 100px;
    margin-left: 25vw;
    position: absolute;
    z-index: -1;
}

.home-products-google-container img {
    object-fit: cover;
    height: 100px;
    opacity: 0.5;
    transform: rotate(-45deg);
}

.home-products-title-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 30px;
    border: 2px solid #006D77;
    border-radius: 50px;
    text-align: center;
    margin: 20px auto;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.home-products-title-circle:hover {
    border-color: #006D77;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    /* Slightly deeper shadow on hover */
}

.home-products-nav-title {
    margin: 0;
    font-weight: 600;
    font-size: 18px;
    color: #006D77;
    letter-spacing: 1.2px;
    transition: color 0.3s ease;
}

.home-products-header {
    font-size: 20px;
    color: #1D2130;
}

.home-products-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    /* Responsive grid */
    gap: 30px;
    /* Increased gap for better separation */
    padding: 40px 0;
    /* More vertical padding */
}

.home-products-card {
    background: linear-gradient(135deg, #006D77, #83C5BE);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Subtle shadows */
    transition: transform 0.3s ease;
    /* Smooth transition for hover effect */
    text-align: left;
}

.home-products-card-header {
    color: #FFDDD2;
}

.home-products-card-text {
    color: #EDF6F9;
}
.home-products-card:hover {
    transform: translateY(-5px);
    /* Lift card on hover */
}

.home-products-icon {
    height: 120px;
    /* Larger icons for better visibility */
    margin-bottom: 20px;
    /* More space above the title */
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.home-products-card h2 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* Card descriptions */
.home-products-card p {
    font-size: 16px;
    line-height: 1.5;
}

/* Home Features Section */

.home-features-container {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    color: #333;
    margin-top: -50px;
    position: relative;
    z-index: 0;
}

.home-features-spiral-container {
    margin-top: 500px;
    position: absolute;
    z-index: -1;
    right: 0;
}

.home-features-spiral-container img {
    object-fit: cover;
    /* opacity: 0.5;
    Optional: makes the background less prominent */
}
.home-features-title-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 30px;
    border: 2px solid #006D77;
    border-radius: 50px;
    text-align: center;
    margin: 20px auto;
    margin-top: 7vw;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.home-features-title-circle:hover {
    border-color: #006D77;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    /* Slightly deeper shadow on hover */
}

.home-features-nav-title {
    margin: 0;
    font-weight: 600;
    font-size: 18px;
    color: #006D77;
    letter-spacing: 1.2px;
    transition: color 0.3s ease;
}

.home-features-header {
    font-size: 20px;
    color: #1D2130;
    margin-bottom: 20px;
}

.home-features-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

.home-features-card {
    background: linear-gradient(135deg, #006D77, #83C5BE);
    border-radius: 15px;
    color: white;
    padding: 30px;
    flex: 1 1 calc(50% - 20px);
    /* Adjust to 50% width for two cards per row */
    min-width: 250px;
    max-width: 100%;
    text-align: left;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
    /* Adds spacing between rows */
}

.home-features-card-header {
    color: #FFDDD2;
}
/* Top-left card (larger) */
.home-features-card:nth-child(1) {
    flex: 1 1 calc(60% - 20px);
    /* 60% width for the larger card */
}

/* Second card on the top row */
.home-features-card:nth-child(2) {
    flex: 1 1 calc(40% - 20px);
    /* 40% width for the second card */
}

/* First card on the bottom row */
.home-features-card:nth-child(3) {
    flex: 1 1 calc(40% - 20px);
    /* 40% width for this card */
}

/* Bottom-right card (larger) */
.home-features-card:nth-child(4) {
    flex: 1 1 calc(60% - 20px);
    /* 60% width for the larger bottom-right card */
}

.home-features-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.home-features-icon {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    margin-bottom: 20px;
}

/* Card titles */
.home-features-card h2 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* Card descriptions */
.home-features-card p {
    font-size: 16px;
    line-height: 1.5;
    color: white;
}

/* Responsiveness */
@media screen and (max-width: 768px) {
    .home-features-cards {
        flex-direction: column;
        align-items: center;
    }

    .home-features-card {
        width: 100%;
        max-width: none;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 1024px) {
    .home-features-cards {
        flex-wrap: wrap;
    }

    /* For medium screens, cards become 50% width */
    .home-features-card {
        flex: 1 1 calc(50% - 20px);
    }

    /* Ensure larger cards adjust accordingly */
    .home-features-card:nth-child(1),
    .home-features-card:nth-child(4) {
        flex: 1 1 calc(100% - 20px);
        /* Full width on smaller screens */
    }
}

.home-features-title {
    font-size: 2.5em;
    font-weight: bold;
    color: #222;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.home-features-description {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Exclusive Features Partial */

/* Container */
.home-exclusive-features-container {
    max-width: 900px;
    width: 95%;
    margin: 0 auto;
    text-align: center;
    color: #222;
    margin-top: 120px;
}

.home-exclusive-features-spiral-container {
    margin-top: 500px;
    position: absolute;
    z-index: -1;
}

.home-exclusive-features-spiral-container img {
    object-fit: cover;
    /* opacity: 0.5;
    Optional: makes the background less prominent */
}

/* Header */
.home-exclusive-features-title {
    font-size: 2.5em;
    font-weight: bold;
    color: #222;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.home-exclusive-features-description {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Advantages Grid */
.home-exclusive-features-advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    padding: 0;
    margin-top: 20px;
}

/* Individual Advantage Card */
.home-exclusive-features-advantage {
    background: linear-gradient(135deg, #006D77, #83C5BE);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    /* Center text alignment */
    cursor: pointer;
    display: flex;
    flex-direction: column;
    /* Stack elements vertically */
    align-items: center;
    /* Center align items */
}

.home-exclusive-features-advantage:hover {
    transform: scale(1.03);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
}

/* Card Title */
.home-exclusive-features-advantage h3 {
    font-size: 1.3em;
    color: #EDF6F9;
    margin-bottom: 6px;
    margin-top: 0;
    text-align: center;
}

.home-exclusive-features-advantage:hover h3 {
    color: #FFDDD2;
}
/* Card Description */
.home-exclusive-features-advantage p {
    font-size: 1em;
    color: #EDF6F9;
    line-height: 1.5;
    text-align: center;
    transition: color 0.3s ease;
}

.home-exclusive-features-advantage:hover p {
    color: #FFDDD2;
}

/* Icon Circle */
.icon-circle {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border-radius: 50%; */
        /* background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(238, 238, 238, 1)); */
        /* box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); */
    margin-bottom: 12px;
}
/* 404 page */

.wrapper-404 {
    text-align: center;
    margin-top: 100px;
}

.row-404 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.heading-404 {
    font-size: 5rem;
    color: #006D77;
}

.message-404 {
    font-size: 1.2rem;
    color: #606f7b;
}

.link-404 {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 15px;
    background-color: #006D77;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.link-404:hover {
    background-color: #83C5BE;
}
/* Scroll/how it works section */
/* ------------------------------------- */
/*  Wrapper Section */
/* ------------------------------------- */
.home-scroll-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    overflow: hidden;
    height: 120vh;
}

/* ------------------------------------- */
/*  Path Container (SVG) */
/* ------------------------------------- */
.home-scroll-path-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

/* ------------------------------------- */
/*  Placeholder for spacing (optional) */
/* ------------------------------------- */
.scroll-placeholder {
    height: 100vh;
    visibility: hidden;
}

/* ------------------------------------- */
/*  Path styles */
/* ------------------------------------- */
.home-scroll-path-grey {
    stroke: #d3d3d3;
    /* Light grey color for the full path */
    stroke-width: 0.5;
    /* Path thickness */
    fill: none;
    /* No fill */
}

.home-scroll-path {
    stroke: #006D77;
    /* Blue color for the animated path */
    stroke-width: 0.33;
    fill: none;
    stroke-dasharray: 1400;
    stroke-dashoffset: 1400;
    transition: stroke-dashoffset 0.1s ease-out;
    /* Smooth path animation */
}

.home-scroll-circle {
    r: 1.1;
    fill: #006D77;
    transform-origin: center;
    transition: transform 0.1s ease-out;
    filter: drop-shadow(0 0 10px #83C5BE);
}

/* ------------------------------------- */
/*  Slideshow Container */
/* ------------------------------------- */
.home-scroll-detail {
    position: relative;
    height: 100vh;
    /* or a fixed px height or min-height if you prefer */
    overflow: hidden;
    /* so scrolling doesn't reveal other sections behind */

    margin-left: 10%;
    /* If you want some left margin */
    padding-left: 5%;
    /* Additional padding */
    width: 90%;
    /* position: relative; (already declared) */
    /* overflow: hidden; (already declared) */
}

/* ------------------------------------- */
/*  Each Slideshow "Slide" (.home-scroll-row) */
/* ------------------------------------- */
.home-scroll-row {
    /* Slideshow-like absolute positioning */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Fill the entire container (home-scroll-detail) */
    opacity: 0;
    /* Hidden initially */
    z-index: 1;
    /* Stacked below */
    transition: transform 0.4s ease, opacity 0.4s ease;
    /* Key: Place text (left) and image (right) side by side */
    display: flex;
    flex-direction: row;
    /* side-by-side */
    align-items: center;
    /* vertically center both columns */
    justify-content: space-around;
    /* optional, or use space-between */

    min-height: 100vh;
    padding-left: 20px;
}

/* The active section sits on top and is fully visible */
.home-scroll-row.is-active {
    opacity: 1;
    z-index: 2;
    /* ensure it appears above non-active rows */
}

/* ------------------------------------- */
/*  Text Section: left side ( ~45% ) */
/* ------------------------------------- */
.home-scroll-text-section {
    width: 45%;
    padding: 20px;
    margin-left: 10vw;
    box-sizing: border-box;
    z-index: 10;
    /* above the background if needed */
}

.home-scroll-text-section h2 {
    color: #006D77;
}

.home-scroll-text-section p {
    color: #000000;
}

/* ------------------------------------- */
/*  Image Section: right side ( ~45% ) */
/* ------------------------------------- */
.home-scroll-image-section {
    margin-left: 50px;
    width: 45%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Make the image fill its container width, maintain aspect ratio */
.home-scroll-fade-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.home-scroll-row img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 1rem;
}

.home-scroll-title-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 30px;
    border: 2px solid #006D77;
    border-radius: 50px;
    text-align: center;
    margin: 20px auto;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.home-scroll-title-circle:hover {
    border-color: #006D77;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    /* Slightly deeper shadow on hover */
}

.home-scroll-nav-title {
    justify-content: center;
    align-items: center;
    margin: 0;
    font-weight: 600;
    font-size: 18px;
    color: #006D77;
    letter-spacing: 1.2px;
    transition: color 0.3s ease;
}

.home-scroll-title-container {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    color: #333;
    position: relative;
    z-index: 0;
    /* margin-bottom: 50px; */
    margin-top: -50px;

}
/* Terms of service page */
.terms-header {
    padding-top: 100px;
}

/* privacy page */
.privacy-header {
    padding-top: 100px;
}