/* 
    EASYBOOST TOOLS HERO v16.0 - THE ENGINEERING HUB
    Theme: Deep Dark, Glowing Borders, Animated Gears
    Prefix: .eb-th-
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700&family=Syne:wght@600;800&display=swap');

.eb-th-wrapper {
    background-color: #020204;
    /* Compact Padding - Niche se zyada lamba nahi hoga */
    padding: 140px 0 80px 0; 
    font-family: 'Outfit', sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Background Hexagon Pattern (Like the screenshot) */
.eb-th-bg {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='100' viewBox='0 0 60 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l30 17v33L30 67 0 50V17zM0 83l30 17 30-17v-33L30 33 0 50z' fill='rgba(255,255,255,0.02)' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    mask-image: radial-gradient(circle at 10% 20%, black 0%, transparent 50%);
    -webkit-mask-image: radial-gradient(circle at 10% 20%, black 0%, transparent 50%);
    z-index: 0;
}

/* Right Side Ambient Glow */
.eb-th-glow {
    position: absolute;
    right: -10%;
    top: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.1) 0%, rgba(255, 153, 51, 0.05) 40%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.eb-th-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 10;
}

/* --- 1. LEFT SIDE: TYPOGRAPHY & TRUST --- */
.eb-th-content { max-width: 550px; }

.eb-th-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ccc; /* Subtle top line */
    letter-spacing: -1px;
}

.eb-th-title span {
    font-weight: 800;
    color: #fff;
    display: block;
}

.eb-th-desc {
    font-size: 17px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Trust Logos */
.eb-th-trust-lbl {
    font-size: 10px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.eb-th-logos {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.eb-th-logos i, .eb-th-logos svg {
    font-size: 24px;
    color: #888;
    transition: 0.3s;
}

.eb-th-logos i:hover { color: #fff; transform: translateY(-2px); }

/* Buttons */
.eb-th-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.eb-th-btn-glow {
    position: relative;
    padding: 15px 35px;
    background: #050505;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid transparent;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* The Glowing Border Effect from Screenshot */
.eb-th-btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50px;
    background: linear-gradient(90deg, #FF9933, transparent, #00C2FF);
    z-index: -1;
    opacity: 0.5;
    transition: 0.3s;
}

.eb-th-btn-glow:hover { background: #111; }
.eb-th-btn-glow:hover::before { opacity: 1; filter: blur(2px); }

.eb-th-link {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.eb-th-link i { font-size: 10px; transition: 0.3s; }
.eb-th-link:hover { color: #00C2FF; }
.eb-th-link:hover i { transform: translateX(5px); }

/* --- 2. RIGHT SIDE: THE ORBITAL GEAR (ANIMATION) --- */
.eb-th-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 450px;
}

/* Outer Orbital Ring */
.eb-th-ring {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    /* Rotating Ring */
    animation: ringSpin 20s linear infinite;
}

/* Glowing Dot on the Ring */
.eb-th-ring::after {
    content: '';
    position: absolute;
    top: -3px; left: 50%;
    width: 6px; height: 6px;
    background: #00C2FF;
    border-radius: 50%;
    box-shadow: 0 0 15px #00C2FF, 0 0 30px #00C2FF;
}

@keyframes ringSpin { 100% { transform: rotate(360deg); } }

/* The Central Settings Icon (Lordicon Wrapper) */
/* --- THE CENTRAL GEAR SYSTEM (100% RELIABLE) --- */
.eb-th-core-icon {
    position: relative;
    z-index: 10;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.05) 0%, transparent 60%);
    border-radius: 50%;
    animation: corePulse 4s infinite alternate ease-in-out;
}

/* Base glowing pulse */
@keyframes corePulse {
    0% { transform: scale(0.95); box-shadow: 0 0 20px rgba(0, 194, 255, 0.1); }
    100% { transform: scale(1.05); box-shadow: 0 0 50px rgba(0, 194, 255, 0.3); }
}

/* Double Gear Animation */
.eb-gear-system {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eb-gear-outer {
    font-size: 150px; /* Big Gear */
    color: rgba(255, 255, 255, 0.8);
    position: absolute;
    animation: spinClockwise 20s linear infinite;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
}

.eb-gear-inner {
    font-size: 70px; /* Small inner gear */
    color: #00C2FF; /* Cyber Blue */
    position: absolute;
    animation: spinAntiClockwise 10s linear infinite;
    filter: drop-shadow(0 0 20px #00C2FF);
}

@keyframes spinClockwise {
    to { transform: rotate(360deg); }
}

@keyframes spinAntiClockwise {
    to { transform: rotate(-360deg); }
}

/* Floating Label on the Ring */
.eb-th-float-label {
    position: absolute;
    right: -20px;
    top: 40%;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #888;
    text-transform: uppercase;
    background: rgba(0,0,0,0.5);
    padding: 5px 15px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.05);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .eb-th-container { grid-template-columns: 1fr; text-align: center; gap: 60px; }
    .eb-th-desc { margin: 0 auto 40px auto; }
    .eb-th-logos, .eb-th-actions { justify-content: center; }
    .eb-th-visual { height: 350px; }
    .eb-th-ring { width: 300px; height: 300px; }
    .eb-th-float-label { display: none; }
}