        :root {
            --astra-blue: #1e88e5;
            --astra-orange: #ff9800;
            --astra-light-blue: #bbdefb;
            --astra-light-orange: #ffe0b2;
            --dark-text: #333333;
            --light-text: #ffffff;
            --blue: #1E78B4;
            --orange: #F1642C;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f5f5f5;
            color: var(--dark-text);
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
           
        }

        /* Header */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .logo-container {
            display: flex;
            align-items: center;
        }

        .logo {
            height: 40px;
            animation: fadeIn 1s ease-in;

        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--blue);
            margin-left: 10px;
        }

        .logo img {
            height: 50px;
            width: 50px;
            viewBox: "0 0 100 60";
            float: left;
            margin-right: 10px;
            border-radius: 50px;
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--orange);
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--blue);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--blue);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .active::after {
            width: 100% !important;
        }

        .menu-btn {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--dark-gray);
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                flex-direction: column;
                background-color: white;
                padding: 1rem 0;
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
                z-index: 1000;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                margin: 1rem 0;
                text-align: center;
            }

            .menu-btn {
                display: block;
            }

            nav {
                position: relative;
            }
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgb(226, 134, 5), rgba(255, 255, 255, 1)), url('/api/placeholder/1200/600') center/cover no-repeat;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--light-text);
        }

        .hero-content {
            max-width: 800px;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease-out;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            animation: fadeInUp 1.2s ease-out;
        }

        .btn {
            display: inline-block;
            background-color: var(--astra-orange);
            color: var(--light-text);
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            animation: fadeInUp 1.4s ease-out;
        }

        .btn:hover {
            background-color: var(--astra-blue);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        /* Services Section */
        .services {
            padding: 80px 0;
            text-align: center;
        }

        .section-title {
            position: relative;
            font-size: 2.5rem;
            margin-bottom: 60px;
            color: #1e88e5;
        }

        .heading {
            position: relative;
            font-size: 3rem;
            margin-bottom: 3rem;
            text-align: center;
            color: var(--astra-blue);

        }

        span {
            color: #ff9800;
            margin-left: 5px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, var(--astra-blue), var(--astra-orange));
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

          .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .service-icon {
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 80px;
            color: white;
            position: relative;
        }

        .service-icon.translation {
            background: linear-gradient(135deg, #ff8c00, #ffa500);
        }

        .service-icon.localization {
            background: linear-gradient(135deg, #007bff, #0056b3);
        }

        .service-icon.proofreading {
            background: linear-gradient(135deg, #28a745, #20c997);
        }

        .service-icon.interpretation {
            background: linear-gradient(135deg, #6f42c1, #8a2be2);
        }

        .service-icon.audio-video {
            background: linear-gradient(135deg, #17a2b8, #138496);
        }

        .service-icon.certified {
            background: linear-gradient(135deg, #dc3545, #c82333);
        }

        .service-content {
            padding: 30px;
        }

        .service-title {
            color: #007bff;
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .service-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .learn-more-btn {
            background-color: #ff8c00;
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: background-color 0.3s ease;
        }

        .learn-more-btn:hover {
            background-color: #e67e00;
        }


        /* Industries Section */
        .industries {
            background-color: var(--astra-orange);
            padding: 80px 0;
            text-align: center;
        }

        .industries .section-title {
            color: var(--dark-text);
        }

        .industries-carousel {
            margin-top: 40px;
            display: flex;
            overflow-x: hidden;
            padding: 20px 0;
        }

        .industry-item {
            min-width: 300px;
            background-color: white;
            margin: 0 15px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            flex-shrink: 0;
            animation: slideIn 20s linear infinite;
        }

        .industry-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .industry-content {
            padding: 20px;
        }

        .industry-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--astra-blue);
        }

        /* Process Section */
        .process {
            padding: 80px 0;
            text-align: center;
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            max-width: 1000px;
            margin: 50px auto 0;
            position: relative;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 50px;
            right: 50px;
            height: 4px;
            background: linear-gradient(to right, var(--astra-blue), var(--astra-orange));
            z-index: 0;
        }

        .step {
            position: relative;
            z-index: 1;
            width: 200px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
        }

        .step.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--astra-blue), var(--astra-orange));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light-text);
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0 auto 20px;
        }

        .step h3 {
            margin-bottom: 10px;
            color: var(--astra-blue);
        }


        /* Call to Action */
        .cta {
            padding: 80px 0;
            text-align: center;
            background: linear-gradient(135deg, var(--astra-blue), var(--astra-orange));
            color: var(--light-text);
        }

        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease-out;
        }

        .cta p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1.2s ease-out;
        }

        .cta-btn {
            display: inline-block;
            background-color: white;
            color: var(--astra-blue);
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            animation: fadeInUp 1.4s ease-out;
        }

        .cta-btn:hover {
            background-color: var(--astra-light-orange);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

       /* Footer */
footer {
    background-color: var(--blue);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
    color: #f8a326;
    transition: .3s;
}

.footer-col h3:hover {
    color: antiquewhite;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--orange), var(--yellow));
    bottom: 0;
    left: 0;
    color: #ccc;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--yellow);
}

.contact-info {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: var(--yellow);
    margin-right: 10px;
    width: 20px;
}

.social-links {
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: var(--astra-orange);
    border-radius: 50%;
    margin-right: 10px;
    color: var(--main-color);
    text-align: center;
    line-height: 36px;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: var(--blue);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--astra-orange);
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
}

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideIn {
            0% {
                transform: translateX(100%);
            }

            100% {
                transform: translateX(-100%);
            }
        }

        .animated-text {
            display: inline-block;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
        }

        .animated-text.animate {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .process-steps {
                flex-direction: column;
                align-items: center;
            }

            .process-steps::before {
                display: none;
            }

            .step {
                margin-bottom: 30px;
            }

            

            .hero h1 {
                font-size: 2.5rem;
            }
        }