﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: #111;
    background: #eef2f7;
}

/* Headings use the site's base font (Poppins) by inheritance */

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

button,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    border-radius: 12px;
    padding: 16px 28px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn {
    color: #fff;
    background: linear-gradient(90deg, #39d353 0%, #0099cc 100%);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(57, 211, 83, 0.18);
}

.btn-outline {
    color: #0f3b57;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #39d353;
}

.btn-outline:hover {
    background: #39d353;
    color: #fff;
}

header {
    position: relative;
    z-index: 20;
}

.topbar {
    background: #f7fbfc;
    border-bottom: 1px solid rgba(15, 59, 87, 0.08);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    color: #4b5868;
    font-size: 14px;
}

.topbar-left a,
.topbar-right a {
    color: #4b5868;
    margin-right: 24px;
}

.topbar-left a:last-child,
.topbar-right a:last-child {
    margin-right: 0;
}

.topbar-right a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.topbar-right a i {
    font-size: 14px;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo img {
    width: 400px;
    height: 100px;
    object-fit: contain;
}

.logo h1 {
    font-size: 26px;
    letter-spacing: -0.4px;
}

.logo span {
    display: block;
    font-size: 14px;
    color: #39d353;
    font-weight: 600;
    margin-top: 4px;
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

nav ul li a {
    color: #122a40;
    font-weight: 500;
    transition: color 0.2s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: #39d353;
}

.hero {
    padding: 80px 0 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 48px;
}

.hero-copy p.hero-label {
    color: #39d353;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-copy h1 {
    font-size: clamp(3rem, 4vw, 4.6rem);
    line-height: 1.02;
    max-width: 770px;
    color: #0f2436;
}

.animated-heading {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.animated-heading span {
    opacity: 0;
    transform: translateY(18px);
    display: inline-block;
    animation: wordReveal 0.7s ease forwards;
}

.animated-heading span:nth-child(1) {
    animation-delay: 0.1s;
}

.animated-heading span:nth-child(2) {
    animation-delay: 0.2s;
}

.animated-heading span:nth-child(3) {
    animation-delay: 0.35s;
}

.animated-heading span:nth-child(4) {
    animation-delay: 0.5s;
}

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

.hero-copy h1 .hero-accent {
    color: #0099cc;
}

.hero-description {
    margin: 30px 0 32px;
    max-width: 700px;
    line-height: 1.85;
    color: #4f5f70;
    font-size: 1rem;
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 680px;
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.95) 20%, rgba(255,255,255,0.85) 40%, rgba(255,255,255,0.4) 65%, rgba(255,255,255,0) 100%);
    border-radius: 30px;
    padding: 24px 28px;
}

.hero-copy h1 .hero-accent-green {
    color: #39d353;
}

.hero-copy h1 .hero-accent-blue {
    color: #0099cc;
}

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

.hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 560px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(4, 24, 51, 0.18);
}

.hero-card {
    width: 100%;
    height: 100%;
    min-height: 560px;
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-actions {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #ffffff;
    padding: 24px;
    border-radius: 28px;
    box-shadow: 0 25px 45px rgba(4, 24, 51, 0.15);
    min-width: 260px;
    z-index: 2;
}

.hero-actions a {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #0f3b57;
    font-weight: 700;
    border-radius: 16px;
    padding: 16px 18px;
    background: #f7fafc;
}

.hero-actions a span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #e9f7ef;
    color: #39d353;
}

.hero-actions a:hover {
    background: #ffffff;
    /* box-shadow: 0 12px 28px rgba(15, 59, 87, 0.12); */
}

.hero-highlights {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    background: #ffffff;
    padding: 24px 16px;
    border-radius: 30px;
    box-shadow: 0 18px 45px rgba(4, 24, 51, 0.08);
}

.highlight-card {
    display: grid;
    place-items: center;
    gap: 10px;
    padding: 0 24px;
    text-align: center;
    background: transparent;
    box-shadow: none;
    border-left: 1px solid rgba(15, 59, 87, 0.1);
}

.highlight-card:first-child {
    border-left: none;
}

.highlight-card i {
    color: #39d353;
    font-size: 26px;
}

.highlight-card strong {
    display: block;
    margin-bottom: 8px;
    color: #4f5f70;
    font-size: 14px;
}

.highlight-card span {
    color: #0f3b57;
    font-size: 18px;
    font-weight: 700;
}

.services {
    padding: 100px 0 40px;
}

.section-heading {
    text-align: left;
    margin-bottom: 52px;
}

.section-heading p:first-child {
    color: #39d353;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-heading h2 {
    font-size: 3rem;
    margin-bottom: 18px;
    line-height: 1.05;
}

.section-subtitle {
    max-width: 680px;
    color: #4f5f70;
    line-height: 1.8;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.service-card {
    padding: 36px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 28px 60px rgba(4, 24, 51, 0.08);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.service-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(57, 211, 83, 0.12);
    color: #39d353;
    font-size: 24px;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #0f3b57;
}

.service-card p {
    color: #4f5f70;
    line-height: 1.8;
}

.service-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
    padding-left: 0;
}

.service-card ul li {
    color: #4f5f70;
    position: relative;
    padding-left: 26px;
}

.service-card ul li::before {
    content: "\f00c";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #39d353;
    font-size: 12px;
    top: 4px;
}

.package-section {
    padding: 100px 0 70px;
    background: #f5fafc;
}

.package-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.package-card {
    padding: 40px 36px;
    background: #ffffff;
    border: 1px solid rgba(15, 59, 87, 0.1);
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    min-height: 420px;
    box-shadow: 0 28px 60px rgba(4, 24, 51, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 36px 80px rgba(4, 24, 51, 0.12);
}

.package-top {
    text-align: center;
    display: grid;
    gap: 18px;
}

.package-card h3 {
    color: #0f3b57;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.55rem;
}

.package-divider {
    width: 88px;
    height: 4px;
    border-radius: 999px;
    background: #0099cc;
    justify-self: center;
}

.package-card-green .package-divider {
    background: #39d353;
}

.package-card ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    gap: 14px;
    color: #4f5f70;
    text-align: center;
}

.package-card ul li {
    padding-left: 0;
}

.package-footer {
    display: grid;
    gap: 18px;
    justify-items: center;
}

.package-contact {
    color: #39d353;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.btn-quote {
    border-radius: 999px;
    padding: 14px 32px;
    min-width: 190px;
}

.package-cta {
    margin-top: 50px;
    text-align: center;
    display: grid;
    gap: 22px;
    padding: 0 10px;
}

.package-cta p {
    max-width: 720px;
    margin: 0 auto;
    color: #4f5f70;
    font-size: 1.05rem;
    line-height: 1.9;
}

.learn-more {
    margin-top: auto;
    color: #39d353;
    font-weight: 700;
}

.learn-more i {
    transition: transform 0.2s ease;
}

.learn-more:hover i {
    transform: translateX(4px);
}

.stats-bar {
    background: #0f3249;
    padding: 44px 0;
    margin: 32px 0 0;
    border-radius: 28px;
}

.contact-section {
    padding: 100px 0 80px;
    background: #f4f5f7;
}

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

.contact-info {
    padding: 40px 45px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(15, 59, 87, 0.08);
}

.contact-info h1 {
    font-size: 3rem;
    margin-bottom: 18px;
    color: #0f3b57;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    color: #122a40;
}

.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: #374151;
}

.contact-item span:first-child {
    font-weight: 700;
    color: #0f3b57;
    min-width: 120px;
}

.contact-block {
    margin-top: 32px;
}

.contact-block h3 {
    font-size: 1rem;
    margin-bottom: 14px;
    color: #0f3b57;
}

.contact-block p {
    color: #374151;
    line-height: 1.8;
}

.contact-form {
    display: grid;
    gap: 24px;
    padding: 40px 45px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(15, 59, 87, 0.08);
}

.form-group {
    display: grid;
    gap: 10px;
}

.form-group label {
    color: #4b5563;
    font-size: 0.95rem;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid #d1d5db;
    border-radius: 14px;
    background: #f8fafc;
    color: #111827;
    font-size: 1rem;
}

.contact-form textarea {
    min-height: 220px;
    resize: vertical;
}

.contact-form button {
    width: fit-content;
    padding: 16px 32px;
    border-radius: 12px;
    background: #0f3b57;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}

.contact-form button:hover {
    opacity: 0.95;
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    color: #ffffff;
}

.stat-item {
    text-align: center;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 22px;
}

.stat-item span {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #39d353;
}

.stat-item p {
    color: #d8e4ef;
}

.about {
    padding: 100px 0 80px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 36px;
}

.about-panel h3 {
    color: #39d353;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-panel h2 {
    font-size: 2.8rem;
    margin-bottom: 24px;
    line-height: 1.05;
}

.about-panel p {
    color: #4f5f70;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-panel ul {
    list-style: none;
    padding-left: 0;
    margin: 24px 0 32px;
}

.about-panel ul li {
    padding-left: 0;
}

.about-details {
    display: grid;
    gap: 20px;
}

.recent-projects {
    display: grid;
    gap: 18px;
}

.recent-projects .projects-header {
    margin-bottom: 12px;
}

.project-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    background: transparent;
    box-shadow: none;
    border: none;
}

.project-card img {
    width: 84px;
    height: 84px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 18px 40px rgba(4, 24, 51, 0.08);
}

.project-card div {
    display: grid;
    gap: 8px;
}

.project-card h4 {
    margin: 0;
    font-size: 1rem;
}

.project-card p {
    margin: 0;
    color: #4f5f70;
    line-height: 1.7;
}

.why-choose {
        background: #ffffff;
        border-radius: 28px;
        padding: 32px;
        box-shadow: 0 28px 60px rgba(4, 24, 51, 0.08);
    }

    .why-choose h3 {
        margin-bottom: 22px;
    }

    .why-choose ul {
        list-style: none;
        display: grid;
        gap: 16px;
    }

    .why-choose li {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        color: #4f5f70;
        line-height: 1.7;
    }

    .why-choose li i {
        color: #39d353;
        margin-top: 3px;
}

footer {
    background: #011627;
    color: #d4e0f0;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-brand img {
    width: 300px;
    height: 100;
    margin-bottom: 18px;
}

.footer-brand p {
    max-width: 320px;
    margin-bottom: 24px;
    color: #b9c7db;
    line-height: 1.8;
}

.footer-socials {
    display: flex;
    gap: 14px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #0a2136;
    color: #fff;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    margin-bottom: 18px;
    color: #fff;
}

.footer-links a,
.footer-services a,
.footer-contact p {
    display: block;
    margin-bottom: 12px;
    color: #b9c7db;
}

.footer-links a:hover,
.footer-services a:hover {
    color: #39d353;
}

.footer-contact p i {
    margin-right: 10px;
    color: #39d353;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 22px;
    font-size: 0.95rem;
    color: #8fa3b8;
}

.footer-credit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom a {
    color: #8fa3b8;
    margin-left: 0;
}

.footer-bottom a:hover {
    color: #39d353;
}

.floating-chat-btn {
    position: fixed;
    right: 24px;
    bottom: 90px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: linear-gradient(90deg, #39d353 0%, #0099cc 100%);
    color: #ffffff;
    border-radius: 999px;
    box-shadow: 0 22px 40px rgba(4, 24, 51, 0.18);
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-chat-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 28px 45px rgba(4, 24, 51, 0.22);
}

.floating-chat-btn i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .floating-chat-btn {
        right: 16px;
        bottom: 16px;
    }
}


@media (max-width: 1120px) {
    .hero-grid,
    .service-cards,
    .package-cards,
    .about-grid,
    .footer-grid,
    .stats-bar-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hero-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-visual {
        min-height: auto;
    }

    .hero-card {
        min-height: 420px;
    }

    .hero-actions {
        position: static;
        transform: none;
        width: 100%;
        min-width: auto;
        margin-top: 28px;
        padding: 20px;
        border-radius: 24px;
    }
}

@media (max-width: 768px) {
    .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    nav ul {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero {
        padding-top: 48px;
    }

    .hero-copy h1 {
        font-size: 2.8rem;
    }

    .hero-visual {
        justify-items: stretch;
    }

    .hero-actions {
        display: grid;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
    }

    .hero-highlights .highlight-card {
        border-left: none;
        border-top: 1px solid rgba(15, 59, 87, 0.1);
        padding: 16px 24px;
    }

    .hero-highlights .highlight-card:first-child {
        border-top: none;
    }

    .service-card ul li {
        padding-left: 24px;
    }

    .stats-bar-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    .topbar-right a {
        width: 36px;
        height: 36px;
    }

    .hero-copy h1 {
        font-size: 2.4rem;
    }

    .hero-actions a {
        justify-content: flex-start;
    }

    .hero-actions {
        padding: 16px;
    }
}
/* =========================
   EXTRA MOBILE FIXES
========================= */

@media (max-width: 768px) {

    /* Container */
    .container {
        width: calc(100% - 24px);
    }

    body {
        overflow-x: hidden;
    }

    /* Top bar */
    .topbar-inner {
        align-items: center;
        text-align: center;
    }

    .topbar-left,
    .topbar-right {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        width: 100%;
    }

    .topbar-left a,
    .topbar-right a {
        margin-right: 0;
    }

    /* Navbar */
    .navbar {
        flex-direction: column;
        gap: 18px;
        text-align: center;
        padding: 18px 0;
    }

    nav ul {
        justify-content: center;
    }

    /* Logo */
    .logo {
        justify-content: center;
    }

    .logo img {
        width: 220px;
        height: auto;
    }

    /* Hero */
    .hero-copy {
        max-width: 100%;
        padding: 20px;
        background: #ffffff;
    }

    .hero-description {
        margin: 20px 0;
        font-size: 0.98rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn,
    .hero-buttons .btn-outline {
        width: 100%;
        max-width: 260px;
    }

    .hero-card {
        min-height: 300px;
    }

    /* Section headings */
    .section-heading {
        text-align: center;
    }

    .section-heading h2,
    .about-panel h2,
    .contact-info h1 {
        font-size: 2rem;
    }

    /* Services */
    .service-card {
        padding: 26px;
    }

    /* Contact */
    .contact-info,
    .contact-form {
        padding: 24px;
    }

    .contact-form button {
        width: 100%;
    }

    /* Footer */
    .footer-grid {
        text-align: center;
    }

    .footer-brand img {
        width: 220px;
        height: auto;
        margin: 0 auto 18px;
        display: block;
    }

    .footer-brand p {
        margin: 0 auto 20px;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-bottom {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {

    .hero-copy h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .logo img {
        width: 180px;
    }

    .stats-bar-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .package-card,
    .contact-info,
    .contact-form {
        padding: 20px;
    }

    .floating-chat-btn {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
}