/* --- 1. HERO SECTION (Centered, no image) --- */
.webdev-hero {
    background: var(--gradient-premium-dark);
    padding: 140px 24px 100px;
    position: relative;
    overflow: hidden;
}

.webdev-hero .glow-blob-hero {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(231, 24, 27, 0.12) 0%, transparent 70%);
    top: -10%;
    right: 5%;
    border-radius: 50%;
    z-index: 1;
}

.webdev-hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-content-center {
    color: var(--color-white);
    width: 100%;
}

.hero-content-center .badge {
    margin-bottom: 24px;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 24px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.85rem;
    /* text-transform: uppercase; */
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-content-center .badge-pulse {
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 12px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.65;
    color: #cbd5e1;
    margin-bottom: 35px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-secondary-white {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 14px 38px;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary-white:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.hero-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 20px;
    border-radius: 12px;
    width: auto;
    margin: 0 auto;
}

.rating-stars {
    color: #f59e0b;
}

/* Removed .hero-image-right and img styles */

/* Responsive adjustments */
@media (max-width: 768px) {
    .webdev-hero {
        padding: 100px 0 60px;
    }
    .hero-title {
        font-size: 2.4rem;
    }
    .hero-desc {
        font-size: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary-white {
        width: 100%;
        justify-content: center;
    }
}






/* Floating Enquire Badge */
.float-enquire {
    position: fixed;
    right: 0;
    top: 40%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right bottom;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 14px 28px;
    font-weight: 700;
    font-size: 0.85rem;
    /* text-transform: uppercase; */
    letter-spacing: 1.5px;
    border-radius: 8px 8px 0 0;
    z-index: 999;
    box-shadow: -4px 0 20px rgba(231, 24, 27, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.float-enquire:hover {
    background: var(--color-primary-hover);
    padding-bottom: 34px;
}

.float-enquire i {
    margin-right: 8px;
}












/* --- 2. END-TO-END SERVICES GRID --- */
.services-grid-section {
    padding: 100px 24px;
    background: #f8fafc; /* light canvas */
}

.services-grid-section .container {
    max-width: 1280px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 55px;
}

.service-card {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
    border-color: rgba(231, 24, 27, 0.15);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    padding-bottom: 12px;
    margin-bottom: 18px;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
}

.service-card h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 40px;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.service-card:hover h3::after {
    width: 80px;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
}

.service-card p strong {
    color: #0f172a;
    font-weight: 600;
}


/* --- 3. RECENT WORKS SLIDER OVERRIDES --- */
.webdev-portfolio-slider .slide-premium-bg {
    background: none !important;
}

.webdev-portfolio-slider .slide-premium-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 0.5s ease;
}

.webdev-portfolio-slider .slide-premium.active .slide-premium-bg img {
    opacity: 1;
}

.webdev-portfolio-slider .slide-premium-content {
    background: linear-gradient(to top, rgba(10,11,16,0.92) 0%, rgba(10,11,16,0.3) 60%, transparent 100%);
}


/* --- 4. CONVERSIONS CTA BANNER --- */
.conversions-banner-section {
    padding: 100px 24px;
    background: #f8fafc;
}

.conversions-banner {
    background: var(--gradient-premium-dark);
    border-radius: 24px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.conversions-left {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.conversions-avatar-wrap {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    flex-shrink: 0;
}

.conversions-avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.conversions-text {
    color: var(--color-white);
}

.conversions-text h3 {
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 8px;
}

.conversions-text p {
    font-size: 1.05rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.conversions-banner .btn-primary {
    flex-shrink: 0;
}






/* --- 5. STRATEGY SECTION --- */
.strategies-section {
    padding: 100px 24px;
    background: var(--color-white);
}

.strategies-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: start;
}

.strategies-left {
    position: sticky;
    top: 100px;
}

.strategies-left .section-title {
    margin-bottom: 20px;
}

.strategies-left .section-line {
    margin: 0 0 25px 0;
}

.strategies-description {
    font-size: 1.1rem;
    line-height: 1.65;
    color: #475569;
    margin-bottom: 35px;
}

.strategies-image-card img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.strategies-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.strategy-item-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.strategy-item-card:hover {
    background: var(--color-white);
    transform: translateX(8px);
    /* border-left: 4px solid var(--color-primary); */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.strategy-item-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.strategy-item-card p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #475569;
}


/* --- 6. WHY CHOOSE BANNER --- */
.why-choose-section {
    padding: 100px 24px 100px;
    background: var(--color-white);
}



.why-choose-card {
    background: var(--gradient-premium-dark);
    border-radius: 28px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.why-choose-left {
    color: var(--color-white);
}

.why-choose-left h2 {
    font-size: 2.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.why-choose-left p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cbd5e1;
}

.why-choose-right img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.08);
}



/* --- 7. INDUSTRY BADGES SECTION --- */
.industries-badges-section {
    padding: 100px 24px;
    background: #f8fafc;
}

.industries-badges-section .section-title {
    text-align: center;
}

.industries-badges-desc {
    text-align: center;
    max-width: 800px;
    margin: 20px auto 40px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #475569;
}

.industry-badge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 40px auto 0;
}

.industry-card-new {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 35px 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.industry-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(231, 24, 27, 0.03) 0%, rgba(231, 24, 27, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.industry-card-new:hover::before {
    opacity: 1;
}

.industry-card-new:hover {
    transform: translateY(-6px);
    border-color: rgba(231, 24, 27, 0.15);
    box-shadow: 0 20px 45px rgba(231, 24, 27, 0.06);
}

.industry-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #f8fafc;
    color: #475569;
}

.industry-card-new:hover .industry-icon-box {
    transform: scale(1.1) rotate(-5deg);
}

/* Dynamic colors for each industry's icon wrapper background */
.industry-card-new[data-industry="travel"] .industry-icon-box {
    background: rgba(14, 165, 233, 0.08);
    color: #0ea5e9;
}
.industry-card-new[data-industry="ecommerce"] .industry-icon-box {
    background: rgba(236, 72, 153, 0.08);
    color: #ec4899;
}
.industry-card-new[data-industry="realestate"] .industry-icon-box {
    background: rgba(245, 158, 11, 0.08);
    color: #f59e0b;
}
.industry-card-new[data-industry="social"] .industry-icon-box {
    background: rgba(99, 102, 241, 0.08);
    color: #6366f1;
}
.industry-card-new[data-industry="healthcare"] .industry-icon-box {
    background: rgba(16, 185, 129, 0.08);
    color: #10b981;
}
.industry-card-new[data-industry="education"] .industry-icon-box {
    background: rgba(139, 92, 246, 0.08);
    color: #8b5cf6;
}
.industry-card-new[data-industry="finance"] .industry-icon-box {
    background: rgba(231, 24, 27, 0.08);
    color: var(--color-primary);
}
.industry-card-new[data-industry="decor"] .industry-icon-box {
    background: rgba(71, 85, 105, 0.08);
    color: #475569;
}

.industry-card-new h4 {
    font-size: 1.2rem;
    font-weight: 750;
    color: #1e293b;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.industry-card-new:hover h4 {
    color: var(--color-primary);
}

.industry-card-new p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .industry-badge-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .industry-badge-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}











/* ==========================================================================
   ADDED SECTION: TECHNOLOGIES WE MASTER (TECH STACK)
   ========================================================================== */
.tech-stack-section {
    padding: 100px 24px;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.glow-blob-tech {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(231, 24, 27, 0.03) 0%, transparent 70%);
}

.tech-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.tech-category-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 35px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tech-category-box:hover {
    transform: translateY(-8px);
    border-color: rgba(231, 24, 27, 0.15);
    box-shadow: 0 20px 45px rgba(231, 24, 27, 0.05);
    background: var(--color-white);
}

.tech-category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.tech-cat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(231, 24, 27, 0.05);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.tech-category-box:hover .tech-cat-icon {
    background: var(--color-primary);
    color: var(--color-white);
}

.tech-category-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-badge {
    background: var(--color-white);
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.01);
    transition: all 0.3s ease;
}

.tech-badge i {
    font-size: 1rem;
}

.tech-badge:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

/* Responsive Overrides for Tech Stack Grid */
@media (max-width: 991px) {
    .tech-stack-section {
        padding: 60px 20px;
    }
    .tech-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .tech-categories-grid {
        grid-template-columns: 1fr;
    }
    .tech-category-box {
        padding: 30px 20px;
    }
}


/* ==========================================================================
   RESPONSIVE: Industries Section (Mobile Fix)
   ========================================================================== */
@media (max-width: 991px) {
    .industries-section {
        padding: 60px 20px;
    }
    
    .industries-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .industries-sticky-col {
        position: static;
        padding: 35px 24px;
        background: rgba(255, 255, 255, 0.85);
        border: 1px solid var(--border-light);
        border-radius: 24px;
        margin-bottom: 20px;
        max-height: none;
    }
    
    .industries-sticky-col .section-title {
        font-size: 2.2rem;
    }
    
    .industries-graphic-wrapper {
        display: none;
    }
    
    .industries-scroll-col {
        gap: 20px;
    }
    
    .industry-card {
        padding: 35px 30px;
    }
    
    .industry-card-content {
        max-width: 100%;
    }
    
    .industry-card::before {
        width: 100%;
        opacity: 0.08;
    }
    
    .industry-card::after {
        background: linear-gradient(to right, #ffffff 60%, rgba(255, 255, 255, 0.9) 100%);
    }
}

@media (max-width: 480px) {
    .industries-section {
        padding: 50px 16px;
    }
    
    .industries-sticky-col .section-title {
        font-size: 1.7rem;
    }
    
    .industry-card {
        padding: 30px 20px;
    }
    
    .industry-card-content h3 {
        font-size: 1.3rem;
    }
    
    .industry-card-content p {
        font-size: 0.95rem;
        margin-bottom: 16px;
    }
}


























/* --- Business Impact--- */
.webdev-stats-section {
    padding: 100px 24px;
    background: var(--color-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(231, 24, 27, 0.15);
    box-shadow: 0 20px 40px rgba(231, 24, 27, 0.05);
    background: var(--color-white);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 15px;
    line-height: 1;
    background: linear-gradient(135deg, #d31013 30%, #ff5252 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.stat-label {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
}

/* responsive rule for stats grid */
@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-card {
        padding: 30px 20px;
    }
    .stat-value {
        font-size: 2rem;
    }
}


/* --- 8. RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 2.1rem;
    }
    .why-choose-left h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 991px) {
    .why-choose-section {
        padding: 40px 16px 60px;
    }
    .strategies-section {
        padding: 60px 16px;
    }
    .conversions-banner-section {
        padding: 50px 16px;
    }
    .services-grid-section {
        padding: 60px 16px;
    }
    .webdev-stats-section {
        padding: 60px 16px;
    }
    .webdev-hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-rating-badge {
        margin: 0 auto;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .conversions-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
    .conversions-left {
        flex-direction: column;
        gap: 20px;
    }
    .strategies-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .strategies-left {
        position: relative;
        top: 0;
    }
    .why-choose-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px;
    }
}

@media (max-width: 767px) {
    .webdev-hero {
        padding: 100px 16px 60px;
    }
    .hero-title {
        font-size: 2.0rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .conversions-text h3 {
        font-size: 1.5rem;
    }
    .why-choose-left h2 {
        font-size: 1.6rem;
    }
    .section-title {
        font-size: 1.7rem;
    }
    .premium-title {
        font-size: 1.6rem;
    }
    .faq-main-heading {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-desc {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .hero-buttons a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .hero-rating-badge {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        width: 100%;
    }
    .services-grid-section {
        padding: 60px 16px;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .premium-title {
        font-size: 1.5rem;
    }
    .service-card {
        padding: 30px 20px;
    }
    .service-card h3 {
        font-size: 1.5rem;
    }
    .conversions-banner {
        padding: 30px 20px;
        border-radius: 16px;
    }
    .conversions-text h3 {
        font-size: 1.5rem;
    }
    .conversions-text p {
        font-size: 0.9rem;
    }
    .strategies-section {
        padding: 60px 16px;
    }
    .strategy-item-card {
        padding: 20px;
    }
    .strategy-item-card h4 {
        font-size: 1.5rem;
    }
    .why-choose-card {
        padding: 35px 20px;
        border-radius: 16px;
    }
    .why-choose-left h2 {
        font-size: 1.5rem;
    }
    .why-choose-left p {
        font-size: 0.95rem;
    }
    .industries-badges-section {
        padding: 60px 16px;
    }
    .industries-badges-desc {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    .industry-badge-pill {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    .faq-section {
        padding: 60px 16px;
    }
    .faq-main-heading {
        font-size: 1.45rem;
    }
    .webdev-stats-section {
        padding: 60px 16px;
    }
}

