/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
    background-color: #fff;
}

/* Navbar */
header {
    background: #ffffff;
    padding: 1rem 8%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px; 
}

.logo-img {
    height: 40px; 
    width: auto;
    object-fit: contain;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a365d;
    line-height: 1;
}

.logo span {
    color: #0064c3;
}

.logo-link {
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #3182ce;
}

.btn-contact {
    background: #3182ce;
    color: #fff !important;
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
}

.btn-contact:hover {
    background: #2b6cb0;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(10, 25, 47, 0.7), rgba(10, 25, 47, 0.7)), 
                url('background.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    max-width: 900px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-button {
    background: #3182ce;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

.cta-button:hover {
    background: #2b6cb0;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Services */
.services {
    padding: 6rem 8%;
    background: #f8fafc;
    text-align: center;
}

.services h2 {
    margin-bottom: 4rem;
    font-size: 2.2rem;
    color: #2d3748;
}

.service-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.4s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #1a365d;
}

/* About Section */
.about {
    padding: 6rem 8%;
    text-align: center;
}

.about-content {
    max-width: 850px;
    margin: 0 auto;
}

.about h2 {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 8%;
    background: #1a365d;
    color: white;
    text-align: center;
}

.contact-section h2 {
    margin-bottom: 1rem;
}

.email-wrapper {
    margin-top: 2rem;
    cursor: pointer;
    display: inline-block;
}

/* Footer */
footer {
    background: #0f172a;
    color: #94a3b8;
    text-align: center;
    padding: 2.5rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero {
        padding: 0 5%;
    }
    .antispam {
        font-size: 1.2rem;
    }
}