/* Developer Page Specific Styles */

:root {
    --primary-blue: #00A0E3;
    --light-blue-bg: #E3F2FD;
    --dark-text: #333;
    --glass-bg: rgba(255, 255, 255, 0.8);
}

/* Hero Section */
.hero-section-new {
    position: relative;
    padding: 120px 0 80px;
    background: #fff;
    overflow: hidden;
}

.blue-blur-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 0;
}

.circle-left {
    background: var(--primary-blue);
    top: -100px;
    left: -100px;
}

.circle-right {
    background: #00d2ff;
    bottom: -100px;
    right: -100px;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark-text);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtext {
    font-size: 1.15rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Mobile Hero */
.hero-mobile-new {
    position: relative;
    padding: 100px 0 60px;
    background: #fff;
    overflow: hidden;
}

.mobile-blue-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    z-index: 0;
}

.mobile-content {
    position: relative;
    z-index: 1;
}

.mobile-subtext {
    font-size: 1rem;
    color: #666;
    margin-top: 15px;
    line-height: 1.5;
}

/* Badges */
.badge-cyan-light {
    background-color: #D6F3FF;
    color: var(--primary-blue);
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Features */
.features-container-box {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.icon-square-sm {
    width: 48px;
    height: 48px;
    background: #f0f7ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 20px;
    transition: all 0.3s ease;
}

.icon-square-sm:hover {
    background: var(--primary-blue);
    color: #fff;
    transform: translateY(-3px);
}

/* Integration Visuals */
.center-visual {
    padding: 40px 0;
}

.laptop-img {
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    border-radius: 10px;
}

.img-phone {
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.2));
    border-radius: 15px;
}

/* CTA Sections */
.stats-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0077b6 100%);
    border-radius: 30px;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0, 160, 227, 0.3);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.dev-btn-blue {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.dev-btn-blue:hover {
    background: #fff;
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.dev-btn-white {
    background: #fff;
    color: var(--primary-blue);
    border: 2px solid #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.dev-btn-white:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-3px);
}

.final-cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0077b6 100%);
    border-radius: 20px;
    color: #fff;
}

.dev-cta-btn-white {
    background: #fff;
    color: var(--primary-blue);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dev-cta-btn-white:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-heading {
        font-size: 2.5rem;
    }
    .cta-title {
        font-size: 2rem;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
