:root {
    --primary-color: #3498db; /* Logo Blue */
    --accent-color: #e74c3c; /* Logo Red/Orange */
    --secondary-color: #bdc3c7; /* Silver */
    --bg-color: #051626; /* Dark Navy */
    --card-bg: #0a2238; /* Slightly lighter navy */
    --text-color: #ecf0f1;
    --heading-color: #ffffff;
    --accent-gradient: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    padding: 40px 0;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo .highlight {
    color: var(--primary-color);
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.main-logo {
    max-width: 250px;
    height: auto;
    display: block;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 0;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero .tagline {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero .description {
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #a0a0a0;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent-gradient);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

.cta-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn i {
    margin-right: 8px;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    width: 100%;
    margin-top: 4rem;
}

.service-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #333;
    transition: transform 0.3s ease, border-color 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1s forwards;
}

.service-card:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: var(--primary-color);
}

.service-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card h3 {
    color: var(--heading-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.service-card p {
    font-size: 0.9rem;
    color: #888;
}

footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #333;
    margin-top: auto;
}

.footer-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.location i {
    color: var(--primary-color);
    margin-right: 5px;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-size: 1rem;
}

.contact-item i {
    color: var(--primary-color);
}

.certifications {
    margin-top: 3rem;
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.6s forwards;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card:nth-child(1) { animation-delay: 1.0s; }
.service-card:nth-child(2) { animation-delay: 1.1s; }
.service-card:nth-child(3) { animation-delay: 1.2s; }
.service-card:nth-child(4) { animation-delay: 1.3s; }
.service-card:nth-child(5) { animation-delay: 1.4s; }

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, #0a2238 0%, #051626 100%);
    overflow: hidden;
}

.background-animation::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(52, 152, 219, 0.1) 0%, transparent 50%);
    animation: rotateBackground 20s linear infinite;
}

.background-animation::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 80% 20%, rgba(231, 76, 60, 0.05) 0%, transparent 40%);
    animation: rotateBackground 30s linear infinite reverse;
}

@keyframes rotateBackground {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .tagline {
        font-size: 1.2rem;
    }
    
    .services {
        grid-template-columns: 1fr;
    }
}