    /* Base Styles */
:root {
    --primary-green: #65b531;
    --text-dark: #222222;
    --font-family: 'Inter', sans-serif;
}

body {
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f8f9fa; /* Light background for contrast */
}

/* Header & Navigation */
.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #eaeaea;
    transition: box-shadow 0.3s ease;
}

.main-header.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Logo Styling */
.navbar-brand {
    text-decoration: none;
    padding: 0;
}

.logo-sem {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -2.5px;
    color: #000;
    line-height: 1;
    display: flex;
    align-items: baseline;
    font-family: Arial, Helvetica, sans-serif; /* For better standard rendering of the thick text */
}

.logo-m {
    color: var(--primary-green);
    margin-left: 2px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.05;
    margin-top: 5px;
}

.logo-top {
    font-size: 0.95rem;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.3px;
}

.logo-bottom {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-green);
}

/* Navigation Links */
.navbar-nav .nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark) !important;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-green) !important;
}

/* Buttons */
.btn-join {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: #ffffff;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-join:hover, 
.btn-join:focus {
    background-color: #569d2a;
    border-color: #569d2a;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(101, 181, 49, 0.25);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .navbar-collapse {
        padding-top: 1rem;
        padding-bottom: 0.5rem;
    }
    
    .navbar-nav .nav-item {
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .btn-join {
        width: 100%;
        margin-top: 1rem;
    }
}

/* ================= Hero Section ================= */
.hero-section {
    background-color: #E6F2DE; /* Match reference image light green */
    padding: 80px 0;
    overflow: hidden; 
}

.hero-content {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    padding-right: 150px;
}

.text-highlight {
    color: #63AC1E;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: -4px;
    width: calc(100% + 8px);
    height: 18px;
    background-color: rgba(101, 181, 49, 0.25); /* Faint green underline */
    z-index: -1;
    border-radius: 4px;
}

.hero-content p {
    font-size: 1.05rem;
    color: #000000;
    margin-bottom: 2.5rem;
    max-width: 95%;
    line-height: 1.6;
}
/* 
.btn-audit {
    background-color: var(--primary-green);
    color: #fff;
    padding: 0.6rem 0.6rem 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-audit:hover {
    background-color: #569d2a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(101, 181, 49, 0.3);
}

.btn-audit .arrow-icon {
    background-color: #fff;
    color: var(--primary-green);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.btn-audit:hover .arrow-icon {
    transform: translateX(3px);
} */

/* ================= HERO CONTENT ALIGNMENT ================= */

.hero-content {
    padding-top: 2rem;
    padding-bottom: 2rem;

    /* LEFT ALIGN FIX */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

/* Heading */
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    padding-right: 150px;
    text-align: left;
}

/* Paragraph */
.hero-content p {
    font-size: 1.05rem;
    color: #000000;
    margin-bottom: 2.5rem;
    max-width: 95%;
    line-height: 1.6;
    text-align: left;
}

/* ================= BUTTON ================= */

.btn-audit {
    background-color: #63AC1E;
    color: #fff;
    padding: 0.6rem 0.6rem 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;

    /* LEFT ALIGN */
    align-self: flex-start;
    margin-left: 0;
    padding-top: 8px;
    border: none;
}

/* Hover */
.btn-audit:hover {
    background-color: #569d2a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(101, 181, 49, 0.3);
}

/* Arrow */
.btn-audit .arrow-icon {
    background-color: #fff;
    color: var(--primary-green);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.btn-audit:hover .arrow-icon {
    transform: translateX(3px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

    .hero-content {
        align-items: center;
        text-align: center;
        padding-right: 0 !important;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        padding-right: 0;
        text-align: center;
    }

    .hero-content p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-audit {
        align-self: center;
    }
}

@media (max-width: 576px) {

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .btn-audit {
        width: auto;
    }
}

/* ================= Hero Images Composition ================= */
.hero-images-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    z-index: 1;
}

.main-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    width: 85%;
    margin: 0 auto;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.main-img-wrapper img {
    width: 100%;
    height: 580px;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* Overlapping Tablet Image */
.overlap-img-wrapper {
    position: absolute;
    bottom: 20%;
    left: -12%;
    width: 45%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    z-index: 2;
}

.overlap-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    /* border: 1px solid #000; */
    border-radius: 11%;
}

/* Traffic Source Card */
.traffic-card {
    position: absolute;
    bottom: -5%;
    right: -10%;
    background: #fff;
    border-radius: 8px;
    padding: 12px 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 3;
    gap: 12px;
    border: 1px solid rgba(0,0,0,0.05);
}

.traffic-details h6 {
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #333;
}

.traffic-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.traffic-list li {
    font-size: 0.65rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
}

.traffic-list li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 1px;
    margin-right: 6px;
    border: 1px solid #333;
}

.traffic-list li.direct::before { background-color: #ffb800; }
.traffic-list li.search::before { background-color: #ff4d4f; }
.traffic-list li.referring::before { background-color: #65b531; }

.traffic-chart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Small Chart Card */
/* .small-chart-card {
    position: absolute;
    top: 15%;
    right: 5%;
    background: #fff;
    border-radius: 8px;
    padding: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    z-index: 3;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
} */

/* A Badges */
.badge-a {
    position: absolute;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6b778d, #3c4454);
    color: #fff;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: -3px 5px 10px rgba(0,0,0,0.15);
    border: 2px solid #2d3440;
    z-index: 4;
}

.badge-a span {
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.85rem;
}

.badge-1 {
    top: 22%;
    right: -2%;
}

.badge-2 {
    bottom: -15%;
    right: 15%;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-content {
        text-align: center;
        margin-bottom: 4rem;
        padding-right: 0 !important;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-images-container {
        margin-bottom: 2rem;
    }
    
    .overlap-img-wrapper {
        left: -5%;
        width: 50%;
    }
    
    .traffic-card {
        right: -5%;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .traffic-card {
        right: 0;
        transform: scale(0.9);
        transform-origin: right bottom;
    }
    .overlap-img-wrapper {
        left: 0;
        bottom: 10%;
    }
}

/* ================= SEO Articles Section ================= */
.seo-articles-section {
    background-color: #fff;
    overflow-x: hidden;
    padding-top: 30px;
    padding-bottom: 32px;
}

.section-title-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-left: 10px;
}

.title-line {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 1.5px;
    background-color: #1a1a1a;
    z-index: 2;
}

.section-title {
    margin: 0;
    font-weight: 800;
    font-size: 1.8rem;
    color: #1a1a1a;
    z-index: 3;
    letter-spacing: -1px;
}

.title-bg-circle {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background-color: var(--primary-green);
    border-radius: 50%;
    z-index: -1;
}

.slider-controls {
    display: flex;
    gap: 12px;
}

.btn-slider {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #d1d1d1;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
    padding: 0;
}

.btn-slider:hover, .btn-slider.next-btn {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

/* Slider Container */
.articles-slider-container {
    position: relative;
    width: auto;
    margin-right: calc(-50vw + 50%);
}

.articles-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 20px;
    padding-top: 10px;
    padding-right: calc(50vw - 50%);
}

.articles-slider::-webkit-scrollbar {
    display: none;
}

.article-card {
    flex: 0 0 85%;
    cursor: pointer;
}

.card-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9.5;
    border-radius: 12px;
    overflow: hidden;
    background: #f4f4f4;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.card-content .category {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.article-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.article-card:hover .article-title {
    color: #000;
}

.article-meta {
    font-size: 0.8rem;
    color: #888;
}

.author-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 8px;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: #333;
}

.meta-separator {
    margin: 0 6px;
    color: #ccc;
}

/* Responsive slider */
@media (min-width: 576px) {
    .article-card {
        flex: 0 0 calc((540px - 30px - 25px) / 2);
    }
}

@media (min-width: 768px) {
    .article-card {
        flex: 0 0 calc((720px - 30px - 25px) / 2);
    }
}

@media (min-width: 992px) {
    .article-card {
        flex: 0 0 calc((960px - 30px - 50px) / 3);
    }
}

@media (min-width: 1200px) {
    .article-card {
        flex: 0 0 calc((1140px - 30px - 50px) / 3);
    }
}

@media (min-width: 1400px) {
    .article-card {
        flex: 0 0 calc((1320px - 30px - 50px) / 3);
    }
}


/* ================= SECTION HEADER ================= */

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
    padding-top: 12px;
}

/* Arrow Controls Right Side */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-left: auto;
}

/* Responsive */
@media (max-width: 767px) {

    .section-header {
        flex-direction: row;
        align-items: center;
    }

    .slider-controls {
        margin-left: auto;
    }
}
/* ================= Forum CTA Section ================= */
.forum-cta-section {
    background-color: #121212;
    background-image: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(60, 60, 60, 0.45) 0%, transparent 70%);
    color: #ffffff;
    padding: 110px 0 120px;
    position: relative;
    overflow: hidden;
}

/* Floating Images */
@keyframes smoothFloat {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-14px); }
    100% { transform: translateY(0px); }
}

.floating-img {
    position: absolute;
    border-radius: 14px;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    animation: smoothFloat 6s ease-in-out infinite;
}

.floating-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.floating-img:hover {
    animation-play-state: paused;
}

/* ── Desktop positions (≥1200px) ── */
@media (min-width: 1200px) {
    /* Left column */
    .img-l-1 { width: 82px;  height: 82px;  top: 13%;    left: 15%;  animation-delay: 0s;   animation-duration: 2.5s; }
    .img-l-2 { width: 58px;  height: 58px;  top: 46%;    left: 22%;  animation-delay: 0.5s; animation-duration: 3.5s; }
    .img-l-3 { width: 112px; height: 112px; bottom: 14%; left: 9%;   animation-delay: 1s;   animation-duration: 3s;   }

    /* Right column */
    .img-r-1 { width: 92px;  height: 92px;  top: 10%;    right: 15%; animation-delay: 0.3s; animation-duration: 3s;   }
    .img-r-2 { width: 58px;  height: 58px;  top: 48%;    right: 23%; animation-delay: 0.8s; animation-duration: 2.8s; }
    .img-r-3 { width: 100px; height: 100px; bottom: 10%; right: 9%;  animation-delay: 1.2s; animation-duration: 3.8s; }
}

@media (max-width: 1199px) {
    .floating-img { display: none; }
}

/* ── Badge ── */
.badge-forum {
    background-color: rgba(255, 255, 255, 0.09);
    color: #e8e8e8;
    padding: 7px 16px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    border: 1px solid rgba(255,255,255,0.1);
    display: inline-block;
}

/* ── Typography ── */
.cta-heading {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -1px;
    color: #fff;
    margin-top: 1rem;
    margin-bottom: 0.85rem;
}

.cta-subheading {
    font-size: 1rem;
    color: #8a8a8a;
    max-width: 460px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* ── CTA Actions row ── */
.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 0;
}

/* ── Learn More button ── */
.btn-learn-more {
    background-color: var(--primary-green, #65b531);
    color: #fff;
    padding: 6px 6px 6px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
     text-transform: none !important;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    white-space: nowrap;
}

.btn-learn-more:hover {
    background-color: #569d2a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(101, 181, 49, 0.32);
}

.btn-learn-more .arrow-circle {
    background-color: #fff;
    color: var(--primary-green, #65b531);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 14px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn-learn-more:hover .arrow-circle {
    transform: translateX(3px);
}

/* ── Members info ── */
.members-info {
    display: flex;
    align-items: center;
    gap: 0;
}

.avatar-stack {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.avatar-stack img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #1a1a1a;
    margin-left: -10px;
    object-fit: cover;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.members-text {
    line-height: 1.25;
}

.members-count {
    font-size: 0.88rem;
    font-weight: 500;
    color: #fff;
}

.members-status {
    font-size: 0.72rem;
    color: #777;
    margin-top: 1px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .cta-heading { font-size: 2.4rem; }
    .forum-cta-section { padding: 80px 0 90px; }
}

@media (max-width: 576px) {
    .cta-heading { font-size: 1.9rem; letter-spacing: -0.5px; }
    .cta-actions { flex-direction: column; gap: 1.5rem !important; }
    .members-info { align-self: center; }
}
/* ================= Social Articles Section ================= */
     /* ===== SECTION ===== */
        .social-articles-section {
            background-color: #fff;
            padding: 40px 0 60px;
        }

        /* ===== SECTION HEADER ===== */
        .social-section-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 24px;
        }

        .social-title-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--primary-green);
            flex-shrink: 0;
        }

        .social-section-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0;
            letter-spacing: 0.2px;
        }

        /* ===== CATEGORY ===== */
        .social-category {
            font-size: 0.72rem;
            font-weight: 600;
            color: var(--primary-green);
            margin-bottom: 5px;
            display: block;
        }

        /* ===== MAIN LAYOUT ===== */
        .social-articles-row {
            display: flex;
            gap: 24px;
            align-items: stretch;
        }

        /* Left: ~55% */
        .social-col-featured {
            flex: 0 0 calc(55% - 12px);
            max-width: calc(55% - 12px);
            display: flex;
            flex-direction: column;
        }

        /* Right: remaining */
        .social-col-list {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
        }

        /* ===== FEATURED CARD ===== */
        .social-featured-card {
            display: flex;
            flex-direction: column;
            cursor: pointer;
            text-decoration: none;
            flex: 1;
        }

        .social-featured-img-wrapper {
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
            background: #eee;
            /* Match height of right column ~3 cards */
            flex: 1;
            min-height: 0;
        }

        .social-featured-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .social-featured-card:hover .social-featured-img-wrapper img {
            transform: scale(1.04);
        }

        .social-card-content {
            padding-top: 14px;
            flex-shrink: 0;
        }

        .social-large-title {
            font-size: 1.45rem;
            font-weight: 800;
            line-height: 1.3;
            color: var(--text-dark);
            margin: 4px 0 10px;
            transition: color 0.3s ease;
        }

        .social-featured-card:hover .social-large-title {
            color: var(--primary-green);
        }

        /* Meta */
        .social-article-meta {
            display: flex;
            align-items: center;
            gap: 7px;
            flex-wrap: wrap;
        }

        .social-author-avatar {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            object-fit: cover;
        }

        .social-author-name {
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .social-meta-sep { color: #ccc; font-size: 0.8rem; }

        .social-article-date {
            font-size: 0.74rem;
            color: #888;
        }

        /* ===== RIGHT COL — fills same height as left ===== */
        .social-right-col {
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .social-list-card {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            flex: 1;
            min-height: 0;
            padding: 0 0 18px;
            cursor: pointer;
            text-decoration: none;
            transition: transform 0.25s ease;
        }

        .social-list-card:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .social-list-card + .social-list-card {
            padding-top: 18px;
        }

        .social-list-card:hover {
            transform: translateX(3px);
        }

        /* Big square-ish thumbnail matching the image */
        .social-list-img-wrapper {
            width: 200px;
            height: 145px;
            border-radius: 10px;
            overflow: hidden;
            background: #f4f4f4;
            flex-shrink: 0;
        }

        .social-list-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .social-list-card:hover .social-list-img-wrapper img {
            transform: scale(1.06);
        }

        .social-list-content {
            flex: 1;
            min-width: 0;
            padding-top: 4px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        /* Bigger bolder title matching image */
        .social-small-title {
            font-size: 1.2rem;
            font-weight: 800;
            line-height: 1.35;
            color: var(--text-dark);
            margin: 0;
            transition: color 0.3s ease;
        }

        .social-list-card:hover .social-small-title {
            color: var(--primary-green);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 991px) {
            .social-col-featured { flex: 0 0 calc(50% - 12px); max-width: calc(50% - 12px); }
            .social-large-title { font-size: 1.2rem; }
            .social-list-img-wrapper { width: 160px; height: 120px; }
            .social-small-title { font-size: 1.05rem; }
        }

        @media (max-width: 767px) {
            .social-articles-section { padding: 28px 0 36px; }
            .social-articles-row { flex-direction: column; gap: 20px; }
            .social-col-featured { flex: none; max-width: 100%; width: 100%; }
            .social-col-list { width: 100%; }
            .social-right-col { height: auto; }
            .social-list-card { flex: none; padding: 14px 0; }
            .social-list-card:first-child { padding-top: 0; }
            .social-list-img-wrapper { width: 140px; height: 100px; max-height: 100px; min-height: 100px; }
            .social-featured-img-wrapper { flex: none; aspect-ratio: 16 / 9; height: auto; }
            .social-featured-card { flex: none; }
            .social-col-featured { flex: none; }
            .social-large-title { font-size: 1.15rem; }
            .social-small-title { font-size: 1rem; }
        }

        @media (max-width: 480px) {
            .social-large-title { font-size: 1rem; }
            .social-list-img-wrapper { width: 110px; height: 82px; min-height: 82px; max-height: 82px; }
            .social-list-card { gap: 12px; }
            .social-small-title { font-size: 0.9rem; }
        }
/* ================= Newsletter Section ================= */
 /* ===== NEWSLETTER SECTION ===== */
        .newsletter-section {
            background-color: #000;
            color: #fff;
            position: relative;
            isolation: isolate;
            overflow: hidden;
        }

        /* ===== ARCH & NODES ===== */
        .arch-container {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            height: 100%;
            max-height: 100%;
            overflow: hidden;
            pointer-events: none;
            z-index: 0;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            padding-top: 70px;
            -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 20%, rgba(0,0,0,0) 70%);
            mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 20%, rgba(0,0,0,0) 70%);
        }

        @keyframes rotateArch {
            from { transform: rotate(0deg); }
            to   { transform: rotate(360deg); }
        }

        @keyframes counterRotateArch {
            from { transform: rotate(0deg); }
            to   { transform: rotate(-360deg); }
        }

        @keyframes smoothFloat {
            0%, 100% { transform: translateY(0px); }
            50%      { transform: translateY(-6px); }
        }

        .arch-path {
            position: relative;
            flex-shrink: 0;
            width: 900px;
            height: 900px;
            border-radius: 50%;
            border: 1px dashed rgba(255, 255, 255, 0.12);
            animation: rotateArch 40s linear infinite;
        }

        .sem-circle-wrapper {
            position: absolute;
            left: 50%;
            top: 50%;
            width: 70px;
            height: 70px;
            margin-top: -35px;
            margin-left: -35px;
        }

        .sem-circle-rotator {
            width: 100%;
            height: 100%;
            animation: counterRotateArch 40s linear infinite;
        }

        .sem-circle {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background-color: #242424;
            color: #888;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 700;
            font-size: 1.05rem;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
            animation: smoothFloat 6s ease-in-out infinite;
        }

        .circle-1  .sem-circle { animation-delay: 0s;   animation-duration: 5s;   }
        .circle-2  .sem-circle { animation-delay: 1s;   animation-duration: 7s;   }
        .circle-3  .sem-circle { animation-delay: 2s;   animation-duration: 6s;   }
        .circle-4  .sem-circle { animation-delay: 0.5s; animation-duration: 6.5s; }
        .circle-5  .sem-circle { animation-delay: 1.5s; animation-duration: 5.5s; }
        .circle-6  .sem-circle { animation-delay: 2.5s; animation-duration: 7.5s; }
        .circle-7  .sem-circle { animation-delay: 0.8s; animation-duration: 6.8s; }
        .circle-8  .sem-circle { animation-delay: 1.2s; animation-duration: 5.8s; }
        .circle-9  .sem-circle { animation-delay: 0.3s; animation-duration: 7.2s; }
        .circle-10 .sem-circle { animation-delay: 2.1s; animation-duration: 6.3s; }
        .circle-11 .sem-circle { animation-delay: 0.7s; animation-duration: 5.2s; }
        .circle-12 .sem-circle { animation-delay: 1.8s; animation-duration: 6.7s; }
        .circle-13 .sem-circle { animation-delay: 2.4s; animation-duration: 5.9s; }
        .circle-14 .sem-circle { animation-delay: 1.1s; animation-duration: 7.1s; }

        /* Radius = 450px */
        .circle-1  { transform: rotate(0deg)      translateY(-450px) rotate(0deg);       }
        .circle-2  { transform: rotate(25.71deg)  translateY(-450px) rotate(-25.71deg);  }
        .circle-3  { transform: rotate(51.42deg)  translateY(-450px) rotate(-51.42deg);  }
        .circle-4  { transform: rotate(77.14deg)  translateY(-450px) rotate(-77.14deg);  }
        .circle-5  { transform: rotate(102.85deg) translateY(-450px) rotate(-102.85deg); }
        .circle-6  { transform: rotate(128.57deg) translateY(-450px) rotate(-128.57deg); }
        .circle-7  { transform: rotate(154.28deg) translateY(-450px) rotate(-154.28deg); }
        .circle-8  { transform: rotate(180deg)    translateY(-450px) rotate(-180deg);     }
        .circle-9  { transform: rotate(205.71deg) translateY(-450px) rotate(-205.71deg); }
        .circle-10 { transform: rotate(231.42deg) translateY(-450px) rotate(-231.42deg); }
        .circle-11 { transform: rotate(257.14deg) translateY(-450px) rotate(-257.14deg); }
        .circle-12 { transform: rotate(282.85deg) translateY(-450px) rotate(-282.85deg); }
        .circle-13 { transform: rotate(308.57deg) translateY(-450px) rotate(-308.57deg); }
        .circle-14 { transform: rotate(334.28deg) translateY(-450px) rotate(-334.28deg); }

        /* ===== CONTENT ===== */
        .newsletter-section .container {
            position: relative;
            z-index: 1;
            padding-top: 180px !important;
            padding-bottom: 100px !important;
        }

        /* Badge */
        .badge-forum {
            display: inline-block;
            background-color: #1a1a1a;
            color: #fff;
            font-size: 0.85rem;
            font-weight: 600;
            padding: 8px 20px;
            border-radius: 5px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            letter-spacing: 0.3px;
            margin-bottom: 1rem;
        }

        /* Typography */
        .newsletter-heading {
            font-size: 3.2rem;
            font-weight: 800;
            letter-spacing: -1px;
            color: #fff;
            line-height: 1.15;
        }

        .newsletter-subheading {
            color: #888;
            font-size: 1.05rem;
            line-height: 1.6;
            max-width: 550px;
            margin: 0 auto;
            padding: 21px;
        }

        /* ===== FORM ===== */
        .newsletter-form {
            max-width: 580px;
            background: transparent;
            padding: 0;
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 12px;
            width: 100%;
        }

        /* Input takes remaining space */
        .input-wrapper {
            background: #fff;
            border-radius: 50px;
            flex: 1 1 auto;
            min-width: 0;
            position: relative;
            height: 54px;
            display: flex;
            align-items: center;
        }

        .input-wrapper .mail-icon {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: #aaa;
            flex-shrink: 0;
        }

        .newsletter-form .form-control {
            border: none;
            background: transparent;
            padding: 14px 20px 14px 48px;
            font-size: 1rem;
            color: #333;
            width: 100%;
            height: 100%;
            border-radius: 50px;
        }

        .newsletter-form .form-control:focus {
            box-shadow: none;
            outline: none;
        }

        .newsletter-form .form-control::placeholder {
            color: #aaa;
        }

        /* Send button — same row as input */
        .btn-send {
            background-color: var(--primary-green);
            color: #fff;
            border: none;
            border-radius: 50px;
            padding: 0 24px;
            height: 54px;
            font-weight: 600;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s ease;
            white-space: nowrap;
            flex-shrink: 0;
            cursor: pointer;
        }

        .btn-send:hover {
            background-color: #569d2a;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(101, 181, 49, 0.3);
        }

        .arrow-circle-small {
            background-color: #fff;
            color: var(--primary-green);
            width: 26px;
            height: 26px;
            border-radius: 50%;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .btn-send:hover .arrow-circle-small {
            transform: translateX(4px);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1199px) {
            .newsletter-section .container { padding-top: 120px !important; }
            .newsletter-heading { font-size: 2.8rem; }
        }

        @media (max-width: 991px) {
            .arch-container { padding-top: 20px; }
            .arch-path { width: 800px; height: 800px; }
            .circle-1  { transform: rotate(0deg)      translateY(-400px) rotate(0deg);       }
            .circle-2  { transform: rotate(25.71deg)  translateY(-400px) rotate(-25.71deg);  }
            .circle-3  { transform: rotate(51.42deg)  translateY(-400px) rotate(-51.42deg);  }
            .circle-4  { transform: rotate(77.14deg)  translateY(-400px) rotate(-77.14deg);  }
            .circle-5  { transform: rotate(102.85deg) translateY(-400px) rotate(-102.85deg); }
            .circle-6  { transform: rotate(128.57deg) translateY(-400px) rotate(-128.57deg); }
            .circle-7  { transform: rotate(154.28deg) translateY(-400px) rotate(-154.28deg); }
            .circle-8  { transform: rotate(180deg)    translateY(-400px) rotate(-180deg);     }
            .circle-9  { transform: rotate(205.71deg) translateY(-400px) rotate(-205.71deg); }
            .circle-10 { transform: rotate(231.42deg) translateY(-400px) rotate(-231.42deg); }
            .circle-11 { transform: rotate(257.14deg) translateY(-400px) rotate(-257.14deg); }
            .circle-12 { transform: rotate(282.85deg) translateY(-400px) rotate(-282.85deg); }
            .circle-13 { transform: rotate(308.57deg) translateY(-400px) rotate(-308.57deg); }
            .circle-14 { transform: rotate(334.28deg) translateY(-400px) rotate(-334.28deg); }
            .newsletter-section .container { padding-top: 110px !important; padding-bottom: 70px !important; }
            .newsletter-heading { font-size: 2.4rem; }
        }

        @media (max-width: 767px) {
            .arch-container { display: none; }
            .newsletter-section .container { padding-top: 50px !important; padding-bottom: 50px !important; }
            .newsletter-heading { font-size: 2rem; }
            .newsletter-subheading { font-size: 0.95rem; }
            .badge-forum { font-size: 0.8rem; padding: 6px 16px; }
            .newsletter-form { width: 100%; }
            .input-wrapper { width: 100%; }
            .btn-send { width: 100%; justify-content: center; padding: 15px 24px; height: auto; }
        }

        @media (max-width: 480px) {
            .newsletter-heading { font-size: 1.75rem; letter-spacing: -0.5px; }
            .newsletter-subheading { font-size: 0.9rem; }
        }
/* news letter section end */

/* Fix Hero Layout */
.hero-section .row {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.hero-content,
.hero-images-container {
    width: 100%;
}

/* Desktop */
@media (min-width: 992px) {
    .hero-content {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .hero-section .col-lg-6:last-child {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .hero-images-container {
        max-width: 520px;
        margin-left: auto;
    }
}

/* Mobile */
@media (max-width: 991px) {
    .hero-section .row {
        flex-wrap: wrap;
    }

    .hero-content,
    .hero-section .col-lg-6:last-child {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .hero-images-container {
        margin-top: 40px;
    }
}


  /* ================= Small Chart Card ================= */

.small-chart-card {
    position: absolute;
    top: 15%;
    right: 13%;
    width: 82px;
    height: 82px;
    background: #fff;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    z-index: 3;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* GIF Image */
.small-chart-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 10px;
}


/* Responsive */
@media (max-width: 991px) {
    .small-chart-card {
        width: 90px;
        height: 90px;
        top: 12%;
        right: 2%;
        padding: 8px;
    }
}

@media (max-width: 576px) {
    .small-chart-card {
        width: 75px;
        height: 75px;
        top: 10%;
        right: 0;
        padding: 6px;
    }

    .small-chart-card img {
        border-radius: 8px;
    }
}


     /* ================= Enlarged Traffic Chart ================= */

.traffic-chart {
    width: 90px;   /* Increased size */
    height: 90px;  /* Increased size */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

/* GIF Image */
.traffic-chart img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Bigger Traffic Card */
.traffic-card {
    position: absolute;
    bottom: 6%;
    right: -12%;
    background: #fff;
    border-radius: 14px;
    padding: 18px 22px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.14);
    z-index: 3;
    gap: 18px;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    height: 130px;
    border: 1px solid #000
}

/* Text Styling */
.traffic-details h6 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.traffic-list li {
    font-size: 0.82rem;
    margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 991px) {

    .traffic-chart {
        width: 75px;
        height: 75px;
    }

    .traffic-card {
        right: -5%;
        padding: 16px 18px;
    }
}

@media (max-width: 576px) {

    .traffic-chart {
        width: 60px;
        height: 60px;
    }

    .traffic-card {
        transform: scale(0.92);
        transform-origin: right bottom;
        right: 0;
    }
}

/* // */
    .btn-audit:hover .arrow-icon svg {
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

.btn-audit .arrow-icon svg {
    transition: transform 0.3s ease;
}
   /* // */
    .btn-learn-more .arrow-circle svg {
    transition: transform 0.3s ease;
}

.btn-learn-more:hover .arrow-circle svg {
    transform: rotate(-45deg);
}

.btn-audit {
    text-transform: none !important;
}
