@font-face {
    font-family: 'RethinkSans';
    src: url('/fonts/RethinkSansRegular.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'RethinkSans';
    src: url('/fonts/RethinkSansBold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'RethinkSans';
    src: url('/fonts/RethinkSansExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'RethinkSans';
    src: url('/fonts/RethinkSansItalic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'RethinkSans';
    src: url('/fonts/RethinkSansMedium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.section-white {
    background-color: #ffffff;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.section-blue {
    background-color: #F2FCFF;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}


.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
    text-decoration: none !important;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    background-color: #fff;
    color: #131313;
    font: 400 16px / 20px 'RethinkSans', Lato, Arial, sans-serif;
    line-height: 1.6;
}

.fw-extra-bold {
    font-weight: 800;
}

.fw-ultra-bold {
    font-weight: 900;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    background-color: #ffffff;
}

/* Secondary Navigation Styling */
.secondary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 10px 0;
    z-index: 1000;
    min-width: 200px;
}

/* Links inside Secondary Navigation */
.secondary-link {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
}

.secondary-link:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

/* Show Secondary Navigation on Hover */
.nav-item:hover .secondary-nav {
    display: block;
}

/* Positioning Adjustments */
.nav-item {
    position: relative;
}

@media (max-width: 768px) {
    .secondary-nav {
        position: static;
        display: block;
        box-shadow: none;
        padding: 0;
    }

    .nav-item:hover .secondary-nav {
        display: block;
    }

    .secondary-link {
        padding: 10px;
    }
}

a {
    color: #00adef;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover,
a:active,
a:focus {
    color: #666666;
    text-decoration: none;
}

.btn-primary:hover, .btn-primary:focus {
    text-decoration: none !important;
}

.btn-secondary:hover, .btn-secondary:focus {
    text-decoration: none !important;
}

.nav-link {
    font-size: large !important;
    font-weight: 700 !important;
}

.lead {
    line-height: normal !important;
}

.nav-link:hover, .nav-link:focus {
    text-decoration: none !important;
}

footer {
    background-color: #131313;
    color: #fff;
    padding: 2rem 0;
}

footer a {
    color: #fff;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #fff;
    text-decoration: none;
}

footer .social-icons a {
    color: #adb5bd;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

footer .social-icons a:hover {
    color: #f8f9fa;
}

footer .partners img {
    max-height: 60px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

footer .partners img:hover {
    transform: scale(1.1);
}

.partner-card {
    width: 150px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.list-unstyled li {
    line-height: 37px;
}

.list-unstyled li a:hover {
    color: #fff;
}

.list-unstyled li a {
    color: #fff;
}

.cookie-consent-notice {
    left: 10%;
    right: 10%;
    z-index: 7;
}

.cookie-consent-notice {
    background-color: rgba(0, 0, 0, 0.85);
}

.cookie-consent-notice-close {
    background: #333333;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    box-shadow: 0 0 8px 2px rgba(0,0,0,0.75);
    color: #FFFFFF;
    cursor: pointer;
    height: 30px;
    padding: 0;
    position: absolute;
    text-align: center;
    right: -14px;
    top: -14px;
    width: 30px;
}

.header-logo {
    height: 60px;
}

.embed-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
}

.embed-responsive-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 576px) {
    .blockquote-footer {
        float: none;
        text-align: left;
    }
}

.logo-grid-container {
    padding: 40px 20px;
    overflow: hidden; /* Hide overflow for seamless effect */
    position: relative;
}

.logo-grid {
    display: flex;
    gap: 20px;
    animation: scroll-right-to-left linear infinite; /* Keyframe animation applied */
    will-change: transform; /* Optimize for performance */
}

.logo-grid-no-scroll {
    display: flex;
    justify-content: center; /* Align items horizontally */
    flex-wrap: wrap; /* Allow items to wrap onto multiple rows */
    gap: 20px; /* Space between items */
}

.logo-item {
    flex: 0 0 auto; /* Prevent resizing */
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    height: 150px;
    width: 150px; /* Fixed width for consistent sizing */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* General carousel styling */
.carousel img {
    object-fit: contain;
}

/* Styles specific to #imageCarousel */
#imageCarousel .carousel-inner {
    width: 600px;
    height: 750px;
    overflow: hidden;
    margin: 0 auto;
}

#imageCarousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    #imageCarousel .carousel-inner {
        width: 100%;
        height: auto;
    }
}

.testimonial-container {
    position: relative;
    width: 100%;
    height: 335px;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    transition: transform 1s ease, opacity 1s ease;
}

.testimonial-card {
    min-width: 100%;
    box-sizing: border-box;
    border: none;
    border-radius: 15px;
    padding: 25px;
    opacity: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-text {
    text-align: center;
    font-size: 1rem;
    color: #131313;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin: 15px 0;
    border: 3px solid #4CAF50;
    align-self: center;
}

.testimonial-name {
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
}

.testimonial-role {
    font-size: small;
    font-style: italic;
    text-align: center;
    margin-bottom: 10px;
}

.testimonial-container::-webkit-scrollbar {
    display: none;
}

/* Dots Navigation */
.dots-container {
    text-align: center;
    position: absolute;
    bottom: -5px;
    width: 100%;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #00aef0;
}


.primary-bg {
    background-color: #00aef0;
    color: white;
}

.price-table {
    border: 1px solid #00aef0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.price-table:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.price-table-header {
    padding: 20px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: #00aef0;
    color: white;
}

.price-table-price {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 20px 0;
    color: #00aef0;
}

.price-table-price span {
    font-size: 1rem;
    color: #666;
}

.price-table-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-table-features li {
    padding: 10px;
    font-size: 1rem;
    border-bottom: 1px solid #ddd;
    padding-right: 1.75rem !important;
    padding-left: 1.75rem !important;
    transition: background-color 0.3s ease;
}

.price-table-features li:last-child {
    border-bottom: none;
}

.price-table-features li:hover {
    background-color: #f9f9f9;
}

.price-table-footer {
    padding: 20px;
    text-align: center;
    background-color: #f8f8f8;
    border-top: 1px solid #ddd;
}

.price-table-footer .btn {
    padding: 10px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.price-table-footer .btn:hover {
    background-color: #007bb5;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .price-table {
        margin-bottom: 20px;
    }

    .price-table-price {
        font-size: 2rem;
    }

    .price-table-header {
        font-size: 1.25rem;
    }

    .price-table-features li {
        font-size: 0.9rem;
    }
}

.list-group-item {
    font-size: 1rem;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 5px;
    margin-bottom: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.list-group-item:hover {
    background-color: #00aef0;
    color: #fff;
    transform: scale(1.05);
}

.section-heading {
    text-align: center;
    margin: 40px 0;
    font-size: 2rem;
    font-weight: bold;
}

.text-description {
    text-align: center;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    line-height: 1.6;
}


.blog-header {
    text-align: center;
    padding: 50px 20px;
    background-color: #007bff;
    color: white;
    width: 100%;
}

.blog-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.blog-header p {
    font-size: 1.2rem;
}

.blog-post {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

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

.blog-post-body {
    padding: 20px;
}

.blog-post-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.blog-post-meta {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 15px;
}

.blog-post-excerpt {
    font-size: 1rem;
    line-height: 1.6;
}

.read-more {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #0056b3;
}

.pagination {
    justify-content: center;
}

.feature-box {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-box h4 {
    font-size: 1.5rem;
    font-weight: 500;
}

.feature-box p {
    font-size: 1rem;
}

.comparison-table th, .comparison-table td {
    vertical-align: middle;
    text-align: center;
}

.form-border {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.form-control {
    padding: 10px;
}

.form-label .required {
    color: red;
}

.team-section img {
    border-radius: 11px 11px 11px 11px;
    box-shadow: 12px 29px 18px 0px rgba(0, 0, 0, 0.14);
    max-width: 100%;
    height: auto;
}

.btn-same-size {
    width: 48%;
    height: 40px;
}

.btn-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breadcrumb {
    background-color: transparent;
    font-size: 1.0rem;
}

.breadcrumb-item a {
    text-decoration: none;
    color: #007bff;
}

.breadcrumb-item.active {
    color: #6c757d;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: var(--bs-breadcrumb-divider, ">") !important;
}

.image-effect {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
}

.image-effect:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.3);
}