/* =========================================
   GET ME UP ADVERTISING - STYLE.CSS
   Brand Colors:
   Green: #22AA11
   Black: #000000
   White: #FFFFFF
========================================= */

/* =========================
   ROOT VARIABLES
========================= */

:root {
    --primary-color: #22aa11;
    --primary-dark: #17800b;
    --black: #000000;
    --white: #ffffff;
    --light-bg: #f6f8f6;
    --text-color: #202520;
    --muted-text: #6c756c;
    --border-color: #e5e9e5;
    --shadow-sm: 0 5px 20px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 12px 35px rgba(0, 0, 0, 0.10);
    --transition: all 0.3s ease;
}

/* =========================
   GLOBAL STYLES
========================= */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text-color);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--black);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
}

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

/* =========================
   COMMON UTILITIES
========================= */

.section-padding {
    padding: 15px 0;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(28px, 2vw, 42px);
    font-weight: 800;
    margin-bottom: 18px;
}

.section-description {
    max-width: 650px;
}

.text-success {
    color: var(--primary-color) !important;
}

.bg-success {
    background-color: var(--primary-color) !important;
}

.btn-success {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 8px;
    padding: 12px 24px;
    transition: var(--transition);
}

.btn-success:hover,
.btn-success:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 170, 17, 0.25);
}

.btn-outline-dark {
    border-width: 1.5px;
    font-weight: 600;
    border-radius: 8px;
    padding: 12px 24px;
    transition: var(--transition);
}

.btn-outline-dark:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

/* =========================
   TOPBAR
========================= */

.topbar {
    background: var(--black);
    color: var(--white);
    font-size: 13px;
}

.topbar a {
    color: var(--white);
}

.topbar a:hover {
    color: var(--primary-color);
}

/* =========================
   NAVBAR
========================= */

.navbar {
    background: var(--white);
    padding: 0px 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.navbar-brand img {
    max-height: 80px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--black);
    font-size: 14px;
    font-weight: 600;
    margin: 0 8px;
    padding: 10px 5px !important;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    left: 5px;
    bottom: 3px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 10px);
}

.navbar-toggler {
    border: 0;
    box-shadow: none !important;
}

/* =========================
   HERO SECTION
========================= */

.hero-section {
    position: relative;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(34, 170, 17, 0.10),
            transparent 35%
        ),
        var(--white);
    padding: 30px 0 !important;
}

.hero-section h1 {
    font-size: clamp(38px, 5vw, 68px);
    letter-spacing: -1.5px;
}

.hero-section .lead {
    max-width: 590px;
    font-size: 18px;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: var(--primary-color);
    opacity: 0.12;
    border-radius: 50%;
    top: -30px;
    right: -30px;
    z-index: 0;
}

.hero-image-wrapper img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

/* =========================
   SERVICE CARDS
========================= */

.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 25px;
    transition: var(--transition);
}

.service-card:hover {
    border-color: rgba(34, 170, 17, 0.35);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    border-radius: 14px;
    color: var(--primary-color);
    background: rgba(34, 170, 17, 0.10);
    font-size: 30px;
}

.service-card h4 {
    font-size: 20px;
    margin-bottom: 14px;
}

.service-card p {
    color: var(--muted-text);
    font-size: 14px;
    margin-bottom: 22px;
}

.service-card a {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
}

/* =========================
   CATEGORY CARDS
========================= */

.category-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px 15px;
    transition: var(--transition);
}

.category-card:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.category-card i {
    display: block;
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.category-card h6 {
    font-size: 14px;
    margin-bottom: 14px;
    transition: var(--transition);
}

.category-card a {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    transition: var(--transition);
}

.category-card:hover i,
.category-card:hover h6,
.category-card:hover a {
    color: var(--white);
}

/* =========================
   PROCESS CARDS
========================= */

.process-card {
    padding: 30px 20px;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    height: 100%;
    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(34, 170, 17, 0.10);
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
}

.process-card h5 {
    font-size: 18px;
    margin-bottom: 12px;
}

.process-card p {
    font-size: 14px;
    margin-bottom: 0;
}

/* =========================
   CTA SECTION
========================= */

.cta-section {
    background:
        linear-gradient(
            110deg,
            #17800b,
            #22aa11
        );
}

.cta-section h2 {
    font-size: clamp(26px, 4vw, 40px);
}

/* =========================
   CONTACT FORM
========================= */


.contact-form {
    padding: 35px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
}

.form-control,
.form-select {
    min-height: 48px;
    border: 1px solid #dfe5df;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(34, 170, 17, 0.12);
}

textarea.form-control {
    resize: vertical;
}

/* =========================
   FOOTER
========================= */

.site-footer {
    background: #101410 !important;
}

.footer-logo img {
    max-height: 100px;
    object-fit: contain;
}

.footer-title {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 22px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 4px;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.70);
    font-size: 14px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.70);
    word-break: break-word;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
}

.footer-bottom-link:hover {
    color: var(--primary-color);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 50%;
    color: var(--white);
    font-size: 16px;
}

.social-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* =========================
   WHATSAPP FLOATING BUTTON
========================= */

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    font-size: 29px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.20);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #1da851;
    color: var(--white);
    transform: scale(1.08);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 991.98px) {
    .section-padding {
        padding: 65px 0;
    }

    .hero-section {
        padding: 70px 0 !important;
        text-align: center;
    }

    .hero-section .lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-section .d-flex {
        justify-content: center;
    }

    .hero-image-wrapper {
        margin-top: 25px;
    }

    .navbar-nav {
        padding-top: 15px;
    }

    .navbar-nav .nav-link {
        padding: 12px 5px !important;
    }

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

@media (max-width: 767.98px) {
    .section-padding {
        padding: 50px 0;
    }

    .hero-section h1 {
        font-size: 40px;
        letter-spacing: -0.8px;
    }

    .hero-section .lead {
        font-size: 16px;
    }

    .hero-section .btn {
        width: 100%;
    }

    .hero-section .d-flex {
        gap: 10px !important;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .footer-title {
        margin-top: 10px;
    }

    .whatsapp-float {
        right: 18px;
        bottom: 18px;
        width: 52px;
        height: 52px;
        font-size: 25px;
    }
}

@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 34px;
    }

    .section-title {
        font-size: 29px;
    }

    .category-card {
        padding: 20px 10px;
    }

    .category-card i {
        font-size: 27px;
    }

    .category-card h6 {
        font-size: 12px;
    }

    .topbar {
        font-size: 11px;
    }
}






/* =========================
   SERVICES DROPDOWN ON HOVER
========================= */

@media (min-width: 992px) {

    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(12px);
        min-width: 260px;
        margin-top: 0;
        padding: 10px;
        border: none;
        border-radius: 12px;
        background: #ffffff;
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
        transition: all 0.25s ease;
    }

    .navbar .dropdown-item {
        padding: 12px 15px;
        border-radius: 8px;
        color: #222222;
        font-size: 14px;
        font-weight: 600;
        transition: all 0.25s ease;
    }

    .navbar .dropdown-item:hover {
        background: rgba(34, 170, 17, 0.10);
        color: #22aa11;
        transform: translateX(4px);
    }

}

/* Mobile Dropdown */
@media (max-width: 991.98px) {

    .navbar .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 15px;
    }

    .navbar .dropdown-item {
        padding: 10px 15px;
        font-size: 14px;
    }

}











/* =========================
   AUTHORISED PARTNERS SLIDER
========================= */

.partner-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 5px 0;
}

.partner-track {
    display: flex;
    width: 200%;
    animation: partnerScroll 25s linear infinite;
}

.partner-slider:hover .partner-track {
    animation-play-state: paused;
}

.partner-logo-item {
    flex: 0 0 8.333333%;
    width: 8.333333%;
    padding: 5px;
    box-sizing: border-box;
}

.partner-logo-card {
    height: 100px;
    padding: 10px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-logo-card:hover {
    border-color: #22aa11;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.partner-logo-card img {
    display: block;
    width: 100%;
    max-width: 150px;
    height: 65px;
    object-fit: contain;
}

/* Smooth right-to-left scrolling */

@keyframes partnerScroll {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}

/* Tablet: 3 logos visible */

@media (max-width: 1199.98px) {

    .partner-track {
        width: 200%;
    }

    .partner-logo-item {
        flex: 0 0 16.666666%;
        width: 16.666666%;
        padding: 5px;
    }

}

/* Mobile: 2 logos visible */

@media (max-width: 575.98px) {

    .partner-track {
        width: 200%;
    }

    .partner-logo-item {
        flex: 0 0 25%;
        width: 25%;
        padding: 4px;
    }

    .partner-logo-card {
        height: 85px;
        padding: 8px;
    }

    .partner-logo-card img {
        height: 50px;
        max-width: 125px;
    }

}





/* =====================================================
   NEWSPAPER ADVERTISING PAGE
===================================================== */

.newspaper-hero-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #f3faf1 0%, #ffffff 100%);
}

.newspaper-hero-title {
    font-size: clamp(0px, 3vw, 38px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.newspaper-hero-image {
    overflow: hidden;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.10);
}

.newspaper-hero-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-trust-points span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #555555;
    font-size: 13px;
    font-weight: 600;
}

.hero-trust-points i {
    color: #22aa11;
}


/* =====================================================
   PUBLICATION MARQUEE
===================================================== */

.publication-section {
    overflow: hidden;
    background: #ffffff;
}

.publication-marquee {
    width: 100%;
    overflow: hidden;
    padding: 12px 0;
    background: #f7faf6;
    border-top: 1px solid #e5eee2;
    border-bottom: 1px solid #e5eee2;
}

.publication-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: publicationScroll 35s linear infinite;
}

.publication-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    height: 75px;
    margin-right: 20px;
    padding: 12px 20px;
    color: #222222;
    background: #ffffff;
    border: 1px solid #e1e9de;
    border-radius: 8px;
    font-family: Georgia, serif;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
}

.publication-item::before {
    content: "●";
    margin-right: 8px;
    color: #22aa11;
    font-size: 12px;
}

@keyframes publicationScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.publication-marquee:hover .publication-track {
    animation-play-state: paused;
}


/* =====================================================
   ABOUT SERVICE
===================================================== */

.about-service-points > div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 13px;
    color: #444444;
    font-size: 15px;
    line-height: 1.6;
}

.about-service-points i {
    flex-shrink: 0;
    margin-top: 4px;
    color: #22aa11;
}


/* =====================================================
   CITY TABLE
===================================================== */

.city-table-wrapper {
    overflow: hidden;
    border: 1px solid #e3e9e1;
    border-radius: 14px;
    background: #ffffff;
}

.city-coverage-table {
    min-width: 650px;
    margin-bottom: 0;
}

.city-coverage-table thead th {
    padding: 17px 20px;
    color: #ffffff;
    background: #22aa11;
    border: 0;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.city-coverage-table tbody td {
    padding: 15px 20px;
    color: #555555;
    border-color: #edf1eb;
    font-size: 14px;
}

.city-coverage-table tbody tr:nth-child(even) {
    background: #f8fbf7;
}

.city-coverage-table tbody tr:hover {
    background: #eff8eb;
}


/* =====================================================
   TESTIMONIALS
===================================================== */

.testimonial-card {
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e4eae1;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: #22aa11;
    font-size: 14px;
}

.testimonial-card p {
    min-height: 85px;
    line-height: 1.8;
}


/* =====================================================
   CTA CONTACT DETAILS
===================================================== */

.cta-contact-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 13px;
}

.cta-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.cta-contact-link:hover {
    color: #ffffff;
    opacity: 0.8;
}

.cta-contact-link i {
    font-size: 20px;
}


/* =====================================================
   RESPONSIVE DESIGN
===================================================== */

@media (max-width: 991.98px) {

    .newspaper-hero-section {
        padding: 50px 0;
    }

    .newspaper-hero-title {
        font-size: 42px;
    }

    .cta-contact-details {
        align-items: flex-start;
    }

}

@media (max-width: 767.98px) {

    .newspaper-hero-title {
        font-size: 34px;
        letter-spacing: -0.8px;
    }

    .newspaper-hero-section {
        padding: 35px 0;
    }

    .hero-trust-points {
        flex-direction: column;
        gap: 10px;
    }

    .publication-item {
        min-width: 180px;
        height: 65px;
        font-size: 13px;
    }

    .cta-contact-link {
        font-size: 17px;
    }

}

@media (prefers-reduced-motion: reduce) {

    .publication-track {
        animation: none;
    }

}







/* =====================================================
   CITIES SECTION TEXT FIX
===================================================== */

.cities-section {
    background: #ffffff !important;
    color: #111111 !important;
}

.cities-section .section-title {
    color: #22aa11 !important;
}

.cities-section .section-subtitle {
    color: #22aa11 !important;
}

.city-coverage-table td {
    color: #111111 !important;
    background: #ffffff !important;
}

.city-coverage-table th {
    color: #111111 !important;
    background: #f7faf6 !important;
}





/* =====================================================
   OUR JOURNEY SECTION
===================================================== */

.journey-section {
    background: #f7faf6;
    overflow: hidden;
}

.journey-section .section-description {
    max-width: 700px;
}


/* TIMELINE */

.journey-timeline {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    padding: 15px 0;
}

.journey-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #22aa11;
    transform: translateX(-50%);
}


/* TIMELINE ITEM */

.journey-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items: center;
    min-height: 145px;
    margin-bottom: 15px;
}

.journey-year {
    padding: 0 30px;
    color: #22aa11;
    font-size: 29px;
    font-weight: 800;
    text-align: right;
}

.journey-dot {
    position: relative;
    z-index: 2;
    width: 19px;
    height: 19px;
    margin: 0 auto;
    border: 4px solid #ffffff;
    border-radius: 50%;
    background: #22aa11;
    box-shadow: 0 0 0 2px #22aa11;
}

.journey-content {
    margin: 0 0 0 25px;
    padding: 23px 25px;
    border: 1px solid #e1ebde;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.journey-content:hover {
    border-color: #22aa11;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
    transform: translateY(-3px);
}

.journey-content h4 {
    margin-bottom: 8px;
    color: #222222;
    font-size: 19px;
    font-weight: 700;
}

.journey-content p {
    margin-bottom: 0;
    color: #666666;
    font-size: 14px;
    line-height: 1.7;
}


/* ENDING TEXT */

.journey-ending-text h3 {
    margin-bottom: 12px;
    color: #22aa11;
    font-size: 26px;
    font-weight: 700;
}


/* RESPONSIVE */

@media (max-width: 767.98px) {

    .journey-timeline {
        padding-left: 0;
    }

    .journey-timeline::before {
        left: 18px;
        transform: none;
    }

    .journey-item {
        display: grid;
        grid-template-columns: 38px 1fr;
        min-height: auto;
        margin-bottom: 25px;
        align-items: start;
    }

    .journey-year {
        grid-column: 2;
        grid-row: 1;
        padding: 0;
        margin-bottom: 10px;
        font-size: 25px;
        text-align: left;
    }

    .journey-dot {
        grid-column: 1;
        grid-row: 1;
        width: 17px;
        height: 17px;
        margin-top: 5px;
    }

    .journey-content {
        grid-column: 2;
        grid-row: 2;
        margin: 0;
        padding: 20px;
    }

    .journey-content h4 {
        font-size: 18px;
    }

    .journey-ending-text h3 {
        font-size: 23px;
    }

}


@media (max-width: 575.98px) {

    .journey-timeline::before {
        left: 17px;
    }

    .journey-item {
        grid-template-columns: 36px 1fr;
    }

    .journey-content {
        padding: 18px;
    }

}










/* Publication Logo Marquee */

.publication-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 15px 0;
}

.publication-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: publicationScroll 35s linear infinite;
}

.publication-item {
    flex: 0 0 auto;
    width: 190px;
    height: 90px;
    margin: 0 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    padding: 12px;
}

.publication-logo {
    max-width: 100%;
    max-height: 65px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Continuous Scrolling */

@keyframes publicationScroll {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}

/* Pause on Hover */

.publication-marquee:hover .publication-track {
    animation-play-state: paused;
}

/* Mobile Responsive */

@media (max-width: 768px) {

    .publication-item {
        width: 150px;
        height: 75px;
        margin: 0 10px;
        padding: 10px;
    }

    .publication-logo {
        max-height: 50px;
    }

    .publication-track {
        animation-duration: 25s;
    }

}




.publication-track {
    display: flex;
    align-items: center;
    width: max-content;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.publication-item {
    flex: 0 0 auto;
    width: 190px;
    height: 90px;
    margin: 0 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    padding: 12px;

    list-style: none !important;
}

.publication-item::before,
.publication-item::after {
    content: none !important;
    display: none !important;
}






#servicesSlider .carousel-item img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 1rem;
}

@media (max-width: 991px) {
    #servicesSlider .carousel-item img {
        height: 320px;
    }
}