/* =========================
   DIGITAL MARKETING SLIDER
========================= */

.dm-hero-slider {
    background-color: #f8fafc;
    overflow: hidden;
}

.dm-slider-img {
    height: 80vh;
    object-fit: cover;
    /* Light overlay to maintain high-end white aesthetic while keeping text readable */
    filter: brightness(0.9) contrast(1.05);
}

.carousel-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.4), transparent);
    pointer-events: none;
}

.carousel-caption {
    bottom: 35%;
    text-align: left;
    left: 10%;
    right: 10%;
    color: #1a1a1a;
    z-index: 10;
}

.dm-slider-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300; /* Light font for high-end look */
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.dm-slider-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: #4a4a4a;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .dm-slider-img { height: 60vh; }
    .carousel-caption { text-align: center; bottom: 20%; }
}

/* =========================
   DIGITAL GROWTH INTRO SECTION
========================= */

.dm-intro-section {
    background-color: #fdf8f2; /* Warm creamish-white background */
    padding: 120px 0;
    overflow: hidden;
    position: relative;
}

.dm-section-white {
    background-color: #ffffff;
}

/* Entrance Animation for the section */
@keyframes dmFadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.dm-intro-section .container {
    animation: dmFadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

/* Left Column - Image Container & Effects */
.dm-image-wrapper {
    position: relative;
    z-index: 1;
}

/* Floating gradient glow behind image */
.dm-glow-effect {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(253, 248, 242, 0) 70%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(40px);
}

.dm-image-card {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease;
}

.dm-image-card img {
    width: 100%;
    height: auto;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dm-image-card:hover img {
    transform: scale(1.06);
}

/* Right Column - Typography & Elements */
.dm-subtitle-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0844a4 0%, #08a7d8 100%);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 8px 22px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(8, 68, 164, 0.15);
}

.dm-intro-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800; /* Thick modern font weight */
    color: #121826;
    line-height: 1.2;
}

.dm-sub-title {
    color: #3b82f6;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dm-intro-text {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.8;
    font-weight: 400;
}

.dm-feature-list {
    list-style: none;
    padding: 0;
}

.dm-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1.05rem;
}

.dm-feature-list i {
    color: #3b82f6;
    font-size: 1.25rem;
}

.dm-cta-btn {
    background: linear-gradient(135deg, #121826 0%, #3b82f6 100%);
    color: #ffffff;
    padding: 16px 42px;
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.dm-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
    color: #ffffff;
}

@media (max-width: 991px) {
    .dm-intro-section { padding: 80px 0; }
    .dm-content-box { text-align: center; }
    .dm-feature-list li { justify-content: center; }
}