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

:root {
    --primary-dark: #0f0f0f;
    --primary-bg: #1a1a1a;
    --secondary-bg: #2a2a2a;
    --tertiary-bg: #353535;
    --accent: #ffffff;
    --accent-green: #1e8c48;
    --accent-green-soft: #37b56c;
    --accent-green-glow: rgba(55, 181, 108, 0.28);
    --border: #404040;
    --text-primary: #ffffff;
    --text-secondary: #a7a7a7;
    --text-tertiary: #696969;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
    --transition: all 0.3s ease;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-green);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2ecc71;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background: radial-gradient(circle at 15% 10%, rgba(30, 140, 72, 0.12), transparent 30%), radial-gradient(circle at 85% 0%, rgba(30, 140, 72, 0.08), transparent 22%), var(--primary-dark);
    opacity: 0.99;
    animation: pageLoad 0.6s ease-out;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-green) 0%, var(--accent-green-soft) 100%);
    z-index: 2000;
    box-shadow: 0 0 12px var(--accent-green-glow);
}

@keyframes pageLoad {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== NAVBAR ==================== */
.navbar {
    background-color: rgba(42, 42, 42, 0.92);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

.navbar.scrolled {
    background-color: rgba(15, 15, 15, 0.78);
    backdrop-filter: blur(10px) saturate(115%);
    border-bottom-color: rgba(55, 181, 108, 0.35);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent);
}

.logo .tagline {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--accent-green);
    margin-top: 4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    color: var(--text-primary);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}


.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-green);
}

.nav-link.active {
    color: var(--accent-green);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

/* ==================== HERO SECTION ==================== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: white;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    filter: blur(20px);
    pointer-events: none;
    z-index: 1;
}

.hero::before {
    top: -120px;
    left: -120px;
    background: radial-gradient(circle, rgba(55, 181, 108, 0.22) 0%, rgba(55, 181, 108, 0) 65%);
    animation: blobFloatA 16s ease-in-out infinite;
}

.hero::after {
    right: -120px;
    bottom: -120px;
    background: radial-gradient(circle, rgba(55, 181, 108, 0.14) 0%, rgba(55, 181, 108, 0) 65%);
    animation: blobFloatB 20s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 15, 15, 0.6);
    z-index: 2;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.42;
    z-index: 1;
    transition: transform 0.1s linear;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: fadeInUp 1s ease forwards;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    letter-spacing: 2px;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
    color: var(--accent-green);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 4px 12px rgba(0, 0, 0, 0.6);
}

.hero-badge {
    margin-top: 24px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: #d7efe1;
    opacity: 0.95;
}

.hero-trust {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-trust span {
    font-size: 0.75rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #e6f8ee;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(85, 197, 131, 0.48);
    background: rgba(10, 24, 16, 0.55);
    backdrop-filter: blur(4px);
}

.cta-button {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, rgba(30, 140, 72, 0.9) 0%, rgba(55, 181, 108, 0.95) 100%);
    color: #06110b;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    border: 1px solid rgba(55, 181, 108, 0.7);
    border-radius: 999px;
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 12px 24px rgba(30, 140, 72, 0.35);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 0 6px rgba(55, 181, 108, 0.14), 0 16px 36px rgba(30, 140, 72, 0.45);
}

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

/* ==================== ABOUT SECTION ==================== */
.about {
    padding: 80px 0;
    background: linear-gradient(180deg, #151515 0%, #1a1a1a 100%);
}

.about h2 {
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 28px;
    text-align: center;
    font-weight: 700;
    color: var(--accent-green);
}

.section-kicker {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #7fd3a2;
    margin-bottom: 10px;
    font-weight: 700;
}

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

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 40px rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.2);
    transition: var(--transition);
}

.about-image:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(39, 174, 96, 0.2);
    border-color: rgba(39, 174, 96, 0.4);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-content {
    color: var(--text-primary);
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

.about-content .lead {
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 24px;
}

.about-pills span {
    font-size: 0.78rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #c8f0d8;
    padding: 6px 11px;
    border: 1px solid rgba(55, 181, 108, 0.35);
    border-radius: 999px;
    background: rgba(24, 60, 41, 0.25);
}

.key-term {
    color: #eefbf3;
    font-weight: 700;
    background-image: linear-gradient(180deg, rgba(55, 181, 108, 0) 60%, rgba(55, 181, 108, 0.34) 60%);
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    padding: 0 3px 1px;
    border-radius: 2px;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}

.certifications {
    margin-top: 40px;
    padding: 26px;
    border: 1px solid rgba(55, 181, 108, 0.3);
    border-radius: 14px;
    background: linear-gradient(155deg, rgba(22, 44, 32, 0.5) 0%, rgba(18, 18, 18, 0.7) 52%, rgba(10, 10, 10, 0.75) 100%);
    box-shadow: inset 0 1px 0 rgba(185, 255, 214, 0.08), 0 14px 30px rgba(0, 0, 0, 0.35);
}

.certifications h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #b5f2cd;
}

.certifications ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.certifications li {
    padding: 10px 12px 10px 34px;
    position: relative;
    color: #d9d9d9;
    font-size: 0.85rem;
    line-height: 1.45;
    border: 1px solid rgba(55, 181, 108, 0.18);
    border-radius: 10px;
    background: rgba(12, 24, 18, 0.44);
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.certifications li::before {
    content: '';
    position: absolute;
    left: 13px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle, #8df0b8 0%, #31a864 70%);
    box-shadow: 0 0 8px rgba(85, 197, 131, 0.35);
}

.certifications li:hover {
    transform: translateY(-2px);
    border-color: rgba(85, 197, 131, 0.5);
    background: rgba(16, 35, 25, 0.64);
}

/* ==================== SERVICES SECTION ==================== */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #171717 0%, #232323 100%);
}

.services h2 {
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
    color: var(--accent-green);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    position: relative;
    overflow: hidden;
    --mouse-x: 50%;
    --mouse-y: 50%;
    background-color: var(--tertiary-bg);
    padding: 40px 30px;
    border-radius: 4px;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(39, 174, 96, 0.1);
    border: 1px solid var(--border);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(55, 181, 108, 0.28), transparent 42%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(39, 174, 96, 0.15);
    border-color: var(--accent-green);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-green);
    color: #ffffff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

.service-icon svg {
    width: 30px;
    height: 30px;
}

.service-card h3 {
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--accent);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    padding: 80px 0;
    background: linear-gradient(180deg, #161616 0%, #121212 100%);
}

.contact h2 {
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
    color: var(--accent-green);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-block h3 {
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent-green);
}

.info-block p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

.info-block a {
    color: var(--accent-green);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.info-block a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.info-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.7;
}

.contact-map {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(39, 174, 96, 0.1);
    border: 1px solid var(--border);
}

.contact-map iframe {
    border: none;
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: #000000;
    color: var(--text-secondary);
    text-align: center;
    padding: 40px 0;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-top: 1px solid var(--border);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background-color: var(--secondary-bg);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
        z-index: 999;
        border-bottom: 1px solid var(--border);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--border);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 15px 20px;
    }

    .nav-link::after {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .logo .tagline {
        display: none;
    }

    .logo h1.logo1 {
        font-size: 1.2rem;
        color: var(--accent);
    }
        .logo h1.logo1:hover {
        color: var(--accent-green);
    }

    .hero-title {
        font-size: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .about h2,
    .services h2,
    .contact h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .about,
    .services,
    .contact {
        padding: 50px 0;
    }

    .service-card {
        padding: 30px 20px;
    }

    .contact-map {
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-trust {
        gap: 8px;
    }

    .hero-trust span {
        font-size: 0.68rem;
        padding: 6px 10px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 0.85rem;
    }

    .nav-content {
        padding: 15px 0;
    }

    .services-grid {
        gap: 20px;
    }

    .service-card {
        padding: 25px 15px;
    }

    .about-content p {
        font-size: 0.9rem;
    }

    .about-pills span {
        font-size: 0.7rem;
        letter-spacing: 0.4px;
    }

    .certifications {
        margin-top: 30px;
        padding: 20px;
    }

    .certifications ul {
        grid-template-columns: 1fr;
    }

    .certifications li {
        font-size: 0.82rem;
        padding: 9px 10px 9px 30px;
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(39, 174, 96, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(39, 174, 96, 0.5);
    }
}

@keyframes blobFloatA {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, 20px) scale(1.08);
    }
}

@keyframes blobFloatB {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-40px, -24px) scale(1.1);
    }
}

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

.service-card {
    animation: slideIn 0.6s ease forwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}

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

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .reveal,
    .reveal.is-visible {
        opacity: 1;
        transform: none;
    }
}
