
.banner {
    height: calc(100vh - 40px);
    background: linear-gradient(145deg, #00398f 55%, #063f92 50%); /* Layer 2 - Blue */
    background-size: 100%;
    background-repeat: no-repeat;
}
.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.banner-content > .content{
    padding: 40px;
    max-width: 50%;
}
.banner-content > .content > h1 {
    font-size: 33px
}
.banner-content > .content > p,
.banner-content > .content > a {
    font-size: 15px;
    margin: 20px 0; 
}

.banner-cta-btn {
    display: inline-block;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 30px;
    margin: 10px 0;

}

@media(min-width: 1080px){
    .d-sm-none {
        display: none !important;
    }
    .d-sm-inline{
        display: inline !important;
    
    }
}
@media(max-width: 1079px){
    .d-sm-none {
        display: inline !important;
    }
    .d-sm-inline{
        display: none !important;
    
    }
}


.banner-content > img {
    max-width: 650px; /* Set the maximum width to 650 pixels for smaller screens */
}

.categories-outer { 
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100px;
    gap: 20px;
}

.categories-section { 
    padding-top: 80px;
}

.categories-names { 
    text-align: center;
    color: #00398F;
    cursor: pointer;
}

.categories-names:hover { 
    color: #0066ff;
}

.categories-content {
    display: grid;
    gap: 35px;
    grid-template-columns: repeat(2, 1fr); /* Default to 2 columns */
}

@media (min-width: 768px) {
    .categories-content {
        grid-template-columns: repeat(4, 1fr); /* 4 columns on medium screens */
    }
}

@media (min-width: 1200px) {
    .categories-content {
        grid-template-columns: repeat(8, 1fr); /* 8 columns on large screens */
    }
}

.categories-mini { 
    height: 100px;
    width: 100px;
    border-radius: 50%;
    background: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 10px 0px #e2e2e2;
    transition: background-color 0.1s ease, color 0.1s ease;
    color: #00398F;
    cursor: pointer;
}

.categories-mini:hover { 
    background: rgba(80,80,80,0.1);
    color: #004dc1;
}

.categories-mini:active { 
    background: rgba(80,80,80,0.2);
    color: #0066ff;
}

.demo-section,
.benefits-section,
.engagement-section {
    padding-top: 80px;
}
.demo-content,
.benefits-content,
.engagement-content {

    display: flex;
    flex-direction: column;
    align-items: center;
}
.demo-content  h2,
.benefits-section h2,
.engagement-section h2 {
    font-size: 28px;
    font-weight: 600;
    padding: 10px;
}
.demo-content  p {
    font-size: 15px;
    padding: 10px;
}

.demo-content  h2,
.engagement-content  h2,
.demo-content  p {
    max-width: 600px;
    text-align: center;
}
.laptop-illustration{
    transform: translateX(-7%);
}

.benefits-section h2 {
    max-width: 755px;
    text-align: center;
}

.benefits-content .cards {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1600px;
    gap: 35px;
}
.benefits-content .cards > .card {
    display: flex;
    max-width: 425px;
    border: 0.5px solid #00398F;
    padding: 3%;
    border-radius: 30px;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    row-gap: 15px;
}

.benefits-content .cards > .card:nth-child(2) {
    margin-top: 100px;
}
.benefits-content .cards > .card > img {
    width: 75px;
}
.benefits-content .cards > .card > b,
.engagement-content .cards > .card b {
    font-size: 15px;
}
.benefits-content .cards > .card > p {
    font-size: 14px;
    text-align: center;
}





/* Engagement Section */


.engagement-content .cards {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding-top: 40px;
}

.engagement-content .cards {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding-top: 40px;
}

@media (min-width: 768px) {
    .engagement-content .cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
    }
}

@media (min-width: 1200px) {
    .engagement-content .cards {
        display: flex;
        flex-wrap: wrap;
    }
}


.engagement-content .cards .card {

    border-radius: 30px;
    padding: 3%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    border: 0;
    max-width: 560px;
    column-gap: 35px;
}

.engagement-content .cards .card > img {
    width: 120px;
}
.engagement-content .cards > .card  p {
    margin-top: 10px;
    font-size: 14px;
}

/* Founder Section */
@media (max-width: 767px) {
    .founder-section {
        display: none !important;
    }
}

.founder-section {
    padding-top: 120px;
    padding-bottom: 120px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1600px;
}
.founder-content {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 120px;
}

.founder-content img {
    max-width: 550px;
}

.founder-content h3 {
    font-size: 25px;
    font-weight: 600;
}
.founder-content p {
    font-size: 14px;
    max-width: 400px;
    padding: 30px 39px;
    border-radius: 20px;
    margin: 20px 0;
}

.founder-content > div {
    position: relative;
    left: 40px;
    top: 60px;
}



/* They trust us section */
.trusted-section {
    max-width: 1600px;
    padding-bottom: 120px;
}
.trusted-content {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    border-radius: 30px;
    padding: 50px;
}

.trusted-content .rating {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    row-gap: 30px;
    border-right: 1px solid black; 
    flex: 1;
}


.trusted-content .rating h3 {
    font-weight: 700;
    font-size: 25px;
    max-width: 350px;
    text-align: center;
}

.trusted-content > .brands {
    display: flex;
    justify-content: center;
    padding: 69px;
}
.trusted-content > .rating,
.trusted-content > .brands {
    flex: 1;
}



/* Testimonila section */

.testimonials-content{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 120px;
}
.testimonials-content > .description > b {
    font-size: 14px;
    line-height: .7;
    text-align: left;
}
.testimonials-content > .description {
    text-align: left;
}
.testimonials-content > .description > h3 {
    font-size: 25px;
    font-weight: 700;
    margin: 20px 0;
}
.testimonials-content > .description > p {
    font-size: 14px;
    padding-right: 25px;
}



/* Swiper style */

.slide-container{
  max-width: 1000px;
  width: 100%;
  padding: 40px 0;
}
.slide-content{
  margin: 0 40px;
  overflow: hidden;
  padding: 10px;
}
.card{
  border-radius: 25px;
  border: none;
  box-shadow: 0px 0px 10px 0px #e2e2e2;
}
.card-content{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
}
.card-box > .card-content{ 
    align-items: center!important;
}
.image-content{
  position: relative;
  row-gap: 5px;
}
.swiper-slide > .card-box {
  padding: 60px 0;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.card-image{
  position: relative;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: #FFF;
  padding: 3px;
}
.card-image .card-img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.name{
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}
.type {
  font-size: 14px;
  padding-bottom: 25px;
}
.description{
  font-size: 14px;
  text-align: center;
}


/* Join us section */
.join-us {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  margin-bottom: 120px;
}
.join-us > .steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-direction: row;
    gap: 20px;
}
.join-us > h2 {
    font-size: 28px;
    font-weight: 600;
    padding: 10px;
}
.join-us > .steps > .step {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    justify-content: center;
    padding: 30px;
}
.join-us > .steps > .step > img {
    max-width: 60px;
    margin: 25px;
}
.join-us > .steps > .step > p {
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    max-width: 200px;
}
.join-us > .join-us-buttons {
    display: flex;
    align-items: center;
    gap: 30px;
}
.join-us > .join-us-buttons > .capsule-link {
    text-decoration: none;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    font-size: 15px;
    width: 190px;
    transition: background-color 0.5s ease;
}
