* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    background: #f8fafc;
    color: #1e293b;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

header {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s, transform 0.3s;
}

.nav-links li a:hover {
    color: #dbeafe;
    transform: translateY(-2px);
}

.nav-links li a.active {
    color: #93c5fd;
    font-weight: 700;
    border-bottom: 2px solid #93c5fd;
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: white;
}

.hero {
    background: linear-gradient(180deg, #3b82f6 0%, #ffffff 100%);
    text-align: center;
    padding: 8rem 1.5rem 6rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #1e3a8a;
    text-transform: uppercase;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: fadeInDown 1.5s ease-out;
}

.hero-title::after {
    content: "WELCOME TO TECHNNOVXP";
    position: absolute;
    top: 0;
    left: 0;
    color: #60a5fa;
    z-index: -1;
    text-shadow: 1px 1px 3px rgba(96, 165, 250, 0.5);
    animation: pulse 2s infinite alternate;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.02);
    }
}

.hero-content {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-content p {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.cta {
    background: #1e3a8a;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    display: inline-block;
    margin-top: 1.5rem;
}

.cta:hover {
    background: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.about,
.services,
.contact {
    padding: 5rem 1.5rem;
    text-align: center;
    background: white;
    margin: 2rem auto;
    max-width: 1280px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.about h1,
.services h1,
.contact h1,
.about h2,
.services h2,
.contact h2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.about p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #3b82f6;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.15rem;
    color: #475569;
    line-height: 2;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1e3a8a;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    background: #f8fafc;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form button.cta {
    width: 100%;
}

.team-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.team-member {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.team-member-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.team-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #3b82f6;
}

.team-member-text {
    flex: 1;
    text-align: left;
}

.team-member-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    text-align: center;
}

.team-member-text .member-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 1rem;
    text-align: left;
}

.team-member-text .member-desc {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1rem;
    text-align: left;
}

.team-member-text .bio-subheading {
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
    text-align: left;
}

.team-member-text .member-achievements {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
    text-align: left;
}

.team-member-text .member-achievements li {
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
    color: #64748b;
}

.divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0), #cbd5e1, rgba(0, 0, 0, 0));
    margin: 2rem 0;
}

footer {
    background: #1e293b;
    color: white;
    text-align: center;
    padding: 3rem 1.5rem;
}

footer p {
    margin: 0.75rem 0;
    font-size: 1rem;
}

footer a {
    color: #93c5fd;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #dbeafe;
}

.social-links {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    transition: transform 0.3s, color 0.3s;
}

.social-icon:hover {
    color: #93c5fd;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #1e3a8a;
        padding: 1rem 0;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        margin: 0.75rem 0;
    }
    .menu-toggle {
        display: block;
    }
    .header-logo {
        height: 45px;
    }
    .hero {
        padding: 5rem 1rem;
    }
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .about,
    .services,
    .contact {
        padding: 3rem 1rem;
        margin: 1rem;
    }
    .about h1,
    .services h1,
    .contact h1,
    .about h2,
    .services h2,
    .contact h2 {
        font-size: 2rem;
    }
    .services-grid {
        gap: 1.5rem;
    }
    .service-card {
        padding: 1.5rem;
    }
    .service-card h3 {
        font-size: 1.3rem;
    }
    .service-card p {
        font-size: 0.95rem;
    }
    .contact-info,
    .contact p {
        font-size: 1rem;
    }
    .team-list {
        padding: 0 1rem;
        gap: 2rem;
    }
    .team-member {
        padding: 1.5rem;
    }
    .team-member-content {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .team-img {
        width: 120px;
        height: 120px;
    }
    .team-member-text h3 {
        font-size: 1.5rem;
    }
    .team-member-text .member-title {
        font-size: 1.15rem;
    }
    .team-member-text .member-desc {
        font-size: 1rem;
    }
    .team-member-text .bio-subheading {
        font-size: 1.05rem;
    }
}