:root {
    --primary: #0f172a;
    --secondary: #1e293b;
    --accent: #10b981; /* Emerald green */
    --accent-light: #34d399;
    --gold: #fbbf24;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--primary);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

/* Header & Nav */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.5px;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--accent);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 10%;
    background: radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.05) 0%, #0f172a 100%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 50px;
    width: 100%;
    z-index: 2;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    width: 350px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    overflow: hidden;
    animation: floatCard 6s infinite ease-in-out;
}

.card-1 { top: 0; right: 0; z-index: 3; animation-delay: 0s; }
.card-2 { bottom: 50px; left: 0; z-index: 2; animation-delay: -3s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-20px) rotate(-1deg); }
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png'),
                radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    animation: rotate 60s linear infinite;
    opacity: 0.5;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    max-width: 900px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: var(--accent-light);
}

/* Sections */
section {
    padding: 100px 10%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title .underline {
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1.2;
}

.about-image {
    flex: 0.8;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    height: 450px;
}

.bento-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

.bento-item:hover {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.bento-main {
    grid-row: span 2;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), transparent);
}

.bento-main h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 5px;
}

.bento-main p {
    color: var(--accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bento-chart .mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 40px;
    margin-bottom: 10px;
}

.bento-chart .bar {
    width: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: barGrow 2s infinite alternate;
}

@keyframes barGrow {
    from { opacity: 0.5; }
    to { opacity: 1; }
}

.bento-item i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.bento-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

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

.product-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 24px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.product-image-container {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 25px;
    border: 1px solid var(--glass-border);
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.product-card:hover .product-image-container img {
    transform: scale(1.1);
}

.product-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
}

.product-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.product-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Experience List */
.experience-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.experience-list {
    list-style: none;
}

.experience-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--glass);
    border-radius: 16px;
    border-left: 4px solid var(--accent);
}

.experience-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.experience-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.expertise-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 24px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), transparent);
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: 0.4s;
}

.expertise-card:hover::before {
    opacity: 1;
}

.expertise-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.expertise-card.highlight {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.expertise-icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--accent);
    font-size: 1.5rem;
    transition: 0.3s;
}

.expertise-card:hover .expertise-icon {
    background: var(--accent);
    color: var(--primary);
    transform: scale(1.1) rotate(5deg);
}

.expertise-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.expertise-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.expertise-list-simple {
    list-style: none;
    padding: 0;
}

.expertise-list-simple li {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.expertise-list-simple li::before {
    content: '→';
    color: var(--accent);
    font-weight: bold;
}

.expertise-banner {
    margin-top: 60px;
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid var(--glass-border);

    background:
        linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)),
        url('/images/digital_transformation_ecosystem.png');

    background-size: cover;
    background-position: center;

    transition: 0.5s;
}

.expertise-banner:hover {
    transform: scale(1.01);
    border-color: var(--accent) !important;
}

/*.expertise-banner:hover {
    transform: scale(1.01);
    transition: 0.5s;
    border-color: var(--accent) !important;
}*/

.custom-list {
    color: var(--text-muted);
    padding-left: 20px;
    margin-top: 10px;
    line-height: 1.8;
}

/* Footer */
footer {
    padding: 60px 10%;
    background: #0a0f1d;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-links h4 {
    margin-bottom: 25px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.copyright {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { display: none; }
    .hero-content h1 { font-size: 2.5rem; }
    .about-container { flex-direction: column; text-align: center; }
    .experience-container { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .footer-content { grid-template-columns: 1fr; }
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-size: 12px;

    color: var(--accent);
    text-decoration: none;
    font-weight: 600;

    transition: 0.3s;
}

.product-link:hover {
    opacity: 0.8;
    transform: translateX(3px);
}

.product-icon {
    font-size: 14px !important;
}
