@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Regular.ttf') format('truetype'),
         url('../fonts/Lato-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Bold.ttf') format('truetype'),
         url('../fonts/Lato-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
}


/* Navigation Bar */
.main-section {
	/* max-width: 1320px;
	display: flex;
	flex-direction: column;
	align-items: center;
    width: 100%;
    padding: 0 12px; */
}

/* Main menu bar styles */
.menu-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem 0;
	background: #fff;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo img {
    max-width: 17.5rem;
}

/* Hamburger Menu - Initially Hidden */
.hamburger-menu {
    display: none; /* Hide by default */
    flex-direction: column;
    cursor: pointer;
}

.hamburger-menu .bar {
    width: 2.5rem; /* Width of the bars in rem */
    height: 0.3rem; /* Height of the bars in rem */
    margin: 0.4rem; /* Margin between bars in rem */
    background-color: #333;
}

.menu-items {
    display: flex;
    gap: 3.5rem;
    align-content: center;
    align-items: center;
    list-style: none; /* Remove bullet points */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
}

.menu-items li {
    margin: 0;
    cursor: pointer;
}

.menu-items a {
    text-decoration: none; /* Remove underline from links */
    color: inherit; /* Inherit text color from parent */
}

/* .menu-items-signup {
    background-color: #31B5F8;
    width: 10rem;
    text-align: center;
    padding: 0.5rem;
    border-radius: 1.5625rem;
    color: #fff;
} */

.menu-items li:not(.menu-items-signup):hover a {
    color: #36B6F7;
}
 

/* Main content styles */
.main-container {
    display: flex;
    gap: 7.5rem;
    padding: 2rem 0;
    width: 100%;
}

.left-section, .right-section {
    width: 45%;
}

.left-section img {
    width: 100%;
    height: auto;
    border-radius: 1.25rem;
}

.right-section .content-wrapper {
	display: flex;
	flex-direction: column;
	gap: 1.7rem;
}
.key-results-section{
    background: #F7F7F7;
    border-radius: 1.25rem;
    padding: 1.25rem;
    margin-bottom: 3rem;
}
.key-result-item{
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.25rem;
}

.text-box {
    border-radius: 0.5rem;
}

.one {
    font-size: 2.5rem;
    line-height: 1.2em;
}

.two {
    font-size: 1.8rem;
    line-height: 1.2em;
    font-weight: 100;
    opacity: 0.6;
}

.heading p {
    padding: 2rem 0;
    width: 100%;
    font-size: 3.75rem;
    line-height: 1.2em;
 
    /* font-weight: lighter; */
}

/* Card Container Styles */
.card-container {
	display: flex;
	flex-wrap: wrap;
	gap: 3.75rem;
	padding: 0;
	width: 100%;
	margin-top: 2rem;
}

.card {
	width: calc((100% - (3.75rem * 2)) / 3);
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 0.75rem;
	transition: transform 0.3s ease;
	height: auto;
	display: flex;
	flex-direction: column;
    border: none;
}

.card1 {
	width: calc((100% - (3.75rem * 2)) / 3);
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 0.75rem;
	transition: transform 0.3s ease;
	height: auto;
	display: flex;
	flex-direction: column;
    border: none;
}

.card-section {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
    padding-top: 0.5rem;
}
.card-section1 {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 18rem;
    background-color: #fff;
}

/* .card:hover {
    transform: translateY(-10px);
} */

.card-3wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card-img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 1.25rem;
}

.card-text {
    font-size: 1.25rem;
    color: #000;
    margin-top: 2rem;
    line-height: 1.2em;
    font-weight: 0.625rem;
    font-weight: lighter !important;
    /* letter-spacing: 0px; */
}

.card-text1 {
    font-size: 1.25rem;
    color: #000;
    margin-top: 2rem;
    line-height: 1.7em;
    font-weight: 0.625rem;
    font-weight: lighter !important;
    text-align: left;
    /* letter-spacing: 0px; */
}

.card-spans {
	bottom: 1.5rem; /* Fix buttons at the bottom */
	width: 100%;
	display: flex;
	/* justify-content: space-between; */
	gap: 1.25rem;
}

.card-btn {
	background-color: #D4D4D4;
	color: white;
	border: none;
	padding: 0.5rem 1rem;
	border-radius: 3.2rem;
	cursor: pointer;
	transition: background-color 0.3s;
}

.card-title {
  font-size: 1.5rem;
  color: #333;
  line-height: 1.2em;
}

.card-title1 {
    font-size: 1.5rem;
    color: #333;
    line-height: 1.5em;
    text-align: left;
    margin-top: 0.5rem;
  }

.second-menu {
    display: flex;
    gap: 1rem; /* Adjust spacing as needed */
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    width: 100%;
}

.second-menu-item a {
    text-decoration: none;
    color: #000; 
    font-size: 1.25rem;
}

.second-menu-item a:hover {
    color: #36B6F7; /* Same hover color as main menu */
}

.second-menu-separator {
    color: #000; /* Or whatever color you want for the > */
    margin: 0 0.5rem; /* Adjust spacing around the separator */
    font-family: monospace;
    font-size: 1.25rem;
}

/* .card-btn:hover {
    background-color: #0056b3;
} */


.loadmore {
	text-align: center;
	margin-top: 6rem;
	color: #fff;
}

.loadmore-btn {
    width: 80%;
    height: 2.75rem;  /* 44px converted to rem */
    margin-bottom: 3.125rem;  /* 50px converted to rem */
    color: #fff;
    background-color: #31B5F8;
    border-radius: 0.625rem;  /* 10px converted to rem */
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.2em;
    border: none;
}

/* Trusted By Section */
.trusted-by {
	display: flex;
	justify-content: center;
	text-align: center;
	width: 100%;
	padding: 3.5rem;
}

.trusted-by h2 {
    font-size: 1.5rem; /* 24px */
    margin-bottom: 1.25rem; /* 20px */
    color: #000;
}

.trusted-logos {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 4.25rem;
	align-items: center;
	width: fit-content;
	/* margin-top: 1.6875rem; */
}

.trusted-logos img {
    height: 3.125rem; /* 50px */
    max-width: 100%;
    object-fit: contain;
}

.trusted_by_inline_div {
  text-align: center;
  margin-top: 6rem;
  color: #012;
  font-size: 2.5rem;
  line-height: 1.2em;
}
.trusted_by_inline_div h2{
  text-align: center;
  margin-top: 6rem;
  color: #012;
  font-size: 2.5rem;
  line-height: 1.3em;
}

a {
    cursor: pointer;
}
.menu-icon {
    display: none;
  
}

/* Media Queries for Mobile Responsiveness */

/* Small devices (Mobile) */
@media (max-width: 48rem) {
    /* Menu Bar */
    .menu-bar {
        display: flex; 
    }

    .menu-items {
        display: none;
        flex-direction: column;
        gap: 0rem !important;
        position: absolute;
        top: 5rem;
        left: 0;
        right: 0;
        background-color: #fff;
        /* padding: 2rem; */
        box-shadow: 0rem 0.4rem 0.6rem rgba(0, 0, 0, 0.1);
        z-index: 1;
        width: 100%;
    }

    .menu-items li {
        font-size: 1.125rem;
        text-align: center;
        border-top: 1px solid #a5a5a53b;
        height: 4rem;
        padding: 0 1rem;
        display: flex;
        justify-content: space-between;
        align-content: center;
        align-items: center;
        width: 100%;


    }

    .menu-icon {
            display: inline;
          
    }
 

    .hamburger-menu {
        display: flex;
        cursor: pointer;
    }

    .menu-items.active {
        display: flex;
    }

    /* .menu-items li:not(.menu-items-signup):hover a {
        color: #36B6F7;
    }
     */
     .menu-items li:not(.menu-items-signup):active {
        background-color: #36B6F7;
    }
    
    /* Add a hover effect for better user interaction */
    .menu-items li:not(.menu-items-signup):hover {
        background-color: #D1E9F7;
    }
    
    /* Optional: Apply focus for accessibility (keyboard navigation) */
    .menu-items li:not(.menu-items-signup):focus {
        background-color: #36B6F7;
    
    }
    /* Heading */
    .heading p {
        font-size: 1.75rem;
        text-align: center; 
    }

    /* Main container */
    .main-container {
        flex-direction: column;
        gap: 3rem;
        padding: 0;
    }

    .one {
        font-size: 1.75rem;
        line-height: 1.2em;
        text-align: center;
    }

    .two {
        font-size: 1.375rem;
        line-height: 1.2em;
        font-weight: 100;
        opacity: 0.6;
        text-align: center;
    }

    .left-section, .right-section {
        width: 100%;
    }
    .card-section{
        height: auto;
    }
    .card-container {
        padding: 1rem;
        gap: 1.5rem;
    }

    
    .card {
        width: 100%;
    }

    .card-img {
        height: 15rem;
    }

    .card-text {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    .card-title {
        font-size: 1.25rem;
        margin-top: 0.6rem !important;
    }
    
    .card-spans {
        gap: 0.75rem;
        margin-top: 6rem;
        padding: 0rem;
    }

    .loadmore {
        width: 100%;
        margin-top: 2rem;
    }

    .loadmore-btn {
        width: 60%;
        font-size: 1rem;
        margin-top: 3rem;
    }

    .trusted-logos {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.2rem;
    }

    .trusted-logos img {
        height: 2.5rem;
    }

    .trusted_by_inline_div {
        font-size: 1.8rem;
        margin-top: 4rem;
    }

    .trusted-by {
        padding: 2rem 1rem 3.5rem 1rem; 
    }

    .second-menu {
         width: 90%;
    }

    .logo img {
        height: 3rem;
        width: 85%;
        object-fit: contain;
    }

    .card-btn {
        background-color: #D4D4D4;
        color: white;
        border: none;
        padding: 0.5rem 0.5rem;
        border-radius: 3.2rem;
        cursor: pointer;
        transition: background-color 0.3s;
    }
}

/* Extra small devices (Portrait Mobile) */
@media (max-width: 30rem) {

    .menu-items li:not(.menu-items-signup):hover a {
        color: #36B6F7;
    }
    
    .menu-items-signup:not(.menu-items-signup):hover {
        background-color: #36B6F7;
    }
    /* Adjust fonts and layout for smaller screens */
    .heading p {
        font-size: 1.75rem;
        text-align: center; 
    }

    .card {
        width: 100%;
        height: auto;
    }

    .card-title {
        font-size: 1.25rem;
        margin-top: 0.6rem !important;
    }

    .card-text {
        font-size: 1.1rem;
    }

    .card-spans {
        gap: 0.75rem;
        margin-top: 6rem;
        padding: 0rem;
    }

    .loadmore-btn {
	width: 60%;
	font-size: 1rem;
	margin-top: 3rem;
}

    .trusted-logos {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.2rem;
    }

    .trusted-logos img {
        height: 2rem;
    }

    .trusted_by_inline_div {
        font-size: 1.8rem;
        margin-top: 4rem;
    }
    .trusted-by {
        padding: 2rem 1rem 3.5rem 1rem; 
    }
}
