/* ==========================================================================
   DIGITAL MARKETING HERO SECTION STYLING (#000B33 PALETTE)
   ========================================================================== */

/* Guaranteed Element Visibility */
.hero-agency-saas, 
.hero-agency-saas * {
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-agency-saas {
    background: #000B33 !important; /* Deep Dark Navy Theme */
    min-height: 85vh;
    padding-top: 110px;
    padding-bottom: 80px;
    color: #FFFFFF !important;
}

/* Background Grid & Ambient Glow */
.bg-grid-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.5;
}

.hero-glow-accent {
    position: absolute;
    top: 25%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 550px;
    height: 380px;
    background: radial-gradient(circle, rgba(242, 121, 21, 0.22) 0%, rgba(56, 189, 248, 0.12) 60%, transparent 100%);
    filter: blur(110px);
    pointer-events: none;
}

/* Left Column Styling */
.agency-pill-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 6px 18px;
    color: #E2E8F0;
    font-size: 0.85rem;
    backdrop-filter: blur(10px);
}

.hero-agency-title {
    font-size: 40px !important;
    font-weight: 800;
    line-height: 1.28;
    letter-spacing: -0.5px;
}

.text-gradient-marketing {
    background: linear-gradient(135deg, #F27915 0%, #FF9436 50%, #38BDF8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-feature-chip {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 6px 14px;
    color: #CBD5E1;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Call To Action Buttons */
.btn-agency-glow {
    background: linear-gradient(135deg, #F27915 0%, #E06300 100%);
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 0 25px rgba(242, 121, 21, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-agency-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(242, 121, 21, 0.65);
}

.btn-agency-glass {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #FFFFFF !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-agency-glass:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Right Column: Hero Circle Showcase */
.hero-circle-wrapper {
    position: relative;
    width: 440px;
    height: 440px;
    margin: 0 auto;
}

.hero-circle-frame {
    width: 100%;
    height: 100%;
    border-radius: 50% !important;
    border: 6px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(242, 121, 21, 0.25);
    overflow: hidden !important;
    position: relative;
    z-index: 2;
    background: #00124D;
}

.hero-circle-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 0.6s ease;
}

.hero-circle-wrapper:hover .hero-circle-img {
    transform: scale(1.08);
}

/* Rotating Dashed Ring Animation */
.circle-dashed-ring {
    position: absolute;
    top: -18px;
    left: -18px;
    right: -18px;
    bottom: -18px;
    border-radius: 50%;
    border: 2px dashed rgba(242, 121, 21, 0.6);
    animation: rotateCircleRing 25s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes rotateCircleRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Floating Badges */
.floating-circle-badge {
    position: absolute;
    background: rgba(0, 18, 77, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    z-index: 10;
    transition: transform 0.3s ease;
}

.floating-circle-badge:hover {
    transform: translateY(-4px);
}

.badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.badge-top {
    top: 20px;
    right: -25px;
}

.badge-bottom {
    bottom: 20px;
    left: -25px;
}

/* Responsiveness */
@media (max-width: 991.98px) {
    .hero-agency-title { font-size: 32px !important; }
    .hero-circle-wrapper { width: 320px; height: 320px; }
    .badge-top { top: 0px; right: -10px; }
    .badge-bottom { bottom: 0px; left: -10px; }
}

@media (max-width: 575.98px) {
    .hero-circle-wrapper { width: 260px; height: 260px; }
    .floating-circle-badge { padding: 8px 14px; }
}



/* ==========================================================================
   MOBILE VIEW CENTER ALIGNMENT FIX (< 991.98px)
   ========================================================================== */
@media (max-width: 991.98px) {
    
    /* Left Column Content Center Alignment */
    .hero-agency-saas .col-lg-6:first-child {
        text-align: center !important;
    }

    /* Headline & Description Centering */
    .hero-agency-title { 
        font-size: 32px !important; 
        text-align: center !important;
    }

    .hero-agency-desc {
        padding-right: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 550px;
    }

    /* Badges & Feature Chips Center Flexing */
    .agency-pill-badge {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-agency-saas .d-flex.flex-wrap {
        justify-content: center !important;
    }

    /* Action Buttons Full-Width & Centered Stack */
    .btn-agency-glow,
    .btn-agency-glass {
        width: 100% !important;
        justify-content: center !important;
    }

    /* Counters Row Centering */
    .hero-agency-saas .row.g-3 {
        justify-content: center !important;
        text-align: center !important;
    }

    /* Circle Showcase Spacing */
    .hero-circle-wrapper { 
        width: 320px; 
        height: 320px; 
        margin-top: 20px !important;
    }
    
    .badge-top { top: 0px; right: -10px; }
    .badge-bottom { bottom: 0px; left: -10px; }
}

@media (max-width: 575.98px) {
    .hero-agency-title { font-size: 28px !important; }
    .hero-circle-wrapper { width: 260px; height: 260px; }
    .floating-circle-badge { padding: 8px 14px; }
}