 :root { 
            --bg-color: #f9f9f9; 
            --surface-color: #ffffff; 
            --border-color: rgba(0, 0, 0, 0.08); 
            --text-primary: #1a1a1a; 
            --text-secondary: rgba(0, 0, 0, 0.55); 
            --accent-start: #ff4b2b; 
            --accent-end: #ff416c; 
            --gradient-main: linear-gradient(135deg, var(--accent-start) 0%, var(--accent-end) 100%); 
            --nav-height: 80px; 
        } * { margin: 0; padding: 0; box-sizing: border-box; }        
        body { font-family: 'Inter', sans-serif; background-color: var(--bg-color); color: var(--text-primary); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }        
        h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; font-weight: 800; line-height: 1.1; }        
        a { text-decoration: none; color: inherit; }        
        .text-gradient { background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; }        
        
        @keyframes safeFadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }        
        .reveal { animation: safeFadeIn 1s ease-out forwards; }        
        .delay-1 { animation-delay: 0.1s; } .delay-2 { animation-delay: 0.2s; } .delay-3 { animation-delay: 0.3s; }        
        .container { max-width: 1300px; margin: 0 auto; padding: 0 5%; }        
        
        /* HEADER STYLES */
        .site-header { position: fixed; top: 0; left: 0; width: 100%; height: var(--nav-height); background: rgba(249, 249, 249, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-color); z-index: 1000; display: flex; align-items: center; }        
        .nav-wrapper { display: flex; justify-content: space-between; align-items: center; width: 100%; }        
        .logo { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 900; letter-spacing: -0.5px; color: var(--text-primary); position: relative; }        
        .logo span { color: var(--accent-start); }        
        .nav-links { display: flex; gap: 2.5rem; list-style: none; }        
        .nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--text-secondary); transition: color 0.3s ease; position: relative; }        
        .nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--gradient-main); transition: width 0.3s ease; }        
        .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }        
        .nav-links a:hover, .nav-links a.active { color: var(--text-primary); }        
        .nav-btn { background: #1a1a1a; border: none; padding: 0.6rem 1.5rem; border-radius: 30px; font-weight: 600; font-size: 0.9rem; transition: all 0.3s ease; color: #fff; position: relative; overflow: hidden; }        
        .nav-btn:hover { background: #000; box-shadow: 0 4px 15px rgba(0,0,0,0.15); transform: translateY(-2px); }        
        .mobile-menu-btn { display: none; background: none; border: none; color: var(--text-primary); font-size: 1.5rem; cursor: pointer; }        
        .dropdown { position: relative; display: inline-block; }        
        .dropdown-content { display: none; position: absolute; background-color: var(--surface-color); min-width: 214px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); z-index: 1002; border-radius: 12px; border: 1px solid var(--border-color); top: 100%; left: 0; padding: 0.5rem 0; }        
        .dropdown-content a { color: var(--text-primary); padding: 0.8rem 1.5rem; display: block; font-size: 0.9rem; }        
        .dropdown:hover .dropdown-content { display: block; }        
        .mobile-nav-active .nav-links { display: flex; flex-direction: column; position: absolute; top: var(--nav-height); left: 0; width: 100%; background: rgba(249, 249, 249, 0.98); padding: 2rem; border-bottom: 1px solid var(--border-color); text-align: center; z-index: 1001; }        

        /* --- NEW HERO SECTION (Layout matched, Original Colors) --- */
        .hero-split {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding-top: var(--nav-height);
            background: url('assets/hero_bg.webp') center/cover no-repeat;
            overflow: hidden;
        }
        
        .hero-split::before { 
            content: ''; 
            position: absolute; 
            top: 0; left: 0; right: 0; bottom: 0; 
            background: radial-gradient(circle at center, rgba(249,249,249,0.8) 0%, rgba(249,249,249,1) 90%); 
            z-index: 1; 
        }

        .hero-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 4rem;
            width: 100%;
            position: relative;
            z-index: 2;
        }
        
        .hero-text-side {
            flex: 1;
            max-width: 650px;
        }
        
        .hero-text-side h1 {
            font-size: clamp(2.5rem, 4.5vw, 4.5rem);
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            line-height: 1.1;
            letter-spacing: -2px;
        }
        
        .hero-text-side p {
            font-size: clamp(1.1rem, 1.5vw, 1.25rem);
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
            line-height: 1.6;
            font-weight: 400;
        }
        
        /* Custom Pill Button Group */
        .action-pill-group {
            display: inline-flex;
            align-items: center;
            background: #1a1a1a;
            border-radius: 50px;
            position: relative;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
      .btn-left-pill {
            background: var(--gradient-main);
            color: white;
            /* Increased right padding from 2.5rem to 3rem to make room for the circle */
            padding: 1.2rem 3rem 1.2rem 2.5rem; 
            border-radius: 50px 0 0 50px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 800;
            font-size: 1.05rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }  .btn-left-pill:hover { box-shadow: 0 5px 15px rgba(255, 75, 43, 0.4); z-index: 10; }
        
       .btn-right-pill {
            color: white;
            /* Increased left padding from 3.5rem to 3rem to balance the circle */
            padding: 1.2rem 2.5rem 1.2rem 3rem; 
            border-radius: 0 50px 50px 0;
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 600;
            font-size: 1.05rem;
            transition: background 0.3s ease;
        }
        
        .btn-right-pill:hover { background: #000; }
        
       .pill-or-divider {
            /* Changed from absolute to relative to lock onto the flex layout naturally */
            position: relative;
            margin: 0 -24px; /* Pulls the circle left and right by exactly half its width over the seam */
            flex-shrink: 0; /* Prevents the circle from squishing on small screens */
            background: white;
            color: var(--text-primary);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.95rem;
            box-shadow: inset 0 0 0 2px var(--bg-color), 0 2px 5px rgba(0,0,0,0.1);
            z-index: 5;
        } 
        /* Hero Form Side */
        .hero-form-side {
            flex: 0 0 420px;
            background: var(--surface-color);
            padding: 2.5rem;
            border-radius: 1.5rem;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            border: 1px solid var(--border-color);
        }
        
        .hero-form-side h3 {
            color: var(--text-primary);
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }
        
        .form-group { margin-bottom: 1.2rem; }
        
        .form-control {
            width: 100%;
            padding: 1rem 1.2rem;
            background: var(--bg-color);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            font-family: inherit;
            font-size: 0.95rem;
            color: var(--text-primary);
            transition: all 0.3s ease;
        }
        
        .form-control::placeholder { color: var(--text-secondary); }
        .form-control:focus { outline: none; border-color: var(--accent-start); background: white; box-shadow: 0 0 0 3px rgba(255, 75, 43, 0.1); }
        
        textarea.form-control { resize: vertical; min-height: 90px; }
        
        /* reCAPTCHA Mockup */
        .recaptcha-box {
            border: 1px solid var(--border-color);
            background: var(--bg-color);
            border-radius: 8px;
            padding: 12px 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.5rem;
        }
        .recaptcha-left { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--text-secondary); }
        .recaptcha-checkbox { width: 26px; height: 26px; background: white; border: 2px solid #c1c1c1; border-radius: 4px; cursor: pointer; }
        .recaptcha-logo-area { display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0.7; }
        .recaptcha-logo-area svg { width: 28px; height: 28px; margin-bottom: 2px; }
        .recaptcha-logo-area span { font-size: 0.55rem; color: var(--text-secondary); letter-spacing: 0.5px; }

        .btn-submit {
            width: 100%;
            background: var(--gradient-main);
            color: white;
            border: none;
            padding: 1.2rem;
            border-radius: 50px;
            font-weight: 800;
            font-size: 1.05rem;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .btn-submit:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(255, 75, 43, 0.3); }

        /* General site styles continued... */
        .marquee-wrapper { background: var(--surface-color); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); padding: 3rem 0; overflow: hidden; display: flex; align-items: center; white-space: nowrap; position: relative; }        
        .marquee { display: flex; animation: marquee 30s linear infinite; gap: 4rem; padding-right: 4rem; }        
        .marquee-item { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 800; color: rgba(0,0,0,0.1); text-transform: uppercase; letter-spacing: 2px; }        
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }        
        
        .section { padding: 8rem 0; position: relative; }        
        .section-header { text-align: center; margin-bottom: 5rem; }        
        .section-header h2 { font-size: clamp(2.5rem, 4vw, 4.5rem); margin-bottom: 1rem; color: #1a1a1a; }        
        
        .btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--gradient-main); color: #fff; padding: 1.2rem 3.5rem; border-radius: 40px; font-weight: 800; font-size: 1.1rem; transition: transform 0.4s ease, box-shadow 0.4s ease; border: none; cursor: pointer; box-shadow: 0 4px 15px rgba(255, 75, 43, 0.3); }        
        .btn-primary:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 15px 35px rgba(255, 75, 43, 0.4); }        

        .stats-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; padding: 4rem 0; margin-bottom: 4rem; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }        
        .stat-item { text-align: center; }        
        .stat-num { font-size: 4rem; font-family: 'Outfit', sans-serif; font-weight: 900; background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }        
        .stat-label { color: var(--text-secondary); font-size: 1.1rem; text-transform: uppercase; letter-spacing: 2px; margin-top: 0.5rem; }        
        
        .testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }        
        .testi-card { background: var(--surface-color); border: 1px solid var(--border-color); padding: 3rem; border-radius: 20px; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.02); display: flex; flex-direction: column; justify-content: space-between; z-index: 1; }        
        .testi-text { font-size: 1.1rem; color: var(--text-primary); margin-bottom: 2rem; font-style: italic; z-index: 2; }        
        .testi-author { display: flex; align-items: center; gap: 1rem; z-index: 2; }        
        .testi-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--gradient-main); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 1.2rem; }        
        .testi-name { font-weight: 700; font-size: 1.1rem; color: #1a1a1a; }        
        .testi-role { color: var(--accent-start); font-size: 0.9rem; }        
        
        .visual-banner { margin: 6rem 0; height: 500px; border-radius: 30px; background: url('assets/hero_bg.png') center/cover; position: relative; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border-color); }        
        .visual-banner::before { content: ''; position: absolute; inset: 0; background: rgba(249,249,249,0.7); backdrop-filter: blur(8px); }        
        .visual-banner h2 { position: relative; z-index: 2; font-size: clamp(3rem, 5vw, 5rem); text-align: center; color: #1a1a1a; }        
        
        .site-footer { border-top: 1px solid var(--border-color); padding: 5rem 0 2rem; background: var(--surface-color); }        
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }        
        .footer-brand p { color: var(--text-secondary); margin-top: 1rem; max-width: 300px; }        
        .footer-heading { font-family: 'Outfit', sans-serif; font-size: 1.2rem; margin-bottom: 1.5rem; font-weight: 600; color: #1a1a1a; }        
        .footer-links { list-style: none; }        
        .footer-links li { margin-bottom: 0.8rem; }        
        .footer-bottom { border-top: 1px solid var(--border-color); padding-top: 2rem; display: flex; justify-content: space-between; color: var(--text-secondary); font-size: 0.9rem; }        
        
        /* --- NEO-BENTO GRID --- */        
        .neo-bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.5rem; grid-auto-rows: 400px; }
        .span-8 { grid-column: span 8; } .span-4 { grid-column: span 4; } .span-12 { grid-column: span 12; }
        .neo-card { position: relative; border-radius: 2rem; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; padding: 3rem; background: var(--surface-color); border: 1px solid var(--border-color); box-shadow: 0 10px 30px rgba(0,0,0,0.02); transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease; text-decoration: none; }        
        .neo-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: 0 30px 60px rgba(255, 75, 43, 0.08); border-color: rgba(255, 75, 43, 0.2); }
        .neo-content { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 0.5rem; }        
        .neo-card h3 { font-size: 2.2rem; letter-spacing: -1px; line-height: 1.1; margin-bottom: 0.5rem; }        
        .neo-card p { font-size: 1.05rem; opacity: 0.85; line-height: 1.5; }
        .pill { align-self: flex-start; padding: 0.4rem 1.2rem; border-radius: 50px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1rem; backdrop-filter: blur(10px); }
        .neo-link { margin-top: 1rem; display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; transition: gap 0.3s ease; }        
        .neo-card:hover .neo-link { gap: 1rem; }
        .img-card .card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); z-index: 0; }        
        .neo-card:hover .card-bg { transform: scale(1.08); }        
        .img-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%); z-index: 1; pointer-events: none; }        
        .img-card .neo-content { color: #fff; }        
        .img-card .pill { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; }        
        .img-card .neo-link { color: var(--accent-start); }
        .dark-card { background: #111; color: #fff; justify-content: center; }        
        .dark-card .pill { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; }        
        .dark-card .neo-link { color: var(--accent-start); }        
        .dark-card::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at center, rgba(255,75,43,0.15) 0%, transparent 50%); z-index: 0; pointer-events: none; }
        .pattern-card { justify-content: center; background-image: radial-gradient(var(--accent-start) 1.5px, transparent 1.5px); background-size: 24px 24px; }        
        .pattern-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at center, transparent 0%, var(--surface-color) 80%); z-index: 0; }        
        .pattern-card .pill { background: rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.1); color: var(--text-primary); }        
        .pattern-card .neo-link { color: var(--accent-start); }
        .vibrant-card { background: var(--gradient-main); color: #fff; justify-content: center; border: none; }        
        .vibrant-card .pill { background: rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.3); color: #fff; }        
        .vibrant-card .neo-link { color: #fff; }

        @media (max-width: 992px) { 
            .nav-links { display: none; } 
            .mobile-menu-btn { display: block; } 
            .nav-btn { display: none; } 
            .footer-grid { grid-template-columns: 1fr 1fr; } 
            .stats-container { grid-template-columns: 1fr 1fr; } 
            .hero-container { flex-direction: column; text-align: center; padding-top: 2rem; }
            .hero-form-side { width: 100%; flex: auto; }
            .action-pill-group { margin: 0 auto; }
            .span-8, .span-4, .span-12 { grid-column: span 12; }            
            .neo-bento { grid-auto-rows: minmax(320px, auto); }
        }        
        @media (max-width: 768px) { 
            .footer-grid { grid-template-columns: 1fr; gap: 2rem; } 
            .footer-bottom { flex-direction: column; text-align: center; gap: 1rem; } 
            .stats-container { grid-template-columns: 1fr; } 
            .action-pill-group { flex-direction: column; border-radius: 20px; width: 100%; }
            .btn-left-pill, .btn-right-pill { border-radius: 20px; width: 100%; justify-content: center; padding: 1.2rem; }
            .pill-or-divider { display: none; }
            .hero-text-side h1 { font-size: 2.2rem; }
        }   
        
         /* TESTIMONIAL SLIDER STYLES */
        .testimonial-slider-container { 
            position: relative; 
            overflow: hidden; 
            max-width: 800px; 
            margin: 0 auto; 
            padding-bottom: 4rem; 
        }
        .testimonial-slider { 
            display: flex; 
            transition: transform 0.5s ease-in-out; 
        }
        .testimonial-slider .testi-card { 
            min-width: 100%; 
            box-sizing: border-box; 
            margin: 0; 
        }
        .slider-controls { 
            position: absolute; 
            bottom: 0; 
            left: 50%; 
            transform: translateX(-50%); 
            display: flex; 
            gap: 1rem; 
        }
        .slider-btn { 
            background: var(--surface-color); 
            border: 1px solid var(--border-color); 
            color: var(--text-primary); 
            width: 45px; 
            height: 45px; 
            border-radius: 50%; 
            cursor: pointer; 
            transition: all 0.3s ease; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            box-shadow: 0 4px 10px rgba(0,0,0,0.05); 
            font-size: 1.2rem;
        }
        .slider-btn:hover { 
            background: var(--gradient-main); 
            color: #fff; 
            border-color: transparent; 
            transform: translateY(-2px);
        }
        
        .dm-home-section {
    position: relative;
    padding: 7rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #fff7f1 55%, #ffffff 100%);
    overflow: hidden;
}

.dm-home-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.dm-content h2 {
    font-size: clamp(2.4rem, 4vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 1.4rem;
    color: #141414;
}

.dm-content p {
    font-size: 1.08rem;
    color: #666;
    max-width: 680px;
    margin-bottom: 1.8rem;
}

.dm-content strong {
    color: #111;
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(135deg,  #ff3d00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    color: #ff5a00;
    background: rgba(255, 106, 0, 0.1);
    border: 1px solid rgba(255, 106, 0, 0.18);
    padding: 0.55rem 1rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dm-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.dm-keywords span {
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(255, 106, 0, 0.18);
    color: #444;
    font-weight: 700;
    font-size: 0.92rem;
    box-shadow: 0 12px 30px rgba(255, 106, 0, 0.08);
    transition: all 0.3s ease;
}

.dm-keywords span:hover {
    transform: translateY(-4px);
    color: #ff5a00;
    box-shadow: 0 18px 40px rgba(255, 106, 0, 0.16);
}

.dm-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff6a00, #ff3d00);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 16px 35px rgba(255, 106, 0, 0.25);
    transition: all 0.3s ease;
}

.dm-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 45px rgba(255, 106, 0, 0.35);
}

.dm-animation-card {
    position: relative;
    min-height: 520px;
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 106, 0, 0.16);
    box-shadow: 0 35px 90px rgba(255, 106, 0, 0.13);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.dm-animation-card::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.16), transparent 68%);
    animation: pulseGlow 4s ease-in-out infinite;
}

.dm-icon-orbit {
    position: relative;
    width: 320px;
    height: 320px;
    border: 2px dashed rgba(255, 106, 0, 0.24);
    border-radius: 50%;
    animation: rotateOrbit 18s linear infinite;
}

.dm-center-icon {
    position: absolute;
    inset: 50%;
    width: 115px;
    height: 115px;
    transform: translate(-50%, -50%);
    border-radius: 32px;
    background: linear-gradient(135deg, #ff6a00, #ff3d00);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 25px 50px rgba(255, 106, 0, 0.28);
    animation: floatCenter 3s ease-in-out infinite;
}

.dm-floating-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 106, 0, 0.15);
    animation: counterRotate 18s linear infinite;
}

.icon-1 { top: -35px; left: 50%; transform: translateX(-50%); }
.icon-2 { right: -35px; top: 50%; transform: translateY(-50%); }
.icon-3 { bottom: -35px; left: 50%; transform: translateX(-50%); }
.icon-4 { left: -35px; top: 50%; transform: translateY(-50%); }
.icon-5 { top: 35px; left: 35px; }

.dm-mini-card {
    position: absolute;
    background: #fff;
    border: 1px solid rgba(255, 106, 0, 0.18);
    border-radius: 22px;
    padding: 1rem 1.2rem;
    box-shadow: 0 20px 45px rgba(255, 106, 0, 0.12);
    animation: floatCard 4s ease-in-out infinite;
}

.dm-mini-card strong {
    display: block;
    color: #111;
    font-size: 1rem;
}

.dm-mini-card span {
    color: #777;
    font-size: 0.88rem;
}

.card-1 {
    top: 70px;
    left: 45px;
}

.card-2 {
    right: 45px;
    bottom: 80px;
    animation-delay: 1.2s;
}

.dm-bg-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 106, 0, 0.08);
    filter: blur(12px);
}

.shape-one {
    width: 260px;
    height: 260px;
    left: -80px;
    top: 80px;
    animation: moveShape 8s ease-in-out infinite;
}

.shape-two {
    width: 320px;
    height: 320px;
    right: -120px;
    bottom: 20px;
    animation: moveShape 10s ease-in-out infinite reverse;
}

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-2 {
    transition-delay: 0.2s;
}

@keyframes rotateOrbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes counterRotate {
    from { rotate: 0deg; }
    to { rotate: -360deg; }
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.08); opacity: 1; }
}

@keyframes floatCenter {
    0%, 100% { margin-top: 0; }
    50% { margin-top: -12px; }
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@keyframes moveShape {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -25px); }
}

@media (max-width: 992px) {
    .dm-home-grid {
        grid-template-columns: 1fr;
    }

    .dm-animation-card {
        min-height: 460px;
    }
}

@media (max-width: 576px) {
    .dm-home-section {
        padding: 5rem 0;
    }

    .dm-icon-orbit {
        width: 245px;
        height: 245px;
    }

    .dm-center-icon {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
    }

    .dm-floating-icon {
        width: 58px;
        height: 58px;
        font-size: 1.45rem;
    }

    .dm-mini-card {
        display: none;
    }
}

.dm-tools-section {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.dm-tools-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.dm-tools-heading span {
    display: inline-block;
    color: #ff5a00;
    background: rgba(255, 106, 0, 0.1);
    padding: 0.55rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.dm-tools-heading h2 {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    color: #111;
    position: relative;
    display: inline-block;
}

.dm-tools-heading h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -14px;
    transform: translateX(-50%);
    width: 90px;
    height: 3px;
    background: linear-gradient(135deg, #ff6a00, #ff3d00);
    border-radius: 50px;
}

.dm-tools-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.dm-tool-card {
    min-height: 150px;
    background: #fff;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: all 0.35s ease;
    animation: toolFadeUp 0.8s ease both;
}

.dm-tool-card:hover {
    transform: translateY(-8px);
    background: #fff7f1;
    box-shadow: 0 20px 45px rgba(255, 106, 0, 0.12);
    z-index: 2;
}

.dm-tool-card img {
    max-width: 190px;
    width: 100%;
    max-height: 75px;
    object-fit: contain;
    filter: grayscale(10%);
    transition: all 0.35s ease;
}

.dm-tool-card:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.dm-tool-card:nth-child(1) { animation-delay: 0.05s; }
.dm-tool-card:nth-child(2) { animation-delay: 0.10s; }
.dm-tool-card:nth-child(3) { animation-delay: 0.15s; }
.dm-tool-card:nth-child(4) { animation-delay: 0.20s; }
.dm-tool-card:nth-child(5) { animation-delay: 0.25s; }
.dm-tool-card:nth-child(6) { animation-delay: 0.30s; }
.dm-tool-card:nth-child(7) { animation-delay: 0.35s; }
.dm-tool-card:nth-child(8) { animation-delay: 0.40s; }
.dm-tool-card:nth-child(9) { animation-delay: 0.45s; }
.dm-tool-card:nth-child(10) { animation-delay: 0.50s; }

@keyframes toolFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1100px) {
    .dm-tools-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .dm-tools-section {
        padding: 4.5rem 0;
    }

    .dm-tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dm-tool-card {
        min-height: 130px;
        padding: 1.5rem;
    }

    .dm-tool-card img {
        max-width: 150px;
        max-height: 65px;
    }
}

@media (max-width: 480px) {
    .dm-tools-grid {
        grid-template-columns: 1fr;
    }

    .dm-tool-card {
        min-height: 120px;
    }
}

.location-slider-section {
    padding: 6rem 0;
    background: #ffffff;
    overflow: hidden;
}

.location-heading {
    text-align: center;
    max-width: 1050px;
    margin: 0 auto 3rem;
}

.location-heading span {
    display: inline-block;
    color: #ff5a00;
    background: rgba(255, 106, 0, 0.1);
    border: 1px solid rgba(255, 106, 0, 0.18);
    padding: 0.55rem 1rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.location-heading h2 {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    color: #111;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.location-heading p {
    color: #666;
    font-size: 1.08rem;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.7;
}

.location-slider-wrap {
    position: relative;
}

.location-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 1rem 0 1.5rem;
    scrollbar-width: none;
}

.location-slider::-webkit-scrollbar {
    display: none;
}

.location-card {
    position: relative;
    flex: 0 0 calc(20% - 1.2rem);
    height: 360px;
    border-radius: 8px;
    overflow: hidden;
    scroll-snap-align: start;
    background: #fff3ec;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(255, 106, 0, 0.18);
}

.location-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.location-card:hover img {
    transform: scale(1.12);
}

.location-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
    text-align: center;
    background: linear-gradient(
        to top,
        rgba(15, 35, 58, 0.95),
        rgba(15, 35, 58, 0.72),
        rgba(15, 35, 58, 0)
    );
}

.location-overlay h3 {
    color: #fff;
    font-size: 1.45rem;
    font-weight: 800;
    margin: 0;
}

.location-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    color: #ff5a00;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.16);
    transition: all 0.3s ease;
}

.location-arrow:hover {
    background: linear-gradient(135deg, #ff6a00, #ff3d00);
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}

.location-prev {
    left: -15px;
}

.location-next {
    right: -15px;
}

@media (max-width: 1200px) {
    .location-card {
        flex: 0 0 calc(25% - 1.2rem);
    }
}

@media (max-width: 992px) {
    .location-card {
        flex: 0 0 calc(33.333% - 1rem);
        height: 330px;
    }
}

@media (max-width: 768px) {
    .location-slider-section {
        padding: 4.5rem 0;
    }

    .location-card {
        flex: 0 0 calc(50% - 0.8rem);
        height: 300px;
    }

    .location-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .location-card {
        flex: 0 0 85%;
        height: 290px;
    }

    .location-prev {
        left: 5px;
    }

    .location-next {
        right: 5px;
    }
}

.industries-section {
            width: 100%;
            padding: 80px 20px;
            background-color: #f8fafc; /* Very subtle off-white to make the white nodes pop */
            text-align: center;
            font-family: inherit; /* Uses your website's native font */
            overflow: hidden;
            box-sizing: border-box;
        }

        .industries-section * {
            box-sizing: border-box; /* Prevents layout breaking */
        }

        /* --- Typography --- */
        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto 60px auto;
            line-height: 1.6;
        }

        /* --- Showcase Container --- */
        .showcase-container {
            position: relative;
            width: 100%;
            max-width: 900px;
            height: 550px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* --- The Background Orbit Track --- */
        /* This creates the visual line that connects the nodes */
        .orbit-track {
            position: absolute;
            width: 480px;
            height: 480px;
            border: 2px dashed #cbd5e1;
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
        }

        /* --- Central Focus Area --- */
        .center-wrapper {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 160px;
            height: 160px;
            z-index: 10;
        }

        /* The Core (Static) */
        .center-core {
            position: relative;
            width: 100%;
            height: 100%;
            background: #ffffff;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
            z-index: 10;
            border: 1px solid #f1f5f9;
        }

        .center-core .icon-img {
            font-size: 2rem;
            margin-bottom: 5px;
        }

        .center-core .core-text {
            font-weight: 800;
            font-size: 0.85rem;
            color: #0f172a;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        /* Animation Ring 1 (Dashed & Fast) */
        .ring-inner {
            position: absolute;
            inset: -15px;
            border: 2px dashed #ff4a3d; /* Opticon Red */
            border-radius: 50%;
            animation: spinRight 12s linear infinite;
            z-index: 5;
            opacity: 0.7;
        }

        /* Animation Ring 2 (Solid & Slow with gap) */
        .ring-outer {
            position: absolute;
            inset: -30px;
            border: 2px solid transparent;
            border-top-color: #ff4a3d;
            border-bottom-color: #ff4a3d;
            border-radius: 50%;
            animation: spinLeft 20s linear infinite;
            z-index: 5;
            box-shadow: 0 0 20px rgba(255, 74, 61, 0.15);
        }

        /* --- Animations --- */
        @keyframes spinRight {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        @keyframes spinLeft {
            0% { transform: rotate(360deg); }
            100% { transform: rotate(0deg); }
        }

        /* --- Industry Nodes --- */
        .industry-node {
            position: absolute;
            background: #ffffff;
            padding: 10px 24px 10px 10px;
            border-radius: 60px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
            border: 1px solid #e2e8f0;
            cursor: default;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            z-index: 15;
            min-width: 200px;
        }

        /* Icon Container within the Node */
        .node-icon-wrapper {
            width: 40px;
            height: 40px;
            background: #fff0ef; /* Very light red/orange */
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
        }

        .industry-node .label {
            font-weight: 600;
            font-size: 1rem;
            color: #1e293b;
        }

        /* Node Hover Effect */
        .industry-node:hover {
            transform: translateY(-5px) scale(1.03);
            box-shadow: 0 15px 35px rgba(255, 74, 61, 0.15);
            border-color: #ff4a3d;
        }

        .industry-node:hover .node-icon-wrapper {
            background: #ff4a3d;
            color: white;
            /* If using emojis, background color change might not be enough, but it creates a nice effect */
        }

        /* --- Exact Node Positioning along the Orbit --- */
        .finance-node    { top: 5%;  left: 6%; }
        .ecommerce-node  { top: 5%;  right: 10%; }
        
        .healthcare-node { top: 50%; left: -2%; transform: translateY(-50%); }
        /* We must update hover transform for center-aligned items so they don't break */
        .healthcare-node:hover { transform: translateY(-50%) scale(1.03); }
        
        .education-node  { top: 50%; right: -2%; transform: translateY(-50%); }
        .education-node:hover  { transform: translateY(-50%) scale(1.03); }
        
        .realestate-node { bottom: 5%; left: 10%; }
        .technology-node { bottom: 5%; right: 10%; }

        /* New Startup industry node */
        .startup-node {
            top: -8%;
            left: 50%;
            transform: translateX(-50%);
        }

        .startup-node:hover {
            transform: translateX(-50%) translateY(-5px) scale(1.03);
        }


        /* --- Mobile Responsiveness --- */
        @media (max-width: 850px) {
            .showcase-container {
                height: auto;
                flex-direction: column;
                gap: 20px;
            }
            .orbit-track { display: none; } /* Hide track on mobile */
            .center-wrapper {
                position: relative;
                top: auto; left: auto;
                transform: none;
                margin-bottom: 40px;
                margin-top: 20px;
            }
            .industry-node {
                position: relative;
                top: auto !important; left: auto !important; right: auto !important; bottom: auto !important;
                transform: none !important;
                width: 100%;
                max-width: 350px;
            }
            .industry-node:hover {
                transform: translateY(-3px) !important; /* Fix mobile hover */
            }
        }
    </style>
<link as="image" href="assets/hero_bg.webp" rel="preload" type="image/webp"/><style>                
                        .faq-item input[type="checkbox"] { display: none; }                
                        .faq-trigger { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 2rem; background: #ffffff; border: 1px solid var(--border-color); border-radius: 1rem; font-weight: 600; font-size: 1.1rem; color: var(--text-primary); cursor: pointer; transition: all 0.3s ease; }                
                        .faq-trigger::after { content: '+'; font-size: 1.4rem; font-weight: 400; color: var(--accent-start); transition: transform 0.3s ease; }                
                        .faq-content { max-height: 0; overflow: hidden; transition: max-height 0.3s cubic-bezier(0, 1, 0, 1); background: #ffffff; border-radius: 0 0 1rem 1rem; padding: 0 2rem; color: var(--text-secondary); line-height: 1.7; font-size: 1rem; }                                
                        .faq-item input[type="checkbox"]:checked ~ .faq-trigger { background: #1a1a1a; color: #ffffff; border-color: #1a1a1a; border-radius: 1rem 1rem 0 0; }                
                        .faq-item input[type="checkbox"]:checked ~ .faq-trigger::after { content: '−'; color: #ffffff; }                
                        .faq-item input[type="checkbox"]:checked ~ .faq-content { max-height: 500px; padding: 1.5rem 2rem; border: 1px solid var(--border-color); border-top: none; }            
                    </style><style>
.digital-marketing-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 110px 5% 70px;
  font-family: 'Inter', Arial, sans-serif;
  color: #1a1a1a;
  line-height: 1.75;
}

.digital-marketing-content h1 {
  font-family: 'Outfit', Arial, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
  max-width: 950px;
}

.digital-marketing-content h1::after {
  content: "";
  display: block;
  width: 120px;
  height: 5px;
  background: linear-gradient(135deg, #ff4b2b, #ff416c);
  border-radius: 50px;
  margin-top: 18px;
}

.digital-marketing-content h2 {
  font-family: 'Outfit', Arial, sans-serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.15;
  margin: 4rem 0 1.2rem;
  color: #111827;
}

.digital-marketing-content h3 {
  font-family: 'Outfit', Arial, sans-serif;
  font-size: 1.35rem;
  margin-bottom: .7rem;
  color: #111827;
}

.digital-marketing-content p {
  font-size: 1.08rem;
  color: rgba(0,0,0,.62);
  margin-bottom: 1.1rem;
}

.digital-marketing-content > p:nth-of-type(1),
.digital-marketing-content > p:nth-of-type(2),
.digital-marketing-content > p:nth-of-type(3) {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 22px;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 14px 35px rgba(15,23,42,.05);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin: 2.2rem 0 4rem;
}

.service-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 14px 35px rgba(15,23,42,.05);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -70px;
  bottom: -70px;
  border-radius: 50%;
  background: rgba(255,75,43,.09);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,75,43,.28);
  box-shadow: 0 24px 55px rgba(255,75,43,.13);
}

.service-card span {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff4b2b, #ff416c);
  color: #ffffff;
  border-radius: 15px;
  font-weight: 900;
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 2;
}

.service-card h3,
.service-card p {
  position: relative;
  z-index: 2;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin: 2rem 0 3rem;
  background: #111827;
  padding: 2rem;
  border-radius: 28px;
}

.process-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  padding: 1.6rem;
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.process-card span {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff4b2b, #ff416c);
  border-radius: 50%;
  font-weight: 900;
  margin-bottom: 1rem;
}

.process-card h3 {
  color: #ffffff;
}

.process-card p {
  color: rgba(255,255,255,.72);
  font-size: .96rem;
}

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 1rem 0 3rem;
}

.location-tags span {
  background: rgba(255,75,43,.08);
  border: 1px solid rgba(255,75,43,.18);
  color: #ff4b2b;
  padding: .7rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: .9rem;
}

.faq-section {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 4rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 20px;
  padding: 1.5rem 1.7rem;
  box-shadow: 0 12px 30px rgba(15,23,42,.04);
}

.faq-item h3 {
  margin-bottom: .5rem;
}

.cta-box {
  text-align: center;
  background: linear-gradient(135deg, #ff4b2b, #ff416c);
  color: #ffffff;
  border-radius: 30px;
  padding: 3.5rem 2rem;
  box-shadow: 0 25px 60px rgba(255,75,43,.24);
  margin-top: 3rem;
}

.cta-box h2 {
  color: #ffffff;
  margin: 0 0 1rem;
}

.cta-box p {
  color: rgba(255,255,255,.88);
  max-width: 820px;
  margin: 0 auto 1.8rem;
}

.cta-box a {
  display: inline-block;
  background: #111827;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: all .3s ease;
}

.cta-box a:hover {
  transform: translateY(-4px);
  background: #000000;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .digital-marketing-content {
    padding: 90px 5% 50px;
  }

  .services-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .faq-item {
    padding: 1.4rem;
  }
}

.service-card-link {
  display: inline-flex;
  margin-top: 1rem;
  color: #ff4b2b;
  font-weight: 800;
  font-size: .92rem;
  position: relative;
  z-index: 2;
}
.service-card-link:hover { text-decoration: underline; }