﻿/* ================= HERO SECTION ================= */

#section-hero {
    padding: 80px 0 !important;
}

.section-title {
    color: #222;
    font-size: 1.6rem;
    letter-spacing: normal !important;
    margin-bottom: 35px;
    text-align: center;
}


/* TEXT */

.hero-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0e75b1;
    margin-bottom: 16px;
    letter-spacing: normal
}

.hero-text .lead {
    font-size: 16px;
    line-height: 1.7;
    max-width: 520px;
    color: #334155;
}


/* QUIZ CARD */

.hero-quiz-card {
    display: flex;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    max-width: 520px;
    margin-left: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}

.quiz-image {
    flex: 0 0 45%;
}

.quiz-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quiz-content {
    flex: 1;
    padding: 24px;
}

.quiz-content h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.quiz-content p {
    font-size: 14px;
    color: #475569;
    margin-bottom: 18px;
}

.btn-quiz {
    background: #0ea5e9;
    color: #fff;
    border: none;
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
}

.btn-quiz:hover {
    background: #0284c7;
}


/* ================= TABLET ================= */

@media (max-width: 992px) {
    #section-hero {
        padding: 60px 0;
    }
    .hero-quiz-card {
        margin-top: 30px;
    }
}


/* ================= MOBILE ================= */

@media (max-width: 768px) {
    #section-hero {
        /* min-height: auto; */
        padding: 50px 0;
        text-align: center;
    }
    .hero-text .lead {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-quiz-card {
        flex-direction: column;
        margin: 30px auto 0;
    }
    .quiz-image {
        width: 100%;
        height: 180px;
    }
}


/* ================= OVERVIEW SECTION ================= */

#overview {
    padding: 80px 0;
    background: #ffffff;
}


/* WRAPPER */

#overview .wrap {
    max-width: 1200px;
    margin: 0 auto;
}


/* HEADING */

#overview h3 {
    font-size: 26px;
    font-weight: 700;
    color: #0584c3;
    text-transform: uppercase;
    margin-bottom: 25px;
    text-align: center;
}


/* CONTENT AREA */

.overview-content {
    margin-top: 40px;
}


/* IMAGE */

.overview-content picture img {
    max-width: 100%;
    border-radius: 6px;
}


/* STREAMING INFO BLOCK */

.overview-content-streaming {
    display: flex;
    flex-direction: column;
}


/* TEXT */

.overview-content-streaming b {
    font-size: 15px;
    color: #0f172a;
}


/* LOGOS + CTA */

.overview-content-streaming-images {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.overview-content-streaming-images img {
    max-height: 40px;
    transition: transform 0.2s ease;
}

.overview-content-streaming-images img:hover {
    transform: scale(1.05);
}


/* BUTTON */

#overview .btn-transparent {
    border: 1px solid #0ea5e9;
    color: #0ea5e9;
    padding: 6px 16px;
    font-size: 13px;
    border-radius: 4px;
    text-decoration: none;
}

#overview .btn-transparent:hover {
    background: #0ea5e9;
    color: #fff;
}


/* DESCRIPTION PARAGRAPH */

#overview>.wrap p {
    margin-top: 40px;
    font-size: 15px;
    line-height: 1.8;
    color: #334155;
}


/* ================= TABLET ================= */

@media (max-width: 992px) {
    #overview {
        padding: 60px 0;
    }
    #overview h3 {
        font-size: 22px;
    }
    .overview-content {
        margin-top: 30px;
    }
}


/* ================= MOBILE ================= */

@media (max-width: 768px) {
    #overview {
        padding: 50px 15px;
    }
    #overview h3 {
        font-size: 20px;
    }
    .overview-content-streaming-images {
        justify-content: center;
    }
    #overview>.wrap p {
        font-size: 14px;
        text-align: left;
    }
}


/* ================= OVERVIEW CARDS SECTION ================= */

.overview-cards {
    background: #ffffff;
}


/* CARD GRID */

.overview-cards .card-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}


/* CARD */

.overview-cards .custom-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.overview-cards .custom-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .15);
}


/* CARD INNER */

.overview-cards .card-inner {
    display: flex;
    align-items: center;
    padding: 24px;
    gap: 24px;
}


/* IMAGE */

.overview-cards .card-image {
    flex: 0 0 140px;
}

.overview-cards .card-image img {
    width: 100%;
    border-radius: 6px;
}


/* CONTENT */

.overview-cards .card-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f172a;
}

.overview-cards .card-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 14px;
}


/* BUTTON */

.overview-cards .btn-transparent {
    display: inline-block;
    border: 1px solid #0ea5e9;
    color: #0ea5e9;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all .2s ease;
    text-transform: uppercase;
}

.overview-cards .btn-transparent:hover {
    background: #0ea5e9;
    color: #ffffff;
}


/* ================= TABLET ================= */

@media (max-width: 992px) {
    .overview-cards .card-wrapper {
        grid-template-columns: 1fr;
    }
    .overview-cards .card-inner {
        padding: 20px;
    }
}


/* ================= MOBILE ================= */

@media (max-width: 576px) {
    .overview-cards .card-inner {
        flex-direction: column;
        text-align: center;
    }
    .overview-cards .card-image {
        flex: none;
        width: 100px;
    }
}


/* WHY PREFER SECTION */

.why-prefer-section {
    padding: 80px 20px;
    background: #ffffff;
}

.why-prefer-section h2 {
    font-size: 20px;
    margin-bottom: 40px;
    color: #0a192f;
    letter-spacing: normal;
}

.nav-pills .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 8px;
    margin: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-pills .nav-link {
    border-radius: .25rem;
    font-size: 12px;
    text-transform: uppercase;
    padding: 17px 29px 16px;
    line-height: 1;
    background-color: #f5f5f5;
    font-weight: 500;
    color: rgba(0, 0, 0, .6);
    margin: .5rem;
}

.feature-icon {
    margin-bottom: 5px !important;
}

.why-prefer-section1 .nav-pills .nav-link .feature-icon img {
    width: 35px;
    height: 35px;
}

.why-prefer-section1 .feature-icon {
    width: auto;
    height: 50px;
}

.height-auto {
    height: auto !important;
}

.nav-pills .nav-link .feature-icon img {
    width: 35px;
    height: 35px !important;
    margin-bottom: 5px !important;
}

@media (max-width:600px) {
    .nav-item {
        width: 100%;
    }
}

.nav-pills .nav-link.active {
    background-color: #0ea5e9;
    color: #fff;
    border-radius: 8px;
}

.tab-content .card {
    margin-top: 20px;
    border: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-radius: 14px;
    overflow: hidden;
}

.card_body {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 20px;
}

.card_body img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.content-part text-left h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #0e75b1;
}

.content-part text-left p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #475569;
}


/* RESPONSIVE */

@media (max-width: 992px) {
    .card_body {
        flex-direction: column;
        text-align: center;
    }
    .card_body img {
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .nav-pills .nav-link {
        font-size: 0.8rem;
        padding: 8px 10px;
        width: 100%;
    }
    .nav-pills .nav-link .feature-icon img {
        width: 40px;
        height: 40px;
    }
    .content-part text-left h3 {
        font-size: 1.25rem;
    }
}

.why-prefer-section button img {
    height: 60px;
    width: 60px;
}

.brand-section {
    padding: 80px 20px;
    background: #22a8dc;
}

.brand-section .section-title {
    /* font-size: 2rem; */
    color: #ffffff;
    margin-bottom: 40px;
}

.brand-logos .logos-wrapper img {
    max-height: 50px;
    object-fit: contain;
    margin: 10px;
    transition: transform 0.3s ease;
}

.brand-logos .logos-wrapper img:hover {
    transform: scale(1.1);
}

.info-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.info-card h6.card-label {
    font-size: 0.85rem;
    color: #0ea5e9;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.brand-name {
    font-size: 13px;
    color: black;
}

.info-card h4.brand-name img {
    max-height: 60px;
    margin-bottom: 15px;
    width: auto;
}

.info-card .card-text {
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 10px;
}

.info-card .card-text2 {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 15px;
}

.info-card .card-link {
    font-weight: 600;
    color: #0ea5e9;
    text-decoration: none;
}

.info-card .card-link:hover {
    text-decoration: underline;
}

.stars i {
    color: #facc15;
    margin-right: 2px;
}


/* Carousel Indicators */

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #cbd5e1;
    margin: 3px;
}

.carousel-indicators .active {
    background-color: #0ea5e9;
}


/* RESPONSIVE */

@media (max-width: 992px) {
    .row.g-4.justify-content-center {
        flex-direction: row;
        align-items: center;
    }
    .col-md-10 {
        max-width: 500px;
    }
}

@media (max-width: 576px) {
    .brand-logos .logos-wrapper img {
        max-height: 40px;
    }
    .info-card h4.brand-name img {
        max-height: 50px;
    }
}

.server-specs {
    list-style: none;
    padding: 0;
    margin: 0;
}

.server-specs li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 8px 0; */
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
}

.server-specs li:last-child {
    border-bottom: none;
}

.server-specs span {
    color: #6c757d;
}

.server-specs strong {
    color: #000;
    font-weight: 600;
}

.server-options-section {
    background-color: #f8fafc;
    padding: 80px 20px;
}

.server-options-section .section-title {
    /* font-size: 2rem; */
    color: #0a192f;
    font-weight: bold;
}

.server-options-section .section-subtitle {
    font-size: 1rem;
    color: #475569;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.server-cards .server-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.server-cards .server-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.server-card .card-header img {
    max-height: 60px;
    object-fit: contain;
}

.server-card h4 {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #0a192f;
}

.server-card .price {
    font-size: 0.95rem;
    color: #0ea5e9;
}

.server-card .price b {
    font-size: 1.1rem;
    margin: 0 3px;
}

.server-card .card-description {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 15px;
}

.server-card .btn-info {
    font-weight: 600;
    background-color: #0ea5e9;
    border: none;
}

.server-card .btn-info:hover {
    background-color: #0284c7;
}


/* RESPONSIVE */

@media (max-width: 992px) {
    .server-cards .server-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .server-card .card-header img {
        max-height: 50px;
    }
    .server-card h4 {
        font-size: 1.1rem;
    }
    .server-card .price {
        font-size: 0.85rem;
    }
}

.features-section {
    background-color: #ffffff;
    padding: 80px 20px;
}

.features-section .section-title {
    /* font-size: 2rem; */
    font-weight: bold;
    color: #0a192f;
}

.features-section .features-subtitle {
    font-size: 1rem;
    color: #475569;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.feature-icon {
    font-size: 2rem !important;
    color: #47aeea !important;
    margin: 0 !important;
}

.features-grid .feature {
    background: #f1f5f9;
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.features-grid .feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.features-grid .feature img {
    height: 44px;
    width: 44px;
    object-fit: contain;
}

.features-grid .feature span {
    display: block;
    font-size: 0.95rem;
    color: #0a192f;
    margin-top: 10px;
    font-weight: 500;
}


/* Responsive */

@media (max-width: 992px) {
    .features-grid .feature img {
        height: 50px;
    }
    .features-grid .feature span {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .features-grid .feature img {
        height: 45px;
    }
    .features-grid .feature span {
        font-size: 0.85rem;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(5, 1fr) !important;
    }
}

.contact-section {
    background-color: #f8fafc;
    padding: 80px 20px;
}

.contact-section .section-title {
    /* font-size: 2rem; */
    color: #fff;
    font-weight: bold;
}

.contact-section .section-subtitle {
    font-size: 1rem;
    color: #fff;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-group .btn-solid {
    background-color: #47aeea;
    color: #fff;
    border: none;
    width: auto;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 6px;
    transition: background 0.3s;
}

.cta-group .btn-solid:hover {
    background-color: #47aeea;
}

.cta-group .btn-outline-blue {
    background-color: transparent;
    color: #000000;
    border: 2px solid#47aeea;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-group .btn-outline-blue:hover {
    background-color: #47aeea;
    color: #fff;
}

@media (max-width: 768px) {
    .contact-section .section-title {
        font-size: 1.75rem;
    }
    .contact-section .section-subtitle {
        font-size: 0.95rem;
    }
    .cta-group {
        gap: 15px;
    }
}

.cta-section {
    background-color: #f8fafc;
    padding: 80px 20px;
}

.cta-grid {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-grid.flex-row-reverse {
    flex-direction: row-reverse;
}

.cta-text {
    max-width: 550px;
}

.cta-text h2 {
    /* font-size: 2rem; */
    color: #0a192f;
    font-weight: bold;
    margin-bottom: 15px;
}

.cta-text p {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 20px;
}

.custom-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.cta-section .btn {
    padding: 10px 25px;
    border-radius: 6px;
    width: auto;
    margin: 0;
}

@media (max-width: 992px) {
    .cta-grid {
        flex-direction: column;
        text-align: center;
        gap: 0 !important;
    }
    .cta-transform {
        padding: 0 10px 0;
    }
    .cta-transform1 .cta-text p {
        padding-top: 24px;
    }
    .cta-transform1 {
        margin-top: 31px !important;
    }
    .cta-grid.flex-row-reverse {
        flex-direction: column;
    }
    .cta-text {
        max-width: 100%;
    }
    .cta-text h2 {
        font-size: 1.75rem;
    }
}

.services-list .intro-text {
    margin-bottom: 30px;
    color: #555;
    font-size: 1rem;
}

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    background: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 10px;
}

.service-icon {
    flex: 0 0 50px;
    margin-right: 15px;
}

.service-icon img {
    width: 35px;
    height: auto;
}

.service-text h5 {
    margin: 0 0 3px;
    font-size: 1rem;
}

.service-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.learn-more {
    margin-left: auto;
    font-weight: bold;
    text-decoration: none;
    font-size: 10px;
}

.learn-more:hover {
    text-decoration: underline;
}


/* Mobile: single column */

@media (max-width: 767px) {
    .service-item {
        flex-direction: column;
        align-items: flex-center;
        text-align: center;
    }
    .service-icon {
        margin-bottom: 5px;
    }
    .learn-more {
        margin-left: 0;
        margin-top: 3px;
    }
}


/* PROMISE SECTION */

#promise {
    padding: 90px 0;
    background: #f8fafc;
    color: #0f172a;
}


/* Wrapper */

#promise .wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Heading */

#promise h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 16px;
}


/* Intro text */

#promise>.wrap>p {
    max-width: 820px;
    margin: 0 auto 60px;
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
}


/* Cards grid */

#promise .wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 23px;
    text-align: left;
}


/* Individual card */

#promise .wrapper>div {
    background: #ffffff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform .3s ease, box-shadow .3s ease;
}

#promise .wrapper>div:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}


/* Image */

#promise picture img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 20px;
}


/* Icon + title row */

#promise .flex-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.flex-wrapper img {
    width: 30px;
}

#promise .c-icon {
    fill: #0ea5e9;
    flex-shrink: 0;
}


/* Card title */

#promise h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}


/* Card text */

#promise .wrapper>div p {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}


/* RESPONSIVE */

@media (max-width: 992px) {
    #promise .wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    #promise {
        padding: 60px 0;
    }
    #promise h2 {
        font-size: 26px;
    }
    #promise>.wrap>p {
        font-size: 14px;
        margin-bottom: 40px;
    }
    #promise .wrapper {
        grid-template-columns: 1fr;
    }
    #promise .wrapper>div {
        text-align: center;
    }
    #promise .flex-wrapper {
        justify-content: center;
    }
}


/* Section Base */

.certifications-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.section-title {
    /* font-size: 2rem; */
    margin-bottom: 50px;
    color: #0a192f;
}


/* Grid Layout */

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}


/* Card Styles */

.cert-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    padding: 25px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.cert-logo {
    height: 40px;
    margin-bottom: 20px;
    object-fit: contain;
}

.cert-card h5 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #38b1ed;
}

.cert-card p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
}

@media (max-width:600px) {
    .team_img img {
        width: 100% !important;
    }
}

.service-card .fa {
    color: #38b1ed !important;
}

.text-decoration-none {
    text-transform: capitalize;
    font-size: small;
    font-weight: bold;
}


/* Mobile horizontal scroll for tabs */


/* Responsive tab layout – show all tabs */

@media (max-width: 768px) {
    .why-prefer-section .nav-pills {
        display: flex;
        grid-template-columns: repeat(2, 1fr);
        flex-wrap: nowrap !important;
        justify-content: start !important;
        overflow-x: scroll;
        overflow-y: hidden;
        white-space: nowrap;
        padding-bottom: 21px;
    }
    .why-prefer-section .nav-link {
        height: 100%;
        padding: 10px 8px;
        font-size: 13px;
        line-height: 1.2;
        text-align: center;
    }
    .why-prefer-section .feature-icon img {
        max-width: 28px;
    }
}


/* Extra small devices – 1 column */

@media (max-width: 480px) {
    .why-prefer-section .nav-pills {
        grid-template-columns: 1fr;
    }
}

.nav-pills .nav-link.active .feature-icon img {
    filter: invert(1) brightness(88) hue-rotate(45deg) sepia(999);
}