#spinner,
.preloader.preloader-deactivate {
    visibility: hidden
}

.cert-right img,
.image-content img {
    max-width: 100%;
    height: auto
}

#logo-img {
    display: block;
    width: 10vw;
    /* 20% of viewport width */
    max-width: 250px;
    /* Maximum width on large screens */
    min-width: 120px;
    /* Minimum width on very small screens */
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}

.api-left,
.benefits-list,
.cert-list,
.facts,
.features-list,
.usecase-grid ul {
    list-style: none
}

*,
.cookie-modal {
    box-sizing: border-box
}

:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E
}

.spinner {
    background: var(--primary);
    margin: 100px auto;
    animation: 1.2s ease-in-out infinite sk-rotateplane
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0) rotateY(0);
        -webkit-transform: perspective(120px) rotateX(0) rotateY(0)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg)
    }
}

#spinner {
    opacity: 0;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999
}

#spinner.show {
    transition: opacity .5s ease-out, visibility linear;
    visibility: visible;
    opacity: 1
}

.fw-bold,
h1,
h2 {
    font-weight: 800 !important
}

.fw-semi-bold,
h3,
h4 {
    font-weight: 700 !important
}

.fw-medium,
h5,
h6 {
    font-weight: 600 !important
}

.btn,
.navbar-dark .navbar-nav .nav-link {
    font-family: Nunito, sans-serif;
    font-weight: 600;
    transition: .5s
}

.benefits-section,
.cookie-modal,
.section {
    font-family: 'poppins', sans-serif
}

.btn-primary,
.btn-secondary {
    color: #fff;
    box-shadow: inset 0 0 0 50px transparent
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary)
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary)
}

.btn-square {
    width: 36px;
    height: 36px
}

.btn-sm-square {
    width: 30px;
    height: 30px
}

.btn-lg-square {
    width: 48px;
    height: 48px
}

.btn-lg-square,
.btn-sm-square,
.btn-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    margin: .2rem
}

.navbar-dark .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    color: #fff;
    outline: 0;
    transition: color 0.3s ease;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--primary);
}


/* 3D Scene Container - started*/


/* 3D Scene with enhanced perspective */

.carousel-3d-scene {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    transform-style: preserve-3d;
    position: relative;
    min-height: 400px;
}


/* Individual card styling with enhanced 3D effects */

.carousel-3d-item {
    flex: 1;
    max-width: 350px;
    height: 300px;
    margin: 0 15px;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    position: relative;
    opacity: 0;
    animation: fadeInScale 0.8s forwards;
}

.carousel-3d-item-left {
    animation-delay: 0.2s;
    transform: rotateY(15deg) translateZ(-50px);
}

.carousel-3d-item-center {
    animation-delay: 0.4s;
    transform: rotateY(0deg) translateZ(50px);
    z-index: 2;
}

.carousel-3d-item-right {
    animation-delay: 0.6s;
    transform: rotateY(-15deg) translateZ(-50px);
}


/* Enhanced card styling */

.fact-card {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00a3d7 0%, #0056b3 100%);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    transform-style: preserve-3d;
}


/* Center card different styling */

.carousel-3d-item-center .fact-card {
    background: linear-gradient(135deg, #ffffff 0%, #eaf7ff 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}


/* Animated background elements */

.fact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}


/* Icon styling with animation */

.fact-card .icon-container {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    animation: pulse 2s infinite;
}

.carousel-3d-item-center .fact-card .icon-container {
    background: linear-gradient(135deg, #00a3d7 0%, #0056b3 100%);
}

.fact-card i {
    font-size: 36px;
    color: white;
    transition: all 0.3s ease;
}

.carousel-3d-item-center .fact-card i {
    color: white;
}


/* Text styling */

.fact-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.carousel-3d-item-center .fact-card h3 {
    color: #0056b3;
}

.fact-card h5 {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.carousel-3d-item-center .fact-card h5 {
    color: #00a3d7;
}


/* Hover effects */

.carousel-3d-item:hover {
    transform: translateY(-20px) scale(1.05);
    z-index: 10;
}

.carousel-3d-item-left:hover {
    transform: translateY(-20px) scale(1.05) rotateY(0deg) translateZ(100px);
}

.carousel-3d-item-center:hover {
    transform: translateY(-20px) scale(1.05) rotateY(0deg) translateZ(100px);
}

.carousel-3d-item-right:hover {
    transform: translateY(-20px) scale(1.05) rotateY(0deg) translateZ(100px);
}

.carousel-3d-item:hover .fact-card::before {
    opacity: 1;
    animation: rotate 4s linear infinite;
}

.carousel-3d-item:hover .fact-card {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.carousel-3d-item:hover .icon-container {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.carousel-3d-item:hover i {
    transform: rotateY(360deg);
}

.carousel-3d-item:hover h3 {
    transform: translateY(-5px);
}

.carousel-3d-item:hover h5 {
    transform: translateY(-5px);
}


/* Particle effect */

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    opacity: 0;
}


/* Animations */

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

Here is the enhanced and organized CSS code. I have refined the `992px` breakpoint to ensure the 3D effects are cleanly disabled,
added mobile-specific adjustments for the `section-title` underlines (which were missing responsive logic),
and organized the animations. ```css
/* ========================================= */


/* Active state for carousel rotation (Desktop) */


/* ========================================= */

.carousel-3d-scene.rotate-left .carousel-3d-item-left {
    transform: rotateY(0deg) translateZ(50px);
    z-index: 2;
}

.carousel-3d-scene.rotate-left .carousel-3d-item-center {
    transform: rotateY(15deg) translateZ(-50px);
}

.carousel-3d-scene.rotate-left .carousel-3d-item-right {
    transform: rotateY(-15deg) translateZ(-50px);
}

.carousel-3d-scene.rotate-right .carousel-3d-item-right {
    transform: rotateY(0deg) translateZ(50px);
    z-index: 2;
}

.carousel-3d-scene.rotate-right .carousel-3d-item-center {
    transform: rotateY(-15deg) translateZ(-50px);
}

.carousel-3d-scene.rotate-right .carousel-3d-item-left {
    transform: rotateY(15deg) translateZ(-50px);
}


/* ========================================= */


/* Controls Styling */


/* ========================================= */

.carousel-control-next,
.carousel-control-prev {
    width: 10%;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    width: 3rem;
    height: 3rem;
}


/* ========================================= */


/* Section Title Base Styles */


/* ========================================= */

.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0;
    background: #fff;
    -webkit-animation: 5s linear infinite section-title-run;
    animation: 5s linear infinite section-title-run;
}

.section-title.text-center::after {
    -webkit-animation: 5s linear infinite section-title-run-center;
    animation: 5s linear infinite section-title-run-center;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
    -webkit-animation: 5s linear infinite section-title-run-sm;
    animation: 5s linear infinite section-title-run-sm;
}


/* ========================================= */


/* Animations (Keyframes) */


/* ========================================= */

@keyframes section-title-run {
    0%,
    100% {
        left: 0;
    }
    50% {
        left: 145px;
    }
}

@keyframes section-title-run-center {
    0%,
    100% {
        left: 50%;
        margin-left: -75px;
    }
    50% {
        left: 50%;
        margin-left: 45px;
    }
}

@keyframes section-title-run-sm {
    0%,
    100% {
        left: 0;
    }
    50% {
        left: 85px;
    }
}


/* ========================================= */


/* Responsive Design (Tablet & Mobile) */


/* ========================================= */

@media (max-width: 992px) {
    /* Convert 3D Scene to Vertical Stack */
    .carousel-3d-scene {
        flex-direction: column;
        perspective: none;
        /* Remove 3D perspective */
        align-items: center;
        /* Center items */
        gap: 20px;
        /* Consistent spacing between cards */
        padding: 20px 0;
    }
    .carousel-3d-item {
        width: 100%;
        max-width: 500px;
        margin: 0;
        /* Reset margin, use gap instead */
        /* Force remove 3D transforms and overrides */
        transform: none !important;
        opacity: 1;
        animation: fadeInScale 0.8s forwards;
    }
    /* Staggered Animation for Stack */
    .carousel-3d-item-left {
        animation-delay: 0.2s;
    }
    .carousel-3d-item-center {
        animation-delay: 0.4s;
    }
    .carousel-3d-item-right {
        animation-delay: 0.6s;
    }
    /* Simplified Hover for Touch/Flat View */
    .carousel-3d-item:hover {
        transform: translateY(-10px) scale(1.02) !important;
    }
    /* Hide controls on tablet/mobile if using vertical scroll */
    .carousel-control-next,
    .carousel-control-prev {
        display: none;
    }
}


/* Mobile Adjustments for Titles */

@media (max-width: 576px) {
    .section-title::before {
        width: 80px;
        /* Shorter underline */
        height: 3px;
    }
    .section-title.text-center::before {
        margin-left: -40px;
        /* Recenter */
    }
    .section-title.section-title-sm::before {
        width: 60px;
    }
    /* Adjust animation logic for smaller lines */
    .section-title::after {
        height: 3px;
    }
    @keyframes section-title-run {
        0%,
        100% {
            left: 0;
        }
        50% {
            left: 76px;
        }
        /* Matches new width (80px - 4px) */
    }
    @keyframes section-title-run-center {
        0%,
        100% {
            left: 50%;
            margin-left: -40px;
        }
        50% {
            left: 50%;
            margin-left: 36px;
        }
    }
    @keyframes section-title-run-sm {
        0%,
        100% {
            left: 0;
        }
        50% {
            left: 56px;
        }
        /* Matches new width (60px - 4px) */
    }
}


/* 3D Scene Container - ended */


/* =============================================
   BASE STYLES FOR CUSTOM MENUS
   ============================================= */


/* Common styles for both custom menus */

.custom-grid-menu,
.custom-horizontal-menu {
    display: none;
    background: #fff;
    padding: 15px !important;
    border: none !important;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    z-index: 999;
}


/* Grid Menu Specific Styles */

.custom-grid-menu {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    position: absolute;
    top: 100%;
    left: 100%;
    transform: translateX(-50%);
    width: 1150px;
    max-width: 90vw;
}


/* Horizontal Menu Specific Styles */

.custom-horizontal-menu {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: absolute;
    left: 50%;
    top: 100%;
    padding: 20px;
    width: 300px;
    max-width: 90vw;
}


/* Menu Item Styling */

.custom-grid-menu .dropdown-item,
.custom-horizontal-menu .dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #495057;
    text-decoration: none;
    border-radius: 6px;
    white-space: nowrap;
    transition: all 0.25s ease-in-out;
    border: 1px solid transparent;
}


/* Icon Styling */

.custom-grid-menu .dropdown-item i,
.custom-horizontal-menu .dropdown-item i {
    font-size: 1.1em;
    width: 24px;
    text-align: center;
    margin-right: 12px;
    color: #06A3DA;
    transition: color 0.25s ease;
}


/* Hover & Active States */

.custom-grid-menu .dropdown-item:hover,
.custom-grid-menu .dropdown-item.active,
.custom-horizontal-menu .dropdown-item:hover,
.custom-horizontal-menu .dropdown-item.active {
    background-color: #06A3DA;
    color: #fff;
    transform: translateY(-2px);
    border-color: #06A3DA;
}

.custom-grid-menu .dropdown-item:hover i,
.custom-grid-menu .dropdown-item.active i,
.custom-horizontal-menu .dropdown-item:hover i,
.custom-horizontal-menu .dropdown-item.active i {
    color: #fff;
}


/* =============================================
   DESKTOP STYLES (992px and above)
   ============================================= */

@media (min-width: 992px) {
    /* Show menus when Bootstrap adds .show class */
    .custom-grid-menu.show {
        display: grid !important;
    }
    .custom-horizontal-menu.show {
        display: flex !important;
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    /* Hover behavior for desktop */
    .navbar-nav .dropdown:hover .custom-grid-menu {
        display: grid;
        opacity: 1;
    }
    .navbar-nav .dropdown:hover .custom-horizontal-menu {
        display: flex;
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    /* Section & Title Styling for Horizontal Menu */
    .menu-section {
        padding: 0 15px;
        flex: 1;
    }
    .menu-title {
        font-size: 0.85rem;
        font-weight: 700;
        color: #333;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 0 0 10px 0;
        margin-bottom: 15px;
        border-bottom: 1px solid #e9ecef;
        pointer-events: none;
    }
    /* Visual Divider for Horizontal Menu */
    .menu-divider {
        width: 1px;
        height: 100%;
        background-color: #dee2e6;
        margin: 0 15px;
        align-self: stretch;
    }
}


/* =============================================
   MOBILE STYLES (Below 992px)
   ============================================= */

@media (max-width: 991.98px) {
    /* Common mobile overrides for both menus */
    .custom-grid-menu,
    .custom-horizontal-menu {
        position: static !important;
        width: 100% !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        padding: 10px 15px !important;
        opacity: 1 !important;
    }
    /* Grid Menu Mobile Overrides */
    .custom-grid-menu {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Horizontal Menu Mobile Overrides */
    .custom-horizontal-menu {
        flex-direction: column;
    }
    /* Menu Item Mobile Adjustments */
    .custom-grid-menu .dropdown-item,
    .custom-horizontal-menu .dropdown-item {
        padding: 10px;
        margin-bottom: 3px;
        width: 100%;
    }
    /* Visual Divider Mobile Adjustment */
    .menu-divider {
        width: 90%;
        height: 1px;
        margin: 10px auto;
    }
    /* Bootstrap dropdown mobile adjustments */
    .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none;
    }
    /* Navbar links mobile adjustment */
    .navbar-dark .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 15px;
    }
}


/* =============================================
   SMALL PHONES STYLES (Below 576px)
   ============================================= */

@media (max-width: 575.98px) {
    /* Single column for grid menu on small phones */
    .custom-grid-menu {
        grid-template-columns: 1fr;
    }
}

.oxy-animated {
    background: linear-gradient(90deg, #FF5722, #2196F3, #FF5722);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.1rem;
    display: inline-block;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

#form-status.white-text,
.card:hover .card-description,
.card:hover .card-title,
.card:hover .description,
.card:hover .option-icon,
.card:hover .option-title,
.card:hover .title,
.left-panel h2,
.left-panel h5,
.navbar-dark .navbar-brand h1 {
    color: #fff
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important
}

@media (max-width:991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #fff
    }
    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark)
    }
    .navbar-dark .navbar-brand h1 {
        color: var(--primary)
    }
    /* SHOW ON HOVER (desktop) */
    .nav-item.dropdown:hover .custom-grid-menu {
        display: flex;
        flex-direction: column;
        gap: 0px
    }
}

@media (min-width:992px) {
    .navbar-dark,
    .navbar-dark .navbar-nav .nav-link.active::before,
    .navbar-dark .navbar-nav .nav-link:hover::before {
        width: 100%;
        left: 0
    }
    .navbar-dark {
        position: absolute;
        top: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999
    }
    .sticky-top.navbar-dark {
        position: fixed;
        background: #fff
    }
    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s
    }
    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none
    }
    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary)
    }
}

.owl-carousel .owl-item {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 20px
}

.product-img img:hover,
.vendor-carousel img:hover {
    transform: scale(1.05)
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1
}


/* --- CSS Variables --- */

:root {
    --primary-color: #0d6efd;
    /* Blue */
    --primary-hover: #0b5ed7;
    --light-bg: #f8f9fa;
    /* Light Grey */
    --text-dark: #212529;
    --text-white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}


/* --- Container & Layout --- */

.facts-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    /* Negative margin to overlap hero section (optional) */
    margin-top: -3rem;
    margin-bottom: 3rem;
    z-index: 2;
}

.facts-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* Space between cards */
}


/* --- Card Styling --- */

.fact-card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* LEFT ALIGNMENT FIX */
    padding: 2rem;
    height: 300px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    width: 100%;
    /* Full width on mobile */
    background-color: #fff;
    /* Default bg */
}


/* Hover Effect (Simple Lift) */

.fact-card:hover {
    transform: translateY(-5px);
}


/* Background Variations */

.bg-primary {
    background-color: var(--primary-color);
}

.bg-light {
    background-color: var(--light-bg);
}


/* --- Icon Styling --- */

.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    flex-shrink: 0;
    /* Prevents icon from squishing */
}

.icon-bg-white {
    background-color: var(--text-white);
}

.icon-bg-primary {
    background-color: var(--primary-color);
}


/* Icon Colors */

.text-primary {
    color: var(--primary-color);
}

.text-white {
    color: var(--text-white);
}


/* --- Text Content --- */

.text-content {
    padding-left: 1.5rem;
    /* Space between icon and text */
    text-align: left;
    /* Explicit left alignment */
}

.label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.counter {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}


/* Responsive Colors (Theme variants) */

.text-light .label {
    color: var(--primary-color);
}

.text-light .counter {
    color: var(--text-dark);
}

.text-dark-theme .label {
    color: var(--text-white);
}

.text-dark-theme .counter {
    color: var(--text-white);
}


/* --- Desktop Query --- */

@media (min-width: 992px) {
    .fact-card {
        height: 280px;
    }
}


/* --- Desktop Query --- */

@media (max-width: 558px) {
    .facts-container {
        margin-top: 3rem;
    }
}


/* --- Fade In Animation --- */

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0;
    background: #fff;
    -webkit-animation: 5s linear infinite section-title-run;
    animation: 5s linear infinite section-title-run
}

.section-title.text-center::after {
    -webkit-animation: 5s linear infinite section-title-run-center;
    animation: 5s linear infinite section-title-run-center
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
    -webkit-animation: 5s linear infinite section-title-run-sm;
    animation: 5s linear infinite section-title-run-sm
}

@keyframes section-title-run {
    0%,
    100% {
        left: 0
    }
    50% {
        left: 145px
    }
}

@keyframes section-title-run-center {
    0%,
    100% {
        left: 50%;
        margin-left: -75px
    }
    50% {
        left: 50%;
        margin-left: 45px
    }
}

@keyframes section-title-run-sm {
    0%,
    100% {
        left: 0
    }
    50% {
        left: 85px
    }
}

.service-item {
    position: relative;
    padding: 0 30px;
    height: 400px;
    transition: .5s
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg)
}

.service-item .service-icon i {
    transform: rotate(45deg)
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1
}

@media (min-width:991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99
}

.bg-header-1 {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)) 0 0/cover, url(../img/Asset.jpg) center center/cover no-repeat
}

.bg-header-2 {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)) 0 0/cover, url(../img/customer.jpg) center center/cover no-repeat
}

.bg-header-3 {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)) 0 0/cover, url(../img/DMS.jpg) center center/cover no-repeat
}

.bg-header-4 {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)) 0 0/cover, url(../img/HRMS.jpg) center center/cover no-repeat
}

.bg-header-5 {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)) 0 0/cover, url(../img/procure.jpg) center center/cover no-repeat
}

.bg-header-6 {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)) 0 0/cover, url(../img/desk.jpg) center center/cover no-repeat
}

.bg-header-7 {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)) 0 0/cover, url(../img/PROPERTY.jpg) center center/cover no-repeat
}

.bg-header-8 {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)) 0 0/cover, url(../img/visitor-header.jpg) center center/cover no-repeat
}

.bg-header-9 {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)) 0 0/cover, url(../img/view-robot-human-businessperson_23-2150911961.jpg) center center/cover no-repeat
}

.bg-header-aboutus,
.bg-header-contactus {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)) 0 0/cover, url(../img/normal.jpg) center center/cover no-repeat
}

.bg-header-OxyOne {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)) 0 0/cover, url(../img/OxyOnesaasproduct.png) center center/cover no-repeat
}

.bg-header-sharepoint {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)) 0 0/cover, url(../img/sharepoint.jpg) center center/cover no-repeat
}

.bg-header-migration {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)) 0 0/cover, url(../img/Aws.jpeg) center center/cover no-repeat
}

.bg-header-application,
.bg-header-web {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)) 0 0/cover, url(../img/webdevelop.jpeg) center center/cover no-repeat
}

.bg-header-mobile {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)) 0 0/cover, url(../img/Mobile-application-header.jpg) center center/cover no-repeat
}

.bg-header-Offshore {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)) 0 0/cover, url(../img/off-shore.jpeg) center center/cover no-repeat
}

.bg-header-devops {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)) 0 0/cover, url(../img/devlops.jpeg) center center/cover no-repeat
}

.link-animated a {
    transition: .5s
}

.link-animated a:hover {
    padding-left: 10px
}

@media (min-width:767.98px) {
    .footer-about {
        margin-bottom: -75px
    }
}

.footer {
    width: 100%;
    position: relative;
}

.footer-top {
    background: rgba(0, 0, 0, 0.3);
}

.footer-main {
    background: rgba(0, 0, 0, 0.5);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.7);
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #0d6efd, transparent);
}

.footer-links li a {
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links li a::before {
    content: '▶';
    position: absolute;
    left: 0;
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.footer-links li a:hover {
    color: #0d6efd !important;
    padding-left: 20px;
}

.footer-links li a:hover::before {
    transform: translateX(5px);
}

.social-icons a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #0d6efd !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.contact-info a:hover {
    color: #0d6efd !important;
}


/* Responsive adjustments */

@media (max-width: 768px) {
    .footer-widget {
        margin-bottom: 30px;
    }
    .widget-title {
        font-size: 1.1rem;
    }
}

.container-fluid-2 {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 60px 20px;
    min-height: 100vh;
    background: #fff
}

.product-img {
    flex: 1;
    text-align: center;
    animation: 1s forwards slideInLeft;
    opacity: 0
}

.product-img img {
    max-width: 100%;
    width: 500px;
    transform: scale(1);
    transition: transform .3s
}

.product-info {
    flex: 1;
    padding: 20px;
    animation: 1s forwards slideInRight;
    opacity: 0
}

.tag {
    display: inline-block;
    background: #e7f0ff;
    color: #3061b9;
    font-size: 30px;
    padding: 5px 12px;
    border-radius: 4px;
    margin-bottom: 10px
}

.container1,
.custom-flex-wrapper {
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .3);
    gap: 2rem
}

.product-info h2 {
    font-size: 26px;
    margin: 10px 0;
    color: #1a1a1a
}

.product-info p {
    color: #444;
    margin-bottom: 20px;
    line-height: 1.6
}

.product-info ul {
    list-style: none;
    padding: 0
}

.product-info ul li::before {
    content: '✔️';
    margin-right: 8px;
    color: #007bff
}

.product-info ul li {
    margin-bottom: 10px;
    color: #333
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px)
    }
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px)
    }
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.container1 {
    padding: 1rem;
    background: linear-gradient(135deg, #0f1f2f, #1c2c3a);
    color: #fff
}

.custom-flex-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    background: #0d1b2a;
    padding: 2rem
}

.left-panel {
    flex: 1 1 50%;
    min-width: 300px;
    color: #fff
}

.right-panel {
    flex: 1 1 45%;
    min-width: 280px;
    display: flex;
    justify-content: center;
    align-items: center
}

.right-panel img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    max-height: 450px
}

.features-list {
    padding-left: 0;
    margin-top: 1rem
}

.features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: .5rem;
    line-height: 1.5
}

.check-icon {
    font-size: 1.2rem
}

.features-section {
    background-color: #0d1b2a;
    padding: 3rem 1rem;
    color: #fff
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
    justify-content: center;
    max-width: 1300px;
    margin: auto
}

.features-text,
.features-text1 {
    flex: 1 1 55%;
    min-width: 300px
}

.features-heading,
.section-title {
    margin-bottom: 1.5rem
}

.feature,
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem
}

.features-image,
.features-image1 {
    flex: 1 1 40%;
    min-width: 280px;
    display: flex;
    align-items: center;
    justify-content: center
}

.features-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    max-height: 500px
}

.client-img,
.feature-icon,
.icon {
    object-fit: contain
}

.client-img,
.feature-icon,
.img {
    width: 40px;
}

.features-section1 {
    background-color: #fff;
    color: #fff;
    padding: 3rem 1rem
}

.features-container1 {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
    max-width: 1300px;
    margin: auto
}

.features-heading h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff
}

.features-image1 img {
    width: 100%;
    max-height: 500px;
    object-fit: contain
}

.clients-section {
    text-align: center;
    padding: 2px 20px
}

.clients-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px
}

.underline {
    width: 125px;
    height: 3px;
    background-color: #00c853;
    margin: auto
}

.clients-section p {
    color: #666;
    font-size: 16px;
    margin-bottom: 50px
}

.contact-desf {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding: 40px 20px;
    background-color: #f8f8f8
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    margin: auto
}

.left-box {
    background-color: #030d54;
    color: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
    flex: 1 1 350px;
    transition: transform .3s
}

.icon-circle,
.read-more {
    background-color: #1bd4d4
}

.read-more,
.text-content h1 span {
    color: #000
}

*,
.facts {
    padding: 0
}

.card:hover,
.right-box {
    box-shadow: 0 10px 25px rgba(0, 0, 0, .1)
}

.left-box:hover {
    transform: translateX(-10px)
}

.icon-feature {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
    border-radius: 50%;
    margin-right: 1rem;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.icon-feature:hover {
    background: #667eea;
    color: white;
    transform: rotate(10deg) scale(1.1);
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px
}

.facts {
    margin-top: 20px;
    border-top: 1px solid #fff
}

.facts li {
    border-bottom: 1px solid #fff;
    padding: 10px 0;
    font-size: 14px;
    word-break: break-word
}

.read-more {
    margin-top: 20px;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color .3s
}

.read-more:hover {
    background-color: #0cbdbd
}

.right-box {
    flex: 1 1 500px;
    padding: 20px;
    background-color: #fff;
    border-radius: 14px
}

.right-box h2 {
    color: #030d54;
    font-size: 24px;
    margin-bottom: 20px
}

.cert-list li {
    font-size: 14px
}

.cert-list .orange {
    color: orange
}

.cert-list .blue {
    color: #1bd4d4
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background-color: transparent
}

.api-box,
.card,
.feature-image,
.scroll-btn,
.slider-container {
    position: relative
}

.preloader .loader {
    position: absolute;
    top: 43%;
    left: 0;
    right: 0;
    width: 50px;
    height: 50px;
    -webkit-transform: translateY(-43%);
    transform: translateY(-43%);
    text-align: center;
    -webkit-transition: .4s;
    transition: .4s;
    margin: 0 auto
}

.preloader .loader .box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background-color: #fff;
    -webkit-animation: .5s linear infinite animate;
    animation: .5s linear infinite animate
}

.preloader .loader .shadow {
    position: absolute;
    top: 59px;
    left: 0;
    width: 100%;
    height: 5px;
    opacity: .1;
    border-radius: 50%;
    background-color: #000;
    -webkit-animation: .5s linear infinite shadow;
    animation: .5s linear infinite shadow
}

.preloader::after,
.preloader::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background-color: #7b68ee;
    -webkit-transition: .9s;
    transition: .9s
}

.preloader::after {
    left: auto;
    right: 0
}

.preloader.preloader-deactivate::after,
.preloader.preloader-deactivate::before {
    width: 0
}

.preloader.preloader-deactivate .loader {
    opacity: 0;
    visibility: hidden
}

@-webkit-keyframes loader {
    0% {
        left: -100px
    }
    100% {
        left: 110%
    }
}

@keyframes loader {
    0% {
        left: -100px
    }
    100% {
        left: 110%
    }
}

@-webkit-keyframes animate {
    17% {
        border-bottom-right-radius: 3px
    }
    25% {
        -webkit-transform: translateY(9px) rotate(22.5deg);
        transform: translateY(9px) rotate(22.5deg)
    }
    50% {
        -webkit-transform: translateY(18px) scale(1, .9) rotate(45deg);
        transform: translateY(18px) scale(1, .9) rotate(45deg);
        border-bottom-right-radius: 40px
    }
    75% {
        -webkit-transform: translateY(9px) rotate(67.5deg);
        transform: translateY(9px) rotate(67.5deg)
    }
    100% {
        -webkit-transform: translateY(0) rotate(90deg);
        transform: translateY(0) rotate(90deg)
    }
}

@keyframes animate {
    17% {
        border-bottom-right-radius: 3px
    }
    25% {
        -webkit-transform: translateY(9px) rotate(22.5deg);
        transform: translateY(9px) rotate(22.5deg)
    }
    50% {
        -webkit-transform: translateY(18px) scale(1, .9) rotate(45deg);
        transform: translateY(18px) scale(1, .9) rotate(45deg);
        border-bottom-right-radius: 40px
    }
    75% {
        -webkit-transform: translateY(9px) rotate(67.5deg);
        transform: translateY(9px) rotate(67.5deg)
    }
    100% {
        -webkit-transform: translateY(0) rotate(90deg);
        transform: translateY(0) rotate(90deg)
    }
}

@-webkit-keyframes shadow {
    50% {
        -webkit-transform: scale(1.2, 1);
        transform: scale(1.2, 1)
    }
}

@keyframes shadow {
    50% {
        -webkit-transform: scale(1.2, 1);
        transform: scale(1.2, 1)
    }
}

.section-heading {
    text-align: center;
    color: #4f46e5;
    font-size: 32px;
    font-weight: 700;
    margin: 40px 0 20px
}

.card-box,
.section-card {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px
}

.api-box .icon,
.icon {
    margin-right: 15px
}

.card,
.icon {
    display: flex
}

.card {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
    flex-direction: column
}

.icon,
.option {
    background: #eef2f7
}

.icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px
}

.card-three,
.deployment-options {
    display: grid;
    gap: 20px;
    margin-top: 20px
}

.card-title,
.title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px
}

.card-description,
.description {
    font-size: 16px;
    line-height: 1.6
}

.deployment-options {
    grid-template-columns: repeat(3, 1fr)
}

.option {
    padding: 20px;
    border-radius: 10px;
    text-align: center
}

.container123 {
    display: flex;
    flex-direction: row;
    padding: 60px;
    gap: 40px;
    background-color: #06a3da;
    flex-wrap: wrap
}

.features,
.grid {
    gap: 20px;
    display: flex
}

.content {
    flex: 1 1 45%;
    margin-top: 4.5rem
}

.content h1 {
    font-size: 36px;
    font-weight: 700;
    margin: 20px 0
}

.content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #d1cbff;
    margin-bottom: 10px
}

.content p {
    font-size: 20px;
    line-height: 1.7;
    margin: 10px 0;
    color: #d8d7ff
}

.features {
    flex: 1 1 45%;
    flex-direction: column;
    text-align: left
}

.feature-box {
    display: flex;
    align-items: flex-start;
    background-color: #f8f8ff;
    color: #2a23d7;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1)
}

.text h3 {
    margin: 0 0 8px;
    font-size: 20px
}

.text p {
    margin: 0;
    font-size: 15px;
    color: #339
}

* {
    margin: 0
}

.insurance-section {
    padding: 50px 20px;
    background-color: #fefefe;
    text-align: justify
}

@media (max-width:991px) {
    .insurance-section .row {
        display: flex;
        flex-wrap: wrap
    }
    .insurance-section .col-6 {
        width: 100%;
        margin-bottom: 30px
    }
    .insurance-section .text-content h1 {
        font-size: 2rem
    }
    .insurance-section .text-content h4 {
        font-size: 1.1rem
    }
}

.image-content {
    flex: 1;
    text-align: center
}

.text-content {
    flex: 1
}

.text-content h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e1e1e
}

.text-content p {
    font-size: 1rem;
    color: #555
}

.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px
}

.navbar-dark .navbar-nav .nav-link {
    padding: 15px 10px;
    font-size: 16px
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: 2s linear infinite spin
}

.section-title {
    color: #2f50ff;
    font-weight: 600;
    font-size: 16px
}

.section-blue {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 0 10px
}

.main-title {
    font-size: 32px;
    font-weight: 700;
    margin: 10px 0 30px
}

.grid {
    flex-wrap: wrap;
    max-width: 900px
}

.card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 260px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    border-left: 4px solid orange;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    cursor: pointer
}

.api-box,
.empower-item,
.support-card {
    transition: transform .3s, box-shadow .3s
}

.card:nth-child(2n) {
    border-left: 4px solid #2f50ff
}

.card:hover,
.card:hover::after {
    border-color: #00c9a7
}

.card:hover {
    background: #4f46e5;
    color: #fff;
    transform: translateY(-10px)
}

.card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: border-color .4s
}

.empower-section-all {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #06a3da;
    padding: 60px 20px;
    width: 100%
}

.empower-section {
    max-width: 1240px;
    padding: 20px;
    width: 100%;
    margin: 0 auto
}

.subheading {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase
}

.main-heading {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin: 10px 0 30px
}

.empower-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px
}

.empower-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background-color: #fff;
    padding: 18px 20px;
    border-radius: 8px
}

.empower-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08)
}

.checkmark {
    color: #2f50ff;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 4px
}

.empower-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5
}

@media (max-width:768px) {
    .container,
    .container-fluid-2 {
        flex-direction: column;
        text-align: center
    }
    .product-info {
        padding: 0
    }
    .container1 {
        width: auto;
        display: flex;
        flex-direction: column
    }
    .left-panel,
    .right-panel {
        text-align: left;
        width: 100%
    }
    .right-panel img {
        max-height: unset
    }
    .features-container,
    .features-container1 {
        flex-direction: column;
        padding: 1rem
    }
    .features-image,
    .features-image1,
    .features-text,
    .features-text1 {
        width: 100%
    }
    .section-title {
        text-align: center
    }
    .features-heading h2 {
        text-align: center;
        font-size: 1.75rem
    }
    .feature-item {
        align-items: center
    }
    .contact-desf {
        flex-direction: column;
        padding: 20px
    }
    .left-box,
    .right-box {
        flex: 1 1 100%;
        max-width: 100%;
        margin: 0 auto
    }
    .right-box {
        margin: 2rem 0
    }
    .left-box:hover {
        transform: none
    }
    .text-content h1 {
        font-size: 1.5rem
    }
    .text-content p {
        font-size: .95rem
    }
    .card {
        flex: 1 1 100%
    }
    .main-heading {
        font-size: 1.6rem
    }
    .empower-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width:480px) {
    .main-heading {
        font-size: 1.4rem
    }
    .empower-item p,
    .subheading {
        font-size: 14px
    }
    .empower-item {
        width: 350px
    }
}

@media (min-width:768px) {
    .section-card {
        grid-template-columns: 1fr 1fr
    }
    .card-box {
        grid-template-columns: 1fr 1fr 1fr
    }
    .section-card {
        grid-template-columns: repeat(2, 1fr)
    }
    .card-three {
        grid-template-columns: repeat(12fr)
    }
    .empower-item {
        width: 600px
    }
}

.support-section {
    max-width: 1100px;
    margin: auto;
    text-align: center
}

.support-subheading {
    color: #2f50ff;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px
}

.support-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px
}

.support-description {
    max-width: 720px;
    margin: auto auto 40px;
    font-size: 15px;
    line-height: 1.6;
    color: #555
}

.support-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px
}

.api-box,
.api-right,
.api-section,
.tabs {
    display: flex
}

.support-card {
    background: #f9f9ff;
    padding: 24px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .05);
    cursor: default
}

.api-box,
.close-btn,
.cookie-btn,
.scroll-btn,
.tab {
    cursor: pointer
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(47, 80, 255, .15)
}

.support-icon {
    font-size: 30px;
    margin-bottom: 15px
}

.support-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111
}

.support-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.6
}

.certificates-section {
    max-width: 1200px;
    margin: 60px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 20px;
    gap: 40px;
    flex-wrap: wrap
}

.api-left,
.cert-left,
.cert-right {
    flex: 1;
    min-width: 300px
}

.cert-left h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px
}

.cert-list {
    padding: 0;
    margin: 0
}

.cert-list li {
    background: #fff;
    margin-bottom: 12px;
    margin-top: 30px;
    padding: 12px 18px;
    border-left: 4px solid #f60;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .05);
    border-radius: 6px;
    transition: transform .3s, opacity .3s;
    animation: .6s forwards slideIn;
    opacity: 0
}

.cert-list li.blue,
.cert-list li:nth-child(2n) {
    border-left-color: #2f50ff
}

.cert-list li.orange {
    border-left-color: #f60
}

.cert-list li:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .08)
}

@keyframes slideIn {
    from {
        transform: translateX(-20px);
        opacity: 0
    }
    to {
        transform: translateX(0);
        opacity: 1
    }
}

.cert-right {
    text-align: left
}

.cert-right img {
    animation: 3s ease-in-out infinite float
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-10px)
    }
}

.api-section {
    background-color: #352efc;
    color: #fff;
    flex-wrap: wrap;
    padding: 60px 40px;
    justify-content: space-between;
    align-items: flex-start
}

.api-left {
    max-width: 600px
}

.api-left h5 {
    font-size: 20px;
    color: #0ff;
    letter-spacing: 1px;
    margin-bottom: 10px;
    opacity: .8
}

.api-left h2 {
    font-size: 30px;
    margin-bottom: 20px
}

.api-left p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px
}

.api-right {
    flex: 1;
    min-width: 300px;
    flex-direction: column;
    gap: 20px
}

.api-box {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    align-items: flex-start;
    overflow: hidden
}

.api-box:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2)
}

.api-box .icon {
    font-size: 24px;
    color: #352efc;
    transition: transform .3s, color .3s
}

.api-box:hover .icon {
    animation: .6s bounce;
    color: #ff6f00
}

.api-box .text h3 {
    color: #352efc;
    font-size: 18px;
    margin: 0 0 5px
}

.api-box .text p {
    color: #333;
    margin: 0;
    font-size: 14px
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-6px)
    }
}

.security-section {
    padding: 60px 40px;
    max-width: 1200px;
    margin: auto
}

.icon-help,
.scroll-btn.left {
    margin-right: 10px
}

.security-section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px
}

.tabs {
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px
}

.security-grid,
.security-grid-2 {
    display: grid;
    gap: 25px
}

.tab {
    background: #f1f1f1;
    color: #333;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: .3s
}

.tab.active {
    background: #ff7300;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15)
}

.security-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))
}

.security-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
    transition: transform .3s, box-shadow .3s
}

.security-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .15)
}

.icon {
    font-size: 28px;
    color: #352efc;
    transition: transform .4s ease-in-out
}

.security-box:hover .icon {
    transform: rotate(15deg) scale(1.2)
}

.security-box h3 {
    margin: 0 0 6px;
    font-size: 17px;
    color: #352efc
}

.security-box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6
}

.helpdesk-section {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 40px 20px
}

.helpdesk-section h2 {
    font-size: 26px;
    margin-bottom: 40px;
    font-weight: 700
}

@media screen and (max-width:768px) {
    .helpdesk-section {
        flex-direction: column;
        align-items: center
    }
}

@media screen and (max-width:480px) {
    .helpdesk-section {
        padding: 20px 10px
    }
}

.usecase-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px
}

.usecase-grid ul {
    padding: 0;
    max-width: 500px;
    text-align: left
}

.usecase-grid li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.6
}

.icon-help {
    display: inline-block;
    min-width: 24px;
    min-height: 24px;
    font-size: 16px;
    color: #fff;
    background-color: #1f1ad0;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    transition: transform .4s, box-shadow .4s
}

.icon-help:hover {
    transform: rotate(360deg) scale(1.2);
    box-shadow: 0 0 8px 3px rgba(255, 255, 255, .4);
    background-color: #fff;
    color: #352efc
}

.slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    margin: auto;
    padding: 0 10px
}

.client-slider-wrapper {
    max-width: 1600px;
    overflow: hidden;
    white-space: nowrap;
    padding: 20px 0;
    background-color: #fff;
    border-radius: 10px;
    scroll-behavior: smooth;
    width: 100%
}

.client-slider {
    display: flex;
    gap: 30px;
    align-items: center;
    transition: transform .5s ease-in-out;
    will-change: transform
}

.client-img {
    flex: 0 0 auto;
    width: 180px;
    transition: transform .3s ease-in-out
}

.client-img:hover {
    transform: scale(1.1)
}

.client-slider::-webkit-scrollbar {
    display: none
}

.scroll-btn {
    top: 25px;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, .5);
    color: #fff;
    border: none;
    padding: 10px;
    z-index: 10;
    transition: background-color .3s
}

.scroll-btn:hover {
    background-color: #059
}

.scroll-btn.right {
    margin-left: 10px
}

.section {
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    background-color: #ff7300;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .05);
    transition: transform .3s
}

.industry-list li,
.testimonial {
    background-color: #fff;
    transition: transform .3s, box-shadow .3s
}

.industries-section h2,
.intro-text h2 {
    font-size: 1.8rem;
    color: #020086;
    margin-bottom: 1.5rem;
    text-align: center
}

.testimonial {
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.2rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .03)
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .08)
}

.testimonial p {
    font-size: 1rem;
    color: #333;
    margin-bottom: .5rem
}

.testimonial span {
    font-size: .9rem;
    color: #555;
    font-weight: 500
}

.industries-section {
    margin-top: 2.5rem
}

.industry-list {
    list-style-type: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    justify-items: center;
    align-items: center;
    gap: 1rem;
    text-align: center
}

.industry-list li {
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .02);
    font-weight: 500;
    color: #444;
    width: 100%;
    max-width: 17px
}

.industry-list li:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .08)
}

.benefits-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .05)
}

.benefits-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #111
}

.benefits-list {
    padding: 0;
    margin-bottom: 2rem
}

.benefits-list li {
    display: flex;
    align-items: start;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #333
}

.check-icon {
    background-color: #0057d9;
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    margin-right: .75rem;
    flex-shrink: 0
}

.know-more-btn {
    display: inline-block;
    background-color: #f60;
    color: #fff;
    font-weight: 600;
    padding: .6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background .3s
}

.know-more-btn:hover {
    background-color: #e65500
}

@media (max-width:600px) {
    .testimonials-section {
        padding: 2rem 1rem
    }
    .industries-section h2,
    .intro-text h2 {
        font-size: 1.4rem
    }
    .benefits-list li,
    .testimonial p,
    .testimonial span {
        font-size: .95rem
    }
    .industry-list {
        grid-template-columns: 1fr
    }
    .benefits-section {
        padding: 1.5rem
    }
    .benefits-section h2 {
        font-size: 1.5rem
    }
    .check-icon {
        width: 20px;
        height: 20px;
        line-height: 20px;
        font-size: .9rem
    }
}

.feature-image,
.feature-image img {
    height: 100%;
    border-radius: 12px;
    width: 100%
}

.section-title h5 {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #06a3da
}

.section-title h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #333
}

.why-box {
    padding: 20px 0
}

.why-box h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px
}

.why-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #555
}

.feature-image {
    min-height: 300px;
    overflow: hidden
}

.feature-image img {
    object-fit: cover
}

@media (max-width:992px) {
    .row.g-5 {
        row-gap: 40px !important
    }
    .feature-image {
        min-height: 250px;
        margin: 20px 0
    }
}

@media (max-width:768px) {
    .security-section h1 {
        font-size: 2rem
    }
    .security-box {
        flex-direction: column;
        align-items: flex-start
    }
    .icon {
        font-size: 26px
    }
    .client-img {
        width: 200px
    }
    .client-slider {
        gap: 20px
    }
    .scroll-btn {
        font-size: 16px;
        padding: 8px 10px
    }
    .section-title h1 {
        font-size: 1.6rem
    }
    .why-box h4 {
        font-size: 1.1rem
    }
    .why-box p {
        font-size: 14px
    }
}

@media (max-width:576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important
    }
    .carousel-caption h2 {
        font-size: 20px;
        font-weight: 600 !important
    }
    .carousel-caption p {
        font-size: 10px;
    }
    .carousel-caption img {
        width: 100px;
    }
    .cta-buttons {
        display: none;
    }
    .insurance-section {
        padding: 40px 15px
    }
    .insurance-section .text-content h1 {
        font-size: 1.75rem
    }
    .insurance-section .text-content h4 {
        font-size: 1rem
    }
    .insurance-section .text-content p {
        font-size: .95rem
    }
    .section-title h1 {
        font-size: 1.4rem
    }
    .section-title h5 {
        font-size: 13px
    }
    .why-box {
        text-align: center
    }
    .bg-primary {
        margin: auto !important
    }
}

#form-status {
    font-size: 14px;
    color: #28a745
}

#form-status.error {
    color: red
}


/* --- Cookie Banner --- */


/* --- Cookie Banner --- */

.cky-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background-color: #fff;
    padding: 1.5rem 2rem;
    border-top: 1px solid #e9ecef;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cky-banner.show {
    transform: translateY(0);
}

.cky-banner-content {
    flex: 1;
    min-width: 300px;
    padding-right: 20px;
}

.cky-banner h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #212529;
}

.cky-banner p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.cky-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}


/* --- Buttons --- */

.cky-btn,
.cookie-btn {
    padding: 0.6rem 1.2rem;
    border: 1px solid transparent;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.cky-btn-reject {
    background-color: transparent;
    color: #6c757d;
    border-color: #ced4da;
}

.cky-btn-reject:hover {
    background-color: #e9ecef;
    color: #495057;
    transform: translateY(-2px);
}

.cky-btn-customize {
    background-color: transparent;
    color: #0d6efd;
    border-color: #0d6efd;
}

.cky-btn-customize:hover {
    background-color: #0d6efd;
    color: #fff;
    transform: translateY(-2px);
}

.cky-btn-accept,
.cookie-btn.accept {
    background-color: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}

.cky-btn-accept:hover,
.cookie-btn.accept:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    transform: translateY(-2px);
}

.cookie-btn.reject {
    background-color: #6c757d;
    color: #fff;
    border-color: #6c757d;
}

.cookie-btn.reject:hover {
    background-color: #5c636a;
    border-color: #56626d;
    transform: translateY(-2px);
}

.cookie-btn.save {
    background-color: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
    position: relative;
    overflow: hidden;
}

.cookie-btn.save:hover:not(:disabled) {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    transform: translateY(-2px);
}

.cookie-btn.save:disabled {
    background-color: #adb5bd;
    border-color: #adb5bd;
    cursor: not-allowed;
    transform: none;
}

.cookie-btn.save:disabled:hover {
    transform: none;
}


/* --- Modal --- */

.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.cookie-overlay.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

.cookie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    background-color: #f8f9fa;
}

.cookie-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: #212529;
    display: flex;
    align-items: center;
}

.cookie-header h2 i {
    margin-right: 10px;
    color: #0d6efd;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6c757d;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.close-btn:hover {
    color: #212529;
    background-color: #e9ecef;
}

.cookie-content {
    padding: 1.5rem;
    flex-grow: 1;
    overflow-y: auto;
}

.cookie-content p {
    margin-bottom: 1.5rem;
    color: #6c757d;
}

.cookie-sections-wrapper {
    margin-top: 1rem;
}

.cookie-section {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cookie-section:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.section-toggle {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 1rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.section-toggle:hover {
    background-color: #f8f9fa;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.section-header h5 {
    margin: 0;
    font-size: 1rem;
    color: #212529;
    display: flex;
    align-items: center;
}

.section-header h5 i {
    margin-right: 10px;
    color: #0d6efd;
}

.status {
    font-size: 0.8rem;
    color: #0d6efd;
    font-weight: normal;
    background-color: rgba(13, 110, 253, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
}

.cookie-details {
    padding: 0 1.5rem 2rem 1.5rem;
    font-size: 0.9rem;
    color: #6c757d;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.cookie-details.show {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.cookie-details p {
    margin: 0;
}

.section-toggle .fa-chevron-down {
    transition: transform 0.3s ease;
    color: #6c757d;
}

.section-toggle.active .fa-chevron-down {
    transform: rotate(180deg);
}

.cookie-footer {
    padding: 1.5rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: flex-end;
    gap: 4.75rem;
    background-color: #f8f9fa;
}


/* --- Revisit Button --- */

.cky-btn-revisit {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

.cky-btn-revisit.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.cky-btn-revisit:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(13, 110, 253, 0.5);
}

.cky-btn-revisit i {
    font-size: 1.5rem;
}


/* --- Toggle Switch --- */

.switch-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.switch-label {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #212529;
}

.switch-label i {
    margin-right: 10px;
    color: #0d6efd;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #0d6efd;
}

input:focus+.slider {
    box-shadow: 0 0 1px #0d6efd;
}

input:checked+.slider:before {
    transform: translateX(24px);
}


/* --- Responsive Design --- */

@media (max-width: 768px) {
    .cky-banner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 1.5rem;
    }
    .cky-banner-content {
        padding-right: 0;
        margin-bottom: 1rem;
    }
    .cky-buttons {
        justify-content: center;
    }
    .cookie-footer {
        flex-direction: column;
    }
    .cookie-footer .cookie-btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    .cookie-modal {
        width: 95%;
        max-height: 90vh;
    }
}


/* Grid Layout */

.tools-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    padding-top: 20px;
}


/* Card Structure */

.tool-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.tool-card:hover::before {
    transform: scaleX(1);
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}


/* Card Body (Top section) */

.card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}


/* Card Footer (Button section) */

.card-footer {
    background: #f9fafb;
    border-top: 1px solid #eee;
    padding: 15px 25px;
    text-align: center;
}


/* Typography */

.tool-card h2 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tool-card h2 i {
    color: #4a90e2;
    font-size: 1.3rem;
}

.tool-card p {
    color: #627d98;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    /* Pushes list down if description is short */
}


/* Improved Bullet Point Style */

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    /* Aligns icon with top line if text wraps */
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #486581;
    line-height: 1.4;
}

.feature-list li i {
    color: #25D366;
    /* Brighter check color */
    margin-right: 10px;
    margin-top: 3px;
    /* Adjust alignment with text */
    font-size: 0.9rem;
}

.feature-list li span {
    flex: 1;
}


/* Button Style */

.cta {
    display: inline-block;
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.cta:hover {
    background-color: #0056b3;
}


/* Category Section */

.category-section {
    margin-bottom: 60px;
}

.category-title {
    text-align: center;
    margin-bottom: 40px;
}

.category-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.category-title p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}


/* CTA Section */

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-top: 60px;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-section .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    margin: 0 10px;
    transition: all 0.3s;
}

.cta-section .btn-light {
    background-color: white;
    color: var(--primary-color);
}

.cta-section .btn-outline-light {
    border-color: white;
    color: white;
}

.cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.oxycloud-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.oxycloud-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 163, 215, 0.05) 0%, rgba(0, 163, 215, 0) 70%);
    animation: rotate 30s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.oxycloud-header {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.oxycloud-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00a3d7 0%, #0056b3 100%);
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 163, 215, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 163, 215, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 163, 215, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 163, 215, 0);
    }
}

.oxycloud-logo i {
    font-size: 36px;
    color: white;
}

.oxycloud-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 10px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.oxycloud-subtitle {
    font-size: 1.3rem;
    color: #0056b3;
    font-weight: 500;
    margin-bottom: 20px;
}

.oxycloud-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.oxycloud-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.service-item-2 {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00a3d7, #0056b3);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-item-2:hover::before {
    transform: scaleX(1);
}

.service-item-2:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(0, 163, 215, 0.1);
    border-radius: 50%;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.service-item-2:hover .service-icon {
    background: linear-gradient(135deg, #00a3d7 0%, #0056b3 100%);
}

.service-icon i {
    font-size: 24px;
    color: #00a3d7;
    transition: all 0.3s ease;
}

.service-item-2:hover .service-icon i {
    color: white;
    transform: scale(1.1);
}

.service-item-2 h3 {
    font-size: 1.3rem;
    color: #001f3f;
    margin-bottom: 10px;
}

.service-item-2 p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.oxycloud-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.cta-button {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, #00a3d7 0%, #0056b3 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 163, 215, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 163, 215, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: #0056b3;
    border: 2px solid #0056b3;
}

.cta-button.secondary:hover {
    background: #0056b3;
    color: white;
    transform: translateY(-3px);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:active::after {
    width: 300px;
    height: 300px;
}


/* Responsive Design */

@media (max-width: 768px) {
    .oxycloud-heading {
        font-size: 2rem;
    }
    .oxycloud-subtitle {
        font-size: 1.1rem;
    }
    .oxycloud-services {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    .oxycloud-cta {
        flex-direction: column;
        align-items: center;
    }
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

:root {
    --primary-color: #0066cc;
    --secondary-color: #004080;
    --accent-color: #ff6600;
    --light-color: #f8f9fa;
    --dark-color: #333333;
    --text-color: #555555;
    --primary-color: #007BFF;
    /* change as needed */
    --secondary-color: #6610f2;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 20px;
}

.security-box {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.security-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.security-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.security-box:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.security-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.icon-gdpr {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.icon-security {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
}

.icon-integration {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
}

.icon-intelligence {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    color: white;
}

.icon-dashboard {
    background: linear-gradient(135deg, #fa709a, #fee140);
    color: white;
}

.icon-clustering {
    background: linear-gradient(135deg, #30cfd0, #330867);
    color: white;
}

.security-box h3 {
    color: #2d3748;
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.security-box p {
    color: #718096;
    line-height: 1.6;
    font-size: 0.95rem;
}

.security-box .content {
    flex: 1;
}

@media (max-width: 768px) {
    .security-grid {
        grid-template-columns: 1fr;
        padding: 10px;
    }
    h1 {
        font-size: 2rem;
    }
    .security-box {
        padding: 20px;
    }
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .security-box {
        flex-direction: column;
        text-align: center;
    }
    .feature-icon {
        margin: 0 auto;
    }
}