       * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-beige: #f0f2f5;
    --light-beige: #fcfcfd;
    --dark-charcoal: #404040;
    --medium-charcoal: #606060;
    --light-charcoal: #808080;
    --accent-red: #B22222;
    --accent-red-light: #CD5C5C;
    --text-dark: #2a2a2a;
    --text-light: #5a5a5a;
    --white: #ffffff;
    --cream: #f6f8fa;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--light-beige);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-weight: 600;
    line-height: 1.2;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(64, 64, 64, 0.1);
}

.scrolled {
    padding: 1rem 5%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    color: inherit;
}

.logo-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--dark-charcoal);
    display: flex;
    align-items: center;
    justify-content: right;
    position: relative;
    overflow: hidden;
}

.logo-text {
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--cream);
}

.logo-name {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--dark-charcoal);
}

.logo-name span {
    color: var(--light-charcoal);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--dark-charcoal);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-red);
}

.nav-links a.active {
    color: var(--accent-red);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-red);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--dark-charcoal);
    font-size: 1.5rem;
    cursor: pointer;
}

.cta-button {
    background: var(--accent-red);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cta-button:hover {
    background: var(--accent-red-light);
    transform: translateY(-2px);
}

/* Hero Section - FIXED */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    padding: 0 5%;
    background: linear-gradient(135deg, var(--light-beige) 0%, var(--primary-beige) 100%);
}

.hero-content {
    background: var(--light-beige);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-charcoal);
}

.hero h1 span {
    color: var(--accent-red);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.secondary-button {
    background-color: transparent;
    color: var(--dark-charcoal);
    border: 2px solid var(--dark-charcoal);
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.secondary-button:hover {
    background-color: rgba(64, 64, 64, 0.1);
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.tech-background {
    width: 100%;
    height: 80%;
    background: 
        linear-gradient(45deg, rgba(178, 34, 34, 0.1) 0%, transparent 50%),
        url('images/new/corporate.jpg') center/cover,
        url('images/new/entrepeneur.jpg') center/cover;
    opacity: 0.4;
    filter: grayscale(30%);
    animation: backgroundChange 10s infinite;
    border-radius: 8px;
}

@keyframes backgroundChange {
    0%, 45% {
        background: 
            linear-gradient(45deg, rgba(178, 34, 34, 0.1) 0%, transparent 50%),
            url('images/new/corporate.jpg') center/cover;
    }
    50%, 95% {
        background: 
            linear-gradient(45deg, rgba(178, 34, 34, 0.1) 0%, transparent 50%),
            url('images/new/entrepeneur.jpg') center/cover;
    }
    100% {
        background: 
            linear-gradient(45deg, rgba(178, 34, 34, 0.1) 0%, transparent 50%),
            url('images/new/corporate.jpg') center/cover;
    }
}

/* Services Section */
.services {
    padding: 6rem 5%;
    background: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-charcoal);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-red);
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--light-beige);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(239, 214, 177, 0.5);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-red);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-red);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-red);
    margin-bottom: 1.5rem;
    display: inline-block;
    height: 80px;
    width: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: rgba(178, 34, 34, 0.1);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: rgba(178, 34, 34, 0.2);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-charcoal);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Portfolio Section */
.portfolio {
    padding: 6rem 5%;
    background: var(--primary-beige);
}

.portfolio-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.tab-button {
    background: transparent;
    color: var(--dark-charcoal);
    border: 1px solid var(--dark-charcoal);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.tab-button:hover {
    background: rgba(64, 64, 64, 0.1);
}

.tab-button.active {
    background: var(--accent-red);
    color: var(--white);
    border-color: var(--accent-red);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.portfolio-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-charcoal);
}

.portfolio-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* About Section - RESPONSIVE TEAM IMAGE */
.about {
    padding: 6rem 5%;
    background: var(--white);
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-charcoal);
}

.about-content h2 span {
    color: var(--accent-red);
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-red);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.about-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(178, 34, 34, 0.1), transparent);
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* CTA Section */
.cta-section {
    padding: 6rem 5%;
    background: var(--dark-charcoal);
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(178, 34, 34, 0.9), rgba(64, 64, 64, 0.9));
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button.white {
    background: var(--white);
    color: var(--accent-red);
}

.cta-button.white:hover {
    background: var(--light-beige);
}

/* Footer */
footer {
    background: var(--light-charcoal);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-red);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-red);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding-top: 6rem;
    }
    
    .tech-background {
        height: 400px;
    }
    
    .about {
        flex-direction: column;
        text-align: center;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .about-image img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 1rem 0;
        text-align: center;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .tech-background {
        height: 300px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button, .secondary-button {
        width: 100%;
        max-width: 250px;
    }
    
    .tech-background {
        height: 250px;
    }
    
    .about-image img {
        height: 250px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
}
@media (max-width: 480px) {
    #contactBtn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        display: none; /* Or keep it visible but smaller */
    }
}