/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    background: linear-gradient(120deg, #0f2027, #203a43, #2c5364);
    background-size: 300% 300%;
    animation: gradientMove 15s ease infinite;
    color: #333;
    line-height: 1.6;
}

/* ANIMATION */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* COMMON */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* HEADER */
.main-header {
    background: rgba(255,255,255,0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo img {
    height: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #333;
    font-weight: 500;
}

.nav-links a.active,
.nav-links a:hover {
    color: #1e88e5;
}

/* HERO */
.hero-services {
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.hero-services h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.hero-services p {
    max-width: 700px;
    margin: auto;
    font-size: 1.1rem;
}

/* SERVICES */
.services-section {
    background: #f9f9f9;
    padding: 70px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: auto auto 50px;
    color: #555;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card h3 {
    margin-bottom: 10px;
    color: #1e88e5;
}

/* CTA */
.cta-box {
    margin-top: 60px;
    text-align: center;
    background: #1e88e5;
    color: #fff;
    padding: 40px 20px;
    border-radius: 12px;
}

.btn-primary {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 30px;
    background: #fff;
    color: #1e88e5;
    font-weight: bold;
    border-radius: 30px;
}

/* FOOTER */
.main-footer {
    background: #111;
    color: #ccc;
    padding: 25px 0;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.main-footer a {
    color: #1e88e5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links {
        flex-wrap: wrap;
        gap: 10px;
    }

    .hero-services h1 {
        font-size: 2rem;
    }
}

.floating-contact {
    position: fixed;
    right: 15px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.whatsapp-btn,
.call-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 24px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.whatsapp-btn {
    background: #25D366;
}

.call-btn {
    background: #1e88e5;
}

.whatsapp-btn:hover,
.call-btn:hover {
    transform: scale(1.08);
}

.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(60%);
}
body {
    background: linear-gradient(120deg, #0f2027, #203a43, #2c5364);
}
