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

:root {

    /* Brand Colours */

    --primary: #0F172A;
    --secondary: #FACC15;

    /* Backgrounds */

    --background: #FFFFFF;
    --background-light: #F8FAFC;

    /* Text */

    --text-dark: #1F2937;
    --text-light: #6B7280;

    /* UI */

    --white: #FFFFFF;
    --radius: 8px;
    --transition: 0.3s ease;

    --text-on-dark: #F8FAFC;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Poppins", sans-serif;
    background-color: var(--background);
    color: var(--text-dark);
    line-height: 1.6;
}

::selection {
    background: var(--secondary);
    color: var(--primary);
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    scroll-margin-top: 90px;
    padding: 80px 0;
}

section h2 {
    text-align: center;
    margin-bottom: 18px;
    line-height: 1.2;
}

header {
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(15,23,42,.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
}

nav ul {
    display: flex;
    gap: 30px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--primary);

    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1100;
}

nav a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--secondary);
}
nav a:hover::after {
    width: 100%;
}

nav a.active {
    color: var(--secondary);
}

nav a.active::after {
    width: 100%;
}

nav h1 {
    color: var(--primary);
    font-size: 1.6rem;
}



#hero {
background:
linear-gradient(
rgba(15,23,42,.72),
rgba(15,23,42,.88)
),
url("../images/hero.jpg");
background-size: cover;
background-position: center;
    color: var(--white);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 720px;
    padding: 40px 0;
    animation: fadeUp 1s ease, heroFade 1s ease forwards;
}

.hero-subtitle {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-subtitle::before {
    content: "";
    width: 45px;
    height: 2px;
    background: var(--secondary);
}


.hero-description {
    font-size: 1.1rem;
    max-width: 650px;
    color: var(--text-on-dark);
    margin-bottom: 40px;
    font-weight:300;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.hero-content h2 {
    font-size: clamp(2.5rem,5vw,4rem);
    line-height:1.2;
    margin-bottom:20px;
    text-shadow: 0 4px 18px rgba(0,0,0,.35);
}

/* ===========================
   Buttons
=========================== */

.btn {
    display: inline-block;
    padding: 16px 34px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background-color .25s ease,
        color .25s ease;
}
.btn:active {
    transform: scale(.97);
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(250, 204, 21, 0.35);
}

.btn-secondary {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    border-color: #25D366;
    color: #25D366;
    background: rgba(37, 211, 102, 0.08);
}


/* ===========================
   About Section
=========================== */

#about {
    background: var(--background-light);
    padding: 100px 0 60px;
    border-top: 1px solid rgba(15,23,42,.05);
}

#about h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--text-light);
    text-align: center;
    font-size: 1.08rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-text p {
    margin-bottom: 20px;
}

.about-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

.about-card h3 {
    margin-bottom: 20px;
    color: var(--primary);
}

.about-card ul li {
    margin-bottom: 15px;
}

#services {
    padding: 50px 0 80px;
    background: #16213E;
    color: var(--white);
}

#services h2 {
    color: var(--white);
}

#services .section-intro {
    color: rgba(255, 255, 255, 0.85);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: var(--secondary);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 20px 40px rgba(0,0,0,.12),
        0 0 0 1px rgba(250,204,21,.25);
}

.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 25px;
    background: rgba(250,204,21,.12);
    border-radius: 50%;
    color: var(--secondary);
    transition: .35s ease;
}

.service-icon svg {
    width: 34px;
    height: 34px;
    stroke-width: 2;
}

.service-card:hover .service-icon {
    transform: translateY(-4px) scale(1.08) rotate(-6deg); 
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 1.4rem;
    transition: .3s ease;
}

.service-card:hover h3 {
    color: var(--secondary);
}

.service-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

#contact {
    padding: 100px 0;
    background: #ffffff;
    border-top: 1px solid rgba(15,23,42,.05);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.contact-card {
    background: var(--background-light);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 20px 40px rgba(0,0,0,.12),
        0 0 0 1px rgba(250,204,21,.25);
}

.contact-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-card p {
    margin-bottom: 25px;
    color: #666;
    line-height: 1.7;
}

.contact-card h2 {
    color: var(--primary);
    margin: 15px 0;
    font-size: 1.8rem;
}

.contact-card .service-icon {
    margin-bottom: 15px;
}

.contact-card .btn {
    margin-top: 10px;
}

.contact-note {
    text-align: center;
    margin-top: 50px;
    color: #666;
    font-style: italic;
}

.contact-card .btn-secondary {
    background: #acfcc9;
    color: var(--text-dark);
    border-color: #25D366;
}

.contact-card .btn-secondary:hover {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.service-icon svg,
.contact-card svg {
    width: 52px;
    height: 52px;
    stroke: var(--secondary);
    stroke-width: 2;
    transition: var(--transition);
}

.service-card:hover svg,
.contact-card:hover svg {
    transform: scale(1.1);
}

.contact-card:nth-child(2) svg {
    stroke: #25D366;
}

footer {
    background: #16213E;
    color: white;
    padding-top:30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
    padding-bottom:20px;
}

.footer-grid h3 {
    margin-bottom: 20px;
    color: var(--secondary);
}

.footer-grid ul {
    list-style: none;
}

.footer-grid li {
    margin-bottom: 12px;
}

.footer-grid a {
    color: white;
    transition: var(--transition);
}

.footer-grid a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.15);
    text-align: center;
    padding:18px 0;
    font-size: .95rem;
}

/* ===========================
   Scroll Reveal
=========================== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   Hero Load Animation
=========================== */

@keyframes heroFade {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ===========================
   Floating WhatsApp
=========================== */

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37,211,102,.35);
    transition: all .3s ease;
    z-index: 999;
    animation: whatsappPulse 2.8s infinite;
    border: 4px solid white;
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
}

.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 18px 40px rgba(37,211,102,.45);
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

/* ==================================================
   MOBILE (768px and below)
   Single consolidated breakpoint — every mobile
   override lives here now, nowhere else in the file.
================================================== */

@media (max-width: 768px) {

    /* Navigation */
    nav {
        position: relative;
    }

    .menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 2rem;
        cursor: pointer;
        color: var(--primary);
        position: relative;
        z-index: 1000;
    }

    nav ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: .3s ease;
        box-shadow: 0 8px 20px rgba(0,0,0,.08);
    }

    nav ul.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    nav li {
        width: 100%;
        border-top: 1px solid #eee;
    }

    nav ul a {
        display: block;
        width: 100%;
        padding: 18px 24px;
    }

    nav ul a::after {
        display: none;
    }

    nav ul a:hover {
        background: #f8fafc;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}