:root {
    --pcolor: #000066;
    --scolor: #f5f6fa;
    --tcolor: #9a9a9a;
    --fcolor: #333944;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* * {
    outline: 1px solid red;
  } */

body {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* background-color: #2c67e5; */
    color: white;
    transition: background-color 0.3s ease;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

.section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    /* background-color: #00ff8c; */
    /* overflow: hidden; */
}

.container.cont {
    width: 100%;
}


.background-image-section {
    background-size: cover;
    /* Makes sure the background covers the container */
    background-repeat: no-repeat;
    /* Prevents the background from repeating */
    background-position: center;
    /* Centers the background image */
    padding-top: 30px;
    /* height: 200vh; */
}

.card-subtitle {
    background-color: #f0f4ff;
    color: #052b78;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    padding: 5px 10px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 10px;
}

/* ------------------------------------------------ */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f9f9fb;
    border-bottom: 1px solid #ddd;
}

.navbar .logo {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

.navbar .logo span {
    color: #5765f2;
}

.navbar .nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    position: relative;
}

.navbar .nav-links a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
}

.navbar .nav-links .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f9f9fb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    border-radius: 10px;
    list-style: none;
    padding: 10px;
    z-index: 1000;
}

.navbar .nav-links li:hover .dropdown {
    display: block;
}


.navbar .nav-links .dropdown a {
    display: block;
    padding: 5px 10px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
}

.dropdown:hover .nav-links {
    color: red;
}


.navbar .nav-links .dropdown a:hover {
    background-color: #5765f2;
    color: #fff;
}

.navbar .cta {
    display: flex;
    gap: 10px;
}

.navbar .cta button {
    background-color: #5765f2;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
}

.navbar .cta button a {
    text-decoration: none;
    color: white;
}

.navbar .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.navbar .hamburger div {
    width: 25px;
    height: 3px;
    background-color: black;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: #f9f9fb;
    border-top: 1px solid #ddd;
    padding: 10px 20px;
}

.mobile-menu a {
    text-decoration: none;
    color: black;
    font-size: 16px;
}



/* --------------------------------------------------------------------- */
.hero-main-section {
    position: relative;
    background-size: cover;
    background-position: center;
    /* height: 100vh; */
    display: flex;
    /* Use flexbox for layout */
    justify-content: center;
    /* Horizontally center content */
    text-align: center;
    /* Center text alignment */
    align-items: flex-start;
    z-index: 0;
}

.hero-sub-section {
    text-align: center;
    padding: 40px 20px;
}

h1 {
    line-height: 1.2;
}

.hero-sub-section-top-heading {
    text-align: center;
    /* Centers the text horizontally */
    padding: 10px;
    /* Optional: Adds some padding for spacing */
    margin-bottom: 30px;
    font-size: 24px;
}

.hero-sub-section-top-heading-text {
    background-color: #002165;
    /* Background color only on the text */
    color: white;
    font-weight: 400;
    border-radius: 6px;
    font-style: italic;
    font-size: 14px;
    padding: 10px 15px;
    /* Adds some padding around the text */
    display: inline-block;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
}

.hero-sub-section h1 {
    font-size: 65px;
    font-weight: 350;
    line-height: 1.2;
    color: white;
    margin-top: -10px;
    margin-bottom: 15px;
}

.hero-sub-section .highlight {
    background: linear-gradient(to right,
            white,
            #07baf3);
    /* Gradient from left to right */
    -webkit-background-clip: text;
    /* Ensures the gradient is clipped to the text */
    -webkit-text-fill-color: transparent;
    /* Makes the text transparent, showing the gradient */
    background-clip: text;
    /* For non-webkit browsers */
}

.hero-sub-section p {
    font-size: 19px;
    line-height: 30px;
    font-weight: 400;
    color: white;
}

.hero-button {
    display: inline-block;
    background-color: #052b78;
    color: white;
    cursor: pointer;
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 250;
    margin-top: 30px;
    width: max-content;
    z-index: 2;
}

.hero-button1 {
    display: inline-block;
    background-color: white;
    color: #052B78;
    cursor: pointer;
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 250;
    margin-top: 30px;
    width: max-content;
    z-index: 2;
}

.hero-button1:hover {
    background-color: #0073e6;
    color: white;
    text-decoration: none;
}

.hero-button1.promo {
    display: inline-block;
    background-color: white;
    color: #052B78;
    cursor: pointer;
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 250;
    margin-top: 30px;
    width: max-content;
    z-index: 2;
}

.hero-button1.promo:hover {
    background-color: #0073e6;
    color: white;
    text-decoration: none;
}



.hero-button1 i {
    margin-left: 12px;
    font-size: 16px;
}

.hero-button:hover {
    background-color: #07baf3;
    text-decoration: none;
}

.hero-button i {
    margin-left: 12px;
    font-size: 16px;
}

/* Responsive styles */
/* Default styles for larger screens (e.g., desktops) are already defined */

/* Medium screens (e.g., tablets, small laptops) */

/* Small screens (e.g., large mobile phones, smaller tablets) */

/* Extra small screens (e.g., mobile phones) */

/* Ultra small screens (e.g., very small phones) */


/* ----------------------------------------- video container ---------------------------------------------- */

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 888px;
    height: 500px;
    margin: 0 auto;
    /* Centers the container horizontally */
}

.play-button {
    position: absolute;
    top: 50%;
    left: 51%;
    transform: translate(-50%, -50%);
    padding: 100px;
    /* background-color: black; */
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

/* Responsive styles */
/* Default styles for larger screens are already defined */

/* Medium screens (e.g., tablets, small laptops) */

/* Small screens (e.g., large mobile phones, smaller tablets) */

/* Extra small screens (e.g., mobile phones) */

/* Ultra small screens (e.g., very small phones) */

/* ----------------------------------------------solution container-------------------------------------------- */

.solutions-section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: bold;
    color: black;
    text-align: center;
}

.solutions-section-title span {
    color: #052b78;
}

/* Grid Layout */
.solutions-grid {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;

}

/* Card Styles */
.solutions-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px 20px;

    text-align: center;
    box-shadow: 0px 0px 10px 1px rgba(94, 191, 235, 0.4);
    transition: all ease 0.1s;
}

.solutions-card:hover {
    box-shadow: 0px 1px 30px 10px rgba(94, 191, 235, 0.4);

}

.icon-container1 {
    font-size: 3rem;
    color: #052b78;
}

.solutions-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.solutions-card img {
    height: 130px;
}

.solutions-card p {
    font-size: 1rem;
    color: #555;
}



/* Responsive Design */

/* Responsive Design */

/* Medium Screens (Tablets) */


/* Small Screens (Mobile) */

/* Extra Small Screens (Mobile Portrait) */



/* ---------------------------------------------- logos container ----------------------------------------- */

.dark-background {
    /* margin-top: 10px; */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
}

.logo-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right,
            transparent,
            white 5%,
            white 95%,
            transparent);
    -webkit-mask-image: linear-gradient(to right,
            transparent,
            white 5%,
            white 95%,
            transparent);
}

.logo-row {
    display: flex;
    align-items: center;
    white-space: nowrap;
    margin-top: 10px;
    height: 100px;
}

.logo-row img {
    height: 150px;
    width: auto;
    margin: 0 30px;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.scroll-right {
    animation: scrollRight 20s linear infinite;
}

.scroll-left {
    animation: scrollLeft 20s linear infinite;
}

/* Responsive styles */
/* Default styles for larger screens */

/* Medium screens (e.g., tablets, small laptops) */

/* Small screens (e.g., large mobile phones, smaller tablets) */

/* Extra small screens (e.g., mobile phones) */

/* Ultra small screens (e.g., very small phones) */


/* ------------------------------------------------ stats ------------------------------------------------ */

.sec3 {
    background-color: #052b78;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 6px rgba(121, 116, 116, 0.5);
    padding: 10px 100px;
    /* margin-top: -200px; */
}

.text h2 {
    font-size: 2rem;
    font-weight: medium;
    color: white;
}

.text p {
    margin-top: -20px;
    font-size: 1.2em;
    font-weight: 350;
    color: white;
    line-height: 1.5;
}

.stats {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
    color: #01a9de;
    gap: 75px;
    padding: 10px 0 50px;
    border-top: 2px solid transparent;
    /* Optional to adjust padding */
}

.stats-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    /* To place the border */
}

.purecounter {
    font-size: 6rem;
}

.purecounter-symbol {
    font-size: 4rem;
}

.stats-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -37.5px;
    /* Half of the gap to center the line */
    height: 100%;
    width: 2px;
    background-color: #2c68e5;
}

.stats-item p {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 700;
    /* color: #01a9de; */
}

.counter-container {
    display: flex;
    align-items: baseline;
}


/* Responsive styles */

/* Default styles for larger screens */

/* Medium screens (e.g., tablets, small laptops) */

/* Small screens (e.g., large mobile phones, smaller tablets) */

/* Extra small screens (e.g., mobile phones) */

/* Ultra small screens (e.g., very small phones) */


/* ///////////////////////////////////////////////////////////
  10. apps
  /////////////////////////////////////////////////////////// */
.apps-area {
    background: #f2f8fd;
    padding-top: 100px;
    display: flex;
    justify-content: center;
    border-radius: 12px;
}

.apps-icon {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    /* Create 8 equal columns */
    margin: 0 auto;
    /* Center the grid container */
    margin-bottom: 25px;
    gap: 20px;
    padding: 0 30px;
}

.apps-icon-item {
    animation: bounce 2s infinite;
    /* Use the new bounce animation */
}

.apps-icon-item:nth-child(even) {
    animation-delay: 1s;
    /* Stagger the animation for even items */
}

/* New bounce animation */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
        /* Start and end at original position */
    }

    50% {
        transform: translateY(-10px);
        /* Move up by 10px at the midpoint */
    }
}

.apps-content {
    text-align: center;
}

.apps-content h2 {
    font-size: 44px;
    font-weight: 700;
    color: black;
    line-height: 1.2;
    letter-spacing: -1.76px;
    margin-bottom: 15px;
}

.apps-content p {
    font-size: 16px;
    font-weight: 350;
    line-height: 22px;
    margin-bottom: 45px;
}

.apps-shape-1 {
    position: absolute;
    left: 5%;
    top: 40%;
    z-index: -2;
}

.apps-shape-2 {
    position: absolute;
    left: calc(10% + 8px);
    bottom: 0px;
}

.apps-shape-3 {
    position: absolute;
    left: 0;
    bottom: 0;
}

.apps-shape-4 {
    position: absolute;
    bottom: 185px;
    right: calc(21% - 12px);
}

.apps-shape-5 {
    position: absolute;
    right: calc(9% + 7px);
    top: 50%;
    transform: translateY(-50%);
}

.apps-shape-6 {
    position: absolute;
    right: calc(13% + 3px);
    bottom: 115px;
}

/* Animation for the icons */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
        /* Scale up to 110% */
    }

    100% {
        transform: scale(1);
    }
}


/* Default styles for larger screens */

/* Medium screens (e.g., tablets, small laptops) */

/* Small screens (e.g., large mobile phones, smaller tablets) */

/* Extra-small screens (e.g., mobile phones) */



/* -----------------------------------section 4 -------------------------------- */

.service-heading {
    text-align: center;
    font-size: 1.5em;
}



.service-container {
    display: flex;
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-sizing: border-box;
    background-color: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.sidebar {
    border-radius: 10px 0px 0px 10px;
    width: 320px;
    flex-shrink: 0;
    color: #fff;
    padding: 30px 20px;
    background-color: #052b78;
}

.sidebar h2 {
    position: relative;
    /* Make sure the pseudo-element is positioned relative to the heading */
    font-size: 16px;
    padding-left: 10px;
    margin-top: 20px;
    /* Top margin */
    margin-bottom: 30px;
    color: #b6c7f9;
}

.sidebar h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    /* Adjust if necessary to match the text-underline-offset */
    width: calc(100% + 10px);
    /* Extend underline 50px beyond text */
    height: 1px;
    /* Thickness of the underline */
    background-color: #b6c7f9;
    /* Color of the underline */
}

.sidebar .service-option {
    margin-bottom: 20px;
    padding: 15px 10px;
    cursor: pointer;
    width: 100%;
    font-weight: normal;
    border-radius: 5px;
    position: relative;
    color: #fff;
    transition: width 0.3s ease, padding-right 0.3s ease;
    box-sizing: border-box;
}

.sidebar .service-option.service-active {
    background-color: white !important;
    color: black !important;
    font-weight: bold;
}

.sidebar .service-option i {
    position: absolute;
    right: 20px;
    /* Distance from the right side of the .option */
    opacity: 0;
    /* Hide icon by default */
    transition: opacity 0.3s ease-in-out;
    /* Smooth opacity transition */
    font-size: 16px;
    /* Adjust icon size as needed */
}

.sidebar .service-option.service-active i {
    opacity: 1;
    /* Show icon when option is active */
    color: black;
    /* Icon color when active */
}

/* ------------------------presentation carousel---------------------------------- */
/* Carousel Container */



/* --------------------------------------------------lock ------------------------ */

.sidebar .service-option-lock {
    margin-bottom: 20px;
    padding: 15px 10px;
    cursor: pointer;
    width: 100%;
    opacity: 0.6;
    font-weight: lighter;
    border-radius: 5px;
    position: relative;
    color: #fff;
    transition: width 0.3s ease, padding-right 0.3s ease;
    box-sizing: border-box;
}

.sidebar .service-option-lock i {
    position: absolute;
    right: 20px;
    /* Distance from the right side of the .option */
    opacity: 1;
    /* Hide icon by default */
    transition: opacity 0.3s ease-in-out;
    /* Smooth opacity transition */
    font-size: 16px;
    /* Adjust icon size as needed */
}

/* Tooltip styling with 'Coming Soon' text */
.sidebar .service-option-lock::after {
    content: "Coming Soon";
    position: absolute;
    top: 50%;
    left: calc(100% - 70px);
    /* Positions tooltip slightly to the right */
    transform: translateY(-50%);
    background-color: black;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.85rem;
    opacity: 0;
    visibility: hidden;
    white-space: nowrap;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1;
}


/* Show tooltip on hover */
.sidebar .service-option-lock:hover::after {
    opacity: 1;
    visibility: visible;
}



/* -----------------------service content ---------------------- */

.content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 20px;
    overflow: hidden;
}

.service-text-content {
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.service-text-content-h1 {
    font-size: 30px;
    font-weight: bold;
    margin-top: 0;
    color: black;
    /* text-align: center; */
}

.service-text-content-p {
    font-size: 20px;
    margin-top: 0px;
    /* font-weight: 500; */
    line-height: 1.5;
    color: #575757;
}

.content-subgrid {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 45px;
    /* padding: 30px; */
}

.subgrid-content {
    box-shadow: 0 0px 6px rgba(0, 0, 0, 0.25);
    padding: 18px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    /* Add transition for smoothness */
}

.subgrid-content:hover {
    transform: translateX(5px);
    /* Move slightly to the right */
}

.content-subgrid h1 {
    font-weight: bold;
    color: black;
    text-align: start;
    margin-left: 20px;
    font-size: 20px;
}

.content-subgrid p {
    font-size: 18px;
    line-height: 1.5;
    color: #575757;
}

.subgrid-subcontent {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.service-icon {
    color: #052b78;
    font-size: 30px;
    background-color: #d7edfa;
    border-radius: 20%;
    padding: 15px;
}

.service-button {
    margin-top: 40px;
}

.service-button button {
    background-color: white;
    color: #043fb7;
    padding: 15px 30px;
    border: 2px solid #043fb7;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    /* Move cursor pointer here */
}

.service-button button:hover {
    background-color: #052b78;
    color: white;
}

/* .service-video {
    margin-top: 20px;
    border-radius: 12px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
  } */

.service-present {
    align-items: start;
}

.service-video {
    width: 100%;
    max-width: 560px;
    border-radius: 12px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
    object-fit: cover;
}

/* Container for image and buttons */
.image-container {
    position: relative;
    display: inline-block;

}



/* Default image styles */
.service-image {
    width: 100%;
    max-width: 560px;
    height: auto;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

/* Maximized image */
.service-image.maximized {
    transform: scale(1.5);
    /* Scale the image */
    z-index: 10;
}

.image.container.maximized {
    transform: scale(1.5);
    /* Scale the image */
    z-index: 10;
}



/* Maximize button styles */
.maximize-button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    z-index: 100;
}

/* Close button styles */
.close-button {
    position: absolute;
    top: -70px;
    right: -100px;
    background-color: rgba(255, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    z-index: 100;
    display: none;
}

/* Display close button when image is maximized */
.service-image.maximized~.close-button {
    display: block;
}

/* Hide maximize button when image is maximized */
.service-image.maximized~.maximize-button {
    display: none;
}


.service-image-container {
    /* background-color: #00ff8c; */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px;
    /* margin-top: 100px; */
    width: 350px;
    /* Set a fixed width */
    height: 450px;
    /* Set a fixed height */
    overflow: hidden;
    /* Hide any overflow of the image */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensure the image covers the container */
    border-radius: 10px;
    /* Optional: Add rounded corners */
}



/* Carousel container */
.carousel {
    width: 100%;
    max-width: 560px;
    height: 315px;
    position: relative;
    margin: auto;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

/* Fullscreen mode */
.carousel.fullscreen {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    max-width: 1200px;
    height: auto;
    background-color: white;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    z-index: 9999;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Individual slide */
.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
}

/* Images inside slides */
.carousel-slide img {
    width: 100%;
    height: auto;
}

/* Navigation buttons */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 100;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Maximize button */
.maximize-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: #000066;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 300;
}

.carousel.fullscreen .maximize-btn {
    display: none;
}

/* Close button for fullscreen mode */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 300;
    display: none;
}

.carousel.fullscreen .close-btn {
    display: block;
}

.carousel1 {
    width: 100%;
    max-width: 560px;
    height: 315px;
    position: relative;
    margin: auto;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

/* Fullscreen mode */
.carousel1.fullscreen {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    max-width: 1200px;
    height: auto;
    background-color: white;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    z-index: 9999;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.carousel-slides1 {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Individual slide */
.carousel-slide1 {
    min-width: 100%;
    box-sizing: border-box;
}

/* Images inside slides */
.carousel-slide1 img {
    width: 100%;
    height: auto;
}

/* Navigation buttons */
.carousel-button1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 100;
}

.prev1 {
    left: 10px;
}

.next1 {
    right: 10px;
}

/* Maximize button */
.maximize-btn1 {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: #000066;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 300;
}

.carousel1.fullscreen .maximize-btn1 {
    display: none;
}

/* Close button for fullscreen mode */
.close-btn1 {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 300;
    display: none;
}

.carousel1.fullscreen .close-btn1 {
    display: block;
}

.card-usecase {
    padding: 30px;
}

/* Fullscreen button styling */
.fullscreen-button {
    display: none;
    position: absolute;
    top: 10px;
    /* Position at the top-right corner */
    right: 10px;
    z-index: 999;
    padding: 10px 20px;
    background-color: rgba(51, 51, 51, 0.8);
    /* Slight transparency */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.fullscreen-button:hover {
    background-color: rgba(51, 51, 51, 1);
    /* Darken on hover */
}

/* Optional: Style for the image container */
.image-container {
    position: relative;
    display: inline-block;
}

/* Fullscreen simulated class for iOS devices */
.fullscreen-simulated {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: black;
    z-index: 1000;
}



/* Responsive styles */



/* -----------------------------------security----------------------------------------------- */
.container1 {
    width: 86%;
    margin: 20px auto;
    padding-right: 40px;
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.2);
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 20px;
}



/* Section 1 (Heading + Image) */
.section1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 20px;
}

.section1 h1 {
    font-size: 24px;
    color: #333;
}

.section1 img {
    height: 370px;
    width: 350px;
    border-radius: 8px;
}

/* Section 2 (Content + Cards) */
.section2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.textt {
    margin-top: 59PX;
    color: black;
    line-height: 1.5;
    font-size: 20px;
}

.cardsss {
    display: flex;
    flex-wrap: wrap;
    margin-top: -20px;
    justify-content: space-between;
}

.carddd {
    flex: 1 1 calc(33.333% - 20px);
    background-color: white;
    border-radius: 8px;
    padding: 12px;

}

.carddd i {
    width: 40px;
    margin-bottom: 10px;

}

.carddd h3 {
    font-size: 18px;
    color: #0073e6;
    margin: 10px 0 5px;
}

.carddd p {
    font-size: 18px;
    color: #555;
    line-height: 1.4;
}

.carddd .security-icon {
    color: #052b78;
    font-size: 25px;
    border-radius: 20%;
    display: inline-block;
    transition: background-color 0.3s, color 0.3s;
}

.carddd .security-icon:hover {
    color: #052b78;

}

.works-heading.privacy {
    margin-top: 80px;
}

/* General Reset for Smaller Screens */


/* Medium Screens (Tablets, Landscape Phones) */



/* Small Screens (Portrait Tablets, Large Phones) */

/* Extra Small Screens (Phones) */


/*  ---------------------  works-updated ---------------------------------------------------------------********* */



.works-heading {
    /* width:90%; */
    margin: auto;
    text-align: center;
    font-weight: 700;
    font-size: 30px;
    padding-top: 20px;
    margin-bottom: 30px;
    line-height: 30px;
    color: #052b78;
}

.works-heading.works {
    font-size: 20px;
}

.works-subheading {
    font-size: 20px;
    color: #575757;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

.works-container {
    display: flex;
    flex-direction: row-reverse;
}

.works-sidebar {
    /* background-color: #01a9de; */
    width: 450px;
    color: black;
    padding: 10px;
}

.works-option {
    padding: 20px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.5s;
}

.works-option.works-active {
    color: black;
    border: 1px solid lightgray;
    /* Match the border with the background */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Add a subtle shadow */
    border-radius: 12px;
}

.works-option.works-active .works-option-heading,
.works-option.works-active .works-option-description {
    color: black;
}

.works-option-heading {
    font-weight: 600;
    color: var(--tcolor);
    margin-bottom: 15px;
    font-size: 20px;
    transition: color 0.5s;
}

.works-option-description {
    color: var(--tcolor);
    font-size: 16px;
    line-height: 20px;
    transition: color 0.5s;
}

.works-content {
    flex-grow: 1;
}

.works-image-section {
    position: relative;
    height: 512px;
    /* background-color:#052b78; */
    width: 100%;
    /* Ensure container takes full width */
}

.works-image-section img {
    position: absolute;
    width: auto;
    /* Ensure images maintain aspect ratio */
}


/* Responsive Styles */



/* ------------------------------------------------ work-1 images ------------------------ */

.image1-middle {
    top: 50%;
    /* Centers the image vertically */
    left: 45%;
    /* Centers the image horizontally */
    transform: translate(-50%, -50%);
    /* Perfect center for the middle image */
    z-index: 1;
    /* Ensures this image is on top */
    height: 500px;
    /* Adjust size */
    border-radius: 12px;
}

.image1-up {
    position: absolute;
    /* Ensure the image can be positioned */
    top: 50px;
    /* Stick to the top */
    right: 40px;
    /* Stick to the right */
    z-index: 2;
    /* Lower than the middle image */
    height: 50px;
    /* Adjust size */
    animation: slide 5s ease-in-out infinite;
    /* Apply animation */
}

.image1-down {
    bottom: 30px;
    /* Stick to the bottom */
    left: 120px;
    /* Stick to the left */
    z-index: 2;
    /* Lower than the middle image */
    height: 180px;
    /* Adjust size */
    animation: slide 5s ease-in-out infinite;
}

@keyframes slide {
    0% {
        transform: translateX(0);
        /* Start position */
    }

    50% {
        transform: translateX(-10px);
        /* Move to the left */
    }

    100% {
        transform: translateX(0);
        /* Return to start position */
    }
}

/* Responsive Styles */



/* ------------------------------------------------ work-2 images ------------------------ */

.image2-middle {
    top: 50%;
    /* Centers the image vertically */
    left: 50%;
    /* Centers the image horizontally */
    transform: translate(-50%, -50%);
    /* Perfect center for the middle image */
    z-index: 1;
    /* Ensures this image is on top */
    height: 500px;
    /* Adjust size */
    border-radius: 12px;
}

.image2-up {
    position: absolute;
    /* Ensure the image can be positioned */
    top: 50px;
    /* Stick to the top */
    left: -30px;
    /* Stick to the right */
    z-index: 2;
    /* Lower than the middle image */
    height: 50px;
    /* Adjust size */
    animation: slide 5s ease-in-out infinite;
    /* Apply animation */
}

.image2-down {
    right: 130px;
    /* Stick to the bottom */
    bottom: 0px;
    /* Stick to the left */
    z-index: 2;
    /* Lower than the middle image */
    height: 180px;
    /* Adjust size */
    animation: slide 5s ease-in-out infinite;
}

@keyframes slide {
    0% {
        transform: translateX(0);
        /* Start position */
    }

    50% {
        transform: translateX(-10px);
        /* Move to the left */
    }

    100% {
        transform: translateX(0);
        /* Return to start position */
    }
}

/* Responsive Styles */



/* ------------------------------------------------ work-3 images ------------------------ */

.image3-middle {
    top: 50%;
    /* Centers the image vertically */
    left: 50%;
    /* Centers the image horizontally */
    transform: translate(-50%, -50%);
    /* Perfect center for the middle image */
    z-index: 1;
    /* Ensures this image is on top */
    height: 500px;
    /* Adjust size */
    border-radius: 12px;
}

.image3-up {
    position: absolute;
    /* Ensure the image can be positioned */
    top: 50px;
    /* Stick to the top */
    left: 50px;
    /* Stick to the right */
    z-index: 2;
    /* Lower than the middle image */
    height: 50px;
    /* Adjust size */
    animation: slide 5s ease-in-out infinite;
    /* Apply animation */
}

.image3-down {
    right: 100px;
    /* Stick to the bottom */
    bottom: 0px;
    /* Stick to the left */
    z-index: 2;
    /* Lower than the middle image */
    height: 180px;
    /* Adjust size */
    animation: slide 5s ease-in-out infinite;
}

@keyframes slide {
    0% {
        transform: translateX(0);
        /* Start position */
    }

    50% {
        transform: translateX(-10px);
        /* Move to the left */
    }

    100% {
        transform: translateX(0);
        /* Return to start position */
    }
}

/* Responsive Styles */



/* ------------------------------------------------ work-4 images ------------------------ */

.image4-middle {
    top: 50%;
    /* Centers the image vertically */
    left: 50%;
    /* Centers the image horizontally */
    transform: translate(-50%, -50%);
    /* Perfect center for the middle image */
    z-index: 1;
    /* Ensures this image is on top */
    height: 500px;
    /* Adjust size */
    border-radius: 12px;
}

.image4-up {
    position: absolute;
    /* Ensure the image can be positioned */
    top: 20px;
    /* Stick to the top */
    right: 100px;
    /* Stick to the right */
    z-index: 2;
    /* Lower than the middle image */
    height: 50px;
    /* Adjust size */
    animation: slide 5s ease-in-out infinite;
    /* Apply animation */
}

.image4-down {
    right: 100px;
    /* Stick to the bottom */
    bottom: 0px;
    /* Stick to the left */
    z-index: 2;
    /* Lower than the middle image */
    height: 180px;
    /* Adjust size */
    animation: slide 5s ease-in-out infinite;
}

@keyframes slide {
    0% {
        transform: translateX(0);
        /* Start position */
    }

    50% {
        transform: translateX(-10px);
        /* Move to the left */
    }

    100% {
        transform: translateX(0);
        /* Return to start position */
    }
}

/* Responsive Styles */



/* ------------------------------------------------ work-5 images ------------------------ */

.image5-middle {
    top: 50%;
    /* Centers the image vertically */
    left: 50%;
    /* Centers the image horizontally */
    transform: translate(-50%, -50%);
    /* Perfect center for the middle image */
    z-index: 1;
    /* Ensures this image is on top */
    height: 500px;
    /* Adjust size */
    border-radius: 12px;
}

.image5-up {
    position: absolute;
    /* Ensure the image can be positioned */
    top: 10px;
    /* Stick to the top */
    right: 70px;
    /* Stick to the right */
    z-index: 2;
    /* Lower than the middle image */
    height: 50px;
    /* Adjust size */
    animation: slide 5s ease-in-out infinite;
    /* Apply animation */
}

.image5-up-2 {
    right: 180px;
    /* Stick to the bottom */
    top: 70px;
    /* Stick to the left */
    z-index: 2;
    /* Lower than the middle image */
    height: 70px;
    /* Adjust size */
    animation: slide 5s ease-in-out infinite;
}

@keyframes slide {
    0% {
        transform: translateX(0);
        /* Start position */
    }

    50% {
        transform: translateX(-10px);
        /* Move to the left */
    }

    100% {
        transform: translateX(0);
        /* Return to start position */
    }
}

/* Responsive Styles */



/* ----------------------------------------------------- network -------------------------------- */

.network-grid-section {
    display: grid;
    grid-template-columns: 60% 40%;
    /* Two equal columns */
    gap: 20px;
    padding: 20px;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.network-text-content {
    text-align: left;
    padding: 20px 0px 20px 20px;
}

.network-text-content h2 {
    color: #052b78;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.network-text-content p {
    font-size: 1.2rem;
    /* width: 15cm; */
    color: black;
    margin-bottom: 40px;
}

.network-image-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.network-image-content img {
    width: auto;
    max-height: 400px;
    object-fit: contain;
    /* Ensures the image fits within its container */
}

.hiw {
    margin-top: 0;
    /* background-color: #01a9de; */
}

.hiwhead {
    /* width:90%; */
    margin: auto;
    text-align: center;
    font-weight: 700;
    font-size: 2em;
    padding-top: 20px;
    margin-bottom: 80px;
    line-height: 30px;
    color: var(--fcolor);
}

.hiwsubhead {
    font-size: 20px;
    color: #9a9090;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

.hiwflex {
    width: 95%;
    margin: auto;
    display: flex;
    /* max-width:1100px; */
    margin-top: -20px;
    justify-content: center;
    margin-bottom: 200px;
}

.hiwfitem {
    width: 50%;
}

.hiwfileft {
    background-image: url("media/screen-1.webp");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: background-image 1s;
}

.hiwfistep {
    padding: 1.5em;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.5s;
}

.hiwfistep1 {
    border: 2px solid var(--scolor);
}

.hiwishead {
    font-weight: 600;
    color: var(--tcolor);
    margin-bottom: 15px;
    font-size: 1.1em;
    transition: color 0.5s;
}

.hiwisdesc {
    color: var(--tcolor);
    font-size: 0.8em;
    line-height: 20px;
    transition: color 0.5s;
}

.hiwfistep1 .hiwishead {
    color: var(--fcolor);
}

.hiwfistep1 .hiwisdesc {
    color: var(--fcolor);
}


/* -------------------------------------------------- works ----------------------------------------------------- */

/* .works-works {
    display: flex;
    flex-direction: column;
    color: #01a9de;
  }
  
  .works-container h1 {
    margin-top: -10px;
    font-size: 2.5em;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .works-subtitle {
    color: black;
    margin-bottom: 30px;
    /* padding: 10px 40px 20px 40px; 
    padding-left: 100px;
    padding-right: 100px;
    font-size: 1.1em;
    font-weight: 400;
  }
  
  .works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .works-card {
    padding: 40px;
    border: 1px #052b78;
    border-radius: 12px;
    background-color: #052b78;
    text-align: left;
    box-shadow: 0 0px 3px rgba(121, 116, 116, 0.5);
    display: grid;
    grid-template-columns: 10% 90%;
    gap: 20px;
    height: 150px;
    transition: border 0.3s; /* Add transition for smooth hover effect 
  }
  
  .works-card:hover {
    box-shadow: 0 0px 6px rgba(121, 116, 116, 0.5); /* Use rgba for more control 
  }
  
  .works-card-content h2 {
    font-size: 1.5rem;
    margin-top: -1px;
  }
  
  .works-card-content p {
    color: white;
    font-size: 1.3em;
  }
  
  .works-step-number {
    display: inline-block;
    background-color: #01a9de;
    color: white;
    border-radius: 12px;
    height: 20px;
    padding: 15px 25px 15px 15px;
    text-align: center;
    font-size: 1em;
    font-weight: 600;
  }
  
  .works-top-subtitle {
    text-align: center;
    font-weight: 600;
  } */

/* ----------------------------------- demo section ---------------------------------------- */

.demo-section {
    display: grid;
    grid-template-columns: 53% 40%;
    /* Equal width for content and image */
    align-items: center;
    gap: 30px;
    /* Space between content and image */
    /* background-color: white; */
    /* padding: 30px; */
    /* border-radius: 12px; */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

/* Content */
.demo-content h1 {
    font-size: 45px;
    font-weight: bold;
    color: #052b78;
    margin-bottom: 20px;
    margin-top: 0;
}

.demo-content h1 span {
    color: #2c68e5;
}

.demo-content p {
    font-size: 18px;
    color: #9a9a9c;
    font-weight: 350;
    line-height: 1.5;
}

.demo-lists {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.demo-list ul {
    list-style: none;
    padding: 0;
}

.demo-list li {
    display: flex;
    align-items: center;
    line-height: 1.5;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: black;
    font-weight: 400;
}

.demo-li-span {
    margin-left: 5px;
    font-weight: 600;
}

.demo-list i {
    margin-right: 10px;
    color: #052B78;
    font-size: 20px;
}

/* Button */
.demo-book-demo {
    padding: 15px 25px;
    background-color: #043fb7;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.demo-book-demo:hover {
    background-color: #052b78;
}

/* Image */
.demo-image-placeholder img {
    width: auto;
    height: 450px;
    object-fit: contain;
    /* background-color: #01a9de; */
    border-radius: 8px;
}


/* Responsive Design for Medium Screens */

/* Responsive Design for Small Screens (Tablets and Mobile) */



/* Responsive Design for Extra Small Screens (Mobile) */

/* <!-- ------------------------------------------------benefits ------------------------------------------- --> */

.benefits-section-title {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: bold;

    color: black;
}

.benefits-section-title span {
    color: #052b78;
}

/* Grid Layout */
.benefits-grid {
    padding: 0px 0px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

/* Card Styles */
.benefit-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px 20px 20px 20px;
    text-align: center;
    box-shadow: 0px 0px 10px 1px rgba(94, 191, 235, 0.4);
    transition: all ease 0.3s;
}

.benefit-card:hover {
    box-shadow: 0px 1px 30px 10px rgba(94, 191, 235, 0.4);
}

.icon-container {
    font-size: 3rem;
    color: #052b78;
}



.benefit-card img {
    height: 130px;
}

.benefit-card p {
    font-size: 1rem;
    color: #555;
    font-weight: normal;
    line-height: normal;
}

/* Responsive Design */

/* Responsive Design */

/* Medium Screens (Tablets) */

/* Small Screens (Mobile) */

/* Extra Small Screens (Mobile Portrait) */

/* <!-- -------------------------------------- benefits promo ---------------------------------------- --> */

.benefits-promo {
    position: relative;
    /* Ensure ::before overlay aligns correctly */
    display: grid;
    grid-template-columns: 60% 40%;
    background-color: #052b78;
    height: 400px;
    padding: 20px 80px;
    border-radius: 12px;
    overflow: hidden;
    /* Prevents overlay from going outside the container */
}

.benefits-promo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.5) 0%,
            transparent 0%,
            transparent 70%,
            rgba(0, 0, 0, 0.5) 100%);
    border-radius: inherit;
    /* Matches the border radius of .benefits-promo */
    pointer-events: none;
    /* Allows interaction with elements underneath */
}

.benefits-promo-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefits-promo h2 {
    font-size: 3rem;
    margin: 0;
    font-weight: bold;
}

.benefits-promo-span {
    color: #07baf3;
}

.benefits-btn:hover {
    color: white;
    border: 2px solid white;
    background-color: #052b78;
}

.benefits-promo-image {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.benefits-promo-image img {
    height: 400px;
    width: auto;
    animation: rotateToAndFro 10s ease-in-out infinite;
    /* Smooth back-and-forth motion */
}

/* When hovering over the button, move the arrow */
.hero-button1:hover .plane-icon {
    transform: translateX(5px);
    /* Move the arrow 5px to the right */
}

@keyframes rotateToAndFro {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(15deg);
        /* Rotate to 15 degrees */
    }

    100% {
        transform: rotate(0deg);
        /* Return to the starting point */
    }
}

/* Responsive Design */

/* Medium Screens (Tablets) */

/* Small Screens (Mobile) */

/* Extra Small Screens (Mobile Portrait) */

/* <!-- ---------------------------------------------- Faq Container ----------------------------------------- --> */

.faqs-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: center;
}

.faq-container {
    align-items: center;
}

.faq-item {
    background-color: #f9f9f9;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    background-color: #eef3fc;
}

.faq-question {
    font-size: 18px;
    font-weight: normal;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    font-size: 40px;
    color: #052b78;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    /* margin-top: 20px; */
    font-size: 16px;
    color: #808080;
    transition: max-height 0.3s ease;
    /* Smooth transition for max-height */
}

.rotate {
    transform: rotate(45deg);
}

.container.faq h1 {
    font-size: 2.5rem;
    color: #052b78;
    text-align: center;
    margin-top: -10px;
}

/* Responsive Design */

/* Tablet screens */

/* Mobile screens */

/* ----------------------------------------------------------- footer ------------------------------------------- */

.footer-section {
    color: #fff;
    padding: 40px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 40px;
}

.footer-background {
    background-color: #052b78;
    position: relative;
}

.footer-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.5) 0%,
            transparent 0%,
            transparent 70%,
            rgba(0, 0, 0, 0.5) 100%);
    border-radius: inherit;
    /* Matches the border radius of .footer-background */
    pointer-events: none;
    /* Allows interaction with elements underneath */
}

.footer-left {
    text-align: start;
}

.footer-left img {
    width: auto;
    height: 35px;
}

.footer-left p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.footer-right {
    display: flex;
    justify-content: space-evenly;
    margin-top: 0;
}

.footer-right h4 {
    font-size: 25px;
    margin-bottom: 10px;
    color: #07baf3;
}

.footer-right ul {
    padding: 0;
    margin: 0;
}

.footer-right li {
    list-style: none;
    font-size: 14px;
    line-height: 2;
}

.footer-right a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-right a:hover {
    color: #07baf3;
}

.links {
    margin-top: 20px;
}

.links a {
    color: white;
    font-size: 20px;
    margin-right: 15px;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.links a:hover {
    text-shadow: 0 0 8px #07baf3, 0 0 12px #07baf3, 0 0 16px #07baf3;
}

/* ==========================================================================
   CONSOLIDATED RESPONSIVE MEDIA QUERIES
   Breakpoints: 1280px → 1024px → 768px → 480px → 320px
   ========================================================================== */

/* --- Desktop-only: hide mobile menu --- */
@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }
}

/* --- Max-width: 1280px — Small desktops / Large tablets --- */
@media (max-width: 1280px) {
    .sidebar {
        margin-bottom: 20px;
        flex: 0 0 auto;
    }
    .sidebar .service-option {
        width: 100%;
    }
    .service-text-content {
        padding: 20px;
    }
    .service-text-content-h1 {
        font-size: 24px;
    }
    .service-text-content-p {
        font-size: 14px;
    }
    .content-subgrid {
        gap: 30px;
    }
    .content-subgrid h1 {
        font-size: 18px;
    }
    .content-subgrid p {
        font-size: 14px;
    }
    .service-image-container {
        width: 100%;
        height: auto;
        margin: 20px 0;
    }
}

/* --- Max-width: 1024px — Tablets landscape --- */
@media (max-width: 1024px) {
    /* Navbar */
    .navbar .nav-links .dropdown {
        left: -100px;
    }

    /* Hero */
    .hero-main-section {
        padding: 20px;
    }
    .hero-sub-section h1 {
        font-size: 48px;
        margin-bottom: 10px;
    }
    .hero-sub-section p {
        font-size: 18px;
        line-height: 28px;
    }
    .hero-button,
    .hero-button1 {
        padding: 12px 25px;
        font-size: 15px;
    }

    /* Video */
    .video-container {
        max-width: 700px;
        height: 400px;
    }
    .play-button {
        padding: 80px;
        font-size: 18px;
    }

    /* Solutions */
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .solutions-section-title {
        font-size: 2rem;
    }
    .solutions-card h3 {
        font-size: 1.2rem;
    }
    .solutions-card img {
        height: 110px;
    }

    /* Logos */
    .dark-background {
        height: 120px;
    }
    .logo-container {
        width: 90%;
    }
    .logo-row img {
        height: 120px;
        margin: 0 20px;
    }
    .scroll-right,
    .scroll-left {
        animation-duration: 15s;
    }

    /* Stats */
    .sec3 {
        padding: 10px 50px;
    }
    .text h2 {
        font-size: 2rem;
    }
    .text p {
        font-size: 1em;
    }
    .stats {
        gap: 50px;
        padding: 10px 0 30px;
    }
    .purecounter {
        font-size: 5rem;
    }
    .purecounter-symbol {
        font-size: 3.5rem;
    }
    .stats-item:not(:last-child)::after {
        right: -25px;
    }
    .stats-item p {
        font-size: 16px;
    }

    /* Apps */
    .apps-area {
        padding-top: 80px;
    }
    .apps-icon {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        padding: 0 20px;
    }
    .apps-content h2 {
        font-size: 36px;
    }
    .apps-content p {
        font-size: 14px;
        line-height: 20px;
    }
    .apps-shape-1,
    .apps-shape-2,
    .apps-shape-3,
    .apps-shape-4,
    .apps-shape-5,
    .apps-shape-6 {
        display: none;
    }

    /* Service sidebar */
    .service-container {
        flex-direction: row;
        max-width: 100%;
        overflow: hidden;
    }
    .sidebar {
        border-radius: 10px 0px 0px 10px;
        width: 220px;
        min-width: 220px;
        flex-shrink: 0;
        color: #fff;
        padding: 10px;
        background-color: #052b78;
    }
    .sidebar .service-option {
        width: 100%;
    }
    .sidebar .service-option-lock {
        width: 100%;
        margin-right: 0;
    }
    .service-content {
        flex: 1;
        min-width: 0;
        overflow: hidden;
    }
    .content-grid {
        grid-template-columns: 1fr;
    }
    .card-usecase {
        width: 100%;
        box-sizing: border-box;
        padding: 30px;
    }
    .service-text-content {
        padding: 30px;
    }
    .service-text-content-h1 {
        font-size: 24px;
    }
    .service-text-content-p {
        font-size: 14px;
    }
    .content-subgrid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px;
    }
    .content-subgrid h1 {
        font-size: 18px;
    }
    .content-subgrid p {
        font-size: 14px;
    }
    .service-image-container {
        width: 100%;
        height: auto;
        margin: 20px 0;
    }

    /* Security */
    .container1 {
        width: 84%;
        padding: 20px;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .section1 h1 {
        font-size: 27px;
        margin-top: 30px;
    }
    .section1 img {
        height: 400px;
        width: 400px;
        margin-top: 30px;
    }
    .section2 {
        gap: 15px;
    }
    .section2 .textt {
        text-align: center;
    }
    .cardsss {
        gap: 15px;
    }
    .carddd {
        flex: 1 1 100%;
        text-align: center;
    }
    .carddd h3 {
        font-size: 14px;
    }
    .carddd p {
        font-size: 12px;
    }

    /* Works */
    .works-container {
        flex-direction: column-reverse;
    }
    .works-image-section {
        order: -1;
        margin-bottom: 20px;
    }
    .works-sidebar {
        width: 100%;
        text-align: center;
    }

    /* Demo */
    .demo-section {
        grid-template-columns: 1fr;
    }
    .demo-content h1 {
        font-size: 2.8rem;
    }
    .demo-content p {
        font-size: 16px;
    }
    .demo-lists {
        gap: 20px;
    }
    .demo-book-demo {
        font-size: 1.1rem;
        padding: 12px 20px;
    }
    .demo-image-placeholder img {
        height: 350px;
    }

    /* Benefits */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .benefits-section-title {
        font-size: 2rem;
    }
    .benefit-card h3 {
        font-size: 1.2rem;
    }
    .benefit-card img {
        height: 110px;
    }

    /* Benefits Promo */
    .benefits-promo {
        grid-template-columns: 1fr;
        height: auto;
        padding: 20px 40px;
    }
    .benefits-promo-content {
        align-items: center;
        text-align: center;
    }
    .benefits-promo h2 {
        font-size: 2.5rem;
    }
    .benefits-btn {
        font-size: 18px;
    }
    .benefits-promo-image {
        justify-content: center;
    }
    .benefits-promo-image img {
        height: 300px;
    }

    /* Network */
    .network-grid-section {
        grid-template-columns: 1fr;
    }
    .network-text-content h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    .network-text-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .network-image-content img {
        max-height: 300px;
    }

    /* HIW */
    .hiwflex {
        display: none;
    }
}

/* --- Max-width: 768px — Tablets portrait / Large phones --- */
@media (max-width: 768px) {
    /* Navbar */
    .navbar .nav-links,
    .navbar .cta {
        display: none;
    }
    .navbar .hamburger {
        display: flex;
    }

    /* Hero */
    .hero-sub-section h1 {
        font-size: 36px;
        line-height: 1.2;
    }
    .hero-sub-section p {
        font-size: 16px;
        line-height: 26px;
    }
    .hero-button,
    .hero-button1 {
        padding: 10px 20px;
        font-size: 14px;
    }
    .hero-sub-section-top-heading-text {
        font-size: 16px;
        padding: 8px 12px;
    }

    /* Video */
    .video-container {
        max-width: 500px;
        height: 300px;
    }
    .video-element {
        margin-top: 50px;
    }
    .video-thumbnail {
        margin-top: 50px;
    }
    .play-button {
        padding: 60px;
        font-size: 16px;
    }

    /* Solutions */
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .solutions-section-title {
        font-size: 1.8rem;
    }
    .solutions-container .works-heading {
        margin-top: 40px;
    }
    .solutions-card h3 {
        font-size: 1.1rem;
    }
    .solutions-card p {
        font-size: 0.9rem;
    }
    .solutions-card img {
        height: 90px;
    }
    .section-title {
        font-size: 2rem;
    }

    /* Logos */
    .dark-background {
        height: 100px;
    }
    .logo-container {
        width: 100%;
    }
    .logo-row {
        height: 80px;
    }
    .logo-row img {
        height: 100px;
        margin: 0 15px;
    }
    .scroll-right,
    .scroll-left {
        animation-duration: 12s;
    }

    /* Stats */
    .sec3 {
        padding: 10px 30px;
    }
    .text h2 {
        font-size: 1.8rem;
    }
    .text p {
        font-size: 0.9em;
    }
    .stats {
        flex-direction: column;
        gap: 30px;
        padding: 20px 0 20px;
    }
    .purecounter {
        font-size: 4rem;
    }
    .purecounter-symbol {
        font-size: 3rem;
    }
    .stats-item:not(:last-child)::after {
        content: none;
    }
    .stats-item p {
        font-size: 14px;
    }

    /* Apps */
    .apps-area {
        padding-top: 60px;
        margin-top: 0;
    }
    .apps-icon {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 0 10px;
    }
    .apps-content h2 {
        font-size: 28px;
    }
    .apps-content p {
        font-size: 12px;
        line-height: 18px;
    }

    /* Services */
    .service-container {
        flex-direction: column;
    }
    .sidebar {
        min-width: 100%;
        width: 100%;
        margin-bottom: 0;
        flex: 0 0 auto;
        border-radius: 10px 10px 0px 0px;
        overflow: hidden;
    }
    .sidebar .service-option {
        width: 97%;
    }
    .sidebar .service-option-lock {
        width: 97%;
        margin-right: 0;
    }
    .sidebar .service-option-lock::after {
        display: none;
    }
    .service-content {
        width: 100%;
        overflow: hidden;
    }
    .content-grid {
        grid-template-columns: 1fr;
    }
    .card-usecase {
        width: 100%;
        box-sizing: border-box;
        padding: 30px;
    }
    .service-image {
        cursor: default;
        width: 100%;
        height: auto;
    }
    .service-video {
        width: 100%;
        height: auto;
    }
    .service-text-content {
        padding: 15px;
    }
    .service-text-content-p {
        font-size: 15px;
    }
    .carousel {
        width: 100%;
        height: 280px;
    }
    .carousel.fullscreen {
        transform: scale(1.2);
        z-index: 200;
        background-color: transparent;
    }
    .carousel1 {
        width: 100%;
        height: 280px;
    }
    .carousel1.fullscreen {
        transform: scale(1.2);
        z-index: 200;
        background-color: transparent;
    }

    /* Security */
    .container1 {
        width: 84%;
        padding: 20px;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .section1 h1 {
        font-size: 27px;
        margin-top: 30px;
    }
    .section1 img {
        height: 350px;
        width: 350px;
        margin-top: 30px;
    }
    .section2 .textt {
        text-align: center;
    }
    .cardsss {
        gap: 15px;
    }
    .carddd {
        flex: 1 1 100%;
        text-align: center;
    }
    .carddd h3 {
        font-size: 14px;
    }
    .carddd p {
        font-size: 12px;
    }

    /* Works */
    .works-container {
        flex-direction: column;
    }
    .works-sidebar {
        width: 100%;
        margin-bottom: 20px;
    }
    .works-option {
        padding: 15px;
    }
    .works-heading {
        font-size: 24px;
    }
    .works-subheading {
        font-size: 16px;
    }
    .works-option-heading {
        font-size: 1em;
    }
    .works-option-description {
        font-size: 0.7em;
    }
    .works-image-section {
        height: auto;
    }

    /* Work images */
    .image1-middle {
        height: 300px;
        top: 50%;
    }
    .image1-up {
        height: 40px;
        top: 30px;
        right: 20px;
    }
    .image1-down {
        height: 120px;
        left: 70px;
        top: auto;
        bottom: 20px;
    }
    .image2-middle {
        height: 300px;
        top: 50%;
    }
    .image2-up {
        height: 40px;
        top: 30px;
        left: -20px;
    }
    .image2-down {
        height: 120px;
        right: 70px;
        top: auto;
        bottom: 20px;
    }
    .image3-middle {
        height: 300px;
        top: 50%;
    }
    .image3-up {
        height: 40px;
        left: 40px;
    }
    .image3-down {
        height: 120px;
        right: 70px;
        top: auto;
        bottom: 20px;
    }
    .image4-middle {
        height: 300px;
        top: 50%;
    }
    .image4-up {
        height: 40px;
        top: 50px;
        right: 70px;
    }
    .image4-down {
        height: 120px;
        right: 50px;
        top: auto;
        bottom: 20px;
    }
    .image5-middle {
        height: 300px;
        top: 50%;
    }
    .image5-up {
        height: 40px;
        top: 2px;
        right: 50px;
    }
    .image5-up-2 {
        height: 50px;
        top: 60px;
        right: 170px;
    }

    /* Demo */
    .demo-section {
        padding: 20px;
    }
    .demo-content h1 {
        font-size: 2.5rem;
    }
    .demo-content p {
        font-size: 15px;
    }
    .demo-lists {
        flex-direction: column;
    }
    .demo-book-demo {
        font-size: 1rem;
        padding: 10px 18px;
    }
    .demo-image-placeholder img {
        height: 300px;
    }

    /* Benefits */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .benefits-section-title {
        font-size: 1.8rem;
    }
    .benefit-card h3 {
        font-size: 1.1rem;
    }
    .benefit-card p {
        font-size: 0.9rem;
    }
    .benefit-card img {
        height: 90px;
    }

    /* Benefits Promo */
    .benefits-promo {
        padding: 20px;
    }
    .benefits-promo h2 {
        font-size: 2rem;
    }
    .benefits-btn {
        font-size: 16px;
        padding: 12px 20px;
    }
    .benefits-promo-image img {
        height: 250px;
    }

    /* FAQ */
    .faqs-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .faq-question {
        font-size: 16px;
    }
    .faq-question i {
        font-size: 20px;
    }
    .faq-answer {
        font-size: 15px;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 40% 60%;
        gap: 40px;
    }
    .footer-left,
    .footer-right {
        margin: 0 auto;
    }
    .footer-right {
        flex-direction: row;
        margin-right: 40px;
        gap: 40px;
    }
    .footer-right h4 {
        font-size: 22px;
    }
    .footer-left p {
        font-size: 13px;
    }
    .footer-right li {
        font-size: 13px;
    }

    /* Network */
    .network-grid-section {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .network-text-content {
        padding: 15px;
    }
    .network-text-content h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    .network-image-content img {
        max-height: 250px;
    }
}

/* --- Max-width: 480px — Mobile phones --- */
@media (max-width: 480px) {
    /* General */
    .section {
        margin-top: 40px;
    }

    /* Hero */
    .hero-main-section {
        align-items: center;
    }
    .hero-sub-section h1 {
        font-size: 29px;
        margin-bottom: 8px;
        margin-top: 20px;
    }
    .hero-sub-section p {
        font-size: 14px;
        line-height: 24px;
    }
    .hero-sub-section {
        padding: 20px;
    }
    .hero-button,
    .hero-button1 {
        padding: 8px 18px;
        font-size: 14px;
    }
    .hero-sub-section-top-heading-text {
        font-size: 12px;
        padding: 6px 10px;
    }

    /* Video */
    .video-container {
        max-width: 90%;
        height: 220px;
    }
    .video-element {
        margin-top: 0px;
    }
    .video-thumbnail {
        margin-top: 0px;
    }
    .play-button {
        padding: 40px;
        font-size: 14px;
    }

    /* Solutions */
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .solutions-section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    .solutions-card h3 {
        font-size: 1rem;
    }
    .solutions-card p {
        font-size: 0.85rem;
    }
    .solutions-card img {
        height: 80px;
    }
    .solutions-container .works-heading {
        margin-top: 0;
    }

    /* Logos */
    .dark-background {
        height: 80px;
    }
    .section.logos {
        margin-top: 20px;
    }
    .logo-row img {
        height: 80px;
        margin: 0 10px;
    }
    .scroll-right,
    .scroll-left {
        animation-duration: 10s;
    }

    /* Stats */
    .sec3 {
        padding: 10px 20px;
    }
    .text h2 {
        font-size: 1.5rem;
    }
    .text p {
        font-size: 0.8em;
    }
    .stats {
        gap: 20px;
    }
    .purecounter {
        font-size: 3rem;
    }
    .purecounter-symbol {
        font-size: 2.5rem;
    }
    .stats-item p {
        font-size: 12px;
    }

    /* Apps */
    .apps-area {
        margin-top: 0px;
    }
    .section.apparea {
        margin-top: 20px;
    }
    .apps-icon {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 0 5px;
    }
    .apps-content h2 {
        font-size: 24px;
    }
    .apps-content p {
        font-size: 14px;
        line-height: 16px;
    }

    /* Services */
    .sidebar .service-option-lock::after {
        top: 80%;
        left: calc(20%);
        transform: translateX(-50%);
        width: 50px;
        font-size: 8px;
    }
    .section.usecase {
        margin-top: 10px;
    }
    .works-heading.usecase {
        padding-top: 0px;
    }
    .sidebar .service-option {
        width: 90%;
        margin-left: 7px;
    }
    .sidebar {
        border-radius: 10px 10px 0px 0px;
        padding: 0;
        overflow: hidden;
    }
    .sidebar .service-option-lock::after {
        display: none;
    }
    .card-usecase {
        padding: 30px;
    }
    .service-heading {
        font-size: 1.2em;
    }
    .sidebar h2 {
        font-size: 16px;
    }
    .content-grid {
        display: flex;
        flex-direction: column;
    }
    .service-text-content-h1 {
        font-size: 20px;
    }
    .service-text-content-p {
        font-size: 12px;
        width: 100%;
    }
    .content-subgrid {
        margin: 10px;
        display: flex !important;
        flex-direction: column !important;
        gap: 15px;
    }
    .content-subgrid p {
        font-size: 16px;
    }
    .subgrid-content {
        height: auto;
        min-height: 140px;
    }
    .content-subgrid h1 {
        font-size: 16px;
    }
    .service-button {
        display: flex;
        justify-content: center;
    }
    .service-button button {
        font-size: 16px;
        padding: 10px 20px;
    }
    .service-text-content p {
        font-size: 16px;
    }
    .service-video {
        width: 100%;
        height: 220px;
    }
    .service-image {
        cursor: default;
        margin-top: 20px;
        width: 100%;
        height: auto;
    }
    .service-image.maximized {
        width: 100%;
        height: auto;
    }
    .close-button {
        left: 0px;
    }
    .service-image-container {
        margin: 10px;
    }
    .service-content-text {
        width: 100%;
    }
    .use-btn {
        margin-left: 33%;
        margin-bottom: 30px;
        margin-top: 0px;
    }

    /* Carousel mobile */
    .carousel {
        width: 100%;
        height: 220px;
    }
    .carousel-button {
        top: 37%;
    }
    .maximize-btn {
        bottom: 30px;
        font-size: 10px;
        right: 6px;
        padding: 6px;
    }
    .close-btn {
        top: 8px;
        font-size: 10px;
        right: 5px;
        padding: 6px;
    }
    .next {
        font-size: 10px;
        right: 8px;
        padding: 5px;
    }
    .prev {
        font-size: 10px;
        left: 8px;
        padding: 5px;
    }
    .carousel.fullscreen {
        transform: scale(1.2);
        z-index: 200;
        background-color: transparent;
    }
    .carousel1 {
        width: 100%;
        height: 220px;
    }
    .carousel-button1 {
        top: 37%;
    }
    .maximize-btn1 {
        bottom: 25px;
        font-size: 10px;
        right: 0px;
        padding: 6px;
    }
    .close-btn1 {
        top: 0px;
        font-size: 10px;
        right: 0px;
        padding: 6px;
    }
    .carousel1.fullscreen {
        transform: scale(1.2);
        z-index: 200;
        background-color: transparent;
    }

    /* Security */
    .container1 {
        width: 85%;
        padding: 20px;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .section1 h1 {
        font-size: 18px;
    }
    .section1 img {
        height: 250px;
        width: 250px;
        margin-top: 5px;
    }
    .cardsss {
        gap: 10px;
    }
    .carddd h3 {
        font-size: 16px;
    }
    .carddd p {
        font-size: 14px;
    }
    .carddd .security-icon {
        font-size: 20px;
    }
    .works-heading.privacy {
        margin-top: 15px;
        font-size: 20px;
    }
    .textt {
        margin-top: 5px;
        font-size: 18px;
    }

    /* Works */
    .works-heading.works {
        font-size: 20px;
    }
    .section.works {
        margin-top: 10px;
    }
    .works-subheading {
        font-size: 16px;
    }
    .works-sidebar {
        padding: 5px;
    }
    .works-option {
        padding: 10px;
    }
    .works-option-heading {
        font-size: 16px;
    }
    .works-option-description {
        font-size: 14px;
    }
    .works-image-section {
        height: 300px;
        margin-bottom: 0px;
    }

    /* Work images */
    .image1-middle {
        height: 230px;
        top: 150px;
    }
    .image1-up {
        height: 30px;
        top: 30px;
        right: 10px;
    }
    .image1-down {
        height: 100px;
        top: 120px;
        left: 20px;
    }
    .image2-middle {
        height: 220px;
        top: 150px;
    }
    .image2-up {
        height: 30px;
        top: 40px;
        left: -10px;
    }
    .image2-down {
        height: 100px;
        top: 200px;
        left: 220px;
    }
    .image3-middle {
        height: 220px;
        top: 150px;
    }
    .image3-up {
        height: 30px;
        top: 40px;
        left: 30px;
    }
    .image3-down {
        height: 100px;
        right: 5px;
        top: 150px;
    }
    .image4-middle {
        height: 220px;
        top: 150px;
    }
    .image4-up {
        height: 30px;
        top: 40px;
        right: -10px;
    }
    .image4-down {
        height: 100px;
        right: 10px;
        top: 120px;
    }
    .image5-middle {
        height: 220px;
        top: 150px;
    }
    .image5-up {
        height: 30px;
        top: 20px;
        right: 20px;
    }
    .image5-up-2 {
        height: 32px;
        right: 80px;
    }

    /* Demo */
    .section.first {
        margin-top: 20px;
    }
    .demo-section {
        gap: 20px;
    }
    .demo-content h1 {
        font-size: 2rem;
    }
    .demo-content p {
        font-size: 14px;
    }
    .demo-list li {
        font-size: 1rem;
    }
    .demo-book-demo {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
    .demo-image-placeholder img {
        height: 200px;
    }

    /* Benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .benefits-section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    .benefit-card h3 {
        font-size: 1rem;
    }
    .benefit-card p {
        font-size: 1.1rem;
    }
    .works-heading.benifit {
        font-size: 20px;
    }
    .benefit-card img {
        height: 80px;
    }
    .section.benifit {
        margin-top: 0px;
        padding-top: 0px;
    }

    /* Benefits Promo */
    .benefits-promo {
        padding: 15px;
    }
    .benefits-promo h2 {
        font-size: 1.8rem;
    }
    .benefits-btn {
        font-size: 14px;
        padding: 10px 15px;
    }
    .benefits-btn i {
        font-size: 14px;
    }
    .benefits-promo-image img {
        height: 200px;
    }
    .hero-button1.promo {
        margin-top: 10px;
        margin-bottom: 20px;
    }
    .section.promo {
        margin-top: 20px;
    }
    .benefits-promo-content {
        padding-top: 20px;
    }

    /* FAQ */
    .faq-item {
        padding: 15px;
    }
    .faq-question {
        font-size: 15px;
    }
    .faq-answer {
        font-size: 14px;
    }
    .faq-question i {
        font-size: 18px;
    }
    .container.faq h1 {
        font-size: 2rem;
    }
    .section.faq {
        margin-top: 50px;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    .footer-left {
        text-align: left;
    }
    .footer-left img {
        height: 40px;
    }
    .footer-left p {
        font-size: 12px;
        margin: 5px 0;
    }
    .footer-right {
        flex-direction: column;
        align-items: self-start;
        text-align: left;
        margin: 0;
        gap: 10px;
    }
    .footer-right h4 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    .footer-right li {
        font-size: 12px;
        line-height: 1.6;
    }
    .links {
        display: flex;
        justify-content: flex-start;
        margin-top: 15px;
    }
    .links a {
        font-size: 16px;
        margin-right: 8px;
    }
}

/* --- Max-width: 320px — Very small phones --- */
@media (max-width: 320px) {
    .hero-main-section {
        padding: 10px;
    }
    .hero-sub-section h1 {
        font-size: 24px;
    }
    .hero-sub-section p {
        font-size: 12px;
        line-height: 20px;
    }
    .hero-button,
    .hero-button1 {
        padding: 6px 16px;
        font-size: 12px;
    }
    .hero-sub-section-top-heading-text {
        font-size: 12px;
        padding: 5px 8px;
    }

    /* Video */
    .video-container {
        max-width: 100%;
        height: 180px;
    }
    .play-button {
        padding: 30px;
        font-size: 12px;
    }

    /* Logos */
    .dark-background {
        height: 60px;
    }
    .logo-row img {
        height: 60px;
        margin: 0 8px;
    }
    .scroll-right,
    .scroll-left {
        animation-duration: 8s;
    }

    /* Stats */
    .sec3 {
        padding: 10px 10px;
    }
    .text h2 {
        font-size: 1.2rem;
    }
    .text p {
        font-size: 0.7em;
    }
    .stats {
        gap: 15px;
    }
    .purecounter {
        font-size: 2.5rem;
    }
    .purecounter-symbol {
        font-size: 2rem;
    }
    .stats-item p {
        font-size: 10px;
    }
}
