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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
    --border-color: #2a2a4e;
}

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

/* Header Styles */
header {
    background-color: var(--secondary-color);
    border-bottom: 2px solid var(--accent-color);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #00d4ff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

nav a:hover {
    color: #00d4ff;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #00d4ff;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 4rem 2rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

/* Grid background effect */
.grid-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(0deg, rgba(15, 52, 96, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 52, 96, 0.3) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(50px);
    }
}

/* Floating shapes */
.floating-shape {
    position: absolute;
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    border-color: rgba(0, 212, 255, 0.15);
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    border-color: rgba(0, 212, 255, 0.2);
    animation-delay: 1s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 50%;
    border-color: rgba(0, 212, 255, 0.25);
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(-30px) translateX(20px);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInDown 1s ease-out;
    line-height: 1.2;
}

.hero-content .tagline {
    font-size: 1.3rem;
    color: #a8c5dd;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-graphic {
    animation: fadeInUp 1s ease-out 0.4s both;
    margin-top: 2rem;
}

.hero-graphic img {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.4)) drop-shadow(0 0 60px rgba(0, 212, 255, 0.2));
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.4)) drop-shadow(0 0 60px rgba(0, 212, 255, 0.2));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.6)) drop-shadow(0 0 80px rgba(0, 212, 255, 0.3));
        transform: scale(1.02);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        gap: 1rem;
    }

    nav a {
        font-size: 0.9rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .hero {
        min-height: 80vh;
        padding: 3rem 1.5rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-content .tagline {
        font-size: 1rem;
    }

    .floating-shape {
        display: none;
    }
}
/* About/Description Section */
.description {
    position: relative;
    padding: 6rem 2rem;
    background-color: var(--primary-color);
    overflow: hidden;
}

.description-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

/* Animated accent bars */
.accent-bar {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    height: 1px;
    width: 100%;
}

.accent-bar-1 {
    top: 20%;
    animation: slideRight 4s ease-in-out infinite;
}

.accent-bar-2 {
    top: 80%;
    animation: slideLeft 4s ease-in-out infinite;
    animation-delay: 0.5s;
}

@keyframes slideRight {
    0%, 100% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

@keyframes slideLeft {
    0%, 100% {
        transform: translateX(100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

.description-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInDown 0.8s ease-out;
    letter-spacing: -0.5px;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #c0c0d0;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    letter-spacing: 0.3px;
}

/* Team Section */
.team {
    position: relative;
    padding: 6rem 2rem;
    background-color: var(--secondary-color);
    overflow: hidden;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.05) 0%, transparent 50%, rgba(0, 212, 255, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

.team-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

.team > .section-title {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInDown 0.8s ease-out;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.team-card {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.8) 0%, rgba(15, 52, 96, 0.6) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.team-card:hover {
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.15), inset 0 0 30px rgba(0, 212, 255, 0.05);
    transform: translateY(-5px);
}

.team-card:hover::before {
    left: 100%;
}

.team-image-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 255, 0.3);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.team-card:hover .team-image-wrapper {
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.team-expertise {
    font-size: 0.95rem;
    color: #a8c5dd;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 100px;
    flex-grow: 1;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.linkedin-link:hover {
    color: #fff;
    border-color: #00d4ff;
    background-color: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.linkedin-link svg {
    transition: transform 0.3s ease;
}

.linkedin-link:hover svg {
    transform: scale(1.1);
}

/* Footer Section */
.footer {
    background-color: var(--secondary-color);
    border-top: 2px solid rgba(0, 212, 255, 0.2);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 0;
    animation: fadeInUp 0.8s ease-out;
}

.footer-section {
    text-align: center;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.footer-text {
    font-size: 0.95rem;
    color: #a8c5dd;
    line-height: 1.8;
}

.footer-bottom {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 0;
}

.footer-bottom .footer-text {
    color: #7a8fa3;
    font-size: 0.9rem;
}

.footer-email {
    color: #00d4ff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
}

.footer-email:hover {
    color: #fff;
    border-bottom-color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

/* Contact Section */
.contact {
    position: relative;
    padding: 6rem 2rem;
    background-color: var(--primary-color);
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.05) 0%, transparent 50%, rgba(0, 212, 255, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

.contact-container {
    position: relative;
    z-index: 10;
    max-width: 700px;
    margin: 0 auto;
}

.contact > .section-title {
    text-align: center;
    margin-bottom: 1rem;
    animation: fadeInDown 0.8s ease-out;
}

.contact-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #a8c5dd;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.contact-form {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #00d4ff;
    letter-spacing: -0.3px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background-color: rgba(22, 33, 62, 0.6);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    color: #e0e0e0;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #7a8fa3;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #00d4ff;
    background-color: rgba(22, 33, 62, 0.8);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2), inset 0 0 10px rgba(0, 212, 255, 0.05);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 153, 255, 0.2) 100%);
    border: 2px solid #00d4ff;
    color: #00d4ff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.submit-button:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.4) 0%, rgba(0, 153, 255, 0.4) 100%);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3), inset 0 0 20px rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

.submit-button:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        gap: 1rem;
    }

    nav a {
        font-size: 0.9rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .hero {
        min-height: 80vh;
        padding: 3rem 1.5rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-content .tagline {
        font-size: 1rem;
    }

    .floating-shape {
        display: none;
    }

    .description {
        padding: 4rem 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .section-text {
        font-size: 1rem;
    }

    .team {
        padding: 4rem 1.5rem;
    }

    .team > .section-title {
        margin-bottom: 2.5rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-card {
        padding: 2rem 1.5rem;
    }

    .team-image-wrapper {
        width: 120px;
        height: 120px;
        margin-bottom: 1rem;
    }

    .team-name {
        font-size: 1.2rem;
    }

    .team-expertise {
        font-size: 0.9rem;
        min-height: auto;
    }

    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 1.5rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .footer-text {
        font-size: 0.9rem;
    }

    .contact {
        padding: 4rem 1.5rem;
    }

    .contact > .section-title {
        font-size: 1.8rem;
    }

    .contact-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-input,
    .form-textarea {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .submit-button {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
}