/* =========================================
   Website Construction Premium Styles
   Theme: Future Tech / Digital Premium
   ========================================= */

:root {
    /* Color Palette */
    --web-bg-dark: #0f0f12;
    --web-bg-darker: #0a0a0c;
    --web-bg-light: #f4f6f8;

    --web-primary: #0586FE;
    --web-accent: #00d4ff;
    /* Lighter Cyan/Blue for gradient */
    --web-purple: #5b42f3;
    /* Adjust purple to match blue better or keep as accent */

    --gradient-hero: linear-gradient(135deg, #0f0f12 0%, #0d121c 100%);
    --gradient-card-dark: linear-gradient(145deg, rgba(32, 33, 36, 0.6) 0%, rgba(5, 134, 254, 0.1) 100%);
    --gradient-cta: linear-gradient(135deg, #0586FE 0%, #00d4ff 100%);
    --gradient-text: linear-gradient(to right, #0586FE, #00d4ff);

    /* Effects */
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --neon-glow: 0 0 15px rgba(5, 134, 254, 0.4);

    /* Spacing */
    --section-gap: 100px;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}



/* Global Overrides */
.web-page-wrapper {
    font-family: 'Saira', sans-serif;
    overflow-x: hidden;
}

.section-padding {
    padding: var(--section-gap) 0;
}



/* =========================================
   Section Styles
   ========================================= */

/* Dark Section (Base) */
.web-dark-section {
    background-color: var(--web-bg-dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.web-dark-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 208, 132, 0.03) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

/* Light Section (Base) */
.web-light-section {
    background-color: var(--web-bg-light);
    color: #333;
    position: relative;
}

/* =========================================
   Module 1: Hero Section
   ========================================= */
.web-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--web-bg-darker);
    position: relative;
    overflow: hidden;
}

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

.web-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.web-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    margin-bottom: 2rem;
}



/* Hero Background Decoration */
.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.hero-shapes .shape-1 {
    width: 300px;
    height: 300px;
    background: var(--web-primary);
    top: 10%;
    left: 10%;
}

.hero-shapes .shape-2 {
    width: 400px;
    height: 400px;
    background: var(--web-purple);
    bottom: 10%;
    right: 10%;
    animation-delay: -3s;
}

/* =========================================
   Module 2: Advantages (Light)
   ========================================= */
.web-advantage-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.web-advantage-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.web-advantage-card .icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 20px;
    background: var(--web-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #333;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.web-advantage-card:hover .icon-box {
    background: var(--web-primary);
    color: #fff;
}

.web-advantage-card .icon-box svg,
.web-advantage-card .icon-box i {
    width: 32px;
    height: 32px;
    font-size: 32px;
    fill: currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.web-advantage-card h3 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

/* =========================================
   Module 3: Solutions (Dark / Glassmorphism)
   ========================================= */
.web-solution-card {
    background: var(--gradient-card-dark);
    backdrop-filter: blur(10px);
    border: var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.web-solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-text);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.web-solution-card:hover::before {
    transform: scaleX(1);
}

.web-solution-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--neon-glow);
    border-color: rgba(255, 255, 255, 0.2);
}

.web-solution-card .icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    color: var(--web-primary);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.web-solution-card .icon-wrapper svg,
.web-solution-card .icon-wrapper i {
    width: 40px;
    height: 40px;
    font-size: 40px;
    line-height: 1;
    fill: currentColor;
}

.web-solution-card h4 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.web-solution-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* =========================================
   Module 4: Process (Light / Interactive)
   ========================================= */


.web-process-step {
    position: relative;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border-left: 4px solid var(--web-primary);
    transition: all 0.3s;
}

.web-process-step:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-num {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(5, 134, 254, 0.1);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.step-content h5 {
    color: var(--web-bg-dark);
    font-weight: 700;
    margin-bottom: 10px;
}

/* =========================================
   Module 5: Tech Stack (Dark / Floating)
   ========================================= */
.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 40px 0;
}

.tech-bubble {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    animation: float 4s ease-in-out infinite;
}

.tech-bubble:nth-child(even) {
    animation-delay: 1s;
}

.tech-bubble:nth-child(3n) {
    animation-delay: 2s;
}

.tech-bubble:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--web-primary);
    transform: scale(1.1);
}

.tech-bubble svg,
.tech-bubble i {
    width: 40px;
    height: 40px;
    font-size: 40px;
    margin-bottom: 10px;
    fill: currentColor;
    line-height: 1;
    /* Ensure icon is centered vertically if explicit height used */
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-bubble span {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
}

/* =========================================
   Module 6: CTA (Gradient)
   ========================================= */
.web-cta-section {
    background: var(--gradient-hero);
    /* Dark gradient for contrast with green button */
    border-radius: 25px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.web-cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent);
    background-size: 10px 10px;
    opacity: 0.1;
}