﻿/***NEW*/

/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #eaf0f7;
    color: #1f2937;
}

.responsive-video {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ========== NAVBAR ========== */
nav {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 65px;
}

.menu {
    display: none;
}

.menu-toggle {
    font-size: 28px;
    cursor: pointer;
    display: block;
}

/* Desktop menu */
@media (min-width: 769px) {
    .menu-toggle, .sidebar {
        display: none !important;
    }

    .menu {
        display: flex;
        gap: 20px;
        list-style: none;
        align-items: center;
    }

        .menu li {
            position: relative;
        }

            .menu li a {
                text-decoration: none;
                color: #333;
                padding: 10px 14px;
                font-weight: 600;
                display: inline-block;
                border-radius: 4px;
                transition: background 0.2s ease, color 0.2s ease;
            }

                .menu li a:hover,
                .menu li a.active {
                    background: #0078d4;
                    color: white;
                }

    .submenu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 190px;
        background: #fff;
        border: 1px solid #ddd;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        z-index: 999;
        list-style: none;
    }

        .submenu li {
            border-left: 4px solid transparent;
        }

            .submenu li:hover {
                border-left-color: #0078d4;
            }

            .submenu li a {
                padding: 10px 15px;
                display: block;
                font-size: 14px;
                color: #333;
            }

                .submenu li a:hover {
                    background-color: #f5f5f5;
                    color: #0078d4;
                }

    .menu li:hover .submenu {
        display: block;
    }
}

/* Sidebar styles for mobile */
.sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 260px;
    height: 100vh;
    background: #fff;
    border-right: 1px solid #ddd;
    padding-top: 70px;
    transition: left 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

    .sidebar.active {
        left: 0;
    }

    .sidebar ul {
        list-style: none;
    }

    .sidebar li {
        border-bottom: 1px solid #eee;
    }

    .sidebar a {
        display: block;
        padding: 14px 20px;
        color: #333;
        text-decoration: none;
        font-weight: 600;
    }

        .sidebar a:hover {
            background: #f7f7f7;
        }

.submenu-toggle {
    float: right;
    font-size: 18px;
    cursor: pointer;
}

.sidebar .submenu {
    display: none;
    background: #f9f9f9;
    border-left: 4px solid #0078d4;
}

    .sidebar .submenu li a {
        padding-left: 30px;
        font-size: 14px;
    }

/* ========== LANDING SECTION ========== */
.landing-section {
    background: #fff;
    padding: 40px 10%;
}

.landing-container {
    display: flex;
   /* align-items: center;*/
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}


.landing-text {
    flex: 1;
    min-width: 280px;
}

    .landing-text h1 {
        font-size: 30px;
        margin-bottom: 20px;
        color: #007BFF;
    }

    .landing-text p {
        font-size: 18px;
        margin-bottom: 20px;
        color: #444;
        text-align: left;
    }

.landing-image {
    flex: 1;
   /* min-width: 280px;*/
    display: flex;
    justify-content: flex-end;
}

    .landing-image img {
        width: 100%;
       /* max-width: 500px;*/
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

        .landing-image img:hover {
            transform: scale(1.02);
        }


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.info-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.bullet-content {
    flex: 1 1 48%;
}

    .bullet-content h3 {
        font-size: 26px;
        color:#1f2937;
        margin-bottom: 10px;
    }

    .bullet-content p {
        font-size: 18px;
        color: #444;
        margin-bottom: 16px;
    }

    .bullet-content ul {
        list-style: none;
        padding-left: 0;
    }

    .bullet-content li {
        margin-bottom: 12px;
        padding-left: 28px;
        position: relative;
        color: #444;
        font-size: 18px;
    }

        .bullet-content li i {
            color: #2e8b57;
            position: absolute;
            left: 0;
            top: 2px;
        }

.about-section {
    /*background: #ffffff;
    padding: 60px 0;*/
    padding: 40px 20px;
    background-color: #fff; /* optional styling */
    font-family: 'Poppins', sans-serif
    font-size:18px;
}
.about-heading {
    text-align: center;
    margin-bottom: 30px;
}

    .about-heading h1 {
        /* font-size: 2.5em;
        color: #333;*/
        font-size: 30px;
        color: #007BFF;
        text-align: left;
    }

.about-flex {
    /* display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;*/
    display: flex;
    align-items: flex-start;
    gap: 2rem; /* Space between image and text */
    flex-wrap: wrap; /* For responsiveness on smaller screens */
}

.about-image {
    /*text-align:center;*/
    flex: 1;
    max-width: 500px;
}

    .about-image img {
        /*width: 50%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);*/
        width: 100%;
        height: auto;
        display: block;
        border-radius: 8px; /* Optional for styling */
    }

.about-content {
    /*text-align: left;*/ /* Ensures left alignment */
    flex: 2;
}
    .about-content p {
        margin-bottom: 1em;
        color: #444;
        line-height: 1.7;
        font-size:18px;
    }
    .about-content h2 {
        font-size: 30px;
        margin-bottom: 20px;
        color: #007BFF;
        text-align: left;
    }

.about-flex h1 {
    font-size: 30px;
    color: #007BFF;
}
/* ========== MODERN SOLUTIONS ========== */
.modern-solutions {
    padding: 80px 20px;
    /* background-color: #f4f8fc;*/
    text-align: center;
}
/*.solutions-heading {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2d3e50;
}
*/
.solutions-header h2 {
    font-size: 30px;
    color: #007BFF;
    margin-bottom: 10px;
}
.solutions-header p {
    font-size: 18px;
    color: #444;
    max-width: 1200px;
    margin: 0 auto 40px;
    text-align: left;
}
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

    .solution-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    }

.solution-icon {
    font-size: 48px;
    color: #2563eb;
    margin-bottom: 20px;
}

.solution-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1f2937;
}

.solution-card p {
    font-size: 18px;
    color: #444;
    line-height: 1.7;
    text-align:justify;
}





/* ========== CLIENT SLIDER ========== */
/*.client-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.client-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.client-track {
    display: flex;
    width: max-content;
    animation: scrollLeft 13s linear infinite;
}

    .client-track img {
        height: 80px;
        margin: 0 20px;
        object-fit: contain;
    }

@keyframes scrollLeft {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}*/


.client-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.client-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.client-track {
    display: flex;
    width: max-content;
    animation: bounceScroll 30s ease-in-out infinite alternate;
}

    .client-track img {
        height: 80px;
        margin: 0 20px;
        object-fit: contain;
    }

@keyframes bounceScroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.margin-20 {
    margin-left: 28px;
}
.Location {
    flex: 1;
    min-width: 320px;
    padding: 52px;
}

.mission-vision-section {
    padding: 60px 20px;
}

    .mission-vision-section .container {
        max-width: 1200px;
        margin: auto;
        display: flex;
        align-items: flex-start; /* ✅ aligns text top with image */
        gap: 40px;
        flex-wrap: wrap;
    }

.section-heading {
    font-size: 30px;
    margin-bottom: 20px;
    color: #007BFF; /* your brand color */
    text-align:left;
}

.mv-image {
    flex: 1 1 40%;
    text-align: center;
}

    .mv-image img {
        width: 100%;
        max-width: 280px; /* reduced image size */
    }

.mv-content {
    flex: 1 1 55%;
}

.mv-item {
    margin-bottom: 25px;
    text-align:left;
}

.mv-title {
    font-size: 28px;
    color: #007BFF;
    margin-bottom: 8px;
}

.mv-text {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
}


/*.server-banner {
    background-color: #f1f5f9;
    padding: 25px 20px;
}

.server-banner-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.server-banner-text {
    flex: 1;
    min-width: 280px;
    animation: slideInLeft 1s ease-in-out;
}

    .server-banner-text h1 {
        font-size: 2.8rem;
        color: #1e3a8a;
        margin-bottom: 20px;
    }

    .server-banner-text p {
        font-size: 1.1rem;
        color: #334155;
        margin-bottom: 30px;
        line-height: 1.6;
    }

.server-banner-btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: #1e3a8a;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
}

    .server-banner-btn:hover {
        background-color: #2563eb;
    }

.server-banner-image {
    flex: 1;
    min-width: 280px;
    text-align: center;
    animation: slideInRight 1s ease-in-out;
}

    .server-banner-image img {
        width: 100%;
        max-width: 500px;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

        .server-banner-image img:hover {
            transform: scale(1.03);
        }*/
/* Animations */
@keyframes slideInLeft {
    from {
        transform: translateX(-40px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(40px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.info-section {
    background: #ffffff;
    padding: 60px 20px;
}
.top-heading {
    text-align: center;
    margin-bottom: 40px;
}

    .top-heading h2 {
        font-size: 30px;
        margin-bottom: 10px;
        text-align: left;
        color: #007BFF;
    }

    .top-heading h3 {
        font-size: 26px;
        margin-bottom: 15px;
        color: #1f2937;
        text-align: left;
    }

    .top-heading p {
        font-size: 18px;
        color: #444;
        line-height:1.7;
        max-width: 1200px;
        margin: 0 auto;
        text-align:left;
    }

/*.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}*/

.bottom-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.info-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    align-items: center;
    gap: 40px;
}

.info-text {
    flex: 1;
    min-width: 280px;
}

    .info-text h2 {
        font-size: 30px;
        color: #007BFF;
        margin-bottom: 20px;
    }

    .info-text p {
        font-size: 1.1rem;
        color: #334155;
        margin-bottom: 20px;
    }

    .info-text ul {
        list-style: none;
        padding-left: 0;
    }

        .info-text ul li {
            margin-bottom: 12px;
            font-size: 18px;
            color: #444;
        }

            .info-text ul li i {
                color: #10b981;
                margin-right: 10px;
            }

/*.info-image {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

    .info-image img {
        max-width: 100%;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }*/

.info-image {
    flex: 1 1 48%;
    text-align: center;
}

    .info-image img {
        max-width: 80%;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }


/*Start S2 Feature Grid*/
.features-section {
    background-color: #f8fafc;
    padding: 80px 20px;
    text-align: center;
}

.features-header h2 {
    font-size: 2rem;
    color: #1e3a8a;
    text-align: left;
    margin-bottom: 10px;
}

.features-header p {
    font-size: 1.05rem;
    color: #4b5563;
    max-width: 700px;
   /* margin: 0 auto 40px;*/
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    }

    .feature-card i {
        font-size: 40px;
        color: #2563eb;
        margin-bottom: 20px;
    }

    .feature-card h3 {
        font-size: 1.3rem;
        color: #1f2937;
        margin-bottom: 10px;
    }

    .feature-card p {
        font-size: 0.95rem;
        color: #4b5563;
        line-height: 1.6;
    }

/*End S2 Feature Grid*/

/*Start S3 tabbed Grid*/
.tabbed-section {
    padding: 80px 20px;
    background: #f0f4f9;
    text-align: center;
}

.tabs-header h2 {
    font-size: 2rem;
    color: #1d4ed8;
    margin-bottom: 10px;
}

.tabs-header p {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 30px;
}

.tabs-container {
    max-width: 1000px;
    margin: 0 auto;
}

.tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-link {
    background: #fff;
    border: 1px solid #ddd;
    padding: 12px 20px;
    font-weight: 600;
    color: #2563eb;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

    .tab-link.active,
    .tab-link:hover {
        background: #2563eb;
        color: white;
    }

.tab-content {
    display: none;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    text-align: left;
}

    .tab-content.active {
        display: block;
    }

    .tab-content h3 {
        color: #1f2937;
        margin-bottom: 15px;
    }

    .tab-content p {
        color: #4b5563;
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .tab-content img {
        width: 100%;
        max-width: 500px;
        border-radius: 10px;
        margin-top: 10px;
    }

/*End S2 tabbed Grid*/

.product-section {
    background: #f9fafb;
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.product-header {
    text-align: center;
    margin-bottom: 60px;
}

    .product-header h2 {
        font-size: 30px;
        color: #007BFF;
    }

    .product-header p {
        font-size: 18px;
        color: #444;
        line-height: 1.7;
    }

/* Layout */
.product-row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.product-info {
    flex: 1;
    min-width: 250px;
}

    .product-info h3 {
        font-size: 26px;
        color: #1f2937;
        margin-bottom: 15px;
    }

    .product-info p {
        font-size: 18px;
        color: #444;
        line-height:1.7;
    }

/* Sub-products grid */
.product-subitems {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 25px;
}

.sub-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

    .sub-card:hover {
        transform: translateY(-5px);
    }

    .sub-card img {
        width: 60px;
        margin-bottom: 12px;
    }

    .sub-card h4 {
        font-size: 1rem;
        color: #1f2937;
        margin-bottom: 5px;
    }

    .sub-card p {
        font-size: 0.9rem;
        color: #4b5563;
        text-align:left;
    }

.learn-more {
    display: inline-block;
    margin-top: 12px;
    padding: 6px 12px;
    font-size: 0.85rem;
    color: #ffffff;
    background-color: #1d4ed8;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

    .learn-more:hover {
        background-color: #2563eb;
    }



.end-computing-section {
/*    background-color: #f9f9f9;*/
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
}

/*.end-computing-intro {
    max-width: 1000px;
    margin: 0 auto 40px;
    text-align: center;
}*/

    .end-computing-intro h2 {
        font-size: 30px;
        color: #007BFF;
        margin-bottom: 10px;
    }

    .end-computing-intro .tagline {
        font-size: 26px;
        color: #444;    
        margin-bottom: 20px;
    }
.end-computing-intro p{
    font-size:18px;
    color:#444;
    line-height:1.7;
    text-align:left;
}

.intro-features {
    list-style: none;
    padding: 0;
/*    margin: 20px auto 0;*/
    text-align: left;
    font-size:18px;
}


.sub-product {
    display: flex;
    align-items: center;
    margin: 40px auto;
    max-width: 1200px;
    flex-wrap: wrap;
    gap: 20px;
}

    .sub-product.alt {
        flex-direction: row-reverse;
    }

.sub-image {
    flex: 1;
    text-align: center;
}

    .sub-image img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

.sub-content {
    flex: 1;
    padding: 0 20px;
}

    .sub-content h2 {
        font-size: 30px;
        color: #007BFF;
        margin-bottom: 10px;
    }

    .sub-content .subtitle {
        font-size: 26px;
       /* font-weight: 500;*/
        margin-bottom: 10px;
        color: #1f2937;
    }

    .sub-content p {
        font-size: 18px;
        line-height: 1.7;
        text-align:left;
        color: #444;
    }

.intro-features {
    list-style: none;
    padding: 0;
}

    .intro-features li {
        margin-bottom: 10px;
    }
 /*Start Cloud and Clientronix Series*/
.series-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.series-title {
    text-align: center;
    font-size: 30px;
    color: #007BFF;
    margin-bottom: 40px;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    animation: fadeInUp 0.6s ease forwards;
}

    .timeline-item.alt {
        flex-direction: row-reverse;
    }

.timeline-img {
    width: 40%;
    text-align: center;
}
.blogh1 {
    color: #007BFF
}
.timeline-img img {
    /* width: 200px;
        height: auto;
        border-radius: 50%;
        box-shadow: 0 0 20px rgba(0,0,0,0.1);*/
    width: 100%;
    max-width: 280px;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.timeline-content {
    width: 55%;
    background: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

    .timeline-content h3 {
        font-size:26px;
        color: #1f2937;
        margin-bottom: 10px;
    }

    .timeline-content p {
        font-size: 18px;
        color: #444;
        line-height: 1.7;
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.clientronix-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f7fafd, #eef3f9);
    position: relative;
}

/*.series-title {
    text-align: center;
    font-size: 30px;
    color: #007BFF;
    margin-bottom: 50px;
    font-weight: 700;
}*/

.clientronix-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.clientronix-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
    gap: 40px;
    animation: slideUp 0.8s ease forwards;
}

    .clientronix-block.alt {
        flex-direction: row-reverse;
    }

.clientronix-content {
    width: 55%;
    background: #ffffff;
    padding: 30px 35px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}

    .clientronix-content:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    }

    .clientronix-content h3 {
        color: #1f2937;
        font-size: 26px;
        margin-bottom: 12px;
    }

    .clientronix-content p {
        color: #444;
        font-size: 18px;
        line-height: 1.7;
    }

.clientronix-image {
    width: 40%;
    position: relative;
    z-index: 1;
}

    .clientronix-image img {
        width: 100%;
        max-width: 280px;
        border-radius: 50%;
        box-shadow: 0 4px 16px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }

        .clientronix-image img:hover {
            transform: scale(1.05);
        }

/* Animation */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonials {
    background: #f9fbfd;
    padding: 80px 20px;
    text-align: center;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 50px;
    color: #0b2c5f;
    text-align:left;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .testimonial-card .quote {
        font-size: 16px;
        font-style: italic;
        color: #333;
        margin-bottom: 20px;
        position: relative;
    }

        .testimonial-card .quote::before {
            content: "“";
            font-size: 32px;
            color: #0b5ed7;
            margin-right: 5px;
            position: absolute;
            left: -10px;
            top: -10px;
        }

.author {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.author-info h4 {
    font-size: 16px;
    font-weight: bold;
    color: #0b2c5f;
    margin: 0;
}

.author-info p {
    font-size: 14px;
    color: #777;
    margin: 2px 0 0;
}

/*Start Mini PC*/
.client-feedback-section {
    padding: 60px 20px;
    background-color: #f4f8fb;
    text-align: center;
}

.feedback-container {
    display: flex;
    /*flex-wrap: wrap;*/
    justify-content: center;
    gap: 30px;
    max-width: 1100px;
    margin: 15px auto;
}

.feedback-item {
    background: #fff;
    padding: 20px 30px;
    border-left: 4px solid #005f99;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    max-width: 350px;
    text-align: left;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

    .feedback-item:hover {
        transform: translateY(-5px);
    }

.feedback-text {
    font-size: 18px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
}

.client-name {
    font-weight: bold;
    color: #005f99;
}

.connect-link {
    color: #ffffff;
    text-decoration: underline;
    font-weight: bold;
}

.nav-arrow {
    background: #007BFF;
    border: none;
    color: #fff;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    border-radius: 4px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

    .nav-arrow.left {
        left: -20px;
    }

    .nav-arrow.right {
        right: -20px;
    }

.section-title {
    font-size: 30px;
    text-align:center;
    color: #007BFF;
}
/*End Mini PC*/
/* Glowing line (optional aesthetic) */
.clientronix-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #4ea0f1, #003366);
    transform: translateX(-50%);
    opacity: 0.1;
    border-radius: 10px;
    z-index: 0;
}

/*Start the Mini Pc*/

.alpha-section {
    position: relative;
    padding: 60px 20px;
    background: linear-gradient(to right, #f0f2f5, #ffffff);
    overflow: hidden;
}

.alpha-background {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #e0f7fa, transparent 70%);
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}

.alpha-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.alpha-heading {
    font-size: 30px;
    margin-bottom: 40px;
    color: #007BFF;
}

.alpha-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    align-items: start;
    z-index: 2;
}

.alpha-item {
    background: rgba(255, 255, 255, 0.96);
    padding: 24px;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    animation: fadeInUp 1s ease forwards;
    transform: translateY(20px);
}

    .alpha-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    }

    .alpha-item img {
        max-width: 80px;
        margin-bottom: 20px;
    }

    .alpha-item h3 {
        font-size: 26px;
        margin-bottom: 12px;
        color: #1f2937;
    }

    .alpha-item p {
        font-size: 18px;
        color: #444;
        line-height: 1.7;
        margin-bottom: 16px;
    }

.alpha-button {
    display: inline-block;
    padding: 8px 20px;
    background-color: #005f99;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

    .alpha-button:hover {
        background-color: #003d66;
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(20px);
    }
}

.why-choose-us {
    background: #f9fbfd;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
    color: #1d1d1d;
}


.why-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 30px;
    color: #007BFF;
    text-align:left;
}

.why-features,
.why-points {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

    .why-features li,
    .why-points li {
        padding: 12px 0;
        border-bottom: 1px solid #e1e1e1;
        font-size: 18px;
        line-height: 1.7;
    }

.why-cta {
    background: #e8f4ff;
    border-left: 4px solid #0073e6;
    padding: 16px 20px;
    margin: 30px 0;
    font-size: 18px;
    color: #444;
}

.why-subheading {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 10px;
    color: #1f2937;
}

.server-banner-container,
.network-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding: 60px 10%;
}

.server-banner-image img,
.network-img img {
    max-width: 450px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.server-banner-text,
.network-text {
    flex: 1 1 50%;
}

    .network-text h2 {
        font-size: 30px;
        color: #007BFF;
    }
    .network-text h3 {
        font-size: 26px;
        color: #1f2937;
    }
        .network-text p{
            font-size:18px;
            color:#444;
            line-height:1.7;
        }
        .server-banner-image,
        .network-img {
            flex: 1 1 40%;
            text-align: center;
        }

.network-block.reverse {
    flex-direction: row-reverse;
}

/* ===== Footer Styling ===== */
.site-footer {
    background: #f8f9fa;
    padding: 50px 20px 20px;
    font-family: Arial, sans-serif;
    color: #333;
}

.footer-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-column h4 {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: bold;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

    .footer-column ul li {
        margin-bottom: 10px;
    }

        .footer-column ul li a {
            text-decoration: none;
            color: #555;
            font-size: 15px;
        }

            .footer-column ul li a:hover {
                color: #0d47a1;
            }

.app-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.social-links a {
    margin-right: 12px;
    display: inline-block;
}

.social-links svg:hover {
    fill: #0d47a1;
}

/* Bottom footer */
.footer-bottom {
    border-top: 1px solid #ddd;
    margin-top: 30px;
    padding-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #666;
}

    .footer-bottom ul {
        list-style: none;
        padding: 0;
        margin: 10px 0 0;
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .footer-bottom a {
        color: #555;
        text-decoration: none;
    }

        .footer-bottom a:hover {
            color: #0d47a1;
        }

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {

    .landing-container {
        flex-direction: column;
        text-align: center;
    }

    .landing-image {
        justify-content: center;
        margin-top: 30px;
    }

    .landing-text h1
    {
        text-align:left;
    }
    .sub-content h3
    {
        text-align:left;
    }
    .timeline-content h3
    {
        text-align:left;
    }
    .timeline-content p {
        text-align: left;
    }
    .clientronix-content h3
    {
        text-align:left;
    }
    .clientronix-content p
    {
        text-align:left;
    }
    .about-flex {
        flex-direction: column;
    }

    .about-image,
    .about-content {
        max-width: 100%;
    }
    .about-heading h1 {
        font-size: 2em;
    }

    .solutions-row {
        flex-direction: column;
        align-items: center;
    }

    .solution-box {
        width: 90%;
        max-width: 400px;
    }

    body.sidebar-open {
        overflow: hidden;
    }

    .network-text h2
    {
        text-align:left;
    }
    .network-text h3 {
        text-align: left;
    }
    .network-text h4 {
        text-align: left;
    }
    .network-text p {
        text-align: left;
    }
    /*.server-banner-container {
        flex-direction: column;
        text-align: center;
    }

    .server-banner-text h1 {
        font-size: 2rem;
    }

    .server-banner-text p {
        font-size: 1rem;
    }

    .server-banner-image img {
        max-width: 90%;
        margin-top: 20px;
    }*/
    .end-computing-intro h2 {
        font-size: 2rem;
    }

    .sub-product, .sub-product.alt {
        flex-direction: column;
    }

    .sub-content {
        padding: 0;
    }

    

    .sub-product::after {
        display: none;
    }

    .sub-content, .sub-image {
        width: 100%;
        text-align: center;
    }

        .sub-image img {
            width: 200px;
            height: 200px;
        }
      /*S1*/
    .info-container {
        flex-direction: column;
        text-align: center;
    }

    .info-text h2 {
        font-size: 30px;
    }

    .info-text p, .info-text ul li {
        font-size: 18px;
    }
    /*End S1*/

    /*Start S2 Feature Grid*/
    /*End S2 Feature Grid*/
    .timeline-item,
    .timeline-item.alt {
        flex-direction: column !important;
        text-align: center;
    }

    .timeline-img,
    .timeline-content {
        width: 100%;
    }

    .clientronix-block,
    .clientronix-block.alt {
        flex-direction: column;
        text-align: center;
    }

    .clientronix-content,
    .clientronix-image {
        width: 100%;
    }

    .clientronix-wrapper::before {
        display: none;
    }
    .alpha-heading {
        font-size: 28px;
    }

    .alpha-item {
        padding: 16px;
    }

        .alpha-item h3 {
            font-size: 18px;
        }

        .alpha-item p {
            font-size: 13px;
            text-align:left;
        }


/*
    .why-choose-us h2 {
        font-size: 26px;
    }*/

    .why-subheading {
        font-size: 20px;
    }

    .why-cta {
        font-size: 15px;
    }

    .responsive-video {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .info-content {
        flex-direction: column;
    }

    .bottom-content {
        flex-direction: column;
    }

    .bullet-content,
    .info-image {
        flex: 1 1 100%;
    }

    .info-image {
        margin-top: 20px;
    }

    .server-banner-container,
    .network-block,
    .network-block.reverse {
        flex-direction: column;
        text-align: center;
    }

    .server-banner-text,
    .network-text,
    .server-banner-image,
    .network-img {
        flex: 1 1 100%;
    }

    .feedback-container {
        flex-direction: column;
        align-items: center;
    }

    .about-image img
    {
        width:100%;
    }

    .mission-vision-section .container {
        flex-direction: column;
        text-align: center;
    }

    .mv-image img {
        max-width: 220px;
        margin-bottom: 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .app-badges {
        align-items: center;
    }

    .social-links {
        margin-top: 10px;
    }

}
