/* Reset and base styles */
body, h1, h2, h3, p, ul {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f0f0f0;
}

/* Logo styles */
.logo-section {
    height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
}


.logo-container {
    position: relative;
    font-family: 'Orbitron', sans-serif;
}

.logo {
    font-size: 3rem;
    display: flex;
    position: relative;
}

.logo span {
    display: inline-block;
    transition: transform 2s ease-in-out, opacity 1.5s;
}

.labs {
    font-size: 1.5rem;
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-20%);
    left: calc(100% + 10px);
    color: #007acc;
}

.line {
    position: absolute;
    top: 37%;
    left: 17%;
    width: 0;
    height: 6px;
    background-color: #333333;
    transition: width 2s ease-in-out;
}

.draw-line {
    width: 66%; 
}

.ae {
    font-size: 3rem;
    position: absolute;
    top: -10%;
    left: 31%; 
    opacity: 0; 
    transition: height 1s, opacity 1.5s ease-out, color 0.5s, top 2s ease-out; 
}

.ae::after {
    content: 'æ';
}

.rotate-a {
    transform: rotateZ(-180deg) translateY(3%);
}

.rotate-e {
    transform: rotateZ(180deg) translateY(3%);
}

/* Main content styles */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

section {
    margin-bottom: 80px;
}

h1, h2, h3 {
    color: #007acc;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    text-align: center;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

#tagline {
    text-align: center;
    margin-bottom: 100px;
}

#tagline p {
    font-size: 1.2rem;
    color: #666;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}





#about {
    background-color: #fff;
    padding: 60px 0;
    margin-bottom: 40px;
}

#about h2 {
    text-align: center;
    margin-bottom: 40px;
}

.about-content {
    max-width: 800px;
    margin: 40px auto;
}

.about-content > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: #555;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #007acc;
}

.feature-item p {
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .features {
        grid-template-columns: 1fr;
    }
}



#contact {
    text-align: center;
}

#contact a {
    color: #007acc;
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}