:root {
    --primary-color: #ffffff;
    --primary-color-highlight: #233D54; 
    --bs-body-bg: #ffffff;
    --bs-body-font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

html, body {
    width: auto!important;
    overflow-x: hidden!important;
    position: relative; /* fixes overflow in Safari browsers */
}

a {
    color: rgb(0, 0, 0);
}

body {
    font-size: 17px;
}

/* width */
::-webkit-scrollbar {
    width: 14px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--bs-dark);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

#landing_screen {
    max-height: 80vh; /* Ensures the section never exceeds 80% of the viewport height */
}

@media (max-width: 991px) { /* For medium screens */
    #landing_screen {
        max-height: 100%; /* On smaller screens, allow it to be the full height of the content */
    }
}
/*
    @media (min-width: 544px)  {}
    @media (min-width: 768px)  {}
    @media (min-width: 992px)  {}
    @media (min-width: 1200px) {}
    @media (min-width: 1400px) {}
    @media (min-width: 1600px) {}
  */

/*
  * Custom Container
  */
/*
.container-fluid{
    padding: 0;
 }
 */

.container-custom {
    width: 100%;
    padding: 1rem;
    margin: 0 auto;
}

@media (min-width: 1200px) {
    .container-custom {
        width: 1140px;
        margin-top: 0.5rem !important;
    }
}

@media (min-width: 1400px) {
    .container-custom {
        width: 1340px;
        margin-top: 1rem !important;
    }
}

@media (min-width: 1600px) {
    .container-custom {
        width: 100%;
        margin-top: 1.5rem !important;
    }
}

/*
  * Main Header
  */
.header {
    z-index: 2;
}

.big_header {
    color: rgb(33, 37, 41);
    font-size: 3.5rem; /* Default font size */

}
      
/* Media query for smaller screens (phones) */
@media only screen and (max-width: 767px) {
    .big_header {
        color: rgb(33, 37, 41);
        font-size: 2.2rem; /* Adjusted font size for smaller screens */
    }
}
/* Flyout Navigation Bar
  */
#navbar {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(255, 247, 231);
    z-index: 4;
}

.dropdown-nav__closeNavBtn {
    position: absolute;
    top: 20px;
    right: 16px;
    background-color: rgbA(255, 255, 255, 0.6);
}

.dropdown-nav__container {
    height: 100vh;
    padding: 0 1rem;
}

/*
  * Hero Section
  */
.hero {
    position: relative;
    background-color: var(--primary-color);
}

@media only screen and (max-width: 1200px) {
    .desktop-only {
        display: none;
    }
}

.hero__heading {
    font-size: 4rem;
}

.hero__text {
    font-size: 1.5rem;
}

.landing_text {
    font-size: 1.6rem;
    text-align: justify;
}

@media (max-width: 500px) {
    .hero__heading {
        font-size: 3rem;
    }
    .hero__text {
        font-size: 1.5rem;
    }
    .landing_text {
        font-size: 1.2rem;
    }
}

@media (max-width: 380px) {
    .hero__heading {
        font-size: 2.5rem;
    }
    .hero__text {
        font-size: 1.5rem;
    }
    .landing_text {
        font-size: 1.2rem;
    }
}

.hero__overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    opacity: 0.5;
    z-index: 1;
}

.hero__content {
    margin-top: 0 !important;
    z-index: 1;
}

.hero__button:hover {
    opacity: 0.6;

}


@media (max-width: 768px) {
  .feature .feature-content h2,
  .feature .feature-content p {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Faq Section (THIS IS AI SLOP CSS BEWARE!)
--------------------------------------------------------------*/
.faq .content-subtitle {
    font-size: 15px;
    margin-bottom: 10px;
    display: block;
    color: var(--default-color);
}
  
.faq .content-title {
    color: var(--heading-color);
    font-size: 22px;
    margin-bottom: 30px;
}

.faq p {
    line-height: 1.7;
    color: var(--default-color);
}
  
.faq .custom-accordion .accordion-item {
    background-color: var(--default-color);
    margin-bottom: 0px;
    position: relative;
    border-radius: 0px;
    overflow: hidden;
}

.faq .custom-accordion .accordion-item .btn-link {
    display: block;
    width: 100%;
    padding: 15px 0;
    text-decoration: none;
    text-align: left;
    color: var(--default-color);
    border: none;
    padding-left: 40px;
    border-radius: 0;
    position: relative;
    background-color: color-mix(in srgb, var(--default-color), transparent 94%);
}
  
.faq .custom-accordion .accordion-item .btn-link:before {
    content: "\f282";
    display: inline-block;
    font-family: "bootstrap-icons" !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -0.125em;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
}
  
.faq .custom-accordion .accordion-item .btn-link[aria-expanded=true] {
    color: var(--accent-color);
}
  
.faq .custom-accordion .accordion-item .btn-link[aria-expanded=true]:before {
    font-family: "bootstrap-icons" !important;
    content: "\f286";
    position: absolute;
    color: var(--accent-color);
    top: 50%;
    transform: translateY(-50%);
}
  
.faq .custom-accordion .accordion-item .accordion-body {
    padding: 20px 20px 20px 20px;
    color: var(--default-color);
    font-size: 17px;
}
  

.section {
    padding: 100px 0;
}
  
.section-title {
    text-align: center;
    margin-bottom: 80px;
}
  
.section-title h2 {
    font-size: 35px;
    margin-bottom: 13px;
}
  
.section-title p {
    width: 50%;
    margin: 0 auto;
}
  
@media (max-width: 480px) {
    .section-title p {
        width: 100%;
    }
}

@media (max-width: 480px) {
  .app-features .app-feature {
    margin-bottom: 30px;
  }
}

.app-features .app-explore {
  display: flex;
  justify-content: center !important;
  margin-bottom: 40px;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
}
  
.section-title h2 {
    font-size: 35px;
    margin-bottom: 13px;
}
  
.section-title p {
    width: 50%;
    margin: 0 auto;
}
  
@media (max-width: 480px) {
    .section-title p {
        width: 100%;
    }
}

/* END OF AI SLOP CSS */

@media (min-width: 768px) {
    section:before {
        left: -999em;
        background: inherit;
        content: '';
        display: block;
        position: absolute;
        width: 999em;
        top: 0;
        bottom: 0;
    }
    section:after {
        right: -999em;
        background: inherit;
        content: '';
        display: block;
        position: absolute;
        width: 999em;
        top: 0;
        bottom: 0;
    }
    .h-md-100 {
        height: 100% !important;
    }
}
.hero__content-width {
    max-width: 600px;
}

.hero__scroll-btn {
    position: relative;
    /* left: 50%; */
    /* bottom: 30px; */
    /* transform: translateX(-50%); */
    z-index: 1;
    color: rgb(0, 0, 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 100%;
}

.hero__scroll-btn:hover {
    color: var(--bs-dark);
    opacity: 0.8;
}

.hero__scroll-btn .bi {
    transition-delay: 0.8s;
    animation: bounce 1s infinite alternate;
}


@keyframes bounce {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-10px);
    }
}

/*
  email form section
  */

input:focus~label,
textarea:focus~label,
input:valid~label,
textarea:valid~label {
    font-size: 0.75em;
    color: #999;
    top: -5px;
    -webkit-transition: all 0.225s ease;
    transition: all 0.225s ease;
}

.styled-input {
    float: left;
    width: 639px;
    margin: 0.5rem 5px;
    position: relative;
    border-radius: 4px;
}

@media only screen and (max-width: 768px) {
    .styled-input {
        width: 100%;
    }
}

.styled-input label {
    color: #999;
    padding: 1.3rem 30px 1rem 30px;
    position: absolute;
    top: 10px;
    left: 0;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    pointer-events: none;
}

.styled-input.wide {
    width: 650px;
    max-width: 100%;
}

input,
textarea {
    padding: 30px;
    border: 0;
    width: 100%;
    font-size: 1rem;
    background-color: #2d2d2d;
    color: white;
    border-radius: 4px;
}

input:focus,
textarea:focus {
    outline: 0;
}

input:focus~span,
textarea:focus~span {
    width: 100%;
    -webkit-transition: all 0.075s ease;
    transition: all 0.075s ease;
}

textarea {
    width: 100%;
    min-height: 15em;
}

.input-container {
    width: 650px;
    max-width: 100%;
    margin: 20px auto 25px auto;
}

.submit-btn {
    padding: 7px 35px;
    border-radius: 60px;
    margin: 0.5rem 0;
    display: inline-block;
    background-color: #4b8cfb;
    color: white;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.06),
        0 2px 10px 0 rgba(0, 0, 0, 0.07);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.submit-btn:hover {
    transform: translateY(1px);
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.10),
        0 1px 1px 0 rgba(0, 0, 0, 0.09);
}

@media (max-width: 768px) {
    .submit-btn {
        width: 100%;
        float: none;
        text-align: center;
    }
    .img-center {
        width: 100%;
    }
}

input[type=checkbox]+label {
    color: #ccc;
    font-style: italic;
}

input[type=checkbox]:checked+label {
    color: #ff0000;
    font-style: normal;
}

.title-image {
    object-fit: cover;
    margin: 0 auto;
}

/*
  * Steps Section
  */
.steps {
    padding-top: 40px;
    padding-bottom: 40px;
}

.steps__section-thumbnail {
    object-fit: cover;
    margin: 0 auto;
}

.steps__content-width {
    max-width: 600px;
    margin: 0 auto;
}

.iq_blue--gradient {
    background: linear-gradient(
        to bottom,
        rgba(42, 212, 255, 0.00),
        rgba(42, 212, 255, 0.1)
    );
}

.iq_blue--transparent {
    background-color: rgba(42, 212, 255, 0.1);
}

.service .service-box {
    box-shadow: 0 7px 20px 0 rgba(0, 0, 0, 0.08);
}

.service .service-box {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
}
  
@media (max-width: 768px) {
    .service .service-box {
        width: 80%;
        margin: 0 auto;
    }
}
  
.service .service-box .service-item {
    text-align: center;
    padding: 10px;
    margin: 20px 0;
}
  
@media (min-width: 544px) {
    .steps {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}
@media (max-width: 544px) {
    .phone-separator {
        padding-top: 80px;
    }
    .img-center {
        width: 100%;
    }
    .steps__section-thumbnail {
        height: auto;
        max-height: 240px;
    }
}

.img-container {
    display: flex;
    justify-content: center;
    padding-top: 1em;
    padding-bottom: 1em;
}
/* .d-flex-hide-on-1400 {
    display: none !important;
}
@media (min-width: 1400px) {
    .d-flex-hide-on-1400 {
        display: flex !important;
    }
} */

/*
  * Footer
  */
.footer .border-highlight {
    border-top: 1px solid var(--primary-color-highlight);
}

/*
Blog
*/
blockquote::before {
    content: "";
    display: block;
    width: 4px; /* Adjust the width of the line */
    background-color: rgb(42, 212, 255); /* Adjust the color of the line */
    height: 100%; /* Adjust the height of the line */
    position: absolute;
    left: 0px; /* Adjust the distance of the line from the text */
}

blockquote {
    position: relative;
    padding-left: 20px; /* Adjust the padding to create space for the line */
}

.header_2 {
    color: #212529; 
    font-size: 2.5rem;
}

.header_3 {
    color: #212529; 
    font-size: 1.8rem;
}

/* Media query for smaller screens (phones) */
@media only screen and (max-width: 767px) {
    .header_2 {
        color: #212529;
        font-size: 2rem; /* Adjusted font size for smaller screens */
    }
}

.blog_text {
    font-size: 1.5rem;
}

@media only screen and (max-width: 767px) {
    .blog_text {
        font-size: 1.1rem; /* Adjusted font size for smaller screens */
    }
}

.container-blog {
    width: 100%;
    padding: 1rem;
    margin: 0 auto;
}

@media (min-width: 990px) {
    .container-blog {
        width: 70%;
        margin-top: 0.5rem !important;
    }
}

.partner-logo {
    max-width: 230px;
    max-height: 230px;
}
.partner-logo:hover {
    transform: scale(1.05);
}
.partner-logo-small {
    max-width: 150px;
    max-height: 150px;
}
.partner-logo-small:hover {
    transform: scale(1.05);
}

@media only screen and (max-width: 767px) {
    .partner-logo {
        max-width: 125px;
        max-height: 125px;
    }
    
    .partner-logo-small {
        max-width: 100px;
        max-height: 100px;
    }
}

.carousel-image {
    max-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
}

.carousel-image img {
    max-height: 150px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.carousel-image p {
    text-align: center;
    font-size: 1.2rem;
}

/* Desktop carousel - hide on mobile */
@media (min-width: 768px) {
    #partnersCarouselMobile {
        display: none;
    }
}

/* Mobile carousel - hide on desktop */
@media (max-width: 767px) {
    #partnersCarousel {
        display: none;
    }
    
    .carousel-image {
        height: 250px; /* fixed to prevent the page from jumping */
    }
    
    .carousel-image img {
        max-height: 160px;
        max-width: 160px;
    }
}

#testimonialsCarouselDesktop .carousel-inner,
#testimonialsCarouselMobile .carousel-inner {
    padding: 1rem 10%;
}