        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --burgundy: #7a2e3e;
            --dark-burgundy: #5a1e2e;
            --light-burgundy: #9a4e5e;
            --cream: #f5e6d3;
            --light-cream: #faf5ef;
            --text-dark: #333;
            --white: #ffffff;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .text-color{
            color: var(--burgundy)
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: var(--shadow);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--burgundy);
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s ease;
        }

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

        /* Hero Section */
        .hero {
            margin-top: 50px;
            min-height: 90vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy) 60%, var(--cream) 60%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            width: 100%;
        }

        .hero-content {
            z-index: 1;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 0.5rem;
            font-weight: 700;
            letter-spacing: 2px;
        }

        .hero h2 {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            font-weight: 400;
            line-height: 1.4;
        }

        .hero-image {
            width: 100%;
            max-width: 450px;
            height: auto;
            background: var(--cream);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: var(--burgundy);
            margin-left: auto;
        }

        .email-icon {
            margin-top: 2rem;
            font-size: 3rem;
        }

        /* Section Styles */
        section {
            padding: 5rem 2rem;
        }

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

        .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 3rem;
            color: var(--burgundy);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* About Section */
        .about {
            background: var(--cream);
        }

        .about-content {
            display: grid;
            grid-template-columns: 400px 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image {
            width: 100%;
            height: 450px;
            border-radius: 20px;
            background: var(--burgundy);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 6rem;
            box-shadow: var(--shadow);
            border: 8px solid var(--dark-burgundy);
        }

        .about-text {
            color: var(--text-dark);
        }

        .about-text h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--burgundy);
        }

        .about-text p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
            font-size: 1.1rem;
        }

        /* Services Section */
        .services {
            background: var(--light-cream);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .service-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            border-left: 5px solid var(--burgundy);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(122, 46, 62, 0.2);
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--burgundy);
            font-weight: 700;
        }

        .service-card ul {
            list-style: none;
            padding: 0;
        }

        .service-card li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
            color: #555;
        }

        .service-card li:before {
            content: "•";
            color: var(--burgundy);
            font-weight: bold;
            position: absolute;
            left: 0;
            font-size: 1.5rem;
        }

        /* Work Process Section */
        .work-process {
            background: var(--cream);
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .process-step {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: all 0.3s ease;
        }

        .process-step:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(122, 46, 62, 0.2);
        }

        .process-step h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--burgundy);
            font-weight: 700;
        }

        .process-step p {
            color: #666;
            line-height: 1.6;
        }

        .step-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1rem;
            background: var(--burgundy);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 2rem;
            font-weight: bold;
        }

        /* Portfolio Section */
        .portfolio {
            background: var(--light-cream);
        }

        .portfolio-categories {
            margin-bottom: 4rem;
        }

        .category-section {
            margin-bottom: 4rem;
        }

        .category-title {
            font-size: 2rem;
            color: var(--burgundy);
            margin-bottom: 1.5rem;
            text-align: center;
            font-weight: 700;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .portfolio-item {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }

        .portfolio-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(122, 46, 62, 0.2);
        }

        .portfolio-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, var(--burgundy) 0%, var(--light-burgundy) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 3rem;
        }

        .portfolio-info {
            padding: 1.5rem;
        }

        .portfolio-info h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--burgundy);
        }

        .portfolio-info p {
            color: #666;
            font-size: 0.95rem;
        }

        /* Results Section */
        .results {
            background: var(--burgundy);
            color: var(--white);
        }

        .results .section-title {
            color: var(--white);
        }

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

        .result-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 2.5rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .result-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }

        .result-number {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
            color: var(--cream);
        }

        .result-label {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        .result-description {
            font-size: 1rem;
            line-height: 1.6;
            opacity: 0.8;
        }

        /* Growth Stats */
        .growth-stats {
            background: var(--cream);
            padding: 4rem 2rem;
            margin: 4rem 0;
            border-radius: 20px;
        }

        .stats-comparison {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 2rem;
            align-items: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .stat-box {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
            text-align: center;
        }

        .stat-label {
            font-size: 1rem;
            color: #666;
            margin-bottom: 0.5rem;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--burgundy);
        }

        .arrow {
            font-size: 3rem;
            color: var(--burgundy);
        }

        /* Contact Section */
        .contact {
            background: var(--light-cream);
        }

        .contact-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-top: 3rem;
        }

        .contact-item {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            gap: 1.5rem;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 20px rgba(122, 46, 62, 0.2);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--burgundy);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.8rem;
            flex-shrink: 0;
        }

        .contact-details {
            text-align: left;
        }

        .contact-details strong {
            display: block;
            color: var(--burgundy);
            font-size: 1.2rem;
            margin-bottom: 0.3rem;
        }

        .contact-details a {
            color: #555;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-details a:hover {
            color: var(--burgundy);
        }

        /* Clickable contact cards */
        .contact-item-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .contact-item-link .contact-item {
            cursor: pointer;
        }

        .contact-details span {
            color: #555;
        }

        /* Footer */
        footer {
            background: var(--dark-burgundy);
            color: var(--white);
            text-align: center;
            padding: 2rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 1rem;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .social-links a:hover {
            background: var(--cream);
            color: var(--burgundy);
            transform: translateY(-3px);
        }

        /* Responsive */
        @media (max-width: 968px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .hero-image {
                margin: 0 auto;
            }

            .about-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .about-image {
                margin: 0 auto;
            }

            .stats-comparison {
                grid-template-columns: 1fr;
            }

            .arrow {
                transform: rotate(90deg);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero h2 {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .contact-item {
                flex-direction: column;
                text-align: center;
            }

            .contact-details {
                text-align: center;
            }
        }

        /* Language Switcher */
        .lang-switch {
            margin-left: 1rem;
        }

        #langBtn {
            background: var(--burgundy);
            color: var(--white);
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            cursor: pointer;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        #langBtn:hover {
            background: var(--dark-burgundy);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        #currentLang {
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .lang-switch {
                position: absolute;
                top: 1rem;
                right: 4rem;
            }
        }
