:root {
    --primary-color: #CD9C53;
    --secondary-color: #232323;
    --border-color: #E0E0E0;
    --font-family: 'Geologica', sans-serif;
}

/* Announcement Bar */
.announcement-bar {
    background: #222222;
    color: #ffffff;
    padding: 12px 20px;
    text-align: center;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.announcement-bar .container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.announcement-text {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.announcement-text strong {
    font-weight: 600;
}

.announcement-link {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 500;
    margin-left: 8px;
    transition: opacity 0.3s ease;
}

.announcement-link:hover {
    opacity: 0.8;
    color: #ffffff;
}

.announcement-close {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    padding: 5px 10px;
    transition: opacity 0.3s ease;
    z-index: 1001;
}

.announcement-close:hover {
    opacity: 0.7;
}



@media (max-width: 768px) {
    .announcement-bar {
        padding: 10px 15px;
    }
    
    .announcement-text {
        font-size: 12px;
    }
    
    .announcement-close {
        right: 5px;
        font-size: 16px;
    }
}

.vh-70 {
    height: 70vh !important;
}

body {
    font-family: var(--font-family);
    background-color: #fff;
    color: var(--secondary-color);
}

.w-30 {
    width: 30% !important;
}

.w-35 {
    width: 35% !important;
}

.w-40 {
    width: 40% !important;
}

.navbar-toggler {
    border-color: #ffffff;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

html {
    overflow-x: clip;
}

a,
select,
button {
    cursor: pointer;
}

a {
    text-decoration: none;
}

/* Section spacing */
main>section {
    padding-top: 60px;
    padding-bottom: 60px;
}


main>section:first-child {
    padding-top: 0;
}

/* Section titles spacing */
section h2 {
    margin-bottom: 30px;
}

section h2+p {
    margin-bottom: 40px;
}

/* Container spacing inside sections */
section .container {
    padding-top: 20px;
    padding-bottom: 20px;
}

section .row {
    margin-bottom: 30px;
}

section .row:last-child {
    margin-bottom: 0;
}

.navbar {
    background-color: var(--primary-color);
}

.navbar-brand,
.nav-link:not(.nav-link-btn) {
    color: #ffffff !important;
}

.navbar .nav-link-btn {
    background-color: #ffffff;
    color: var(--primary-color) !important;
    border-radius: 25px;
    padding: 13px 20px !important;
    font-weight: light;
    font-size: 16px;
}

.navbar ul {
    gap: 15px;
}

.hero-section.bg-hero-section {
    position: relative;
    overflow: hidden;
    height: 80vh;
    /* background-color: var(--primary-color); */
}

.hero-section ul li {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 3px;
    font-weight: lighter;
}

.hero-section ul {
    padding-left: 0px;
    list-style: none;
}

.hero-section.bg-hero-section::before {
    /* display: none; */
    content: "";
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 100vh;
    background-color: var(--primary-color);
    transform: rotate(-10deg);
    z-index: -1;
}

.hero-section h1,
.hero-section h3 {
    color: #ffffff;
}

.hero-section h1 {
    text-align: start;
    font-size: 40px;
}

.hero-section h3 {
    text-align: start;
    font-size: 22px;
    font-weight: lighter;
}

.hero-section .btn {
    background-color: #ffffff;
    color: var(--primary-color);
    border-radius: 25px;
    padding: 13px 30px;
    font-size: 17px;
    font-weight: light;
    /* margin-top: 30px; */
    display: inline-block;
    text-align: start;
}

.support-section .support-title {
    color: var(--primary-color);
    font-size: 35px;
}

.support-section .support-pill {
    color: var(--secondary-color);
    border: 1px solid var(--border-color);
    padding: 15px 30px;
    border-radius: 25px;
    margin: 5px;
    display: inline-block;
    font-size: 16px;
    flex-shrink: 0;
    font-weight: lighter;
}

.support-section .support-pills-row {
    display: flex;
    gap: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    justify-content: center;
    width: 100%;
}

.support-section .support-pills-row .pills-wrapper {
    display: flex;
    gap: 10px;
}

.support-section .support-pills-row .pills-wrapper.scroll-right {
    animation: scrollRight 30s linear infinite;
}

.support-section .support-pills-row .pills-wrapper.scroll-left {
    animation: scrollLeft 30s linear infinite;
}

@keyframes scrollRight {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollLeft {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.support-section .support-info a {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 15px 20px;
    border-radius: 25px;
    font-size: 16px;
    text-decoration: none;
    font-weight: light;
    width: fit-content;
}

.support-section .support-info a:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transition: all 0.3s ease;
}

.support-section .support-info p,
.support-section .support-info h2 {
    text-align: start;
}

.support-section .support-info p {
    /* margin-bottom: 15px; */
    font-size: 16px;
    line-height: 1.5;
    font-weight: lighter;
}

.support-section .support-info h2 {
    /* margin-bottom: 20px; */
    color: var(--primary-color);
}

.monitor-tabs {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.monitor-tab-btn {
    position: relative;
    color: var(--secondary-color);
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 10px 35px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-family);
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
    overflow: hidden;
}

.monitor-tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.monitor-tab-btn:hover::before {
    left: 100%;
}

.monitor-tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(205, 156, 83, 0.25);
}

.monitor-tab-btn.active {
    background: linear-gradient(145deg, var(--primary-color), #b8884a);
    color: #ffffff;
    border-color: var(--primary-color);
    /* box-shadow: 0 4px 12px rgba(205, 156, 83, 0.35); */
    transform: translateY(-1px);
}

.monitor-tab-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.monitor-3d-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    padding: 10px 0;
}

.monitor-flip {
    position: relative;
    width: 100%;
    max-width: 600px;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border-radius: 12px;
}

.monitor-flip.show-back {
    transform: rotateY(180deg);
}

.monitor-face {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /* backface-visibility: hidden;
    -webkit-backface-visibility: hidden; */
    transition: opacity 0.4s ease-in-out;
}

.monitor-face.front {
    z-index: 2;
}

.monitor-face.back {
    z-index: 1;
    opacity: 0;
}

.monitor-flip.show-back .monitor-face.front {
    opacity: 0;
    z-index: 1;
}

.monitor-flip.show-back .monitor-face.back {
    opacity: 1;
    z-index: 2;
}

.monitor-face img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.features-section {
    margin-top: 100px;
}

.features-section .features-title,
.features-section .feature-highlight .feature-title {
    text-align: center;
    color: var(--primary-color);
}

.features-section p,
.features-section .feature-highlight .feature-description {
    text-align: center;
    font-size: 16px;
    color: var(--secondary-color);
    margin-top: 10px;
    text-align: center;
}

.features-section .features-list {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 20px;
}

.features-section .features-list .feature-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.features-section .features-description {
    font-weight: lighter;
    font-size: 20px;
}

.features-section .features-title {
    font-size: 35px;
}

.features-section .features-list .feature-item span {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 15px 13px;
    border-radius: 12px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.features-section .features-list .feature-item span i {
    font-size: 25px;
}

.features-section .features-list .feature-item .feature-title {
    margin-top: 30px;
    font-size: 20px;
}

.features-section .features-list .feature-item .feature-description {
    font-size: 16px;
    font-weight: lighter;
}

.features-section .feature-highlight span {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 11px 10px;
    border-radius: 12px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

.features-section .feature-highlight span i {
    font-size: 18px;
}

.features-section .feature-highlight .feature-description {
    font-size: 16px;
    font-weight: lighter;
    line-height: 1.5;
    margin-top: 20px;
}

.features-section .feature-highlight .feature-title {
    margin-top: 20px;
    font-size: 20px;
}

.features-section .feature-highlight hr {
    margin-top: 20px;
    border: 1px solid var(--border-color);
}


.features-section .features-cards {
    /* gap: 1px; */
}


.features-section .features-cards .feature-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
    border-bottom-right-radius: 18px;
}

.features-section .features-cards .feature-card h3 {
    color: var(--primary-color);
    font-size: 20px;
    text-align: left;
    padding: 20px;
}

.features-section .features-cards .feature-card p {
    color: var(--secondary-color);
    font-weight: lighter;
    font-size: 16px;
    text-align: left;
    padding: 0px 20px;
    margin-bottom: 20px;
}

.customers-section .customers-title {
    color: var(--primary-color);
    font-size: 35px;
}

.customers-section p {
    font-size: 20px;
    color: var(--secondary-color);
    margin-top: 10px;
    font-weight: lighter;
}

.customers-section .customers-logos .row {
    justify-content: center;
    align-items: center;
}


.testimonial-section .testimonial-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.testimonial-section .testimonial-title {
    text-align: start;
    font-size: 30px;
    margin-top: 20px;
}

.testimonial-section .testimonial-description {
    text-align: start;
    font-weight: lighter;
    font-size: 17px;
}

.plans-section .plans-title {
    text-align: center;
    font-size: 35px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.plans-section .plan-description {
    font-weight: lighter;
}

.plans-section .plans-cards .plan-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.plans-section .plans-cards .plan-card h3 {
    color: var(--secondary-color);
    font-size: 18px;
    margin-bottom: 10px;
}

.plans-section .plans-cards .plan-card p {
    color: var(--secondary-color);
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: lighter;
}

.plans-section .plans-cards .plan-card h2 {
    color: var(--secondary-color);
    font-size: 24px;
    margin-bottom: 10px;
}

.plans-section .plans-cards .plan-card a {
    color: #ffffff;
    background-color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
}

.plans-section .plans-cards .plan-card ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    line-height: 35px;
}

.plans-section .plans-cards .plan-card ul li::before {
    content: '\f00c';
    font-family: "Font Awesome 7 Pro";
    /* or 5 Free */
    font-weight: 900;
    /* required for solid icons */
    color: var(--primary-color);
    margin-right: 8px;
}

.plans-section .plans-cards .plan-card ul li {
    font-size: 14px;
    font-weight: lighter;
}

.plans-section .plans-cards .plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(205, 156, 83, 0.2);
}

.plans-section .plans-cards .plan-card span {
    font-weight: lighter;
}

.plans-section .plan-bg {
    width: 108%;
    z-index: -1;
    top: 20%;
    left: -2%;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.plans-section .plans-details .plan-select {
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 16px;
    color: var(--secondary-color);
    width: 10%;
    font-weight: light;
    text-align: center;
}

.plans-section .plan-details-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #F7F9FC;
    margin-bottom: 0px !important;
}

.plans-section .plan-details-table thead {
    background-color: #ffffff;
}

.plans-section .plan-details-table thead th {
    padding: 15px 20px;
    font-weight: 600;
    color: var(--secondary-color);
    border-bottom: 0px;
    text-align: center;
}

.plans-section .plan-details-table thead th:first-child {
    text-align: left;
    width: 15%;
}

.plans-section .plan-details-table thead th:not(:first-child) {
    text-align: center;
    width: 10%;
}

.plans-section .plan-details-table tbody {
    background-color: #F7F9FC;
}

.plans-section .plan-details-table tbody td {
    padding: 12px 20px;
    color: var(--secondary-color);
    background-color: #F7F9FC;
    border-bottom: 0px;
    text-align: center;
}

.plans-section .plan-details-table tbody td:not(:first-child) {
    text-align: center;
    width: 10%;
}

.plans-section .plan-details-table tbody td:first-child {
    text-align: left;
    width: 15%;
}

.plans-section .plan-details-table tbody tr:last-child td {
    border-bottom: none;
}

.plans-section .table-title {
    color: var(--primary-color);
    text-align: center;
    font-size: 20px;
}

.plans-section .plans-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.faq-section .faq-title {
    color: var(--primary-color);
    font-size: 30px;
    margin-bottom: 40px;
}

.faq-section .faq-accordion {
    background-color: #F7F9FC;
    padding: 40px;
    border-radius: 0;
    box-shadow:
        0 0 60px 20px rgba(247, 249, 252, 0.8),
        0 0 100px 40px rgba(247, 249, 252, 0.6),
        0 0 140px 60px rgba(247, 249, 252, 0.4),
        0 0 180px 80px rgba(247, 249, 252, 0.2),
        0 0 220px 100px rgba(247, 249, 252, 0.1);
}

.faq-section .accordion {
    gap: 20px;
    display: flex;
    flex-direction: column;
}

.faq-section .accordion-item {
    border: 0px;
    background-color: #ffffff;
    border-radius: 25px !important;
    box-shadow: 0 2px 10px rgba(247, 249, 252, 1);
    overflow: hidden;
    margin-bottom: 0;
}

.faq-section .accordion-item:first-of-type,
.faq-section .accordion-item:last-of-type {
    border-radius: 25px !important;
}

.faq-section .accordion-item:first-of-type>.accordion-header .accordion-button {
    border-radius: 15px;
}

.faq-section .accordion-button {
    background-color: #ffffff;
    color: var(--secondary-color);
    font-weight: 500;
    padding: 20px 25px;
    border: none;
    position: relative;
    padding-right: 60px;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: #ffffff;
    color: var(--secondary-color);
    box-shadow: none;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border: none;
}

/* Hide default arrow */
.faq-section .accordion-button::after {
    display: none;
}

/* Add custom plus icon */
.faq-section .accordion-button::before {
    content: '\2b';
    font-family: "Font Awesome 7 Pro";
    font-weight: 600;
    position: absolute;
    right: 20px;
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed)::before {
    content: '\f068';
    transform: rotate(0deg);
}

.faq-section .accordion-body {
    padding: 20px 25px;
    background-color: #ffffff;
    color: var(--secondary-color);
    font-weight: lighter;
    text-align: justify;
}

.videos-section .videos-title {
    color: var(--primary-color);
    font-size: 35px;
}

.videos-section .videos-cards {
    /* gap: 10px; */
}

.videos-section .videos-cards .video-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: #f8f8f8;
    padding: 30px 20px;
    border-radius: 12px;
}

.videos-section .videos-cards .video-card h3 {
    color: var(--secondary-color);
    font-size: 18px;
    margin: 0;
}

.videos-section .videos-cards .video-card p {
    color: var(--secondary-color);
    font-size: 16px;
    margin: 0;
    font-weight: lighter;
}

.videos-section .videos-cards .video-card iframe {
    border-radius: 10px;
}

.contact-section .container {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 50px;
}

.contact-section .contact-title {
    color: var(--primary-color);
    font-size: 35px;
}

.contact-section p {
    font-size: 16px;
    color: var(--secondary-color);
    margin-top: 10px;
    text-align: center;
    font-weight: lighter;
}

.contact-section .contact-form .form-check-label {
    font-weight: lighter;
}

.contact-section .contact-form a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 400 !important;
    margin-left: 3px;
}


.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    border-radius: 8px;
    padding: 10px 50px;
    font-size: 14px;
}

.btn-primary:hover {
    background-color: #b8884a;
    border-color: #b8884a;
    color: #ffffff;
}

.btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(205, 156, 83, 0.5);
}

.btn-primary:active {
    background-color: #a6753e !important;
    border-color: #a6753e !important;
    color: #ffffff !important;
}

.contact-section .contact-form .form-control {
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.contact-section .contact-form .form-control:focus {
    box-shadow: none;
    border: 1px solid var(--primary-color);
}

.contact-section .contact-form .form-check-label {
    font-size: 14px;
    color: var(--secondary-color);
}

.contact-section .contact-form .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.contact-section .contact-form .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(205, 156, 83, 0.5);
}

footer {
    background-color: var(--primary-color);
    padding: 70px;
    margin-top: 40px;
    color: #ffffff;
}

footer .container {
    display: flex;
    justify-content: space-between;
}

footer h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

footer p,
footer span {
    font-size: 16px;
}

footer p {
    font-weight: lighter;
}

footer a {
    font-weight: lighter;
    color: #ffffff;
}

footer .fa-brands {
    color: #ffffff;
}

footer .footer-credits {
    margin-top: 40px;
    font-size: 16px;
    color: #ffffff;
    font-weight: lighter;
}

/* ===================================
   RESPONSIVE MEDIA QUERIES
   =================================== */

/* Mobile */
@media (max-width: 576px) {
    /* Section spacing */

    .d-lg-block{
        display: none !important;
    }

    .navbar img {
        height: 60px;
    }

    main>section {
        padding-top: 40px;
        padding-bottom: 40px;
        overflow-x: hidden;
    }

    .customers-section{
        padding-bottom: 0px!important;
    }

    .support-section{
        padding-top: 0px!important;
    }

    /* Typography */
    section h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    section h2+p {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .w-30 {
        width: fit-content !important;
    }

    .w-40 {
        width: fit-content !important;
    }

    /* Hero section */
    .hero-section.bg-hero-section {
        height: auto;
        min-height: 70vh;
        background-color: var(--primary-color);
        overflow: hidden;
    }

    .hero-section.bg-hero-section::before {
        display: none;
    }

    .hero-section .d-flex {
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .hero-section h1 {
        font-size: 28px;
        text-align: center;
        order: 0;
    }

    .hero-section ul {
        text-align: justify;
    }

    .hero-section h3 {
        font-size: 16px;
        text-align: center;
        order: 1;
    }

    .hero-section .container {
        flex-direction: column !important;
        text-align: center;
    }

    .hero-section img {
        width: 100%;
        height: auto;
        margin-top: 20px;
        order: 2;
    }

    /* .hero-section .btn {
    } */

    .vh-70,
    .vh-100 {
        height: auto !important;
    }

    /* Support section */
    .support-section {
        height: auto !important;
    }

    .support-section .support-info .d-flex {
        flex-direction: column !important;
        gap: 30px;
    }

    .support-section .support-title {
        font-size: 30px;
    }

    .support-section .support-info h2:not(.support-h2-2),
    .support-section .support-info p:not(.support-p-2) {
        text-align: center !important;
    }

    .support-section .support-h2-2 {
        font-size: 30px;
        text-align: left;
    }

    .support-section .support-p-2 {
        font-size: 18px !important;
        text-align: left;
    }

    /* .support-section .support-info a {
        margin: 0 auto;
    } */

    .support-section .support-pill {
        font-size: 17px;
        padding: 18px 20px;
    }

    .support-section .support-section-text {
        text-align: left !important;
    }

    .support-section .support-text-container {
        padding: 20px;
    }

    /* Monitor tabs */
    .monitor-3d-container {
        padding: 5px 0;
    }

    .monitor-flip {
        max-width: 370px;
    }

    .monitor-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }

    .monitor-tab-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .features-section {
        margin-top: 0px;
    }

    /* Features section */
    .features-section .features-title {
        font-size: 28px;
    }

    .features-section .features-list {
        padding: 30px 15px;
    }

    .features-section .features-list .feature-item {
        margin-bottom: 30px;
    }

    .features-section .feature-item .feature-title {
        font-size: 22px !important;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .features-section .feature-item .feature-description {
        font-size: 16px !important;
    }

    .features-section .feature-highlight .feature-title {
        font-size: 22px;
    }

    .features-section .feature-highlight .feature-description {
        font-size: 16px;
    }

    .features-section .d-flex[style*="gap:6rem"] {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .features-section .feature-highlight h3,
    .features-section .feature-highlight p {
        text-align: left !important;
    }

    .features-section .feature-highlight span {
        /* margin: 0 auto; */
    }

    .features-section .feature-highlights {
        padding: 30px;
    }

    .features-section .features-list .feature-item span i {
        font-size: 20px;
    }

    .features-section .feature-highlight span i {
        font-size: 20px;
    }

    .features-section .feature-highlight .feature-title a {
        break-before: void;
    }

    .features-section .features-cards {
        flex-direction: column !important;
    }

    .features-section .features-cards .feature-title {
        font-size: 25px !important;
    }

    .features-section .features-cards .feature-description {
        font-size: 18px !important;
    }

    .features-section .features-cards .feature-card {
        margin-bottom: 20px;
    }

    .features-section .features-cards .feature-card img {
        width: 100%;
        height: auto;
    }

    .customers-section .customers-title {
        font-size: 35px !important;
    }

    .customers-section p {
        font-size: 20px !important;
    }

    .customers-section .customers-logos {
        position: relative;
        padding: 30px 0;
    }

    .customers-section .customers-logos img {
        max-width: 200px;
        width: auto;
        height: auto;
        margin: 0 auto;
        display: block;
    }

    .customers-section .customers-logos .row.img-slider {
        padding: 0;
        margin: 0;
    }

    .customers-section .customers-logos .row.img-slider>div {
        display: inline-block;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }

    .owl-carousel .owl-item img {
        max-width: 200px !important;
        max-height: 200px !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain;
    }

    /* Plans section */
    .plans-section .plans-title {
        font-size: 30px;
    }

    .plans-section .plan-description {
        font-size: 20px;
    }

    .plans-section .plans-cards {
        flex-direction: column !important;
    }

    .plans-section .plans-cards .plan-card {
        margin-bottom: 20px;
        border: 1px solid var(--border-color);
    }

    .plans-section .plans-cards .plan-card h3 {
        font-size: 30px;
    }

    .plans-section .plans-cards .plan-card h2 {
        font-size: 25px;
    }

    .plans-section .plans-cards .plan-card p {
        font-size: 18px;
    }

    .plans-section .plans-cards .plan-card a {
        font-size: 16px;
    }

    .plans-section .plans-cards .plan-card ul li {
        font-size: 16px;
    }

    .plans-section .plan-bg {
        display: none;
    }

    .plans-section .plans-details .plan-select {
        width: 35%;
    }

    .plans-section .plan-details-table {
        font-size: 12px;
    }

    .plans-section .plan-details-table thead th,
    .plans-section .plan-details-table tbody td {
        padding: 8px 10px;
    }

    /* FAQ section */
    .faq-section .faq-title {
        font-size: 28px;
    }

    .faq-section .faq-accordion {
        padding: 15px;
    }

    .faq-section .accordion-button {
        padding: 12px 55px 12px 15px;
        font-size: 16px;
    }

    .faq-section .accordion-button::before {
        width: 28px;
        height: 28px;
        font-size: 12px;
        right: 15px;
    }

    .faq-section .accordion-body {
        padding: 12px 15px;
        font-size: 15px;
    }

    /* Videos section */
    .videos-section .videos-title {
        font-size: 30px;
    }

    .videos-section .videos-cards {
        flex-direction: column !important;
    }

    .videos-section .videos-cards .video-card {
        margin-bottom: 20px;
    }

    .videos-section .videos-cards .video-card h3 {
        font-size: 22px;
    }

    .videos-section .videos-cards .video-card p {
        font-size: 16px;
    }

    .videos-section .videos-cards .video-card iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }

    /* Contact section */
    .contact-section .contact-title {
        font-size: 28px;
    }

    .contact-section p {
        font-size: 16px;
    }

    .contact-section {
        padding: 20px 15px;
        margin-top: 0px !important;
    }

    .contact-section input:not(.form-check-input) {
        padding: 14px 15px !important;
    }

    .contact-section .form-check-input {
        padding: 9px 10px !important;
        margin-right: 10px !important;
    }

    .contact-section .mb-3 {
        text-align: center !important;
    }

    .contact-section .container {
        padding: 20px 15px;
    }

    .contact-section .form-check-label {
        font-size: 13px !important;
    }

    .contact-section button {
        font-size: 15px !important;
    }


    /* Testimonial section */
    .testimonial-section .row {
        flex-direction: column-reverse !important;
        padding: 20px;
    }

    .testimonial-section .testimonial-title {
        font-size: 28px;
        text-align: left !important;
    }

    .testimonial-section .testimonial-description {
        font-size: 18px;
        text-align: left !important;
    }

    .testimonial-section .testimonial-logo {
        /* margin: 0 auto 20px; */
        max-width: 250px;
    }

    .testimonial-section .text-end:not(.order-1) {
        text-align: left !important;
    }

    .testimonial-section .text-end.order-1 {
        text-align: center !important;
    }

    .testimonial-section .text-end img {
        width: 350px;
    }

    /* Footer */
    footer {
        padding: 40px 20px;
    }

    footer .container {
        flex-direction: column !important;
        gap: 30px;
    }

    footer h3 {
        font-size: 22px;
    }

    footer p,
    footer span,
    footer a {
        font-size: 16px;
    }

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

/* Tablet */
@media (min-width: 577px) and (max-width: 768px) {

    /* Section spacing */
    main>section {
        padding-top: 45px;
        padding-bottom: 45px;
        overflow-x: hidden;
    }

    .w-30 {
        width: 55% !important;
    }

    .w-40 {
        width: 55% !important;
    }

    /* Hero section */
    .hero-section.bg-hero-section {
        height: auto;
        min-height: 65vh;
        background-color: var(--primary-color);
        overflow: hidden;
    }

    .hero-section.bg-hero-section::before {
        display: none;
    }

    .hero-section h1 {
        font-size: 30px;
        text-align: center;
    }

    .hero-section h3 {
        font-size: 17px;
        text-align: center;
    }

    .hero-section .container {
        flex-direction: column !important;
        text-align: center;
    }

    .hero-section img {
        width: 100%;
        height: auto;
        margin-top: 20px;
    }

    /* Support section */
    .support-section {
        height: auto !important;
    }

    .support-section .support-info .d-flex {
        flex-direction: column !important;
        gap: 30px;
    }

    .support-section .support-info h2,
    .support-section .support-info p {
        text-align: center !important;
    }

    .support-section .support-info a {
        margin: 0 auto;
    }

    .support-section .support-pill {
        font-size: 13px;
        padding: 10px 22px;
    }

    /* Monitor tabs */
    .monitor-3d-container {
        padding: 10px 0;
    }

    .monitor-flip {
        max-width: 470px;
    }

    .monitor-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }

    .monitor-tab-btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    /* Features section */
    .features-section .features-list {
        padding: 30px 15px;
    }

    .features-section .features-list .feature-item {
        margin-bottom: 30px;
    }

    .features-section .d-flex[style*="gap:6rem"] {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .features-section .feature-highlight h3,
    .features-section .feature-highlight p {
        text-align: center !important;
    }

    .features-section .feature-highlight span {
        margin: 0 auto;
    }

    .features-section .features-cards {
        flex-direction: column !important;
    }

    .features-section .features-cards .feature-card {
        margin-bottom: 20px;
    }

    /* Plans section */
    .plans-section .plans-cards {
        flex-direction: column !important;
    }

    .plans-section .plans-cards .plan-card {
        margin-bottom: 20px;
    }

    .plans-section .plan-bg {
        display: none;
    }

    .plans-section .plans-details .plan-select {
        width: 100%;
    }

    .plans-section .plan-details-table {
        font-size: 13px;
    }

    .plans-section .plan-details-table thead th,
    .plans-section .plan-details-table tbody td {
        padding: 10px 12px;
    }

    /* FAQ section */
    .faq-section .faq-accordion {
        padding: 20px;
    }

    .faq-section .accordion-button {
        padding: 14px 48px 14px 18px;
        font-size: 14px;
    }

    .faq-section .accordion-body {
        padding: 14px 18px;
        font-size: 14px;
    }

    /* Videos section */
    .videos-section .videos-cards {
        flex-direction: column !important;
    }

    .videos-section .videos-cards .video-card {
        margin-bottom: 20px;
    }

    .videos-section .videos-cards .video-card iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }

    /* Contact section */
    .contact-section .container {
        padding: 28px 18px;
    }

    /* Testimonial section */
    .testimonial-section .row {
        flex-direction: column-reverse !important;
    }

    .testimonial-section .testimonial-title {
        font-size: 26px;
        text-align: center !important;
    }

    .testimonial-section .testimonial-description {
        text-align: center !important;
    }

    .testimonial-section .testimonial-logo {
        margin: 0 auto 20px;
    }

    /* Footer */
    footer {
        padding: 40px 20px;
    }

    footer .container {
        flex-direction: column !important;
        gap: 30px;
    }
}

/* Laptop */
@media (min-width: 769px) and (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    /* Hero section */
    .hero-section h1 {
        font-size: 34px;
    }

    .hero-section h3 {
        font-size: 19px;
    }

    .hero-section .hero-image {
        max-width: 100%;
        height: auto;
    }

    .w-30 {
        width: 50% !important;
    }

    .w-40 {
        width: 50% !important;
    }

    .w-35 {
        width: 45% !important;
    }

    /* Support section */
    .support-section .support-title {
        font-size: 30px;
    }

    .support-section .support-pill {
        font-size: 14px;
        padding: 12px 25px;
    }

    /* Monitor tabs */
    .monitor-tabs {
        flex-wrap: wrap;
        gap: 12px;
    }

    .monitor-tab-btn {
        padding: 10px 30px;
        font-size: 13px;
    }

    .monitor-3d-container {
        padding: 10px 0;
    }

    .monitor-flip {
        max-width: 520px;
    }

    /* Features section */
    .features-section .feature-item h3 {
        font-size: 18px;
    }

    .features-section .feature-item p {
        font-size: 14px;
    }

    .features-section .features-cards .feature-card {
        padding: 25px 20px;
    }

    /* Plans section */
    .plans-section .plan-card {
        padding: 25px 20px;
    }

    .plans-section .plan-card h3 {
        font-size: 24px;
    }

    .plans-section .plan-details-table {
        font-size: 13px;
    }

    /* FAQ section */
    .faq-section .accordion-button {
        font-size: 15px;
        padding: 16px 50px 16px 25px;
    }

    .faq-section .accordion-body {
        font-size: 14px;
    }

    /* Videos section */
    .videos-section .videos-cards .video-card {
        flex: 0 0 calc(50% - 15px);
    }

    /* Contact section */
    .contact-section .container {
        padding: 35px 25px;
    }

    /* Navigation */
    .navbar .nav-link-btn {
        padding: 11px 18px !important;
        font-size: 15px;
    }

    .navbar ul {
        gap: 12px;
    }

    .vh-70,
    .vh-100 {
        height: auto !important;
    }
}

/* Desktop */
@media (min-width: 993px) and (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    .hero-section h1 {
        font-size: 38px;
    }

    .hero-section h3 {
        font-size: 21px;
    }

    .support-section .support-title {
        font-size: 33px;
    }

    .support-section .support-pill {
        font-size: 15px;
        padding: 13px 28px;
    }

    .monitor-3d-container {
        height: 480px;
    }

    .features-section .features-cards .feature-card {
        padding: 28px 22px;
    }

    .plans-section .plan-card {
        padding: 28px 22px;
    }
}

/* Large desktop */
@media (min-width: 1201px) and (max-width: 1399px) {
    .container {
        max-width: 1140px;
    }

    .w-40 {
        width: fit-content !important;
    }

    /* Hero section */

    .hero-section img {
        width: auto;
        height: 300px;
    }

    /* Support section */
    .support-section .support-title {
        font-size: 36px;
    }

    .support-section .support-pill {
        font-size: 15px;
        padding: 14px 30px;
    }

    /* Monitor tabs */
    .monitor-tabs {
        gap: 15px;
    }

    .monitor-tab-btn {
        padding: 11px 35px;
        font-size: 14px;
    }

    .monitor-3d-container {
        width: 100%;
        padding: 10px 0;
    }

    .monitor-flip {
        max-width: 600px;
    }

    .features-section .container {
        margin-top: 100px;
    }

    /* Features section */
    .features-section .features-cards {
        margin-top: 100px;
    }

    .features-section .features-title {
        font-size: 37px;
    }

    .features-section .features-list {
        padding: 40px 25px;
    }

    .features-section .features-list .feature-item {
        margin-bottom: 35px;
    }

    .features-section .features-list .feature-item span i {
        font-size: 28px;
    }

    .features-section .row {
        margin-bottom: 30px;
    }

    .features-section .features-cards .feature-card {
        /* padding: 30px 24px; */
    }

    .features-section .features-cards .feature-card h3 {
        font-size: 20px;
    }

    /* Customers section */
    .customers-section .customers-title {
        font-size: 37px;
    }

    .customers-section p {
        font-size: 22px;
    }

    /* Plans section */
    .plans-section .plans-title {
        font-size: 37px;
    }

    .plans-section .plan-description {
        font-size: 18px;
    }

    .plans-section .plans-cards .plan-card {
        padding: 30px 24px;
    }

    .plans-section .plans-cards .plan-card h3 {
        font-size: 20px;
    }

    .plans-section .plans-cards .plan-card h2 {
        font-size: 28px;
    }

    .plans-section .plan-details-table {
        font-size: 14px;
    }

    .plans-section .plan-select {
        width: 25% !important;
    }


    /* FAQ section */
    .faq-section .faq-title {
        font-size: 32px;
    }

    .faq-section .faq-accordion {
        padding: 45px;
    }

    .faq-section .accordion-button {
        font-size: 16px;
        padding: 18px 55px 18px 28px;
    }

    .faq-section .accordion-button::before {
        width: 36px;
        height: 36px;
        right: 22px;
    }

    .faq-section .accordion-body {
        padding: 18px 28px;
        font-size: 15px;
    }

    /* Videos section */
    .videos-section .videos-title {
        font-size: 37px;
    }

    .videos-section .videos-cards .video-card {
        gap: 18px;
        padding: 35px 24px;
    }

    .videos-section .videos-cards .video-card h3 {
        font-size: 20px;
    }

    .videos-section .videos-cards .video-card p {
        font-size: 17px;
    }

    .videos-cards>.video-card:nth-child(1) .iframe-div {
        height: 250px;
        display: flex;
        align-items: flex-end;
    }

    .videos-cards>.video-card:nth-child(2) .iframe-div {
        height: 225px;
        display: flex;
        align-items: flex-end;
    }

    .videos-cards>.video-card:nth-child(3) .iframe-div {
        height: 250px;
        display: flex;
        align-items: flex-end;
    }

    .videos-cards>.video-card:nth-child(4) .iframe-div {
        height: 225px;
        display: flex;
        align-items: flex-end;
    }

    .videos-section iframe {
        width: 230px;
    }

    /* Contact section */
    .contact-section .contact-title {
        font-size: 37px;
    }

    .contact-section p {
        font-size: 18px;
    }

    .contact-section .container {
        padding: 55px;
    }

    /* Testimonial section */
    .testimonial-section .testimonial-title {
        font-size: 32px;
    }

    .testimonial-section .testimonial-description {
        font-size: 18px;
    }

    .testimonial-section .testimonial-logo {
        max-width: 220px;
    }

    /* Navigation */
    .navbar .nav-link-btn {
        padding: 13px 22px !important;
        font-size: 16px;
    }

    .navbar ul {
        gap: 18px;
    }

    /* Footer */
    footer {
        padding: 80px;
    }

    footer h3 {
        font-size: 22px;
    }

    .plans-section .plan-bg {
        width: 108%;
        z-index: -1;
        top: 40%;
        left: -2%;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
    }
}

/* Extra large desktop */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}


.navbar-toggler {
    background-color: white;
    color: var(--primary-color);
    padding: 10px;
}

.navbar-toggler i {
    font-size: 30px;
}

.swal2-confirm {
    background-color: white;
    border-radius: 50px;
    width: auto;
    height: auto;
    font-size: 18px;
    font-weight: 200;
    color: #2c2c2c;
    border: 1px solid #dedede;
}

.swal2-confirm:hover {
    background-color: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
}

div:where(.swal2-icon).swal2-success .swal2-success-ring {
    border: .25em solid var(--primary-color) !important;
}

div:where(.swal2-icon).swal2-success {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

div:where(.swal2-icon).swal2-success [class^=swal2-success-line] {
    background-color: var(--primary-color) !important;
}

div:where(.swal2-icon).swal2-warning {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

div:where(.swal2-icon).swal2-error {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

div:where(.swal2-icon).swal2-error [class^=swal2-x-mark-line] {
    background-color: var(--primary-color) !important;
}

div:where(.swal2-icon).swal2-error [class^=swal2-x-mark-line] {
    background-color: var(--primary-color) !important;
}

.swal2-modal {
    width: 600px !important;
}

/* div:where(.swal2-icon).swal2-success [class^=swal2-success-line]::after{
    background-color: var(--primary-color)!important;
} */


header.container {
    background-color: #1e1950;
    color: white;
    text-align: center;
    font-size: 14px;
    padding: 6px 10px;
    width: 100%;
    max-width: 100%;
}

#head.head {
    position: sticky;
    top: 0;
    min-height: 10vh;
    background-color: var(--primary-color);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 60px;
    box-shadow: none !important;
    transition: box-shadow 180ms ease, backdrop-filter 180ms ease, background-color 180ms ease;
}

#head.head.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
}


header p {
    margin: 0;

}

.logo {
    width: 225px;
    height: auto;
}

.menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.mobile-menu {
    display: none;
}

.menu-item a {
    text-decoration: none;
    color: #201c44;
    font-weight: 400;
    font-size: 17px;

}

.cta-button {
    background-color: #17abe0;
    color: white;
    border: none;
    padding: 14px 47px;

    border-radius: 100px;
    font-size: 17px;
    font-weight: 500 !important;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #1f3785;
    scale: 1.05;
}

/* .headcontainer {
    max-width: 1488px;
    flex-direction: row;
    display: flex;
    justify-content: space-between;
} */

@media (min-width: 290px) and (max-width: 360px) {
    .cta-button {
        font-size: 16px;
    }
}

@media (min-width: 913px) and (max-width: 1150px) {
    #head.head {
        padding: 15px 19px;
    }

    .menu {
        gap: 15px;
    }

    .logo {
        width: 186px;
    }

    .menu-item a {
        font-size: 15px;
    }
}


@media (max-width: 912px) {
    .menu {
        display: none;
    }

    .mobile-menu {
        display: block;
    }
}

@media (max-width: 912px) {
    #head.head {
        padding: 15px 28px;
        min-height: 11vh !important;
    }

    .menu {
        display: none;
    }

    .logo {
        width: 180px;
    }

    .mobile-menu-icon {
        display: block;
        background-color: #fff;
        color: var(--primary-color);
        padding: 8px 11px;
        font-size: 20px;
        border-radius: 5px;
    }

    .mobile-menu .menu-item .nav-link {
        color: var(--primary-color) !important;
    }

    .mobile-menu .menu-item .nav-link-btn {
        color: white !important;
        background-color: var(--primary-color) !important;
        border-radius: 50px !important;
        padding: 10px 0px !important;
        width: 62%;
    }

    .mobile-menu .menu-item:has(.nav-link-btn) {
        display: flex;
        justify-content: center;
    }

    /* .mobile-menu-icon svg {
  
  font-size: 28px !important;
  color: #0a913d !important;
} */

    .mobile-menu-modal {
        display: none;
        position: fixed;
        z-index: 999;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100vw;
        background-color: rgba(0, 0, 0, 0.7);
    }

    .modal-content {
        background-color: #fff;
        width: 80%;
        margin: 100px auto;
        padding: 30px;
        border-radius: 10px;
        text-align: center;
    }

    .close-modal {
        font-size: 28px;
        font-weight: bold;
        position: absolute;
        top: 20px;
        right: 30px;
        cursor: pointer;
        color: #000;
    }

    .modal-content .menu-item {
        margin: 15px 0;
    }


}

.head .container {
    padding: 0px !important;
}

/* Pricing Toggle Switch Styles */
.pricing-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.toggle-label {
    font-size: 16px;
    font-weight: 500;
    color: #999;
    transition: all 0.3s ease;
}

.toggle-label.active {
    color: var(--primary-color);
    font-weight: 600;
}

.pricing-toggle-switch {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 28px;
    margin: 0;
}

.pricing-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    transition: 0.4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.pricing-toggle-switch input:checked + .toggle-slider {
    background-color: var(--primary-color);
}

.pricing-toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.pricing-toggle-switch input:focus + .toggle-slider {
    box-shadow: 0 0 1px var(--primary-color);
}


.learnMore:active{
    background-color: rgb(255, 255, 255)!important;
    color: var(--primary-color)!important;
    font-size: 17px;
    display: inline-block;
    text-align: start;
    border-radius: 25px;
    padding: 13px 30px;
    border-color: unset;
}





@media (min-width: 767px) and (max-width: 770px){
    .w-30{
        width: 45% !important;
    }
}