﻿body.font-inter {
    font-family: Inter, sans-serif;
}

body.font-inter-light {
    font-family: Inter, sans-serif;
    font-weight: 300;
    /* Light */
}

.font-switch-btn {
    background: transparent;
    border: 1px solid #13672a;
    color: #13672a;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-left: 15px;
    white-space: nowrap;
}

.font-switch-btn:hover {
    background: #13672a;
    color: #ffffff;
}

.font-switch-btn:active {
    transform: scale(0.96);
}

strong {
    font-weight: 600;
}

body {
    margin: 0;
    padding-top: 60px;
    line-height: 1.3;
    color: #1f2937;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    line-height: 1.6;
}

.feature-list li::before {
    content: "➜";
    position: absolute;
    left: 0;
    top: 2px;
    color: #13672a;
    /* RainDrive green */
    font-weight: 600;
}


.container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    padding-bottom: 0;
    padding: 10px 10px;
    margin-bottom: 20px;
    scroll-margin-top: 100px;
    /* adjust to header height */
}

a {
    text-decoration: none;
}

/* FULL BACKGROUND */
#global-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;

    min-height: calc(100vh - 70px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    /* height: 100px; */
    /* IMPORTANT: fixed height */
    background: transparent !important;
    box-shadow: none;
    /* display: flex; */
    /* KEY */
    align-items: center;
    /* vertical center */
}

.nav-wrap {
    background-color: rgba(255, 255, 255, 0) !important;
}

.navbar .nav-wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.page-wrapper {
    padding-top: 100px;
    /* SAME as navbar height */
}

/* PAGE CONTENT */
.page-content {
    min-height: calc(100vh - 100px);
    /* navbar height */
    padding-top: 100px;
}


.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: #000;
    margin: 4px 0;
}

.service-icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.card-icon {
    margin-bottom: 15px;
}

.navbar.scrolled {
    background: #ffffffff !important;
    /* solid white */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.navbar .container {
    margin-top: 0 !important;
    display: flex;
    height: 100%;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: bold;
}

.logo img {
    height: 65px !important;
}

.logo span {
    color: #3460ad;
}

nav {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
}

nav a {
    margin-left: 0;
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    font-size: 17px;
    transition: color 0.25s ease;
}

nav a:hover {
    color: #3460ad;
}


/* =========================
   DROPDOWN
========================= */

.nav-dropdown {
    position: relative;
}

.nav-dropdown .nav-link {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Main dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 16px;
    padding: 10px 0;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.16);
    display: none;
    z-index: 1000;
}

.dropdown-sidemenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 16px;
    padding: 10px 0;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.16);
    display: none;
    z-index: 1000;
}

/* Show first-level dropdown */
.nav-dropdown>.dropdown-menu {
    display: none;
}

.nav-dropdown:hover>.dropdown-menu {
    display: block;
}

/* .dropdown-menu > .dropdown-sidemenu {
    display: none;
}


.dropdown-menu:hover > .dropdown-sidemenu {
    display: block;
}  */


.dropdown-menu a {
    display: block;
    margin: 0 8px;
    padding: 11px 14px;
    font-size: 15px;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 10px;
    line-height: 1.35;
    color: #0f172a;
    transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover {
    background: rgba(52, 96, 173, 0.08);
    color: #3460ad;
}

/* =========================
   SUBMENU (LEVEL 2)
========================= */

.dropdown-submenu {
    position: relative;
}

/* Hide nested submenu by default */
.dropdown-submenu>.dropdown-sidemenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 2px;
}

/* Show nested submenu on hover */
.dropdown-submenu:hover>.dropdown-sidemenu {
    display: block;
}

.submenu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}


.btn {
    background: linear-gradient(-45deg, #3460ad, #0a49d1, #1e5eff, #3460ad);
    background-size: 300% 300%;
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    animation: gradientMove 4s ease infinite;
    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(6, 53, 164, 0.4);
}

nav .btn {
    padding: 10px 18px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
}

nav #navRaiseTicket.btn {
    background: #ffffff;
    color: #163f87;
    border: 1px solid rgba(52, 96, 173, 0.2);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
    animation: none;
}

nav #navRaiseTicket.btn:hover {
    color: #0f2f66;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
}

nav #navAssessment.btn {
    animation: none;
    box-shadow: 0 12px 28px rgba(52, 96, 173, 0.28);
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}



.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-bg {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.hero-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Optional dark overlay for readability */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 16px;
}





.cta a {
    margin-right: 15px;
}

.btn-primary {
    background: #3460ad;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
}

.btn-primary-white {
    background: #ffffff;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: dodgerblue;
    font-weight: bold;
    border: 2px solid #3460ad;
    transition: all 0.3s ease;
}

.btn-secondary {
    border: 2px solid #3460ad;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    color: #3460ad;
}

.section {
    /*background: linear-gradient(to right, #f0f9ff, #ffffff);*/
    overflow: visible;
    /*min-height: calc(100vh - 100px);*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    /*height: calc(100svh - 70px);*/
    /* full screen minus navbar */
    height: auto;
    /* min-height: 80vh; */
    margin: 0;
}

.section-subtext {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.6;
    max-width: 1000px;
}

.section.light {
    background: #f9fafb;
}

.section h1 {
    color: #3460ad;
    font-weight: 600;
}

.section h2 {
    text-align: left;
    margin-bottom: 40px;
    font-size: 28px;
    color: #3460ad;
    font-weight: 600;
}



.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border-radius: 14px;
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}



.card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #3460ad;
    font-weight: 600;
}

.card p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
}

.card-btn {
    display: inline-block;
    border-radius: 8px;
    background: #16a34a;
    /* green */
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease;
    padding: 8px 14px;
    font-size: 20px;
}

.card-btn:hover {
    background: #15803d;
}


.arrow-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 28px;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 12px;
}

/* Arrow base */
.arrow-btn .arrow {
    opacity: 0;
    transform: translateX(-6px);
    font-weight: 800;
    animation: arrowFlowColor 1s infinite ease-in-out;
}

/* stagger timing */
.arrow-btn .arrow:nth-child(1) {
    animation-delay: 0s;
}

.arrow-btn .arrow:nth-child(2) {
    animation-delay: 0.25s;
}

.arrow-btn .arrow:nth-child(3) {
    animation-delay: 0.5s;
}

/* Animation */
@keyframes arrowFlowColor {
    0% {
        opacity: 0;
        transform: translateX(-6px);
        color: #4ca257;
        /* green */
    }

    35% {
        opacity: 1;
        transform: translateX(0);
        color: #4ca257;
    }

    60% {
        opacity: 1;
        transform: translateX(4px);
        color: #38bdf8;
        /* blue */
    }

    100% {
        opacity: 0;
        transform: translateX(8px);
        color: #38bdf8;
    }
}



.price.highlight {
    border: 2px solid #3460ad;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;

}

.info-box {
    background: #eef2ff;
    padding: 30px;
    border-radius: 12px;
}

.cta-section {
    /*background: linear-gradient(to right, #3460ad, #1e40af);*/
    color: #fff;
    text-align: center;
}

.cta-section p {
    margin: 20px 0;
}

.btn-primary.large {
    padding: 14px 28px;
    font-size: 18px;
}

.footer {
    text-align: center;
    padding: 10px;
    background: #adadad;
    color: #000000;
}



.animate {
    animation: fadeUp 0.8s ease-in-out forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

nav a.active {
    color: #3460ad;
    border-bottom: 3px solid #3460ad;
    padding-bottom: 6px;
}


.features-section {
    padding: 10px 10px;
    position: relative;
    overflow: visible;
    background: transparent;
}

.feature-card {
    background: #3460ad;
    border-radius: 18px;
    /* Slight curve */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card-twocolumn {
    background: #ffffff;
    border-radius: 18px;
    /* Slight curve */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}



.feature-card-singlecolumn {
    background:#3460ad;
    border-radius: 18px;
    /* Slight curve */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    padding: 10px;
    display: grid;
    gap: 24px;
}

.highlight-text span{
    color: white !important;
}
.feature-item {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}


.tick {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 26px;
    height: 26px;
    margin-right: 12px;
    border-radius: 50%;
    background-color: #4ca257;
    /* Green */
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
}


.feature-item {
    transition: transform 0.2s ease;
}

.feature-item:hover {
    transform: translateX(4px);
}

html {
    scroll-behavior: smooth;
}


.it-intro {
    align-items: center;
    min-height: 400px;
}

.it-content h1 {
    font-size: 40px;
    color: #3460ad;
    margin-bottom: 14px;

}

.it-image-fixed {
    position: sticky;
    top: 120px;
    height: 420px;
    /* overflow: hidden; */

    /* ensure it never overlaps left column */
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.it-image-fixed img {
    max-width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
}

/* override only what is needed */
.it-image-fixed.moving-image-container {
    position: sticky;
    /* keep sticky */
}

/* animated image */
.it-image-fixed.moving-image-container img {
    position: absolute;
    object-fit: contain;

    /* anchor to right side */
    right: 20px;

    animation: moveRightOnly 5s ease-in-out infinite;
}

@keyframes moveRightOnly {
    0% {
        top: 0px;
        transform: translateX(0);
    }

    25% {
        top: 20px;
        transform: translateX(-40px);
        /* small inward move */
    }

    50% {
        top: 40px;
        transform: translateX(0);
    }

    75% {
        top: 20px;
        transform: translateX(40);
    }

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



.it-image-slide {
    width: 500px;
    /* fixed visual size */
    height: 500px;
    position: sticky;
    top: 120px;
    /* below navbar */
    display: flex;
    justify-content: center;
    align-items: left;
    overflow: hidden;

}

.it-image-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.5s ease-in-out;
}



.section-subtext {
    font-size: 25px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 22px;
    font-weight: bold;
}

.section-subtext.muted {
    color: #666;
    margin-top: 18px;
}

.it-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 24px;
    margin: 20px 0;
}

.zoom-text {
    opacity: 0;
}



@keyframes zoomOut {
    from {
        transform: scale(1.3);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}




.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #0f172a;
    background: #f5f9ff;
    padding: 12px 16px;
    border-radius: 10px;
    border-left: 4px solid #0a3cff;
}

.highlight-item .icon {
    font-size: 20px;
}

html,
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    /*overflow: hidden;*/
    overscroll-behavior: none;
    overscroll-behavior-y: none;
    background: transparent !important;
}


/*#home-bg {
    min-height: 100vh;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}*/

/* Fade layer */
/*#home-bg::before {
        content: "";
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0;
        transition: opacity 1s ease-in-out;
        z-index: -1;
    }*/

/* =========================
   PAGE DOWN INDICATOR
========================= */

#pageDownIndicator {
    position: fixed;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    cursor: pointer;
    opacity: 0.8;
    animation: bounceDown 1.8s infinite;
    user-select: none;
    pointer-events: auto;
    /* 🔥 important */
    transition: opacity 0.3s ease;
}

#pageDownIndicator span {
    font-size: 34px;
    color: #13672a;
    pointer-events: none;
}

#pageDownIndicator:hover {
    opacity: 1;

}

@keyframes bounceDown {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, 8px);
    }

    60% {
        transform: translate(-50%, 4px);
    }
}

.glitter-card {
    position: relative;
    overflow: hidden;
    /* critical */
    border-radius: 18px;
    background: #ffffff;
}

/* Diagonal glitter overlay */
.glitter-card::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;

    background: linear-gradient(135deg,
            transparent 35%,
            rgba(186, 230, 253, 0.45),
            /* sky blue */
            rgba(249, 168, 212, 0.45),
            /* light pink */
            transparent 65%);

    animation: glitterDiagonal 6s linear infinite;
    pointer-events: none;
    will-change: transform;
}

/* Diagonal-only movement */
@keyframes glitterDiagonal {
    0% {
        transform: translate(-30%, -30%);
        opacity: 0.35;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        transform: translate(30%, 30%);
        opacity: 0.35;
    }
}


/* ===============================
   THREAT → PROTECTION GRID
================================ */
.threat-protection-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    margin-top: 30px;
    align-items: stretch;
}

.light-card {
    width: 350px;
    background:#3460ad;
    color: #ffffff;
    padding: 25px;
    border-radius: 14px;
    text-align: center;
}

.threat-card {
    border-left: 4px solid #4ea35b;
}

.thread-title-card {
    position: relative;
    overflow: auto;
    background: #ffffff;
    border-radius: 14px;
    /* padding: 10px; */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    width: 200px;
    justify-self: center;
    margin-bottom: 15px;
}

.protection-card {
    border-left: 4px solid #4ea35b;
}

.threat-card h4,
.protection-card h4 {
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
    color: #250000;
}

.threat-card ul,
.protection-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.threat-card li,
.protection-card li {
    color: #ffffff;
    padding: 6px 0;
    font-weight: 400;
}

.threat-protection-grid.light-ui {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 0 auto;
}

/* Optional: subtle hover */
.threat-protection-grid.light-ui .light-card:hover {
    transform: translateY(-4px);
    transition: transform 0.25s ease;
}



/* ===============================
   RISK → IMPACT MATRIX (FIXED)
================================ */
.risk-matrix {
    display: grid;
    grid-template-columns: 140px repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
    align-items: center;
}

.risk-matrix.light-matrix {
    width: 999px;
    height: 333px;
    margin: 15px auto;
    /* center horizontally */
    display: grid;
    grid-template-columns: 200px repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 8px;
}

/* Headers & Labels */
.light-matrix .matrix-header,
.light-matrix .matrix-label {
    width: 200px;
    margin: 0 auto;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.matrix-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    padding: 8px;
    color: #ffffff;
    width: 200px;
    margin: 0 auto;
}

/* 🟢 Low – Light Green */
.light-matrix .matrix-cell.low {
    background: #3460ad;
    color: #ffffff;
}

/* 🔵 Medium – Light Blue */
.light-matrix .matrix-cell.medium {
    background: #3460ad;
    color: #ffffff;
}

/* 🔵 High – Blue */
.light-matrix .matrix-cell.high {
    background: #3460ad;
    color: #ffffff;
}

/* 🔵 Critical – Deep Blue */
.light-matrix .matrix-cell.critical {
    background: #3460ad;
    color: #ffffff;
}


/* Centered title card */
.title-card-wrap {
    display: flex;
    justify-content: center;
    margin: 15px 0 15px;
}

.title-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(6px);
    padding: 12px 28px;
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 123, 255, 0.25);
}

.title-card h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1f2d3d;
    white-space: nowrap;
}


/* ===============================
   RESPONSIVE FIXES
================================ */
@media (max-width: 992px) {
    .threat-protection-grid {
        grid-template-columns: 1fr;
    }

    .risk-matrix {
        grid-template-columns: 1fr;
    }

    .matrix-header,
    .matrix-label {
        display: none;
    }
}

.backup-architecture {
    padding: 15px 15px;
    color: #ffffff;
}

.section-title {
    /* text-align: left; */
    font-size: 24px;
    color: #3460ad;
    font-weight: 600;
}

.section-subtitle {
    text-align: left;
    max-width: 1200px;
    margin: 0 0 20px;
    color: #000000;
}


.footer2{
    display: flex !important;
    white-space: nowrap;
}
.backup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.backup-card {
    background: rgba(255, 255, 255, 0.863);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.highlight-text {
    background:#3560ab;
    border-left: 4px solid #3560ab;
    padding: 12px 14px;
    border-radius: 6px;
    color: #ffffff !important;
}



.backup-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.backup-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #ffffff;
}

.backup-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #3460ad;
    font-weight: 600;
}

.backup-card p {
    font-size: 0.95rem;
    color: #000000;
    line-height: 1.6;
}

.backup-architecture strong {
    color: rgb(0, 128, 128);
    font-weight: 800;
}

.backup-card strong {
    color:#4ca257;
    font-weight: 800;
}


/* Highlight immutable backup */
.backup-card.highlight {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(56, 189, 248, 0.15));
    border-color: rgba(56, 189, 248, 0.4);
}


.card_transparent {
    position: relative;
    overflow: hidden;
    background: #ffffff21;
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}


/* ===============================
   SECTION 2 – WHAT’S INCLUDED
================================ */

.baas-section {
    background: transparent;
    padding: 10px;
    text-align: center;
}

.baas-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
    color: #3460ad;
    font-weight: 600;
}

.baas-subtitle {
    font-size: 1.1rem;
    color: #4b5563;
    max-width: 720px;
    margin: 0 auto 50px;
}

/* Grid */
.baas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Card */
.baas-card {
    background: linear-gradient(135deg, rgb(0 72 255 / 68%), rgb(0 255 137 / 35%));
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 30px 25px;
    border: 1px solid rgba(13, 110, 253, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.baas-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(13, 110, 253, 0.25);
}

.baas-icon {
    font-size: 3.2rem;
    margin-bottom: 15px;
}

.baas-card h4 {
    font-size: 1.5rem;
    color: #3460ad;
    margin-bottom: 10px;
    font-weight: 600;
}

.baas-card p {
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.6;
}


/* ===============================
   SECTION 3 – SUPPORTED WORKLOADS
================================ */

.baas-workloads {
    background: transparent;
    padding: 10px;
    text-align: center;
}

.baas-workloads h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0b5ed7;
}

/* List */
.workload-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 820px;
    margin: 0 auto;
}

.workload-item {
    font-size: 1.3rem;
    font-weight: 600;
    padding: 22px 30px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgb(22 253 13 / 54%), rgb(25 59 135 / 38%));
    backdrop-filter: blur(6px);
    border: 1px solid rgba(25, 135, 84, 0.35);
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.workload-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(25, 135, 84, 0.3);
}


/* ===============================
   MOBILE RESPONSIVE
================================ */

@media (max-width: 768px) {

    .baas-title,
    .baas-workloads h3 {
        font-size: 1.9rem;
    }

    .workload-item {
        font-size: 1.1rem;
        padding: 18px 20px;
    }
}



/* =========================
   DR RECOVERY TIMELINE
========================= */

.dr-timeline-section {
    padding: 10px 10px;
    text-align: center;
}

.dr-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #3460ad;
    /* Blue */
    margin-bottom: 10px;
}

.dr-subtitle {
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1rem;
}

/* Timeline Container */
.dr-timeline {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Step Card */
.dr-step {
    background: rgb(18 75 36 / 66%);
    backdrop-filter: blur(6px);
    border-radius: 16px;
    padding: 30px 20px;
    width: 220px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.dr-step:hover {
    transform: translateY(-6px);
}

/* Icon */
.dr-icon {
    font-size: 2.4rem;
    margin-bottom: 15px;
    color: #10b981;
    /* Green */
}

/* Titles */
.dr-step h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

/* Text */
.dr-step p {
    font-size: 0.95rem;
    color: #cbd5f5;
    line-height: 1.5;
}

/* Connector Line */
.dr-connector {
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, #1f4fd8, #10b981);
    align-self: center;
}

/* Mobile */
@media (max-width: 900px) {
    .dr-timeline {
        flex-direction: column;
    }

    .dr-connector {
        width: 2px;
        height: 30px;
    }
}


/* Glass container */
.glass-card {
    background: rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(14px);

    border-radius: 18px;
    padding: 30px;

    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.25),
        inset 0 0 0 rgba(255, 255, 255, 0.2);

    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

/* Soft glowing edge */
.glass-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    opacity: 0.35;
    filter: blur(20px);
    z-index: -1;
}

/* Hover glow enhancement */
.glass-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.35),
        0 0 30px rgba(19, 103, 42, 0.35);
}


.glass-light {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
}



.risk-solution-wrap {
    margin-top: 40px;
}

.risk-solution-table {
    width: 999px;
    height: 333px;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    justify-self: center;
}

.risk-solution-table thead {
    background: #0f172a;
    /* dark navy */
}

.risk-solution-table th {
    color: #ffffff;
    text-align: left;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.risk-solution-table td {
    padding: 16px 20px;
    font-size: 14px;
    color: #334155;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: middle;
}

.risk-solution-table tbody tr:last-child td {
    border-bottom: none;
}

.risk-solution-table tbody tr:hover {
    background: #f8fafc;
}

/* Emphasis by column */
.risk-solution-table td:first-child {
    font-weight: 600;
    color: #0f172a;
}

.risk-solution-table td:last-child {
    font-weight: 500;
    color: #047857;
    /* success green */
}

/* Mobile friendly */
@media (max-width: 768px) {

    .risk-solution-table th,
    .risk-solution-table td {
        padding: 14px 16px;
        font-size: 13px;
    }
}




/*new content  */
:root {
    --primary-color: #0f172a;
    /* Dark Navy */
    --accent-color: #3460ad;
    /* Bright Blue */
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-color: #f8fafc;
    --card-bg: #ffffff;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Reset & Base Styles */

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

/* Small underline decoration for title */
.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 boxes per row */
    gap: 2rem;
}

/* Card Styles */
.service-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    /* The requested box shadow */
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

/* Hover Effect */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
    border-top-color: var(--accent-color);
}

/* Icon Styling */
.card-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1.25rem;
    background-color: rgba(59, 130, 246, 0.1);
    width: 80px !important;
    height: 80px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Card Title */
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
}

/* List Styling */
.service-list {
    list-style: none;
}

.service-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Custom Bullet Point (Checkmark or Arrow) */
.service-list li::before {
    content: '\f00c';
    /* FontAwesome Check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-color);
    font-size: 0.85rem;
}




.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 160px));
    justify-content: center;
    gap: 28px 24px;
}

/* .card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 25px 10px;
    text-align: center;
    transition: 0.3s;
} */

/* .card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
} */

.card1 img {
    width: 56px;
    height: 56px;
    margin-bottom: 0;
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
    position: static;
    left: auto;
    display: block;
    object-fit: contain;
}

.card1 {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border-radius: 14px;
    min-height: 150px;
    padding: 22px 16px 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: center !important;
    justify-content: flex-start !important;
    align-items: center !important;
}

.card1 p {
    margin: 0;
    max-width: 14ch;
    min-height: 2.8em;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1.4;
}


/* footer section style */


/* Professional Footer Styles */
.footer-section {
    background: #1e293b 100%;
    color: #e2e8f0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    padding: 30px 0px 0px 0px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 3rem;
}

/* Column Headings */
.footer-col h4 {
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 1.5rem;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    /* Professional separator */
    display: inline-block;
}

/* List Styling */
.footer-col ul {
    list-style: none;
    padding: 0px 15px 0px 0px;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.85rem;
}

/* Link Styling */
.footer-col a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

/* Icon Styling inside Links */
.footer-col a i {
    margin-right: 10px;
    font-size: 0.85rem;
    width: 16px;
    /* Ensures alignment */
    text-align: center;
    opacity: 0.8;
}

/* Hover Effect: Slide right and brighten */
.footer-col a:hover {
    color: #ffffff;
    transform: translateX(5px);
    text-decoration: none;
}

.footer-col a:hover i {
    opacity: 1;
    color: #60a5fa;
    /* Light blue icon on hover */
}

/* Contact Paragraphs Styling */
.footer-col p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.footer-col p a {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    font-weight: 500;
}

/* Bottom Copyright Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cols on tablet */
        gap: 2.5rem;
    }
}

@media (max-width: 600px) {

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        justify-items: center;
        /* Center grid items horizontally */
    }

}



/* single page */


/* 
         * ==========================================
         * RD CORE STYLES & VARIABLES
         * ==========================================
         */
:root {
    --rd-primary-blue: #3460ad;
    --rd-secondary-blue: #3460ad;
    --rd-accent-blue: #e6f0ff;
    --rd-dark-text: #1a2a3a;
    --rd-light-text: #5c6b7f;
    --rd-white: #ffffff;
    --rd-bg-light: #f8fbff;
    --rd-gradient-main: linear-gradient(135deg, #3460ad 0%, #002a80 100%);
    --rd-shadow-soft: 0 10px 30px rgba(0, 68, 204, 0.1);
    --rd-shadow-hover: 0 20px 40px rgba(0, 68, 204, 0.2);
    --rd-border-radius: 12px;
    --rd-transition-speed: 0.3s;
}


.rd-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--rd-transition-speed) ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.rd-btn-primary {
    background-color: var(--rd-primary-blue);
    color: var(--rd-white);
    box-shadow: 0 4px 15px rgba(0, 68, 204, 0.3);
}

.rd-btn-primary:hover {
    background-color: var(--rd-secondary-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 68, 204, 0.4);
}

.rd-btn-outline {
    background-color: transparent;
    border-color: var(--rd-primary-blue);
    color: var(--rd-primary-blue);
}

.rd-btn-outline:hover {
    background-color: var(--rd-primary-blue);
    color: var(--rd-white);
}

/* Container */
.rd-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Spacing */
.rd-section-padding {
    padding: 30px 0px 10px 0px;
}

.rd-bg-light {
    background-color: var(--rd-bg-light);
}


/* 
         * ==========================================
         * RD HERO SECTION (First Container)
         * ==========================================
         */
.rd-hero-wrapper {
    padding: 50px 0px;
    background: linear-gradient(180deg, var(--rd-white) 0%, var(--rd-bg-light) 100%);
    overflow: hidden;
}

/* .rd-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
} */
.rd-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;   /* vertical alignment */
    gap: 40px;
}
.rd-hero-content {
    max-width: 520px;
}

.rd-hero-content {
    z-index: 2;
}

.rd-hero-tagline {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--rd-dark-text);
    margin-bottom: 15px;
    display: block;
}

.rd-hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    color: #3460ad;
}

.rd-hero-desc {
    font-size: 1.125rem;
    margin-bottom: 30px;
    max-width: 90%;
}

/* Floating Image Animation */
/* .rd-hero-image-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
} */

/* The specific class requested by user */
/* .rd-floating-graphic-inner {
    border-radius: var(--rd-border-radius);
    animation: rd-float-super 6s ease-in-out infinite;
    position: relative;
    z-index: 10;
} */

/* Background blob for visual interest behind image */
/* .rd-hero-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: rd-pulse-bg 8s infinite alternate;
} */

.rd-hero-image-col img {
    height: auto;
    display: block;
    object-fit: contain;
}

.rd-hero-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rd-floating-graphic-inner {
    width: 100%;
    max-width: 420px;   /* controls image width */
    height: auto;       /* keeps natural ratio */
    object-fit: contain;
}
@keyframes rd-float-super {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes rd-pulse-bg {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

/* 
         * ==========================================
         * RD AUDIENCE & PROTECTION (Grid Layouts)
         * ==========================================
         */
.rd-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.rd-card {
    background: var(--rd-white);
    padding: 30px;
    border-radius: var(--rd-border-radius);
    box-shadow: var(--rd-shadow-soft);
    border-top: 4px solid transparent;
    transition: all var(--rd-transition-speed) ease;
}

.rd-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--rd-secondary-blue);
    box-shadow: var(--rd-shadow-hover);
}

.rd-card-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--rd-secondary-blue);
    display: inline-block;
    background: var(--rd-accent-blue);
    padding: 10px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 55px;
}

/* 
         * ==========================================
         * RD HOW WE DELIVER
         * ==========================================
         */
.rd-delivery-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.rd-delivery-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--rd-bg-light);
    padding: 20px;
    border-radius: var(--rd-border-radius);
    transition: background 0.3s;
}

.rd-delivery-item:hover {
    background: var(--rd-white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.rd-check-icon {
    color: var(--rd-primary-blue);
    font-weight: bold;
    font-size: 1.2rem;
    min-width: 20px;
}

/* 
         * ==========================================
         * RD PLANS (Pricing)
         * ==========================================
         */
.rd-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: start;
}

.rd-plan-card {
    background: var(--rd-white);
    border: 1px solid #eee;
    border-radius: var(--rd-border-radius);
    padding: 40px;
    text-align: center;
    transition: all var(--rd-transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.rd-plan-card:hover {
    border-color: var(--rd-primary-blue);
    box-shadow: var(--rd-shadow-hover);
}

.rd-plan-card.featured {
    background: #3460ad;
    color: var(--rd-white);
    transform: scale(1.05);
    border: none;
    box-shadow: 0 15px 40px rgba(0, 68, 204, 0.3);
    z-index: 2;
}

.rd-plan-card.featured h3,
.rd-plan-card.featured p,
.rd-plan-card.featured .rd-plan-price {
    color: var(--rd-white);
}

.rd-plan-card.featured .rd-plan-desc {
    color: rgba(255, 255, 255, 0.8);
}

.rd-plan-card.featured .rd-btn {
    background: var(--rd-white);
    color: var(--rd-primary-blue);
}

.rd-plan-card.featured .rd-btn:hover {
    background: var(--rd-accent-blue);
    color: var(--rd-primary-blue);
}

.rd-plan-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rd-primary-blue);
    margin: 20px 0;
}

.rd-plan-desc {
    margin-bottom: 30px;
    min-height: 50px;
}

/* 
         * ==========================================
         * RD FAQ (Accordion)
         * ==========================================
         */
.rd-faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.rd-faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 10px;
}

.rd-faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--rd-dark-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.rd-faq-question:hover {
    color: var(--rd-primary-blue);
}

.rd-faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--rd-secondary-blue);
    transition: transform 0.3s;
}

.rd-faq-item.active .rd-faq-question::after {
    transform: rotate(45deg);
}

.rd-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.rd-faq-answer p {
    padding-bottom: 20px;
}

.rd-footer {
    background-color: #f8ffff36;
    padding: 60px 0px 0px 10px;
    text-align: center;
}

.rd-footer h2 {
    color: var(--rd-white);
}

.rd-footer p {
    color: #ffffff;
}

.rd-cta-box {
    background: #4ca257;
    padding: 40px;
    border-radius: var(--rd-border-radius);
    margin-bottom: 40px;
}

/* 
         * ==========================================
         * RESPONSIVE
         * ==========================================
         */
@media (max-width: 900px) {
    .rd-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .rd-hero-title {
        font-size: 2.2rem;
    }

    .rd-hero-desc {
        margin: 0 auto 30px;
    }

    .rd-floating-graphic-inner {
        max-width: 80%;
        margin-top: 30px;
    }

    .rd-plan-card.featured {
        transform: scale(1);
    }
}


/* singel page2 */

/* ==========================================
   ADDITIONAL STYLES FOR DRAAS PAGE LAYOUT
   ========================================== */

/* Dark Hero Section Style */
.rd-hero-dark {
    background-color: var(--rd-dark-text);
    color: var(--rd-white);
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rd-hero-dark h1 {
    color: var(--rd-white);
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.rd-hero-dark p {
    color: #a0b0c0;
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
}

/* Abstract background elements for dark hero */
.rd-dark-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--rd-primary-blue);
    opacity: 0.1;
    z-index: 1;
}

.rd-dc-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -50px;
}

.rd-dc-2 {
    width: 500px;
    height: 500px;
    bottom: -100px;
    right: -100px;
}

/* Zig-Zag Split Layout for Features */
.rd-split-section {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

/* Reverse order for every even section */
.rd-split-section:nth-child(even) {
    flex-direction: row-reverse;
}

.rd-split-text {
    flex: 1;
}

.rd-split-visual {
    flex: 1;
    height: 350px;
    border-radius: var(--rd-border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Simple placeholder graphic styling for the split layout */
.rd-visual-icon {
    font-size: 5rem;
    color: var(--rd-primary-blue);
    opacity: 0.2;
    transition: transform 0.5s ease;
}

.rd-split-visual:hover .rd-visual-icon {
    transform: scale(1.1);
    opacity: 0.4;
}

/* Single Plan Layout */
.rd-plan-single-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.rd-plan-large-card {
    background: var(--rd-white);
    border: 2px solid var(--rd-primary-blue);
    border-radius: var(--rd-border-radius);
    padding: 50px;
    box-shadow: var(--rd-shadow-hover);
    position: relative;
}

.rd-plan-large-badge {
    background: var(--rd-primary-blue);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.rd-addon-box {
    margin-top: 30px;
    background: #fff;
    border: 1px dashed var(--rd-light-text);
    padding: 20px;
    border-radius: var(--rd-border-radius);
    color: var(--rd-dark-text);
}

/* Responsive adjustments for new layout */
@media (max-width: 768px) {

    .rd-split-section,
    .rd-split-section:nth-child(even) {
        flex-direction: column;
    }

    .rd-split-visual {
        width: 100%;
        height: 250px;
    }

    .rd-hero-dark h1 {
        font-size: 2rem;
    }
}


/* ==========================================
   UNIQUE ANIMATION FOR HYBRID PAGE IMAGE
   ========================================== */
.rd-float-unique {
    animation: rd-side-sway 6s ease-in-out infinite;
}

@keyframes rd-side-sway {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}


/* ==========================================
   UNIQUE ANIMATION FOR ERP PAGE IMAGE
   ========================================== */
.rd-float-scale {
    animation: rd-breath-scale 5s ease-in-out infinite;
}

@keyframes rd-breath-scale {
    0% {
        transform: scale(1);
        box-shadow: var(--rd-shadow-soft);
    }

    50% {
        transform: scale(1.02);
        box-shadow: var(--rd-shadow-hover);
    }

    100% {
        transform: scale(1);
        box-shadow: var(--rd-shadow-soft);
    }
}



/* ==========================================
   UNIQUE ANIMATION FOR ENDPOINT PAGE IMAGE
   ========================================== */
.rd-float-drift {
    animation: rd-horizontal-drift 6s ease-in-out infinite;
    /* This overrides the 'rd-float-super' animation from the base class */
    animation-name: rd-horizontal-drift !important;
}

@keyframes rd-horizontal-drift {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(20px);
    }

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

/* ==========================================
   UNIQUE ANIMATION FOR DATA & WORKLOAD PAGE IMAGE
   ========================================== */
.rd-float-vital {
    animation: rd-vital-pulse 5s ease-in-out infinite;
    /* This overrides the 'rd-float-super' animation from the base class */
    animation-name: rd-vital-pulse !important;
}

@keyframes rd-vital-pulse {
    0% {
        transform: translateY(0px) scale(1);
        box-shadow: 0 10px 30px rgba(0, 68, 204, 0.1);
    }

    50% {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 25px 50px rgba(0, 68, 204, 0.25);
    }

    100% {
        transform: translateY(0px) scale(1);
        box-shadow: 0 10px 30px rgba(0, 68, 204, 0.1);
    }
}

/* ==========================================
   UNIQUE ANIMATION FOR EMAIL & SAAS PAGE IMAGE
   ========================================== */
.rd-float-wobble {
    animation: rd-wobble-effect 6s ease-in-out infinite;
    /* This overrides the 'rd-float-super' animation from the base class */
    animation-name: rd-wobble-effect !important;
}

@keyframes rd-wobble-effect {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-15px) rotate(-2deg);
    }

    50% {
        transform: translateY(0px) rotate(0deg);
    }

    75% {
        transform: translateY(-15px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}



/* ==========================================
   UNIQUE ANIMATION FOR APPLICATION-AWARE PAGE IMAGE
   ========================================== */
.rd-float-pulse-glow {
    animation: rd-pulse-glow-anim 4s ease-in-out infinite;
    /* This overrides the 'rd-float-super' animation from the base class */
    animation-name: rd-pulse-glow-anim !important;
}

@keyframes rd-pulse-glow-anim {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 68, 204, 0.1);
    }

    50% {
        transform: scale(1.04);
        box-shadow: 0 25px 60px rgba(0, 68, 204, 0.3);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 68, 204, 0.1);
    }
}



/* ==========================================
   UNIQUE ANIMATION FOR RANSOMWARE PAGE IMAGE
   ========================================== */
.rd-float-defense {
    animation: rd-defense-pulse 5s ease-in-out infinite;
    /* This overrides the 'rd-float-super' animation from the base class */
    animation-name: rd-defense-pulse !important;
}

@keyframes rd-defense-pulse {
    0% {
        transform: translateY(0px);
        box-shadow: 0 10px 30px rgba(0, 68, 204, 0.1);
    }

    50% {
        transform: translateY(-10px);
        /* Wide shadow representing a shield/area of protection */
        box-shadow: 0 30px 80px rgba(0, 68, 204, 0.25);
    }

    100% {
        transform: translateY(0px);
        box-shadow: 0 10px 30px rgba(0, 68, 204, 0.1);
    }
}


/* ==========================================
   UNIQUE ANIMATION FOR IMMUTABLE & AIR-GAPPED PAGE IMAGE
   ========================================== */
.rd-float-seal {
    animation: rd-seal-effect 10s ease-in-out infinite;
    /* This overrides the 'rd-float-super' animation from the base class */
    animation-name: rd-seal-effect !important;
}

@keyframes rd-seal-effect {
    0% {
        transform: translateY(0px) rotateX(0deg) rotateY(0deg);
    }

    50% {
        transform: translateY(-15px) rotateX(5deg) rotateY(-5deg);
    }

    100% {
        transform: translateY(0px) rotateX(0deg) rotateY(0deg);
    }
}


/* ==========================================
   UNIQUE ANIMATION FOR BUSINESS CONTINUITY PAGE IMAGE
   ========================================== */
.rd-float-sync {
    animation: rd-sync-effect 7s ease-in-out infinite;
    /* This overrides the 'rd-float-super' animation from the base class */
    animation-name: rd-sync-effect !important;
}

@keyframes rd-sync-effect {
    0% {
        transform: translateY(0px);
        filter: brightness(100%);
    }

    50% {
        transform: translateY(-15px);
        /* Subtle brightness increase to simulate a 'status check' */
        filter: brightness(110%);
    }

    100% {
        transform: translateY(0px);
        filter: brightness(100%);
    }
}


#core,
#infrastructure,
#data,
#security {
    scroll-margin-top: 120px;
}





/* Services Grid Responsive */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Tablet */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.textcenter{
    text-align: center !important;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 160px));
    justify-content: center;
    gap: 28px 24px;
    margin-top: 30px;
}

/* Laptop */
@media (max-width: 1200px) {
    .grid-container {
        grid-template-columns: repeat(auto-fit, minmax(140px, 155px));
        gap: 24px 20px;
    }
}

/* Tablet */
@media (max-width: 900px) {
    .grid-container {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    }
}

/* Mobile */
@media (max-width: 600px) {
    .grid-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 14px;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 600px) {

    .service-card,
    .card1 {
        min-height: 138px;
        padding: 18px 12px 16px;
        text-align: center;
    }

    .card1 img {
        width: 48px;
        height: 48px;
    }

    .card1 p {
        max-width: none;
        min-height: 0;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .glass-card {
        padding: 20px;
    }
}


@media (max-width: 600px) {
    .section-title {
        font-size: 1.4rem;
        line-height: 1.4;
    }
}


@media (max-width: 768px) {

    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        margin-top: 30px;
    }

}


/* ===== HERO LAYOUT ===== */
.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    /* padding: 40px 0; */
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hand-of-god {
    position: relative;
    right: -80px;
    bottom: 37px;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* ===== TEXT STYLING ===== */

.hero-brand {
    font-size: clamp(36px, 8vw, 80px);
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: clamp(14px, 2vw, 20px);
    color: #ffffff;
    margin-bottom: 20px;
}

.hero-main {
    font-size: clamp(20px, 4vw, 40px);
    margin-bottom: 20px;
    color: #4ca257!important;
}

.hero-tagline {
    font-size: clamp(16px, 3vw, 28px);
    color: #ffffff;
}

.bg-cyan{
    background-color:#3460ad ;
}


/* faq ui */



/* ================= VARIABLES & RESET ================= */
:root {
    --primary: #3460ad;
    --primary-dark: #3460ad;
    --accent: #3460ad;
    --bg-gradient-1: #0f172a;
    --bg-gradient-2: #1e293b;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-main: #1e293b;
    --text-muted: #64748b;
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 50px -10px rgba(37, 99, 235, 0.15);
    --radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================= MAIN CONTAINER ================= */
.rdf-wrapper {
    padding: 20px;
}

.rdf-container {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
    gap: 40px;
    position: relative;
    align-items: flex-start;
    /* Important for sticky sidebar alignment */
}

/* ================= SIDEBAR (Always Visible Search) ================= */
.rdf-sidebar {
    width: 320px;
    flex-shrink: 0;
    /* Sticky positioning to keep it visible */
    position: sticky;
    top: 20px;

    /* Flex layout to separate Search (Fixed) from Buttons (Scrollable) */
    display: flex;
    flex-direction: column;

    /* Ensure it doesn't overflow viewport height */
    max-height: 90vh;
    background: rgba(255, 255, 255, 0.05);
    /* Subtle backing */
    border-radius: 16px;
    padding: 20px 0;
    /* Padding for look */
    backdrop-filter: blur(10px);
    z-index: 100;
}

/* SEARCH BOX - Fixed at top of sidebar */
.rdf-search-input {
    width: 70%;
    padding: 16px 20px;
    margin: 0 20px 20px 20px;
    /* Side margins match container, bottom margin separates from list */
    border: 2px solid #e2e8f0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    font-size: 15px;
    color: #0f172a;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    /* Prevents shrinking */
}

.rdf-search-input:focus {
    outline: none;
    background: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

/* NAV LIST - Scrollable area for buttons */
.rdf-nav-list {
    flex: 1;
    /* Takes remaining height */
    overflow-y: auto;
    /* Allows scrolling if buttons exceed screen height */
    padding: 0 10px 20px 10px;
    /* Padding for scrollbar space */

    /* Scrollbar styling */
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.rdf-nav-list::-webkit-scrollbar {
    width: 6px;
}

.rdf-nav-list::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

/* NAV BUTTONS */
.rdf-nav-btn {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 14px 20px;
    margin-bottom: 10px;
    background: #3460ad;
    /* Slightly more transparent */
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.rdf-nav-btn:hover {
    background: rgba(37, 99, 235, 0.3);
    color: #fff;
    transform: translateX(2px);
}

.rdf-nav-btn.active {
    background: rgba(13, 45, 150, 0.986);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
    font-weight: 600;
}

.rdf-nav-btn.active::before {
    content: '•';
    margin-right: 10px;
    font-size: 20px;
    line-height: 0;
    color: var(--accent);
}

/* ================= CONTENT AREA ================= */
.rdf-content {
    flex: 1;
    background: var(--glass-bg);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--glass-border);
    position: relative;
    min-height: 600px;
    /* Ensure content area has height */
}

/* SECTIONS (Tabs) */
.rdf-section {
    display: none;
    animation: sectionFadeIn 0.4s ease forwards;
}

.rdf-section.active {
    display: block;
}

@keyframes sectionFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= SUB-CATEGORY HEADERS ================= */
.rdf-sub-header {
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e2e8f0;
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
    display: none;
    /* Hidden by default, shown if items exist in it */
}

/* Specific fix: Keep header visible if it has content */
.rdf-sub-header:has(+ .rdf-item:not([style*="display: none"])) {
    display: block;
}

/* Fallback for browsers not supporting :has() (JS will handle this, but CSS helps) */
.rdf-sub-header.visible {
    display: block;
}

/* ================= FAQ ITEM ================= */
.rdf-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 20px 0;
    transition: var(--transition);
}

.rdf-item:last-child {
    border-bottom: none;
}

.rdf-item:hover {
    background: rgba(37, 99, 235, 0.02);
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 8px;
    margin: 0 -10px;
}

/* Class to hide items during search */
.rdf-item.hidden-item {
    display: none !important;
}

/* ================= QUESTION ================= */
.rdf-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 0;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.rdf-question:hover {
    color: var(--primary);
}

.rdf-question::after {
    content: "+";
    font-size: 24px;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s ease;
    line-height: 1;
    flex-shrink: 0;
    margin-left: 15px;
}

.rdf-question.open {
    color: var(--primary);
}

.rdf-question.open::after {
    content: "−";
    /* Better dash */
    transform: rotate(0deg);
}

/* ================= ANSWER ================= */
.rdf-answer {
    display: none;
    margin-top: 15px;
    padding-left: 10px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 400;
    border-left: 3px solid var(--accent);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .rdf-container {
        flex-direction: column;
        gap: 30px;
        margin: 30px auto;
    }

    .rdf-sidebar {
        width: 100%;
        position: static;
        /* Not sticky on mobile, just stack */
        max-height: none;
    }

    .rdf-nav-list {
        overflow-y: visible;
    }

    .rdf-content {
        padding: 25px;
    }
}



/* documentstyle */
/* Wrapper */
.rd-dpa-wrapper {
    width: 100%;
    background-color: #f4f6f9;
    padding: 40px 15px;
    box-sizing: border-box;
}

/* Main Container */
.rd-dpa-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px 60px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    line-height: 1.7;
}

/* Titles */
.rd-dpa-main-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 5px;
}

.rd-dpa-sub-title {
    text-align: center;
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 30px;
    color: #666;
}

/* Meta */
.rd-dpa-meta {
    margin: 0;
    font-size: 14px;
}

/* Section Titles */
.rd-dpa-section-title {
    margin-top: 30px;
    font-size: 18px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
    padding-bottom: 6px;
}

.rd-dpa-subsection-title {
    margin-top: 20px;
    font-size: 16px;
    font-weight: bold;
}

/* Lists */
.rd-dpa-list {
    margin: 10px 0 10px 20px;
    padding-left: 20px;
}

.rd-dpa-list li {
    margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .rd-dpa-container {
        padding: 25px;
    }

    .rd-dpa-main-title {
        font-size: 22px;
    }

    .rd-dpa-section-title {
        font-size: 16px;
    }
}

/* All Headings Color */
.rd-dpa-main-title,
.rd-dpa-sub-title,
.rd-dpa-section-title,
.rd-dpa-subsection-title {
    color: #3761ac;
}

.new {
    z-index: 20 !important;
}

.change-img {
    height: 70 !important;
    width: 73px !important;
    /* padding-top: 36px; */
    position: relative;
    top: 4px;
}

.change-img1 {
    width: 100px !important;
    position: relative;
    top: 1px;
}


.rd-delivery-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.rd-check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.rd-check-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.rd-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s ease;
}

.rd-card:hover {
    transform: translateY(-5px);
}

.rd-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rd-card-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.rd-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

.rd-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.backup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.backup-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.backup-card:hover {
    transform: translateY(-6px);
}

.backup-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.backup-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.backup-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.backup-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}


/* Split Layout */
.rd-split-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

/* Text Area */
.rd-split-text {
    flex: 1;
    min-width: 300px;
}

.rd-split-text p {
    margin: 15px 0 25px;
    color: #666;
    line-height: 1.7;
}

/* Visual Image */
.rd-split-visual {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.rd-visual-image {
    width: 100%;
    max-width: 420px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
}

.rd-visual-image:hover {
    transform: translateY(-8px);
}

/* Delivery List */
.rd-delivery-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rd-delivery-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px !important;
    font-size: 15px;
    transition: 0.3s ease;
}

.rd-delivery-item:hover {
    transform: translateX(6px);
}

/* Check Icon */
.rd-check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}


/* Animation */
.rd-split-section {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.8s ease forwards;
}

.rd-split-section:nth-child(2) {
    animation-delay: 0.3s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
