CSS


/* --- Vibrant Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

:root {
    --bright-blue: #0052cc;
    --neon-cyan: #00f2fe;
    --vibrant-orange: #ff6a00;
    --vibrant-pink: #ee0979;
    --electric-purple: #7f00ff;
    --soft-bg: #f4f7f6;
    --dark-slate: #0f172a;
}

body {
    color: #334155;
    background-color: #ffffff;
    line-height: 1.6;
}

.container {
    width: 88%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Vivid Header & Nav --- */
header {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--bright-blue);
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.logo h1 span {
    background: linear-gradient(45deg, var(--vibrant-orange), var(--vibrant-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo p {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #64748b;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #334155;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--vibrant-orange);
}

.btn-nav {
    background: linear-gradient(135deg, var(--bright-blue), var(--electric-purple));
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.3);
}

/* --- Colorful Hero Layout --- */
.hero {
    background: linear-gradient(135deg, #fdfbf7 0%, #eef5fc 100%);
    padding: 80px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-text h2 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-slate);
    font-weight: 800;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #475569;
}

.btn-main {
    background: linear-gradient(45deg, var(--vibrant-orange), var(--vibrant-pink));
    color: white;
    text-decoration: none;
    padding: 14px 35px;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(255, 106, 0, 0.4);
    display: inline-block;
    transition: transform 0.2s ease;
}

.btn-main:hover {
    transform: scale(1.05);
}

/* Dynamic Image Styling */
.img-frame {
    position: relative;
    padding: 12px;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.feature-gradient-1 {
    background: linear-gradient(135deg, var(--neon-cyan), var(--bright-blue));
}

.feature-gradient-2 {
    background: linear-gradient(135deg, var(--vibrant-orange), var(--electric-purple));
}

.img-frame img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.img-caption {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark-slate);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* --- Software Section & Color Palette Cards --- */
.services-section {
    background-color: var(--soft-bg);
    padding: 90px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--dark-slate);
    font-weight: 800;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 6px solid #ddd;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.card-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark-slate);
}

/* Individual Color Identification */
.card-blue { border-left-color: var(--bright-blue); }
.card-blue .card-icon { color: var(--bright-blue); }

.card-purple { border-left-color: var(--electric-purple); }
.card-purple .card-icon { color: var(--electric-purple); }

.card-orange { border-left-color: var(--vibrant-orange); }
.card-orange .card-icon { color: var(--vibrant-orange); }

.card-green { border-left-color: #10b981; }
.card-green .card-icon { color: #10b981; }

.card-pink { border-left-color: var(--vibrant-pink); }
.card-pink .card-icon { color: var(--vibrant-pink); }

/* --- Hardware Layout Section --- */
.hardware-section {
    padding: 90px 0;
    background: #ffffff;
}

.hardware-grid-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.left-align {
    text-align: left !important;
}

.section-subtitle.left-align {
    margin-bottom: 30px;
    font-size: 18px;
}

.hw-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.badge {
    background: #f1f5f9;
    color: var(--dark-slate);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #e2e8f0;
    transition: background 0.3s;
}

.badge i {
    color: var(--bright-blue);
    font-size: 18px;
}

.badge:hover {
    background: #e2e8f0;
}

/* --- Multi-Color Training Banner --- */
.training-section {
    background: linear-gradient(135deg, var(--electric-purple), var(--vibrant-pink));
    color: white;
    padding: 80px 0;
}

.training-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.training-text h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.training-text p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.training-frame {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.dark-caption {
    background: var(--dark-slate) !important;
    color: #fff !important;
}

.btn-light {
    background: #ffffff;
    color: var(--electric-purple);
    text-decoration: none;
    padding: 14px 35px;
    font-weight: bold;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: transform 0.2s;
}

.btn-light:hover {
    transform: translateY(-3px);
}

/* --- Dark Modern Footer --- */
footer {
    background: var(--dark-slate);
    color: #94a3b8;
    padding: 80px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-info h3 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 20px;
}

.footer-info h3 span {
    color: var(--vibrant-orange);
}

.footer-contact h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact i {
    color: var(--neon-cyan);
    font-size: 16px;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
}

/* --- Responsive Adaptations --- */
@media (max-width: 992px) {
    .hero-grid, .hardware-grid-layout, .training-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hardware-grid-layout .hardware-image {
        order: 2;
    }
    .left-align {
        text-align: center !important;
    }
    .hw-badges {
        justify-content: center;
    }
    .img-frame img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    nav ul li {
        margin: 0 10px;
    }
    .hero-text h2 {
        font-size: 32px;
    }
}