﻿section-title:root {
    --b0: #eaf6fb;
    --b1: #d6eefb;
    --b2: #bfe6fb;
    --b3: #9fd6f6;
    --b4: #66b8ee;
    --b5: #3399e6;
    --b6: #1f7fcf;
    --b7: #1260b3;
    --b8: #0b4a8a;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.navbar {
    background-color: white !important;
    padding: 0.2rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: #374151 !important;
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #2563eb !important;
}

@media (min-width: 1200px) {
    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
        margin-right: 117px;
    }
}

.btn-get-started {
    background-color: #0078d4;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-get-started:hover {
    background-color: #0261aa;
    color: white;
    transform: translateY(-2px);
}

.hero-section {
    background: linear-gradient(137deg, #eaf6fb 0, #e1f5ff 0, #9fd6f6 67%, #3399e6 86%);
    
    min-height: 100vh;
    position: relative;
    padding-top: 100px;
    display: flex;
    align-items: center;
}

.hero-content {
    color: white;
    z-index: 2;
}

.cloud-label {
    background-color: #ffffff;
    color: #000;
    padding: 0.2rem 1rem;
    border-radius: 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 0.3rem;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 0rem;
    color: #0e1726;
}

.hero-subtitle {
    font-size: 3rem;
    font-weight: 600;
    color: #0a59e7;
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 500px;
    color: #000;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-explore {
    background-color: #0078d4;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-explore:hover {
    background-color: #0264af;
    /* color: #374151; */
    /* transform: translateY(-2px); */
}

.btn-partner {
    background-color: transparent;
    color: #007fc9;
    border: 2px solid #51b7ff;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-partner:hover {
    background-color: white;
    /* color: #374151; */
}

.powered-by {
    font-size: 0.875rem;
    color: rgb(0 17 48);
    margin-top: 3rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.floating-icons {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    z-index: 1;
}

.icon-item {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.icon-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.icon-google {
    background-color: #ffffff;
    position: relative;
    left: -117px;
    top: 15px;
}

.icon-translate {
    background-color: #ffffff;
    position: relative;
    left: -60px;
    top: 9px;
}

.icon-feedback {
    background-color: #ffffff;
    position: relative;
    right: -1px;
    top: 9px;
}

.icon-cloud {
    background-color: #ffffff;
    position: relative;
    right: -25px;
    bottom: -63px;
}

.icon-windows {
    background-color: #fbfdff;
    position: relative;
    left: -190px;
    bottom: -57px;
}

.icon-amazon {
    background-color: #ffffff;
    position: relative;
    left: 0px;
    bottom: -52px;
}

.icon-shield {
    background-color: #ffffff;
    position: relative;
    left: -100px;
    top: 89px;
}

.icon-security {
    background-color: #ffffff;
    position: relative;
    left: -54px;
    top: 91px;
}

.icon-aws {
    background-color: #000000;
    position: relative;
    left: 0px;
    top: 86px;
}

@media (max-width: 768px) {

    .hero-title,
    .hero-subtitle {
        font-size: 2.5rem;
    }

    .floating-icons {
        position: static;
        transform: none;
        margin-top: 3rem;
        justify-self: center;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .icon-item {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-explore,
    .btn-partner {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {

    .hero-title,
    .hero-subtitle {
        font-size: 2rem;
    }

    .floating-icons {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==================================Section 2 Css ============================== */
.main-container-section-2 {
    background-color: #f8f9fa;
    line-height: 1.6;
    min-height: 100vh;
}

.alliance-section {
    position: relative;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alliance-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 5px solid #4285f4;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #216ce9;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.center-logo .brand {
    font-size: 16px;
    font-weight: 700;
}

.center-logo .sub {
    font-size: 12px;
    font-weight: 500;
}

.partner-card {
    position: absolute;
    background: white;
    border-radius: 8px;
    padding: 12px 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    min-width: auto;
}

.partner-card .icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 10px;
}

.microsoft {
    top: -30px;
    left: 120px;
}

.microsoft .icon {
    background: #00a1f1;
}

.aws {
    top: 60px;
    right: -70px;
}

.aws .icon {
    background: #ff9900;
}

.google {
    bottom: 60px;
    right: -70px;
}

.google .icon {
    background: #4285f4;
}

.hpe {
    bottom: -30px;
    left: 120px;
}

.hpe .icon {
    background: #01a982;
}

.kaspersky {
    bottom: 60px;
    left: -70px;
}

.kaspersky .icon {
    background: #006d5b;
}

.fortinet {
    top: 60px;
    left: -70px;
}

.fortinet .icon {
    background: #ee3124;
}

.connection-line {
    position: absolute;
    background: #ced1f8;
    height: 1px;
}

.line2 {
    top: 47%;
    left: 7%;
    width: 85%;
    height: 2px;
    transform: rotate(40deg);
}

.line4 {
    top: 47%;
    right: 7%;
    width: 85%;
    height: 2px;
    transform: rotate(-40deg);
}

.line6 {
    top: 50%;
    left: 60px;
    right: 60px;
}

.content-section-section-2 {
    padding: 0rem 2rem 0px 2rem;
}

.main-heading-section-2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0e1726;
    margin-bottom: 1rem;
}

.sub-heading-section-2 {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cta-buttons-section-2 {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-get-started-2 {
    background: #0078d4;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.btn-white-paper {
    background: white;
    color: #007fc9;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    border: 2px solid #51b7ff;
}

.features-section-section-2 h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0e1726;
    margin-bottom: 2rem;
}

.feature-item-section-2 {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon-section-2 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
}

.disaster {
    background: #e91e63;
}

.security {
    background: #2196f3;
}

.provisioning {
    background: #4caf50;
}

.operational {
    background: #9c27b0;
}

.cost {
    background: #03a9f4;
}

.feature-content-section-section-2-2 h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.feature-content-section-section-2-2 p {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
}

.alliance-title {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
}

@media (max-width: 768px) {

    .section-5-t {
        font-size: 23px;
    }

    .Section5_main_title.new {
        font-size: 22px !important;
    }

    .alliance-container {
        width: 300px;
        height: 300px;
    }

    .center-logo {
        width: 80px;
        height: 80px;
    }

    .center-logo .brand {
        font-size: 12px;
    }

    .center-logo .sub {
        font-size: 10px;
    }

    .partner-card {
        font-size: 10px;
        padding: 8px 12px;
        min-width: 100px;
    }

    .partner-card .icon {
        width: 20px;
        height: 20px;
        font-size: 8px;
    }

    .main-heading-section-2 {
        font-size: 2rem;
    }

    .cta-buttons-section-2 {
        flex-direction: column;
    }

    .btn-get-started-2,
    .btn-white-paper {
        text-align: center;
    }

    .kaspersky {
        left: -45px;
    }

    .google {
        right: -45px;
    }

    .aws {
        right: -45px;
    }

    .fortinet {
        left: -45px;
    }

    .microsoft {
        top: -10px;
        left: 65px;
    }

    .hpe {
        bottom: 0px;
        left: 65px;
    }

    .alliance-section {
        padding: 0rem 2rem 5rem 2rem;
    }

    .alliance-title {
        bottom: 25px;
    }

    .content-section-section-2 {
        padding: 0;
    }
}

/* ==================================Section 2 Css End============================== */
/* ==================================Section 3 Css End============================== */
.expertise-section {
    background: linear-gradient(135deg, #9dceff, #b4d9ff);
    padding: 50px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.expertise-title {
    color: #0e1726;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5rem;
    font-family: 'Inter', sans-serif;
}

.expertise-card {
    background: rgb(255 255 255);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: #ffffffb0;
}

.expertise-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 1.5rem;
    color: white;
    padding: 12px;
}

.expertise-icon.cloud {
    background: #dae9fc;
}

.expertise-icon.security {
    background: #d2e6ff;
}

.expertise-icon.network {
    background: #6fa43c47;
}

.expertise-card-title {
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.expertise-card-description {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.expertise-arrow {
    width: 50px;
    height: 50px;
    background: #0078d4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s ease;
    padding: 15px;
}

.expertise-arrow.one {
    background: #0000001a;
}

.expertise-arrow.three {
    background: #0000001a;
}

.expertise-arrow:hover {
    background: #0078d4;
    color: white;
}

@media (max-width: 768px) {
    .expertise-section {
        padding: 60px 0;
    }

    .expertise-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .expertise-card {
        margin-bottom: 2rem;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .expertise-title {
        font-size: 1.75rem;
    }

    .expertise-card {
        padding: 1.5rem 1rem;
    }
}

/* ==================================Section 3 Css End============================== */
/* ==================================Section 4 Css End============================== */
.workON-container {
    background-color: #f5faff;
    padding: 80px 0;
}

.workON-header {
    text-align: center;
    margin-bottom: 60px;
}

.workON-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0e1726;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.workON-subtitle {
    font-size: 0.9rem;
    color: #2e4654;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.workON-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.workON-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.workON-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.workON-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.workON-card:hover::after {
    opacity: 1;
}


.logo-tooltip-wrap {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.logo-tooltip-text {
    position: absolute;
    bottom: 90%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: linear-gradient(135deg, #111, #333);
    color: #fff;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    transition: all 0.35s ease;
    z-index: 99;
}

/* Tooltip arrow */
.logo-tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 7px;
    border-style: solid;
    border-color: #222 transparent transparent transparent;
}

/* Hover animation */
.logo-tooltip-wrap:hover .logo-tooltip-text {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}


/* ================================================================================================ */
.workON-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.workON-card-w {
    background: #ffffff;
    border-radius: 16px;
    padding: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.workON-card-w::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.workON-card-w:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}
/* ================================================================================================ */
.workON-logo-icon {
    width: 38px;
    height: 38px;
    margin-right: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.workON-microsoft {
    background-color: #0078d4;
}

.workON-business {
    background-color: #ff6900;
}

.workON-google {
    background-color: #4285f4;
}

.workON-akamai {
    background-color: #ff6b35;
}

.workON-software {
    background-color: #2c2c2c;
}

.workON-dell {
    background-color: #007db8;
}

.workON-hp {
    background-color: #0096d6;
}

.workON-cisco {
    background-color: #1ba0d7;
}

.workON-hpe {
    background-color: #01a982;
}

.workON-server {
    background-color: #666666;
}

.workON-fortigate {
    background-color: #ee3124;
}

.workON-soledos {
    background-color: #ff8c00;
}

.workON-sophos {
    background-color: #00549f;
}

.workON-kaspersky {
    background-color: #006c5b;
}

.workON-endpoint {
    background-color: #ffd700;
}

.workON-bigcrm {
    background-color: #1e90ff;
}

.workON-adobe {
    background-color: #ff0000;
}

.workON-iot {
    background-color: #9c27b0;
}

.workON-sdwan {
    background-color: #2196f3;
}

.workON-soc {
    background-color: #607d8b;
}

.workON-company-name {
    font-size: 16px;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.workON-partner-type {
    font-size: 12px;
    color: #666666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    z-index: 1;
    opacity: 0.85;
    margin: 0;
    font-family: 'Inter';
}

@media (max-width: 768px) {
    .workON-title {
        font-size: 2rem;
    }

    .workON-card {
        padding: 20px;
    }

    .workON-company-name {
        font-size: 1.1rem;
    }

    .workON-logo-icon {
        width: 32px;
        height: 32px;
        margin-right: 12px;
    }

    .workON-partner-type {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .workON-container {
        padding: 60px 0;
    }

    .workON-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .workON-subtitle {
        font-size: 0.8rem;
    }
}

/* ==================================Section 4 Css End============================== */
/* ==================================Section 5 Css End============================== */

.main-section5-container {
    font-family: 'Inter', sans-serif;
    padding: 2rem 1rem;
    background: rgb(250, 252, 255);
}

.Section5_container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===================================================================================== updated */
.Section5_consulting-main {
    padding: 2.5rem 0;
    /* margin-bottom: 2rem; */
    /* background: linear-gradient(to bottom, #ffffff, #0078d4); */
}

.Section5_consulting {
    /* background: #f4faff;  */
    border-radius: 20px;
    display: flex;
    align-items: center;
}
.IT-cunsultant-video-frame {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    width: 100%;
    height: 445px;
}



/* ========================================================================================== End */

.Section5_bigcrm-main {
    padding: 2.5rem;
}

.Section5_bigcrm {
    background: #3b96dd;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.Section5_icon_wrapper {
    width: 55px;
    height: 55px;
    background: rgb(59 150 221);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 12px;
}

.Section5_icon_wrapper svg {
    font-size: 35px;
    color: #fff;
    fill: #fff;
}

.Section5_icon_wrapper i {
    font-size: 28px;
    color: white;
}

.Section5_bigcrm .Section5_icon_wrapper {
    background: #FF6B38;
}

.Section5_bigcrm .Section5_icon_wrapper i {
    color: white;
}

.Section5_main_title.new {
    font-size: 25px;
    color: #0e1726;
    margin: 0;
}

.section-5-t {
    color: #0e1726;
}

.Section5_main_title {
    font-size: 1rem;
    font-weight: 600;
    color: #0e1726;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.Section5_bigcrm .Section5_main_title {
    color: #000;
}

.Section5_image_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.Section5_grid_item {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.Section5_grid_item:nth-child(1) {
    background-image: url('https://readdy.ai/api/search-image?query=modern%20office%20team%20collaboration%20meeting%20with%20laptops%20and%20documents%20on%20white%20background%20professional%20business%20environment&width=120&height=120&seq=consulting1&orientation=squarish');
}

.Section5_grid_item:nth-child(2) {
    background-image: url('https://readdy.ai/api/search-image?query=computer%20server%20rack%20data%20center%20technology%20infrastructure%20on%20white%20background%20modern%20IT%20equipment&width=120&height=120&seq=consulting2&orientation=squarish');
}

.Section5_grid_item:nth-child(3) {
    background-image: url('https://readdy.ai/api/search-image?query=cybersecurity%20shield%20protection%20digital%20lock%20icon%20on%20white%20background%20technology%20security%20concept&width=120&height=120&seq=consulting3&orientation=squarish');
}

.Section5_grid_item:nth-child(4) {
    background-image: url('https://readdy.ai/api/search-image?query=cloud%20computing%20network%20connection%20digital%20transformation%20on%20white%20background%20modern%20technology&width=120&height=120&seq=consulting4&orientation=squarish');
}

.Section5_grid_item:nth-child(5) {
    background-image: url('https://readdy.ai/api/search-image?query=business%20analytics%20dashboard%20charts%20graphs%20on%20white%20background%20data%20visualization%20professional&width=120&height=120&seq=consulting5&orientation=squarish');
}

.Section5_grid_item:nth-child(6) {
    background-image: url('https://readdy.ai/api/search-image?query=mobile%20application%20development%20smartphone%20tablet%20on%20white%20background%20modern%20app%20design%20technology&width=120&height=120&seq=consulting6&orientation=squarish');
}

.Section5_service_title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.Section5_service_description {
    color: #000000;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.Section5_feature_list {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0px
}

.Section5_feature_item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #000;
}

.Section5_check_icon {
    width: 20px;
    height: 20px;
    background: #0e1726;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.Section5_check_icon i {
    font-size: 12px;
    color: white;
}

.Section5_button_group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.Section5_btn_primary {
    background: #0078d4;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.Section5_btn_primary:hover {
    background: #016bbd;
    color: white;
    transform: translateY(-2px);
}

.Section5_btn_secondary {
    background: white;
    color: #007fc9;
    border: 2px solid #51b7ff;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

/* .Section5_btn_secondary:hover {
        background: #79b7e8;
        color: white;
        transform: translateY(-2px);
    } */

.Section5_bigcrm_subtitle {
    color: #000;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.Section5_service_points {
    margin-bottom: 2rem;
}

.Section5_service_point {
    margin-bottom: 1rem;
}

.Section5_service_point h6 {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.Section5_service_point p {
    color: #000;
    font-size: 0.9rem;
    margin: 0;
}

.Section5_diagram_container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.Section5_center_node {
    width: 100px;
    height: 100px;
    border: 2px solid #ffffff;
    border-radius: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.Section5_outer_node {
    width: 85px;
    height: 85px;
    background: white;
    border: 3px solid #E5E7EB;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.Section5_outer_node i {
    font-size: 20px;
    color: #FF6B38;
}

.Section5_node_1 {
    top: 0;
    left: 48%;
    transform: translateX(-50%);
}

.Section5_node_2 {
    top: 12%;
    right: 7%;
}

.Section5_node_3 {
    top: 60%;
    right: 16px;
    transform: translateY(-50%);
}

.Section5_node_4 {
    bottom: 1%;
    right: 21%;
}

.Section5_node_5 {
    bottom: 0;
    left: 38%;
    transform: translateX(-50%);
}

.Section5_node_6 {
    bottom: 25%;
    left: 6%;
}

.Section5_node_7 {
    top: 28%;
    left: 23px;
    transform: translateY(-50%);
}

.Section5_node_8 {
    top: 20%;
    left: 10%;
}


.Section5_metrics {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0px;
}

.Section5_metric {
    text-align: center;
    background: #3b96dd;
    padding: 5px 0px;
    width: 100%;
    margin: 5px;
    border-radius: 12px;
}

.Section5_metric_value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
}

.Section5_metric_label {
    font-size: 0.85rem;
    color: #efecec;
    margin-top: 0.25rem;
    margin-bottom: 7px;
    border-top: 1px solid #ffffff1c;
}

/* ========================================================================================= */
@media (max-width: 768px) {

    .Section5_consulting,
    .Section5_bigcrm {
        padding: 1.5rem 0;
    }
/* ============================================================================================ */
    .Section5_bigcrm-main {
        padding: 0px
    }

    .Section5_consulting-main {
        padding: 5px;
    }

    .Section5_image_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .Section5_grid_item {
        width: 50px;
        height: 50px;
    }

    .Section5_button_group {
        flex-direction: column;
    }

    .Section5_btn_primary,
    .Section5_btn_secondary {
        text-align: center;
    }

    .Section5_diagram_container {
        min-height: 280px;
    }

    .Section5_center_node {
        width: 80px;
        height: 80px;
        font-size: 0.8rem;
    }


    .Section5_outer_node i {
        font-size: 16px;
    }

    .Section5_metrics {
        flex-direction: column;
        gap: 1rem;
    }
}



.Section5_bigcrm-linear {
    background: linear-gradient(276deg, #38a7fe, #ffffff, #ffffff, #ffffff);
    border-radius: 20px;
}

/* ==================================Section 5 Css End============================== */
/* ==================================Section 6 Css End============================== */

.main-section6-container {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
}

.Section6-container {
    padding: 60px 0;
    background: #268ad9;
}

.Section5_check_icon svg {
    color: #fff;
    font-size: 11px;
}

.Section6-main-card {
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B1A 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(255, 107, 26, 0.3);
    position: relative;
    overflow: hidden;
}

.Section6-main-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.Section6-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.Section6-logo {
    width: 50px;
    height: 50px;
    background: #1aaaff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}


.Section6-title {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.Section6-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
}

.Section6-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.Section6-left-panel {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.Section6-panel-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.Section6-panel-logo {
    width: 32px;
    height: 32px;
    background: #1aaaff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.Section6-panel-logo-icon {
    width: 20px;
    height: 20px;
    color: #fff
}

.Section6-panel-title {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.Section6-alert-badge {
    background: #FF4444;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    margin-left: auto;
}

.Section6-offer-title {
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.Section6-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.Section6-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #666;
    font-size: 14px;
}

.Section6-feature-icon {
    width: 20px;
    height: 20px;
    background: #4CAF50;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.Section6-feature-icon svg {
    font-size: 11px;
}

.Section6-charts-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
}

.Section6-chart {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.Section6-chart-bars {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 4px;
    height: 60px;
    margin-bottom: 10px;
}

.Section6-bar {
    width: 12px;
    background: #1aaaff;
    border-radius: 2px 2px 0 0;
}

.Section6-bar:nth-child(1) {
    height: 30%;
}

.Section6-bar:nth-child(2) {
    height: 60%;
}

.Section6-bar:nth-child(3) {
    height: 100%;
}

.Section6-bar:nth-child(4) {
    height: 45%;
}

.Section6-bar:nth-child(5) {
    height: 75%;
}

.Section6-chart-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: conic-gradient(#4CAF50 0deg 270deg, #e0e0e0 270deg 360deg);
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Section6-chart-circle::after {
    content: '';
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
}

.Section6-chart-label {
    color: #666;
    font-size: 12px;
    font-weight: 500;
}

.Section6-right-panel {
    color: white;
}

.Section6-features-grid {
    display: grid;
    gap: 20px;
}

.Section6-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.Section6-feature-check {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.Section6-feature-check::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.Section6-feature-content h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.Section6-feature-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

.Section6-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.Section6-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.Section6-btn-2 {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.Section6-btn-primary {
    background: #005ea7;
    color: white;
}

.Section6-btn-secondary {
    background: white;
    color: #007fc9;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border: 2px solid #0e1726;
}

.Section6-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-color: #014c87;
}

.Section6-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.Section6-stat {
    text-align: center;
    color: white;
}

.Section6-stat-number {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.Section6-stat-label {
    font-size: 14px;
    opacity: 0.8;
}

@media (max-width: 992px) {
    .Section6-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .Section6-charts-container {
        grid-template-columns: 1fr;
    }

    .Section6-stats {
        justify-content: center;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .Section6-main-card {
        padding: 30px 20px;
    }

    .Section6-title {
        font-size: 24px;
    }

    .Section6-buttons {
        flex-direction: column;
    }

    .Section6-stats {
        flex-direction: column;
        gap: 20px;
    }
}

/* ==================================Section 6 Css End============================== */
/* ==================================Section 7 Css End============================== */
.Section7 {
    background-color: #f4faff;
    min-height: 100vh;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.flex-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Section7__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.Section7__header {
    text-align: center;
    margin-bottom: 80px;
}

.Section7__title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0e1726;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.Section7__subtitle {
    font-size: 1.1rem;
    color: #2e4654;
    font-weight: 400;
    margin-bottom: 0;
}

.Section7__content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.Section7__central-card {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #eff7ff 0%, #3b96dd 100%);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.Section7__central-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #445bc9 0%, #00a1ff 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 3rem;
}

.Section7__floating-badge {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    color: #3498DB;
    font-size: 1.2rem;
}

.Section7__floating-badge--top {
    top: -10px;
    right: 30px;
}

.Section7__floating-badge--bottom {
    bottom: 20px;
    left: -20px;
    color: #27AE60;
}

.Section7__feature-card {
    position: absolute;
    width: 360px;
    background: #f7faff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.Section7__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.Section7__feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
    color: white;
    font-size: 1.1rem;
}

.Section7__feature-icon--pink {
    background: linear-gradient(135deg, #FF6B9D 0%, #E91E63 100%);
}

.Section7__feature-icon--green {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
}

.Section7__feature-icon--red {
    background: linear-gradient(135deg, #FF5722 0%, #D32F2F 100%);
}

.Section7__feature-icon--cyan {
    background: linear-gradient(135deg, #00BCD4 0%, #0097A7 100%);
}

.Section7__feature-icon--orange {
    background: linear-gradient(135deg, #00c4ff 0%, #1292cf 100%);
}

.Section7__feature-icon--purple {
    background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
}

.Section7__feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0e1726;
    margin-bottom: 8px;
}

.Section7__feature-description {
    font-size: 0.9rem;
    color: #2e4654;
    line-height: 1.5;
    margin-bottom: 0;
}

.Section7__feature-card--top-left {
    top: -40px;
    left: -320px;
}

.Section7__feature-card--top-right {
    top: -40px;
    right: -320px;
}

.Section7__feature-card--middle-left {
    top: 160px;
    left: -340px;
}

.Section7__feature-card--middle-right {
    top: 170px;
    right: -340px;
}

.Section7__feature-card--bottom-left {
    bottom: -40px;
    left: -320px;
}

.Section7__feature-card--bottom-right {
    bottom: -40px;
    right: -320px;
}

@media (max-width: 1400px) {

    .Section7__feature-card--top-left,
    .Section7__feature-card--middle-left,
    .Section7__feature-card--bottom-left {
        left: -300px;
    }

    .Section7__feature-card--top-right,
    .Section7__feature-card--middle-right,
    .Section7__feature-card--bottom-right {
        right: -300px;
    }
}

@media (max-width: 1200px) {
    .Section7__content {
        flex-direction: column;
        min-height: auto;
    }

    .Section7__feature-card {
        position: static;
        margin: 20px auto;
        max-width: 350px;
    }

    .Section7__central-card {
        margin: 40px 0;
    }

    .Section7__title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .Section7 {
        padding: 60px 0;
    }

    .Section7__title {
        font-size: 1.8rem;
    }

    .Section7__subtitle {
        font-size: 1rem;
    }

    .Section7__central-card {
        width: 220px;
        height: 220px;
    }

    .Section7__central-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .Section7__feature-card {
        width: 100%;
        margin: 15px 0;
    }
}

/* ==================================Section 7 Css End============================== */
/* ==================================Section 8 Css End============================== */
.section8-container {
    background: linear-gradient(280deg, var(--b0) 40%, var(--b1) 50%, #d5eefd 67%, #c5e7fa 80%);
    padding: 80px 0;
    min-height: 100vh;
    position: relative;
}

.section8-trust-label {
    color: #0a59e7;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section8-trust-label::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #0a59e7;
    border-radius: 50%;
    margin-right: 8px;
}

.section8-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0e1726;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section8-heading .highlight {
    color: #0a59e7;
}

.section8-subheading {
    font-size: 1.1rem;
    color: #6C757D;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.section8-testimonial-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section8-testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin: 0 20px;
    position: relative;
}

.section8-stars {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 25px;
}

.section8-testimonial-text {
    font-size: 1.1rem;
    color: #2C3E50;
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
}

.section8-author-info {
    display: flex;
    align-items: center;
}

.section8-author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
}

.section8-author-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.section8-author-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background: #0a59e7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    border: 2px solid white;
}

.section8-author-details h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2C3E50;
}

.section8-author-details .position {
    color: #0a59e7;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

.section8-author-details .company {
    color: #6C757D;
    font-size: 0.9rem;
    margin: 0;
}

.section8-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #0a59e7;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.section8-nav-btn:hover {
    background: #0078d4;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.section8-nav-prev {
    left: -25px;
}

.section8-nav-next {
    right: -25px;
}

.section8-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.section8-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #DDD;
    cursor: pointer;
    transition: all 0.3s ease;
}

.section8-dot.active {
    background: #0a59e7;
    transform: scale(1.2);
}

.section8-companies-section {
    text-align: center;
}

.section8-companies-title {
    font-size: 0.9rem;
    color: #6C757D;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.section8-companies-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}


/* ========================================================================================== addnew */




@media (max-width: 768px) {
    .section8-heading {
        font-size: 2.5rem;
    }

    .section8-testimonial-card {
        padding: 30px 20px;
        margin: 0 10px;
    }

    .section8-nav-btn {
        display: none;
    }

    .section8-companies-grid {
        gap: 30px;
    }

    .section8-company-logo {
        height: 55px;
    }
}

@media (max-width: 576px) {
    .section8-heading {
        font-size: 2rem;
    }

    .section8-subheading {
        font-size: 1rem;
    }

    .section8-companies-grid {
        gap: 20px;
    }
}

.testimonial-video-frame {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    height: 375px;
}

.testimonial-video-frame iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: none;
}

@media(min-width:991px) {
    .testimonial-video-frame {
        right: 30px;
    }
}

@media(max-width:576px) {
    .testimonial-video-frame {
        margin-bottom: 20px;
    }
}

@media(min-width:768px) {
    .testimonial-video-frame {
        margin-bottom: 30px;
    }
}


/* ==================================Section 8 Css End============================== */
/* ==================================Section 9 Css End============================== */

.section9 {
    background: url(../img/add-section-bg.webp) !important;
    position: relative;
    z-index: 1;
}

.section9::after {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #00000052;
    z-index: -1;
}


.Section9-container {
    padding: 60px 0;
}

.Section9-header {
    text-align: center;
    margin-bottom: 50px;
}

.Section9-title {
    color: #f97316;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.Section9-subtitle {
    color: #6B7280;
    font-size: 1.1rem;
}

.Section9-card {
    background: #f97316;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.Section9-card:hover {
    transform: translateY(-5px);
}

.Section9-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.Section9-preview-item {
    background: #F3F4F6;
    border-radius: 8px;
    padding: 15px;
    aspect-ratio: 1;
}

.Section9-author {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.Section9-author-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
    background: #E5E7EB;
}

.Section9-author-image img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
    background: #E5E7EB;
}

.Section9-author-info {
    line-height: 1.2;
}

.Section9-author-name {
    font-weight: 600;
    margin: 0;
    color: #fff;
}

.Section9-date {
    color: #daebed;
    font-size: 0.9rem;
}

.Section9-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111827;
}

.Section9-card-description {
    color: #e7e7e7;
    margin-bottom: 15px;
    line-height: 1.5;
}

.Section9-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #e7e7e7;
    font-size: 0.9rem;
}

.Section9-expert-link {
    text-decoration: none;
    font-weight: 600;
}

.Section9-expert-link.purple {
    color: #000000;
    padding: 5px 10px;
    background: #daebed;
    border-radius: 18px;
    font-size: 12px;
}

.Section9-expert-link.blue {
    color: #ffffff;
    padding: 5px 10px;
    background: #1e52fe;
    border-radius: 18px;
    font-size: 12px;
}

.Section9-expert-link.green {
    color: #000000;
    padding: 5px 10px;
    background: #CDDC39;
    border-radius: 18px;
    font-size: 12px;
}

.Section9-load-more {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.Section9-load-more-btn {
    background: #f97316;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.Section9-load-more-btn:hover {
    background: #ff6800;
}

@media (max-width: 991px) {
    .Section9-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .Section9-title {
        font-size: 1.75rem;
    }

    .Section9-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==================================Section 9 Css End============================== */
/* ==================================footer Css start============================== */
.footer-main-container {
    background-color: #202430;
    color: #9CA3AF;
    padding: 3.75rem 0 0;
    margin-top: auto;
}

.footer-brand-section {
    margin-bottom: 2rem;
}

.footer-company-logo {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: block;
    text-decoration: none;
}

.footer-company-description {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-social-icons {
    display: flex;
    gap: 0.75rem;
}

.footer-social-link {
    width: 2.25rem;
    height: 2.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.footer-section-title {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-navigation-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-navigation-item {
    margin-bottom: 0.75rem;
}

.footer-navigation-link {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-navigation-link:hover {
    color: #ffffff;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: white;
}

.footer-contact-icon {
    color: #ffffff;
    margin-top: 0.125rem;
    width: 1rem;
}

.footer-bottom-section {
    margin-top: 2.5rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    font-size: 0.875rem;
    color: #9CA3AF;
}

@media (max-width: 991px) {
    .footer-main-container {
        padding: 2.5rem 0 0;
    }

    .footer-column-responsive {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .footer-social-icons {
        justify-content: flex-start;
    }

    .footer-section-title {
        text-align: left;
    }

    .footer-navigation-list {
        text-align: left;
    }

    .footer-contact-list {
        text-align: left;
    }

    .footer-contact-item {
        justify-content: flex-start;
    }

    .footer-bottom-section {
        text-align: left;
    }
}
/* Subscribe Section */
.footer-subscribe-section {
    margin-bottom: 1.5rem;
}

.footer-subscribe-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.footer-subscribe-label {
    display: block;
    color: #ffffff;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.footer-subscribe-form {
    display: flex;
    gap: 0.5rem;
}

.footer-subscribe-input {
    flex: 1;
    background: transparent;
    border: 1px solid #3a3f4b;
    padding: 0.5rem 0.75rem;
    color: #ffffff;
    font-size: 0.85rem;
    outline: none;
    width: 20px;
}

    .footer-subscribe-input::placeholder {
        color: #6b7280;
    }

    .footer-subscribe-input:focus {
        border-color: #6b7280;
    }

.footer-subscribe-btn {
    background: #6b7280;
    border: none;
    padding: 0.5rem 1rem;
    color: #ffffff;
    font-size: 0.85rem;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s ease;
}

    .footer-subscribe-btn:hover {
        background: #4b5563;
    }
/* ==================================footer Css End============================== */

.expertise-card.two {
    position: relative;
    top: -30px;
    height: 390px;
}

.expertise-card.one {
    height: 360px;
}

.expertise-card.three {
    height: 360px;
}

.swiper-button-prev.prev-icon::after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-button-prev.prev-icon {
    font-size: 15px;
    width: 35px;
    height: 35px;
}

.swiper-button-next.next-icon {
    font-size: 15px;
    width: 35px;
    height: 35px;
}

.swiper-button-next.next-icon::after {
    font-size: 18px;
    font-weight: bold;
}

.Section5_outer_node p {
    font-size: 12px;
    margin: 0;
}

.flexing-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    line-height: 2;
}

/* .navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
} */

.designers-link {
    text-decoration: none;
    color: #df55df;
}

/* section9 added */

.section9 {
    background: url(https://xsoldata.com/static/img/add-section-bg.webp) !important;
    position: relative;
    z-index: 1;
}

.section9 h3 {
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    padding: 20px 20px 0 0;
}

.section9 .sectoin9-main-pera {
    padding: 50px 0;
    color: #ffff;
    line-height: 1.6;
}

.section9 .Section9_btn_primary {
    background-color: #006bbd;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    margin: 20px 0;
}

.section9 .Section9_btn_primary:hover {
    background-color: #004f8b;
    transform: translateY(-2px);
}

@media(max-width:576px) {
    .section9 .Section9_btn_primary {
        margin-bottom: 20px;
    }
}


.card-design-section {
    text-align: center;
}

.card-design-card {
    background: #fafafa;
    border-radius: 12px;
    padding: 5px 12px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    text-align: center;
}



.card-design-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    transition: transform 0.9s ease, opacity 0.5s ease;
    color: #1152cb;
    line-height: 2;
}

.card-design-card p {
    font-size: 14px;
    color: #0a0a0a;
    transition: transform 0.9s ease, opacity 0.5s ease;
    font-weight: 600;
}

.card-design-card.active {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
}

.card-design-card:hover h4 {
    color: #fff;
}


.card-design-card .card-design-icon {
    font-size: 40px;
    color: #6a11cb;
    margin-bottom: 15px;
}

.card-design-card:hover {
    background: linear-gradient(135deg, #1957ca, #2575fc);
    color: #fffefe;
    transform: translateY(-5px);
}

.card-design-card:hover .card-design-icon {
    color: #fff;
}

.card-design-card:hover h4,
.card-design-card:hover p {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 992px) {
    .card-design-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .card-design-card {
        padding: 30px 20px;
    }

    .card-design-card h4 {
        font-size: 16px;
    }
}

/* Hover effect */
.icon-item:hover {
    transform: scale(1.15);
}

/* --- Individual Animations --- */

/* Google - bounce */
.icon-google {
    animation: bounce 2s infinite;
}


/* Translate - rotate */
.icon-translate {
    animation: swing 3.5s ease-in-out infinite;
}

/* Feedback - pulse */
.icon-feedback {
    animation: pulse 2.5s ease-in-out infinite;
}

/* Cloud - float */
.icon-cloud {
    animation: float 3s ease-in-out infinite;
}

/* Windows - wobble */
.icon-windows {
    animation: wobble 2.8s ease-in-out infinite;
}

/* Amazon - swing */
.icon-amazon {
    animation: swing 3.5s ease-in-out infinite;
}

/* Shield - shake */
.icon-shield {
    animation: shake 1.5s ease-in-out infinite;
}

/* Security - fade */
.icon-security {
    animation: fade 4s ease-in-out infinite;
}

/* AWS - zoom */
.icon-aws {
    animation: zoom 3s ease-in-out infinite;
}

/* --- Keyframes --- */

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-7px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes wobble {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(5deg);
    }

    75% {
        transform: rotate(-5deg);
    }
}

@keyframes swing {
    20% {
        transform: rotate(15deg);
    }

    40% {
        transform: rotate(-10deg);
    }

    60% {
        transform: rotate(5deg);
    }

    80% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-3px);
    }

    50% {
        transform: translateX(3px);
    }

    75% {
        transform: translateX(-3px);
    }
}

@keyframes fade {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

@keyframes zoom {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }
}


.certified-card {
    width: 300px;
    height: auto;
    position: relative;
    /* left: 413px;
    top: -22px; */
    border-radius: 20px;
}

.certified-card img {
    width: 100%;
    border-radius: 20px;
}


/* industry-gallery */

.industry-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.4s ease;
}

.industry-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.industry-card:hover img {
    transform: scale(1.1);
}

.industry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    color: #fff;
    padding: 15px;
    font-weight: 600;
    text-align: left;
    transition: background 0.3s ease;
}

.industry-card:hover .industry-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3));
}

.section-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 40px;
}


/* contact form */



.contact-form-section {
    background-color: rgb(240, 249, 255);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-label span {
    color: #EF4444;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.form-control:focus {
    outline: none;
    border-color: #5ca4f6;
}

textarea.form-control {
    height: 120px;
    resize: vertical;
}

.char-count {
    text-align: right;
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: linear-gradient(to right, #4c4f56, #88a5f5);
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s;
}

.submit-btn:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
    }

    .header-title {
        font-size: 28px;
    }
}

.local-text {
    font-size: 1rem;
    font-weight: 600;
    color: #002152;
}

/* .left-img {
    width: 500px;
    height: 400px;
    overflow: hidden;
}

.left-img img{
    width: 100%;
    height: 100%;
} */


@media(max-width:992px){
    .certified-card{
        display: flex;
        flex-direction: column;
    }
}


/* section 3 new csss */


.category-section {
  padding: 41px 20px;
  background: linear-gradient(135deg, #3a9dff, #005bb9);
  /* border-radius: 12px; */
  text-align: center;
  color: white;
}

.category-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}

.category-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.category-card {
  text-align: center;
  cursor: pointer;
}

.icon-box {
  width: 200px;
  height: 150px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.icon-box img {
  width: 95px;
}

.category-card p {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.icon-box:hover {
    background-color: #ffffff;
    transform: translateY(-10px);
}


