/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    /* Body font (Roboto) */
    background-color: #061138;
    /* Dark blue background */
    color: #ffffff;
    line-height: 1.6;
}

/* Headings font (Poppins) */
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;
}

.slider-wrapper {
    position: relative;
}

.swiper {
    padding: 20px 0 60px 0 !important;
}

/* Enable continuous smooth linear scrolling */
.swiper-wrapper {
    transition-timing-function: linear !important;
}

/* Trust Card - Square Design */
.trust-card {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 28px 24px; /* Reduced padding to fit more text */
    color: #0b1a45;
    /* Ensure the card is square */
    aspect-ratio: 1 / 1;
    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;
    height: 100%;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.icon-box {
    width: 64px;
    height: 64px;
    background-color: #2563eb;
;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.trust-card h3 {
    font-size: 17.6px; /* Slightly smaller */
    font-weight: 600;
    margin-bottom: 8px; /* Reduced margin */
    color: #07194f;
    line-height: 1.3;
    min-height: 2.6em; /* Forces 2 lines so paragraphs start at the same height */
}

.trust-card p {
    font-size: 16.8px;
    color: #4a5578;
    line-height: 1.4;
    margin-bottom: 20px;
    /* Full content visible, prevents breaking square aspect ratio */
    min-height: 0;
    overflow-y: auto;
}

.trust-card p::-webkit-scrollbar {
    width: 3px;
}
.trust-card p::-webkit-scrollbar-thumb {
    background: #e2e6f3;
    border-radius: 4px;
}

.card-line {
    width: 30px;
    height: 3px;
    background-color: #1e5dd9;
    border-radius: 2px;
    margin-top: auto;
}

/* Hosting Plan Section */
.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: 20px;
    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 Styles */
.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;
    }
}