body {
    font-family: 'Inter', sans-serif;
    background: #07111f;
}

a {
    text-decoration: none;
}

section {
    overflow: hidden;
}

/* =========================
NAVBAR
========================= */

.custom-navbar {
    background: rgba(4, 10, 22, 0.92);
    backdrop-filter: blur(10px);
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-img {
    max-height: 72px;
}

.navbar-nav {
    gap: 24px;
}

.nav-link {
    position: relative;
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 8px 0 !important;
    transition: 0.35s ease;
    letter-spacing: 0.5px;
}

/* Hover Text Color */
.nav-link:hover,
.nav-link.active {
    color: #8bc53f;
}

/* Animated Line */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;

    background: linear-gradient(90deg,
            #8bc53f,
            #b7ff5a);

    border-radius: 50px;

    transition: width 0.35s ease;
}

/* Expand Line */
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Elegant Glow */
.nav-link:hover {
    text-shadow:
        0 0 8px rgba(139, 197, 63, 0.35),
        0 0 18px rgba(139, 197, 63, 0.18);
}

.nav-item {
    position: relative;
}

.nav-link::before {
    content: "";
    position: absolute;
    inset: -8px -12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;

    opacity: 0;
    transform: scale(0.9);

    transition: 0.35s ease;
}

.nav-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.btn-request {
    background: #8bc53f;
    color: #fff;
    padding: 12px 22px;
    border-radius: 0px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-request:hover {
    background: #76aa31;
    color: #fff;
}

.custom-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

.whatsapp-float {
    position: fixed;

    right: 24px;
    bottom: 24px;

    width: 68px;
    height: 68px;

    background: linear-gradient(135deg,
            #25d366,
            #1ebe5d);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 34px;

    z-index: 9999;

    box-shadow:
        0 10px 30px rgba(37, 211, 102, 0.35),
        0 0 0 rgba(37, 211, 102, 0.4);

    transition: 0.35s ease;

    animation: waPulse 2.5s infinite;
}

/* Hover */
.whatsapp-float:hover {
    transform: translateY(-6px) scale(1.06);

    color: #fff;

    box-shadow:
        0 18px 40px rgba(37, 211, 102, 0.45);
}

/* Icon */
.whatsapp-float i {
    line-height: 1;
}

/* Pulse Animation */
@keyframes waPulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0.45),
            0 10px 30px rgba(37, 211, 102, 0.25);
    }

    70% {
        box-shadow:
            0 0 0 18px rgba(37, 211, 102, 0),
            0 10px 30px rgba(37, 211, 102, 0.25);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0),
            0 10px 30px rgba(37, 211, 102, 0.25);
    }
}

/* Tooltip */
.wa-tooltip {
    position: absolute;

    right: 82px;

    background: rgba(7, 17, 31, 0.95);

    color: #fff;

    padding: 10px 16px;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 600;

    white-space: nowrap;

    opacity: 0;
    visibility: hidden;

    transform: translateX(10px);

    transition: 0.3s ease;

    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Show tooltip */
.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Mobile */

/* =========================
HERO
========================= */

.hero-section {
    position: relative;
}

.hero-bg {
    min-height: 100vh;
    background:
        linear-gradient(to right,
            rgba(4, 10, 22, 0.96) 25%,
            rgba(4, 10, 22, 0.7) 55%,
            rgba(4, 10, 22, 0.5)),
        url('img/banner-principal.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-top: 130px;
    padding-bottom: 100px;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    color: #fff;
    font-size: 60px;
    line-height: 1.05;
    font-weight: 700;
    max-width: 700px;
    margin-bottom: 30px;
}

.hero-title span {
    color: #8bc53f;
    display: block;
}

.hero-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    line-height: 1.8;
    max-width: 650px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-green {
    text-decoration: none;
    background: #8bc53f;
    color: #fff;
    padding: 16px 30px;
    font-weight: 700;
    border-radius: 0px;
}

.btn-green:hover {
    background: #76aa31;
    color: #fff;
}

.btn-outline-custom {
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 16px 30px;
    border-radius: 0px;
    font-weight: 700;
    transition: all ease-in-out 320ms;
}

.btn-outline-custom:hover {
    background: #fff;
    color: #07111f;
}

/* =========================
SERVICE CARD
========================= */

.services-card {
    background: rgba(4, 14, 39, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.527);
    border-radius: 20px;
    padding: 35px;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.service-item {
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
}

.service-item:last-child {
    margin-bottom: 0;
}

.icon-box {
    min-width: 72px;
    height: 55px;
    border: 1px solid rgba(139, 197, 63, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.icon-box i {
    color: #8bc53f;
    font-size: 32px;
    transition: all ease-in-out 320;
}

.icon-box:hover i {
    color: #ffffff;
    font-size: 32px;
}

.service-item h5 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 6px;
}

.service-item p {
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    line-height: 1.6;
}

/* =========================
STATS
========================= */

.stats-section {
    text-align: center;
    background: #06101d;
    padding: 45px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-box h3,
.stat-box span {
    display: inline-block;
}

.stat-box span {
    font-size: 64px;
    font-weight: 800;
    color: #8bc53f;
    line-height: 1;
}

.stat-box i {
    text-align: center;
    color: #fff;
    font-size: 56px;
    margin-bottom: 16px;
}

.stat-box h3 {
    color: #8bc53f;
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

.section-title {
    margin-bottom: 70px;
}

.subtitle {
    color: #8bc53f;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 18px;
}

.section-title h2 {
    color: #fff;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    max-width: 800px;
    margin: auto;
}

.title-line {
    width: 90px;
    height: 4px;
    background: #8bc53f;
    margin: 28px auto 0;
    border-radius: 50px;
}

/* =========================
SERVICES
========================= */

.services-section {
    background: linear-gradient(to bottom,
            #07111f,
            #091827);

    padding: 44px 0;
    position: relative;
}

.service-card-v2 {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0px;
    padding: 40px 30px;
    height: 100%;

    overflow: hidden;

    transition: 0.45s ease;
    backdrop-filter: blur(8px);
}

.service-card-v2:hover {
    transform: translateY(-12px);
    border-color: rgba(139, 197, 63, 0.35);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.35),
        0 0 25px rgba(139, 197, 63, 0.08);
}

/* Animated Glow */
.service-glow {
    position: absolute;
    width: 180px;
    height: 180px;

    background: radial-gradient(circle,
            rgba(139, 197, 63, 0.22),
            transparent 70%);

    top: -60px;
    right: -60px;

    opacity: 0;
    transition: 0.5s ease;
}

.service-card-v2:hover .service-glow {
    opacity: 1;
    transform: scale(1.2);
}

/* ICON */
.service-icon {
    width: 90px;
    height: 90px;

    border-radius: 22px;

    border: 1px solid rgba(139, 197, 63, 0.25);

    background: rgba(139, 197, 63, 0.05);

    margin-bottom: 30px;

    position: relative;

    transition: 0.4s ease;
}

.service-card-v2:hover .service-icon {
    transform: rotate(-6deg) scale(1.06);
    border-color: rgba(139, 197, 63, 0.6);
}

.service-card-v2 h4 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
}

.service-card-v2 p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    margin: 0;
}

/* =========================
PROCESS
========================= */

.process-section {
    position: relative;
    padding: 44px 0;
    background:
        radial-gradient(circle at top,
            rgba(139, 197, 63, 0.08),
            transparent 30%),
        #08111d;
}

.process-wrapper {
    position: relative;
}

/* Animated line */
.process-line {
    position: absolute;
    top: 42px;
    left: 8%;
    width: 84%;
    height: 2px;

    background: linear-gradient(90deg,
            transparent,
            rgba(139, 197, 63, 0.5),
            transparent);

    animation: lineMove 4s linear infinite;
}

@keyframes lineMove {

    0% {
        opacity: 0.3;
        transform: scaleX(0.95);
    }

    50% {
        opacity: 1;
        transform: scaleX(1);
    }

    100% {
        opacity: 0.3;
        transform: scaleX(0.95);
    }
}

.process-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-icon {
    width: 85px;
    height: 85px;

    margin: auto auto 28px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.03);

    border: 1px solid rgba(255, 255, 255, 0.1);

    position: relative;

    transition: 0.4s ease;
}

/* Pulse Ring */
.process-icon::before {
    content: "";

    position: absolute;
    inset: -10px;

    border-radius: 50%;

    border: 1px solid rgba(139, 197, 63, 0.18);

    animation: pulseRing 3s infinite;
}

@keyframes pulseRing {

    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    70% {
        transform: scale(1.18);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.process-item:hover .process-icon {
    transform: translateY(-10px);
    border-color: rgba(139, 197, 63, 0.5);

    box-shadow:
        0 0 30px rgba(139, 197, 63, 0.12);
}

.process-item h5 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
}

.process-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 220px;
    margin: auto;
}

/* =========================
INDUSTRIES
========================= */

.industries-section {
    background: #ffffff;
    padding: 40px 0;
    position: relative;
}

/* Dark titles for white section */
.subtitle-dark {
    color: #8bc53f;
}

.title-dark {
    color: #07111f !important;
}

/* CARD */
.industry-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(7, 17, 31, 0.08);
    border-radius: 0px;
    padding: 24px 24px;
    height: 100%;
    overflow: hidden;
    transition: 0.45s ease;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.04);
}

/* Hover */
.industry-card:hover {
    transform: translateY(-12px);

    border-color: rgba(139, 197, 63, 0.35);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.08);
}

/* Animated top line */
.industry-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0%;
    height: 4px;

    background: linear-gradient(90deg,
            #3b6108,
            #4c7c0d);

    transition: 0.5s ease;
}

.industry-card:hover::before {
    width: 100%;
}

/* Number */
.industry-number {
    position: absolute;

    top: 28px;
    right: 30px;

    font-size: 56px;
    font-weight: 800;

    color: rgba(2, 28, 63, 0.151);

    line-height: 1;
}

/* ICON */
.industry-icon {
    width: 85px;
    height: 85px;

    border-radius: 22px;

    background:
        linear-gradient(135deg,
            rgba(139, 197, 63, 0.12),
            rgba(139, 197, 63, 0.03));

    border: 1px solid rgba(139, 197, 63, 0.18);

    margin-bottom: 30px;

    position: relative;

    transition: 0.4s ease;
}

/* Glow */
.industry-icon::before {
    content: "";

    position: absolute;
    inset: -1px;

    border-radius: inherit;

    background: linear-gradient(135deg,
            rgba(139, 197, 63, 0.3),
            transparent);

    opacity: 0;

    transition: 0.4s ease;
}

.industry-card:hover .industry-icon {
    transform: rotate(-6deg) scale(1.05);
}

.industry-card:hover .industry-icon::before {
    opacity: 1;
}

/* TEXT */
.industry-card h4 {
    color: #07111f;

    font-size: 28px;
    font-weight: 700;

    margin-bottom: 18px;

    position: relative;
    z-index: 2;
}

.industry-card p {
    color: rgba(7, 17, 31, 0.7);

    line-height: 1.8;

    margin: 0;

    position: relative;
    z-index: 2;
}

.footer-section {
    background:
        linear-gradient(to bottom,
            #08111d,
            #050b14);

    padding-top: 100px;

    position: relative;

    overflow: hidden;
}

/* TOP BORDER */
.footer-section::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 1px;

    background: linear-gradient(90deg,
            transparent,
            rgba(139, 197, 63, 0.5),
            transparent);
}

/* TOP */
.footer-top {
    padding-bottom: 70px;
}

/* LOGO */
.footer-logo {
    max-width: 260px;
    margin-bottom: 28px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.68);

    line-height: 1.9;

    margin-bottom: 30px;

    max-width: 340px;
}

/* SOCIALS */
.footer-socials {
    display: flex;
    gap: 14px;
}

.footer-socials a {
    width: 46px;
    height: 46px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    transition: 0.35s ease;
}

.footer-socials a:hover {
    background: #8bc53f;

    transform: translateY(-6px);

    border-color: #8bc53f;
}

/* LINKS */
.footer-links h5,
.footer-contact h5 {
    color: #fff;

    font-size: 22px;
    font-weight: 700;

    margin-bottom: 28px;
}

.footer-links ul,
.footer-contact ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 16px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.68);

    transition: 0.3s ease;

    position: relative;
}

.footer-links ul li a:hover {
    color: #8bc53f;

    padding-left: 8px;
}

/* CONTACT */
.footer-contact ul li {
    color: rgba(255, 255, 255, 0.68);

    margin-bottom: 18px;

    display: flex;
    align-items: flex-start;
    gap: 12px;

    line-height: 1.7;
}

.footer-contact ul li i {
    color: #8bc53f;
    font-size: 18px;
}

/* BOTTOM */
.footer-bottom {
    padding: 30px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.06);

    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.55);

    margin: 0;
}

.custom-modal {
    background:
        linear-gradient(145deg,
            #091423,
            #07111f);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 28px;

    overflow: hidden;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.45);

    backdrop-filter: blur(12px);
}

/* BACKDROP */
.modal-backdrop.show {
    opacity: 0.82;
    backdrop-filter: blur(6px);
}

/* CLOSE */
.custom-close {
    position: absolute;

    top: 24px;
    right: 24px;

    z-index: 10;

    filter: brightness(0) invert(1);

    opacity: 0.8;
}

.custom-close:hover {
    opacity: 1;
}

/* =========================
LEFT INFO
========================= */

.modal-info {
    height: 100%;
    padding: 40px 30px;
    background:
        radial-gradient(circle at top,
            rgba(139, 197, 63, 0.15),
            transparent 45%),
        rgba(255, 255, 255, 0.02);

    border-right: 1px solid rgba(255, 255, 255, 0.06);

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-subtitle {
    color: #8bc53f;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 18px;
}

.modal-info h2 {
    color: #fff;

    font-size: 42px;
    font-weight: 800;

    line-height: 1.15;

    margin-bottom: 24px;
}

.modal-info p {
    color: rgba(255, 255, 255, 0.72);

    line-height: 1.9;

    margin-bottom: 32px;
}

.modal-line {
    width: 90px;
    height: 4px;

    background: #8bc53f;

    border-radius: 50px;
}

/* =========================
FORM
========================= */

.modal-form-wrapper {
    padding: 60px 45px;
}

/* Floating Group */
.floating-group {
    position: relative;

    margin-bottom: 32px;
}

/* INPUTS */
.floating-group input,
.floating-group textarea {
    width: 100%;

    background: transparent;

    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);

    padding: 16px 0;

    color: #fff;

    font-size: 16px;

    outline: none;

    transition: 0.35s ease;
}

/* LABEL */
.floating-group label {
    position: absolute;

    left: 0;
    top: 16px;

    color: rgba(255, 255, 255, 0.55);

    pointer-events: none;

    transition: 0.35s ease;
}

/* Animation */
.floating-group input:focus+label,
.floating-group input:valid+label,
.floating-group textarea:focus+label,
.floating-group textarea:valid+label {

    top: -10px;

    font-size: 12px;

    color: #8bc53f;

    letter-spacing: 1px;
}

/* Animated Border */
.focus-border {
    position: absolute;

    bottom: 0;
    left: 0;

    width: 0%;
    height: 2px;

    background:
        linear-gradient(90deg,
            #8bc53f,
            #b7ff5a);

    transition: 0.4s ease;
}

.floating-group input:focus~.focus-border,
.floating-group textarea:focus~.focus-border {
    width: 100%;
}

/* Glow */
.floating-group input:focus,
.floating-group textarea:focus {
    box-shadow:
        0 10px 30px rgba(139, 197, 63, 0.08);
}

/* BUTTON */
.submit-btn {
    width: 100%;

    border: none;

    background:
        linear-gradient(135deg,
            #8bc53f,
            #76aa31);

    color: #fff;

    padding: 18px 28px;

    border-radius: 0px;

    font-weight: 700;

    letter-spacing: 0.5px;

    transition: 0.35s ease;

    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 40px rgba(139, 197, 63, 0.28);
}

/* =========================
MODAL ANIMATION
========================= */

.modal.fade .modal-dialog {
    transform: scale(0.92) translateY(20px);
    transition: 0.35s ease;
}

.modal.show .modal-dialog {
    transform: scale(1) translateY(0);
}

.ewaste-benefits {
    position: relative;

    padding: 120px 0;

    background:
        radial-gradient(circle at top left,
            rgba(139, 197, 63, 0.08),
            transparent 30%),
        linear-gradient(145deg,
            #07111f,
            #050b14);

    overflow: hidden;
}

/* Background Pattern */
.ewaste-benefits::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        radial-gradient(rgba(255, 255, 255, 0.06) 1px,
            transparent 1px);

    background-size: 28px 28px;

    opacity: 0.25;

    pointer-events: none;
}

/* CONTENT */
.benefits-content {
    position: relative;
    z-index: 2;
}

/* Subtitle */
.benefits-subtitle {
    display: inline-block;

    color: #8bc53f;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 22px;
}

/* Title */
.benefits-title {
    color: #fff;

    font-size: 72px;
    font-weight: 800;

    line-height: 1.02;

    margin-bottom: 50px;

    max-width: 900px;
}

.benefits-title span {
    color: #8bc53f;

    display: block;
}

/* LIST */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

/* ITEM */
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 12px 24px;
    background:
        rgba(255, 255, 255, 0.03);
    border:
        1px solid rgba(255, 255, 255, 0.06);

    border-radius: 0px;
    transition: 0.35s ease;
    backdrop-filter: blur(6px);
}

/* Hover */
.benefit-item:hover {
    transform: translateX(10px);

    border-color:
        rgba(139, 197, 63, 0.3);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.22);
}

/* DOT */
.benefit-dot {
    min-width: 14px;
    height: 14px;

    margin-top: 10px;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #8bc53f,
            #b7ff5a);

    box-shadow:
        0 0 18px rgba(139, 197, 63, 0.45);

    position: relative;
}

/* Pulse */
.benefit-dot::before {
    content: "";

    position: absolute;

    inset: -6px;

    border-radius: 50%;

    border:
        1px solid rgba(139, 197, 63, 0.35);

    animation: pulseDot 2.5s infinite;
}

@keyframes pulseDot {

    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.8);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* TEXT */
.benefit-item p {
    color: rgba(255, 255, 255, 0.92);

    font-size: 18px;
    font-weight: 500;

    line-height: 1.7;

    margin: 0;
}

.phone-float {
    position: fixed;

    right: 24px;
    bottom: 108px;

    width: 62px;
    height: 62px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(135deg,
            #0f1724,
            #132238);

    border:
        1px solid rgba(255, 255, 255, 0.08);

    color: #fff;

    font-size: 28px;

    z-index: 9998;

    transition: 0.35s ease;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.28);

    overflow: hidden;
}

/* Glow */
.phone-float::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(135deg,
            rgba(139, 197, 63, 0.22),
            transparent);

    opacity: 0;

    transition: 0.35s ease;
}

/* Hover */
.phone-float:hover {
    transform: translateY(-6px) scale(1.05);

    color: #fff;

    border-color:
        rgba(139, 197, 63, 0.35);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.35);
}

.phone-float:hover::before {
    opacity: 1;
}

/* Icon */
.phone-float i {
    position: relative;
    z-index: 2;
}

/* Tooltip */
.phone-tooltip {
    position: absolute;

    right: 78px;

    background:
        rgba(7, 17, 31, 0.96);

    color: #fff;

    padding: 10px 16px;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 600;

    white-space: nowrap;

    opacity: 0;
    visibility: hidden;

    transform: translateX(10px);

    transition: 0.3s ease;

    border:
        1px solid rgba(255, 255, 255, 0.08);
}

/* Show Tooltip */
.phone-float:hover .phone-tooltip {
    opacity: 1;
    visibility: visible;

    transform: translateX(0);
}

/* Ring Animation */
.phone-float {
    animation: phoneRing 3s infinite;
}

@keyframes phoneRing {

    0% {
        transform: rotate(0);
    }

    2% {
        transform: rotate(-8deg);
    }

    4% {
        transform: rotate(8deg);
    }

    6% {
        transform: rotate(-6deg);
    }

    8% {
        transform: rotate(6deg);
    }

    10% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(0);
    }
}

.coverage-section {
    background-color: #060e1a;
    /* Dark background matching image_dc3c99.jpg */
    padding-top: 80px;
    padding-bottom: 80px;
}

.underline-green {
    width: 50px;
    height: 3px;
    background-color: #8cc63f;
    /* Corporate green from image_dc3c99.jpg */
    margin: 0 auto;
}

.city-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 15px;
    border-radius: 4px;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
}

/* Hover effect similar to the cards in image_dc3c99.jpg */
.city-card:hover {
    border-color: #8cc63f;
    background: rgba(140, 198, 63, 0.05);
    transform: translateY(-5px);
    color: #8cc63f;
}

/* =========================
CONTACT PAGE
========================= */

.contact-page {
    padding: 120px 0;

    background:
        linear-gradient(145deg,
            #07111f,
            #050b14);
}

/* WRAPPER */
.contact-wrapper {
    border-radius: 30px;

    overflow: hidden;

    background: #fff;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.35);
}

/* =========================
LEFT SIDE
========================= */

.contact-info-side {
    background:
        linear-gradient(145deg,
            #08111d,
            #050b14);

    padding: 70px 55px;

    height: 100%;

    position: relative;

    overflow: hidden;
}

/* Glow */
.contact-info-side::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    background:
        radial-gradient(circle,
            rgba(139, 197, 63, 0.1),
            transparent 70%);

    top: -180px;
    left: -180px;
}

/* Mini title */
.contact-mini-title {
    color: #8bc53f;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;

    display: inline-block;

    margin-bottom: 18px;
}

/* Title */
.contact-info-side h2 {
    color: #fff;

    font-size: 54px;
    font-weight: 800;

    line-height: 1.05;

    margin-bottom: 24px;
}

/* Text */
.contact-info-side>p {
    color: rgba(255, 255, 255, 0.72);

    line-height: 1.9;

    margin-bottom: 50px;
}

/* FEATURES */
.contact-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* ITEM */
.contact-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

/* ICON */
.feature-icon {
    min-width: 65px;
    height: 65px;

    border-radius: 18px;

    background:
        rgba(139, 197, 63, 0.08);

    border:
        1px solid rgba(139, 197, 63, 0.18);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #8bc53f;

    font-size: 24px;
}

/* Feature text */
.contact-feature-item h5 {
    color: #fff;

    font-size: 22px;
    font-weight: 700;

    margin-bottom: 8px;
}

.contact-feature-item p {
    color: rgba(255, 255, 255, 0.65);

    line-height: 1.7;

    margin: 0;
}

/* CALL BOX */
.contact-call-box {
    margin-top: 60px;

    padding-top: 35px;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);
}

.contact-call-box a {
    margin-top: 60px;

    padding-top: 35px;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);
}

.contact-call-box span {
    color: #8bc53f;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 12px;
}

.contact-call-box h3 a {
    text-decoration: none;
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.contact-call-box p {
    color: rgba(255, 255, 255, 0.65);
}

/* =========================
FORM SIDE
========================= */

.contact-form-side {
    padding: 70px 60px;
}

/* Heading */
.form-heading {
    margin-bottom: 40px;
}

.form-heading h3 {
    font-size: 42px;
    font-weight: 800;
    color: #07111f;
    margin-bottom: 12px;
}

.form-heading p {
    color: rgba(7, 17, 31, 0.6);
}

/* INPUT */
.custom-input {
    position: relative;
}

.custom-input input,
.custom-input textarea,
.custom-input select {
    width: 100%;
    border:
        1px solid #8bc53f;

    border-radius: 0px;
    padding: 18px 20px;
    background: #fff;
    outline: none;
    transition: 0.35s ease;
    font-size: 15px;
}

/* Focus */
.custom-input input:focus,
.custom-input textarea:focus,
.custom-input select:focus {
    border-color: #8bc53f;
    box-shadow:
        0 0 10px 8px rgba(139, 197, 63, 0.205);
}

/* LABEL */
.custom-input label {
    position: absolute;
    left: 18px;
    top: 18px;
    background: #fff;
    padding: 0 6px;
    color: rgba(7, 17, 31, 0.45);
    transition: 0.35s ease;
    pointer-events: none;
}

/* Animation */
.custom-input input:focus+label,
.custom-input input:valid+label,
.custom-input textarea:focus+label,
.custom-input textarea:valid+label {
    top: -10px;
    font-size: 12px;
    color: #8bc53f;
}

/* BUTTON */
.contact-submit-btn {
    border: none;
    background:
        linear-gradient(135deg,
            #8bc53f,
            #76aa31);
    color: #fff;
    padding: 18px 34px;
    border-radius: 0px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: 0.35s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 40px rgba(139, 197, 63, 0.28);
}

/* =========================
SERVICES MODERN
========================= */

.services-modern {
    padding: 120px 0;

    background: #fff;

    position: relative;
}

/* DESCRIPTION */
.section-description {
    color: rgba(7, 17, 31, 0.65);

    font-size: 18px;

    max-width: 700px;

    margin: 18px auto 0;

    line-height: 1.8;
}

/* WRAPPER */
.services-wrapper {
    margin-top: 70px;

    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* ROW */
.service-row {
    display: flex;

    background: #fff;

    border:
        1px solid rgba(7, 17, 31, 0.08);

    overflow: hidden;

    transition: 0.4s ease;

    min-height: 230px;

    position: relative;
}

/* Hover */
.service-row:hover {
    transform: translateY(-6px);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.08);

    border-color:
        rgba(139, 197, 63, 0.3);
}

/* Green line */
.service-row::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 0;
    height: 100%;

    background:
        linear-gradient(to bottom,
            #8bc53f,
            #b7ff5a);

    transition: 0.35s ease;

    z-index: 1;
}

.service-row:hover::before {
    width: 5px;
}

/* IMAGE */
.service-image {
    width: 40%;

    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.5s ease;
}

.service-row:hover .service-image img {
    transform: scale(1.08);
}

/* CONTENT */
.service-content {
    width: 60%;

    padding: 45px;

    display: flex;
    align-items: flex-start;
    gap: 28px;

    position: relative;
    z-index: 2;
}

/* ICON */
.service-icon {
    min-width: 90px;
    height: 90px;

    background:
        rgba(139, 197, 63, 0.08);

    border:
        1px solid rgba(139, 197, 63, 0.18);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #8bc53f;

    font-size: 38px;

    transition: 0.4s ease;
}

/* Hover icon */
.service-row:hover .service-icon {
    transform: rotate(-6deg) scale(1.06);

    background:
        linear-gradient(135deg,
            #8bc53f,
            #76aa31);

    color: #fff;
}

/* TEXT */
.service-text h3 {
    font-size: 34px;
    font-weight: 800;

    color: #07111f;

    margin-bottom: 16px;
}

.service-text p {
    color: rgba(7, 17, 31, 0.65);

    line-height: 1.9;

    margin-bottom: 28px;
}

/* BUTTON */
.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background:
        linear-gradient(135deg,
            #8bc53f,
            #76aa31);

    color: #fff;

    padding: 15px 28px;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;

    transition: 0.35s ease;
}

/* Hover */
.service-btn:hover {
    color: #fff;

    transform: translateX(6px);

    box-shadow:
        0 18px 35px rgba(139, 197, 63, 0.25);
}

/* CTA */
.services-cta {
    margin-top: 70px;

    background:
        linear-gradient(145deg,
            #07111f,
            #050b14);

    padding: 45px 50px;

    position: relative;

    overflow: hidden;
}

/* Glow */
.services-cta::before {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    background:
        radial-gradient(circle,
            rgba(139, 197, 63, 0.12),
            transparent 70%);

    top: -120px;
    right: -120px;
}

/* CONTENT */
.cta-content {
    display: flex;
    align-items: center;
    gap: 24px;

    position: relative;
    z-index: 2;
}

/* ICON */
.cta-icon {
    width: 85px;
    height: 85px;

    background:
        rgba(139, 197, 63, 0.08);

    border:
        1px solid rgba(139, 197, 63, 0.18);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #8bc53f;

    font-size: 34px;
}

/* TEXT */
.cta-content h4 {
    color: #fff;

    font-size: 30px;
    font-weight: 800;

    margin-bottom: 10px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.68);

    margin: 0;
}

/* CTA BUTTON */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(135deg,
            #8bc53f,
            #76aa31);

    color: #fff;

    padding: 18px 34px;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;

    transition: 0.35s ease;
}

/* Hover */
.cta-btn:hover {
    color: #fff;

    transform: translateY(-5px);

    box-shadow:
        0 20px 45px rgba(139, 197, 63, 0.3);
}

.about-section {

    background: #020b14;
    position: relative;
    overflow: hidden;

}

.about-section::before {

    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(138, 255, 0, 0.08);
    filter: blur(120px);
    top: -120px;
    left: -120px;
    z-index: 0;

}

.about-section .container {

    position: relative;
    z-index: 2;

}

.section-subtitle {

    color: #b4ff39;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;

}

.about-title {

    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;

}

.about-text {

    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    font-size: 15px;

}

.about-features {

    display: flex;
    flex-direction: column;
    gap: 18px;

}

.feature-item {

    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-weight: 500;

}

.feature-item i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(180, 255, 57, 0.12);
    color: #b4ff39;
    font-size: 18px;
    border: 1px solid rgba(180, 255, 57, 0.25);
    transition: 0.3s ease;
}

.feature-item:hover i {
    transform: translateY(-4px);
    background: #b4ff39;
    color: #020b14;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
}

.about-image {
    width: 100%;
    mask-image: linear-gradient(to left, #000 92%, transparent);
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.04);
}

.stats-row {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 40px;
}

.stat-box {
    position: relative;
}

.stat-box h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-box p {

    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;

}

.process-section {

    background: #020b14;
    position: relative;
    overflow: hidden;

}

.process-section::before {

    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(180, 255, 57, 0.06);
    filter: blur(120px);
    top: -150px;
    right: -120px;

}

.section-heading {

    max-width: 700px;
    margin: auto;

}

.section-subtitle {

    color: #b4ff39;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;

}

.section-title {

    color: #fff;
    font-size: 2.8rem;
    font-weight: 700;
    margin-top: 15px;

}

.section-description {

    color: rgba(255, 255, 255, 0.7);
    margin-top: 18px;
    line-height: 1.8;

}

.process-card {

    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 35px 20px;
    text-align: center;
    height: 100%;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;

}

.process-card::before {

    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(180, 255, 57, 0.08),
            transparent);
    opacity: 0;
    transition: 0.4s ease;

}

.process-card:hover::before {

    opacity: 1;

}

.process-card:hover {

    transform: translateY(-8px);
    border-color: rgba(180, 255, 57, 0.2);

}

.process-icon {

    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid rgba(180, 255, 57, 0.4);
    margin: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;

}

.process-icon i {

    color: #b4ff39;
    font-size: 34px;

}

.step-number {

    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #020b14;
    color: #b4ff39;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(180, 255, 57, 0.3);

}

.process-card h4 {

    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 15px;

}

.process-card p {

    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;

}

.security-banner {

    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px;

}

.security-content {

    display: flex;
    align-items: center;
    gap: 20px;

}

.security-icon {

    width: 70px;
    height: 70px;
    background: rgba(180, 255, 57, 0.1);
    border: 1px solid rgba(180, 255, 57, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

}

.security-icon i {

    color: #b4ff39;
    font-size: 32px;

}

.security-content h4 {

    color: #fff;
    margin-bottom: 10px;

}

.security-content p {

    color: rgba(255, 255, 255, 0.65);
    margin: 0;

}

.compliance-badges {

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;

}

.compliance-badges span {

    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 18px;
    color: #fff;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.02);
    transition: 0.3s ease;

}

.compliance-badges span:hover {

    border-color: rgba(180, 255, 57, 0.3);
    color: #b4ff39;

}

.industries-section {

    background: #020b14;
    position: relative;
    overflow: hidden;

}

.industries-section::before {

    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(180, 255, 57, 0.06);
    filter: blur(120px);
    top: -120px;
    left: -120px;

}

.section-heading {

    max-width: 750px;
    margin: auto;
    position: relative;
    z-index: 2;

}

.section-subtitle {

    color: #b4ff39;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 14px;
}

.section-title {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 700;
    margin-top: 15px;
}

.section-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-top: 18px;
}

.industry-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.212);
    height: 100%;
    transition: 0.4s ease;
    overflow: hidden;
    position: relative;
}

.industry-card:hover {
    transform: translateY(-8px);
    border-color: rgba(180, 255, 57, 0.25);
}

.industry-image {
    mask-image: linear-gradient(to bottom, #000000, #000000, #000000, transparent);
    overflow: hidden;
    height: 280px;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.industry-card:hover img {
    transform: scale(1.08);
}

.industry-content {
    padding: 25px;
}

.industry-content h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.industry-content p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin: 0;
    font-size: 14px;
}

.industry-cta {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px;
    position: relative;
    overflow: hidden;
}

.cta-content {

    display: flex;
    align-items: center;
    gap: 20px;

}

.cta-icon {

    width: 70px;
    height: 70px;
    background: rgba(180, 255, 57, 0.1);
    border: 1px solid rgba(180, 255, 57, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

}

.cta-icon i {

    color: #b4ff39;
    font-size: 30px;

}

.cta-content h4 {

    color: #fff;
    margin-bottom: 10px;

}

.cta-content p {

    color: rgba(255, 255, 255, 0.65);
    margin: 0;

}

.industry-btn {

    background: #b4ff39;
    color: #020b14;
    text-decoration: none;
    padding: 15px 35px;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 1px;
    transition: 0.3s ease;

}

.industry-btn:hover {

    background: #d2ff7a;
    transform: translateY(-3px);
    color: #020b14;

}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991px) {

    .about-title {

        font-size: 2.2rem;

    }

    .service-row {
        flex-direction: column;
    }

    .service-image,
    .service-content {
        width: 100%;
    }

    .service-image {
        height: 280px;
    }

    .service-content {
        padding: 35px;
    }

    .services-cta {
        padding: 40px 35px;
    }

    .cta-content {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

}

@media (max-width: 768px) {

    .services-modern {
        padding: 90px 0;
    }

    .service-content {
        flex-direction: column;
    }

    .service-text h3 {
        font-size: 28px;
    }

    .service-icon {
        min-width: 75px;
        height: 75px;

        font-size: 30px;
    }

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-content h4 {
        font-size: 24px;
    }

    .cta-btn {
        width: 100%;
    }
}

.resources-section {

    background: #020b14;
    overflow: hidden;

}

/* HERO */

.resources-hero {

    position: relative;
    padding: 100px 0;
    overflow: hidden;

}

.resources-hero::before {

    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(180, 255, 57, 0.06);
    filter: blur(120px);
    top: -120px;
    left: -100px;

}

.resources-content {
    position: relative;
    z-index: 2;
}

.section-subtitle {
    color: #b4ff39;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 14px;
}

.resources-title {
    color: #fff;
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 700;
    margin-top: 20px;
}

.resources-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.9;
    margin-top: 25px;
    max-width: 520px;
}

.resources-btn {
    margin-top: 35px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #b4ff39;
    color: #020b14;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
}

.resources-btn:hover {
    background: #d3ff79;
    transform: translateY(-4px);
    color: #020b14;
}

.resources-image-wrapper {
    mask-image: linear-gradient(to left, #000 85%, transparent);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.resources-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.resources-image-wrapper:hover .resources-image {
    transform: scale(1.05);
}

/* ARTICLES */

.latest-articles {
    background: #fff;
    position: relative;


}

.section-title {
    color: #020b14;
    font-size: 2.5rem;
    font-weight: 700;
}

.article-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    height: 100%;
    transition: 0.4s ease;
}

.article-card:hover {
    transform: translateY(-8px);
    border-color: rgba(180, 255, 57, 0.4);
}

.article-image {
    overflow: hidden;
    height: 240px;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.article-card:hover img {
    transform: scale(1.08);
}

.article-content {
    padding: 30px;
}

.article-category {
    display: inline-block;
    color: #8bc53f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.article-content h3 {
    color: #020b14;
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 18px;
}

.article-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #8bc53f;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
}

.article-link:hover {

    gap: 15px;
    color: #6ea62b;

}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991px) {

    .custom-navbar {
        padding: 14px 0;
        background: #07111f;
    }

    .navbar-collapse {
        background: #07111f;
        padding: 25px;
        margin-top: 18px;
        border-radius: 12px;
    }

    .navbar-nav {
        gap: 10px;
        margin-bottom: 20px;
    }

    .hero-bg {
        min-height: auto;
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .hero-title {
        font-size: 46px;
    }

    .hero-text {
        font-size: 17px;
    }

    .services-card {
        margin-top: 50px;
    }

    .stat-box h3 {
        font-size: 40px;
    }

    .section-title h2 {
        font-size: 40px;
    }

    .process-line {
        display: none;
    }

    .services-section,
    .process-section {
        padding: 10px 0;
    }

    .service-card-v2 {
        padding: 35px 25px;
    }

    .industries-section,
    .footer-section {
        padding-top: 90px;
    }

    .industry-card {
        padding: 35px 28px;
    }

    .footer-top {
        padding-bottom: 50px;
    }

    .contact-info-side,
    .contact-form-side {
        padding: 50px 35px;
    }

    .contact-info-side h2 {
        font-size: 42px;
    }

    .form-heading h3 {
        font-size: 34px;
    }

    .service-row {
        flex-direction: column;
    }

    .service-image,
    .service-content {
        width: 100%;
    }

    .service-image {
        height: 280px;
    }

    .service-content {
        padding: 35px;
    }

    .services-cta {
        padding: 40px 35px;
    }

    .cta-content {
        margin-bottom: 30px;
    }

    .resources-title {
        font-size: 2.7rem;
    }

    .resources-hero {
        padding: 70px 0;
    }

}

@media (max-width: 768px) {
    .phone-float {
        width: 56px;
        height: 56px;

        right: 18px;
        bottom: 90px;

        font-size: 24px;
    }

    .phone-tooltip {
        display: none;
    }

    .industry-card h4 {
        font-size: 24px;
    }

    .industry-number {
        font-size: 42px;
    }

    .industry-icon {
        width: 75px;
        height: 75px;
    }

    .footer-logo {
        max-width: 160px;
    }

    .footer-links h5,
    .footer-contact h5 {
        font-size: 20px;
    }

    .footer-socials a {
        width: 42px;
        height: 42px;
    }

    .modal-info {
        padding: 40px 35px;

        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .modal-form-wrapper {
        padding: 50px 35px;
    }

    .modal-info h2 {
        font-size: 34px;
    }

    .contact-page {
        padding: 80px 0;
    }

    .contact-info-side,
    .contact-form-side {
        padding: 40px 24px;
    }

    .contact-info-side h2 {
        font-size: 34px;
    }

    .contact-call-box h3 {
        font-size: 30px;
    }

    .form-heading h3 {
        font-size: 30px;
    }

    .contact-submit-btn {
        width: 100%;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-text {
        font-size: 16px;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-green,
    .btn-outline-custom {
        width: 100%;
        text-align: center;
    }

    .services-card {
        padding: 25px;
    }

    .service-item {
        gap: 14px;
    }

    .service-item h5 {
        font-size: 18px;
    }

    .stat-box {
        padding: 20px 10px;
    }

    .stat-box span {
        font-size: 32px;
    }

    .stat-box h3 {
        font-size: 32px;
    }

    .section-title {
        margin-bottom: 50px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .service-card-v2 h4 {
        font-size: 24px;
    }

    .process-item h5 {
        font-size: 20px;
    }

    .process-item p {
        font-size: 14px;
    }

    .service-icon,
    .process-icon {
        width: 75px;
        height: 75px;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;

        right: 18px;
        bottom: 18px;

        font-size: 30px;
    }

    .wa-tooltip {
        display: none;
    }

    .custom-modal {
        border-radius: 22px;
    }

    .modal-info,
    .modal-form-wrapper {
        padding: 40px 24px;
    }

    .modal-info h2 {
        font-size: 28px;
    }

    .submit-btn {
        padding: 16px 24px;
    }

    .services-modern {
        padding: 90px 0;
    }

    .service-content {
        flex-direction: column;
    }

    .service-text h3 {
        font-size: 28px;
    }

    .service-icon {
        min-width: 75px;
        height: 75px;

        font-size: 30px;
    }

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-content h4 {
        font-size: 24px;
    }

    .cta-btn {
        width: 100%;
    }
}