        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: #061138;
            color: #ffffff;
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6, .poppins {
            font-family: 'Poppins', sans-serif;
        }

        .trust-section {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
        }

        .section-title {
            text-align: center;
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 18.4px;
            color: #a0a8cc;
            margin-bottom: 60px;
        }

        .marquee-wrapper {
            width: 100%;
            overflow: hidden; 
            position: relative;
            padding: 20px 0 60px 0;
            display: flex;
        }

        .marquee-track {
            display: flex;
            gap: 30px;
            width: max-content;
            animation: marqueeScroll 25s linear infinite;
        }

        

        @keyframes marqueeScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-50% - 15px)); 
            }
        }

        /* Trust Card - Square Design */
        .trust-card {
            background-color: #ffffff;
            border-radius: 0px;
            padding: 28px 24px;
            color: #0b1a45;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            
            width: 500px;
            height: 300px; /* Forces a landscape rectangle shape */
            flex-shrink: 0;
        }

      /*  .trust-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }*/
        
         .trust-card .icon-box {
            width: 76px !important;
            height: 76px !important;
            border-radius: 18px !important;
            background-color: #eff6ff !important; /* Very light blue background */
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .trust-card .icon-box svg {
            width: 52px !important;
            height: 52px !important;
            background-color: #2563eb !important; /* Solid blue inner box */
            color: #ffffff !important; /* White icon inside */
            border-radius: 12px !important;
            padding: 12px !important; /* Space to make it look like an inner box */
            box-sizing: border-box;
            box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2); /* Soft shadow for premium look */
        }

    

        .trust-card h3 {
            font-size: 17.6px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #07194f;
            line-height: 1.3;
            min-height: 2.6em; /* Forces 2 lines */
        }

        .trust-card p {
            font-size: 16.8px;
            color: #4a5578;
            line-height: 1.4;
            margin-bottom: 20px;
            min-height: 0;
            overflow-y: auto;
        }

        .trust-card p::-webkit-scrollbar {
            width: 3px;
        }
        .trust-card p::-webkit-scrollbar-thumb {
            background: #e2e6f3;
            border-radius: 4px;
        }


        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .trust-card {
                width: 300px;
            }
        }
        @media (max-width: 768px) {
            .trust-card {
                width: 260px;
            }
        }
        @media (max-width: 576px) {
            .trust-card {
                width: 220px;
                padding: 20px 16px;
            }
            .icon-box {
                width: 48px;
                height: 48px;
                font-size: 1.3rem;
            }
            .trust-card h3 {
                font-size: 14px;
            }
            .trust-card p {
                font-size: 13px;
            }
        }
.hosting-plan-section {
    margin-top: 80px;
}

.hosting-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: left;
    line-height: 1.2;
}

.highlight-blue {
    color: #1e5dd9;
}

.hosting-cards-container {
    display: flex;
    gap: 30px;
}

.h-card {
    background-color: rgba(14, 30, 80, 0.4);
    border: 1px solid rgba(30, 93, 217, 0.4);
    border-radius: 0px;
    padding: 40px;
    display: flex;
    flex: 1;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s;
}

.h-card:hover {
    transform: translateY(-5px);
    border-color: rgba(30, 93, 217, 0.8);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), inset 0 0 20px rgba(30, 93, 217, 0.1);
}

.h-card-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
    padding-right: 20px;
}

.h-icon-box {
    width: 48px;
    height: 48px;
    background-color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(30, 93, 217, 0.6);
}

.h-icon-box.text-icon {
    font-weight: 700;
    font-size: 16px;
}

.h-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.h-card p {
    font-size: 16.8px;
    color: #a0a8cc;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.see-plans-btn {
    display: inline-flex;
    align-items: center;
    background-color: #fff;
    color: #061138;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 10px 8px 24px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.see-plans-btn:hover {
    background-color: #f0f0f0;
}

.btn-arrow-circle {
    width: 32px;
    height: 32px;
    background-color: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.see-plans-btn:hover .btn-arrow-circle {
    transform: translateX(3px);
}
.illustration {
    position: relative;
    width: 150px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cloud-outline {
    position: absolute;
    top: -20px;
    filter: drop-shadow(0 0 15px rgba(30, 93, 217, 0.5));
}

.cloud-text {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vps-text {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.servers {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 50px;
    z-index: 2;
}

.server {
    width: 90px;
    height: 20px;
    background: linear-gradient(180deg, #2878BE 0%, #1e5dd9 100%);
    border-radius: 4px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255,255,255,0.1);
}

.server::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 10%;
    width: 80%;
    height: 5px;
    background: #1e5dd9;
    filter: blur(8px);
    z-index: -1;
}

.server-pedestal {
    width: 120px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(30, 93, 217, 0.4) 0%, rgba(30, 93, 217, 0) 70%);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.4rem;
    }
    .trust-card {
        padding: 24px 20px;
    }
    .icon-box {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    .hosting-cards-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .section-title, .hosting-title {
        font-size: 2.2rem;
    }
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    .container {
        padding: 0 20px;
    }
    .trust-card {
        padding: 20px 16px;
    }
    .trust-card h3 {
        font-size: 1.05rem;
    }
    .trust-card p {
        font-size: 0.85rem;
    }
    .h-card {
        flex-direction: column;
        padding: 30px;
    }
    .h-card-left {
        padding-right: 0;
    }
   
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    .trust-section {
        padding: 60px 0;
    }
    .icon-box {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    .trust-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    .trust-card p {
        margin-bottom: 12px;
    }
}