* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Zen Dots', Arial, Helvetica, sans-serif;
}

/* Body */
body {
    color: #1a1a1a;
    background: #ffffff;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================= HEADER ================= */

.site-header {
    background: #ffffff;
    border-bottom: 4px solid;
    border-image: linear-gradient(90deg, #050720, #1877f2, #25D366) 1;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* FIXED HEADER CONTAINER */
.site-header .container {
    display: flex;
    justify-content: space-between;  /* Logo left, nav right */
    align-items: center;
    min-height: 70px;

    max-width: 100%;   /* Remove centering */
    margin: 0;         /* Remove auto margin */
    padding: 12px 40px; /* Adjust edge spacing here */
}

/* Logo */

.logo-area {
    display: flex;
    align-items: center;
}

.site-logo {
    height: 60px;
    max-width: 260px;
    width: auto;
    object-fit: contain;
    transition: 0.3s ease;
}

.site-logo:hover {
    filter: drop-shadow(0 0 6px #1877f2);
}

/* Navigation */

nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #222;
    font-weight: 600;
    position: relative;
    padding-bottom: 4px;
    transition: 0.3s;
}

/* Hover Line */
nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #1877f2;
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #1877f2;
}

/* ================= HERO ================= */

.hero {
    background: linear-gradient(135deg, #050720, #0b0f3a);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.1rem;
    margin-bottom: 15px;
}

.hero p {
    max-width: 900px;
    margin: 0 auto 25px;
}

/* Button */

.btn {
    display: inline-block;
    background: #25d366;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.05);
}

/* ================= SERVICES ================= */

.features {
    padding: 60px 0;
}

.features h2 {
    text-align: center;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.services-grid .card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    width: 100%;
    max-width: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.services-grid .card:hover {
    background: linear-gradient(135deg, #050720, #0a0f3d);
    color: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.services-grid .card:hover h3,
.services-grid .card:hover p {
    color: #ffffff;
}

.card h3 {
    margin-bottom: 15px;
}

/* ================= LOCATION ================= */

.location {
    background: #f8f9fb;
    padding: 60px 0;
    text-align: center;
}

.location p {
    max-width: 900px;
    margin: 0 auto;
}

/* ================= FOOTER ================= */

footer {
    background: #0a0a0a;
    color: #ffffff;
    text-align: center;
    padding: 25px 15px;
}

/* ================= SOCIAL ICONS ================= */

.social-icons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    color: white;
    font-size: 16px;
}

.social-icons .social-btn {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons .social-btn:hover {
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(255,255,255,0.4);
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    nav {
        display: none;
    }

    .hero h2 {
        font-size: 1.7rem;
    }
}
