/* ===================================================================
   SERVICES.CSS - UPDATED WITH CURRENCY INTEGRATION
   - Currency picker integration with localStorage
   - Fixed mobile responsive webdev-hero-section
   - Dynamic price updates
   - Resolved CSS conflicts
   =================================================================== */

/* =========================
   CURRENCY PICKER STYLES
   ========================= */




   
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #000000;
            color: #ffffff;

        }

        /* Header */
  
        .login-btn {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: none;
            border: none;
            cursor: pointer;
            font-weight: 500;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            padding: 140px 60px 60px;
            align-items: center;
        }

        .hero-left h1 {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            font-size: 72px;
            font-weight: 100;
            line-height: 1.1;
            margin-bottom: 30px;
            letter-spacing: -2px;
        }

        .hero-left p {
            font-size: 18px;
            line-height: 1.6;
            color: #666;
            margin-bottom: 40px;
            max-width: 500px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
        }

        .btn-primary {
            padding: 18px 40px;
            background: #ffffff;
            color: rgb(14, 14, 14);
            border: none;
            border-radius: 50px;
            font-size: 16px;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            font-weight: 500;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .btn-secondary {
            padding: 18px 40px;
            background: transparent;
            color: #ffffff;
            border: none;
            font-size: 16px;
            cursor: pointer;
            text-decoration: underline;
            font-weight: 500;
        }

        /* Service Pills */
        .service-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            max-width: 600px;
        }

        .pill {
            padding: 14px 28px;
            background: white;
            border-radius: 50px;
            font-size: 15px;
            color:rgb(52, 52, 52);
            font-weight: 500;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
            transition: transform 0.2s, box-shadow 0.2s;
            cursor: pointer;
        }

        .pill:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .pill.add {
            background: #f0f0f0;
            color: #222222;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            padding: 14px;
        }

        /* Benefits Section */
        .benefits {
            background: #101010;
            color: white;
            padding: 120px 60px;
        }

        .benefits-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .badge {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(0, 0, 0, 0.626);
            border-radius: 50px;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 30px;
        }

        .benefits-header h2 {
             font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            font-size: 42px;
            font-weight: 100;
          
            margin-bottom: 20px;
        }

          @media (max-width: 1024px) {
            .hero {
                grid-template-columns: 1fr;
                padding: 120px 40px 60px;
            }

            .hero-left h1 {
                font-size: 56px;
            }

            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .testimonial-grid {
                grid-template-columns: 1fr;
            }
        }

  @media (max-width: 768px) {
        .apps-section{
padding: 10px!important; ;


        }

  }
        @media (max-width: 768px) {
            .header {
                padding: 20px 24px;
            }

            .hero {
                padding: 100px 24px 40px;
            }

            .hero-left h1 {
                font-size: 42px;
            }

            .benefits, .testimonials, .cta-section {
                padding: 80px 24px;
            }

            .cta-section h2 {
                font-size: 36px;
            }

            .hero-buttons {
                flex-direction: column;
            }

                 .benefits-header h2 {
             font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            font-size: 22px;
            font-weight: 100;
          
            margin-bottom: 20px;
        }

        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

.team-title{
    text-align: center;
    font-size: 20px;
    color:rgb(13, 13, 13);
    margin-bottom:30px;
}
        .cta-section {
    text-align: center;
    padding: 40px;
    background: rgb(23, 23, 23);
    border-radius: 20px;

        }
.currency-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-top: 10px;
    z-index: 9999;
    min-width: 220px;
    overflow: hidden;
}

.currency-dropdown.show {
    display: block !important;
}

.currency-option {
    padding: 12px 16px;
    text-align: left;
    width: 100%;
    border: none;
    background: none;
    cursor: pointer;
}

.currency-option:hover, .currency-option.active {
    background: #f0f0f0;
}
        .fade-in {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .delay-1 { animation-delay: 0.1s; opacity: 0; }
        .delay-2 { animation-delay: 0.2s; opacity: 0; }
        .delay-3 { animation-delay: 0.3s; opacity: 0; }

        /* Webdev Main Content */

.currency-picker-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1000;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.currency-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: #000;
}

.currency-button:hover {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.currency-flag {
    font-size: 20px;
}

.currency-code {
    font-weight: 600;
}

.currency-dropdown-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.currency-dropdown-icon.open {
    transform: rotate(180deg);
}

.currency-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.currency-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.currency-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    cursor: pointer;
    transition: background 0.2s ease;
    border: none;
    width: 100%;
    text-align: left;
    background: white;
}

.currency-option:hover {
    background: #f5f5f5;
}

.currency-option.active {
    background: #e3f2fd;
}

.currency-info {
    flex: 1;
}

.currency-name {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    display: block;
}

.currency-symbol {
    font-size: 12px;
    color: #666;
}

.currency-checkmark {
    color: #4CAF50;
    font-weight: bold;
}

/* Demo pricing display */
.demo-pricing {
    max-width: 800px;
    margin: 50px auto 50px;
    padding: 40px;
    background: #000000;
    border-radius: 20px;
    text-align: center;
}

.demo-price {
    font-size: 48px;
    font-weight: bold;
    margin: 20px 0;
    color: #ffffff;
}

.demo-plan {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 10px;
}

/* =========================
   WEBDEV MAIN CONTENT - FIXED
   ========================= */
.webdev-main-content {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 35px !important;
    padding: 20px !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
}

/* =========================
   WEBDEV HERO SECTION - FIXED
   ========================= */
.webdev-hero-section {
    padding: 20px !important;
    max-width: 800px !important;
    margin: 0 !important;
    border-radius: 20px !important;
}

.webdev-hero-title {
    font-size: 1.5rem !important;
    margin-bottom: 15px !important;
    line-height: 1.3 !important;
}

.webdev-hero-description p {
    margin-bottom: 20px !important;
}

.service-benefits li {
    margin-bottom: 10px !important;
    line-height: 1.5 !important;
}

/* =========================
   WEBDEV VIDEO SECTION
   ========================= */
.webdev-video-section {
    background-color: #080808 !important;
    max-width: 1400px !important;
    margin: 50px auto !important;
    padding: 30px !important;
    border-radius: 30px !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}

.webdev-video-content {
    text-align: center !important;
}

.webdev-video-content h3 {
    color: white !important;
    font-size: 1.8rem !important;
    margin-bottom: 15px !important;
}

.filter-tags button:hover {
    transform: translateY(-2px) !important;
}

.apps-section {
    background-color: #101010;
}

/* =========================
   MOBILE RESPONSIVE - FIXED CONFLICTS
   ========================= */
@media screen and (max-width: 1200px) {
    .webdev-main-content {
        grid-template-columns: repeat(2, 1fr) !important;
        padding: 15px !important;
    }
    
    .webdev-hero-section {
        max-width: 100% !important;
    }
}

@media screen and (max-width: 768px) {
    /* FIXED: Make webdev-hero-section WIDER on mobile */
    .webdev-main-content {
        grid-template-columns: 1fr !important;
        padding: 10px !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
    
    .webdev-hero-section {
        width: calc(100% - 20px) !important;
        max-width: none !important;
        margin: 10px auto !important;
        padding: 30px 20px !important;
        box-sizing: border-box !important;
    }

    .webdev-hero-text {
        padding: 0 !important;
        width: 100% !important;
    }

    .webdev-hero-description p {
        font-size: 16px !important;
    }
    
    .service-benefits li {
        margin-left: 10px;
        font-size: 14px !important;
    }

    /* Currency picker mobile */
    .currency-picker-container {
        top: 70px;
        right: 10px;
    }

    .currency-button {
        padding: 10px 16px;
        font-size: 13px;
    }

    .currency-dropdown {
        min-width: 220px;
    }

    .demo-pricing {
        padding: 30px 20px;
        margin: 30px auto;
    }

    .demo-price {
        font-size: 36px;
    }

    .demo-plan {
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    /* FIXED: Even WIDER on small phones */
    .webdev-hero-section {
        width: calc(100% - 16px) !important;
        margin: 8px auto !important;
        padding: 20px 16px !important;
    }

    .demo-pricing {
        padding: 20px 15px;
    }

    .demo-price {
        font-size: 28px;
    }
}

/* =========================
   STARTING FROM SECTION - UPDATED FOR CURRENCY
   ========================= */
.Starting-from {
    padding: 2px;
    width: 100% !important;
    margin-bottom: 20px;
    background-color: rgb(0, 0, 0) !important;
    color: rgb(56, 177, 56) !important;
    text-align: center;
}

.Starting-from h3 {
    font-size: 20px !important;
    margin-top: 15px;
    margin-bottom: 5px !important;
}

.Starting-from h3 .price-currency-symbol {
    font-weight: 700;
}

.Starting-from h3 .price-amount {
    font-weight: 700;
}

.Starting-from p {
    text-align: center !important;
    left: 1% !important;
}

@media screen and (max-width: 768px) {
    .Starting-from p {
        text-align: center !important;
        left: 5% !important;
    }
}

/* =========================
   WEBDEV SHOWCASE WRAPPER
   ========================= */
   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .webdev-showcase-wrapper {
            min-height: 100vh;
            background: linear-gradient(135deg, #050505 0%, #0b0b0b 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }

        .webdev-section-title {
            font-family: -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 48px;
            font-weight: 100;
            color: white;
            text-align: center;
            margin-bottom: 50px;
            letter-spacing: 0.5px;
        }

        .webdev-carousel-container {
            max-width: 600px;
            width: 100%;
            position: relative;
        }

        .webdev-card-track {
            position: relative;
            overflow: hidden;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .webdev-card-slider {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .webdev-service-card {
            min-width: 100%;
            background: white;
            padding: 60px 50px;
            position: relative;
            overflow: hidden;
        }

        .webdev-card-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 350px;
            background-size: cover;
            background-position: center;
            filter: brightness(0.7);
        }

        .webdev-card-bg::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to bottom, transparent, white);
        }

        .webdev-feature-badges {
            position: relative;
            z-index: 2;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            min-height: 360px;
            align-content: flex-start;
        }

        .webdev-badge {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            color: #333;
            display: flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .webdev-badge-icon {
            font-size: 16px;
        }

        .webdev-content-section {
            position: relative;
            z-index: 2;
            padding-top: 10px;
        }

        .webdev-main-title {
            font-size: 38px;
            font-weight: 300;
            color: #1a1a1a;
            margin-bottom: 20px;
       
            line-height: 1.3;
        }

        .webdev-description {
            font-size: 16px;
            line-height: 1.7;
            color: #666;
            margin-bottom: 35px;
        }

        .webdev-description strong {
            color: #333;
            font-weight: 600;
        }

        .webdev-action-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .webdev-btn {
            padding: 14px 32px;
            border-radius: 25px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
        }

        .webdev-btn-primary {
            background: #1a1a1a;
            color: white;
        }

        .webdev-btn-primary:hover {
            background: #333;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .webdev-btn-secondary {
            background: transparent;
            color: #1a1a1a;
            border: 2px solid #e0e0e0;
        }

        .webdev-btn-secondary:hover {
            border-color: #1a1a1a;
            transform: translateY(-2px);
        }

        .webdev-dot-navigation {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 30px;
        }

        .webdev-nav-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            padding: 0;
        }

        .webdev-nav-dot:hover {
            background: rgba(255, 255, 255, 0.6);
            transform: scale(1.2);
        }

        .webdev-nav-dot.webdev-active {
            background: white;
            width: 30px;
            border-radius: 5px;
        }

        @media (max-width: 768px) {
            .webdev-service-card {
                padding: 40px 30px;
            }

            .webdev-main-title {
                font-size: 28px;
            }

            .webdev-description {
                font-size: 14px;
            }

            .webdev-content-section {
                margin-top: -100px;
            }
        }

/* =========================
   DESCRIPTION PARAGRAPH
   ========================= */
.descriptionP {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 5px;
    line-height: 1.6;
}

@media (min-width: 1081px) {
    .webdev-main-title {
        margin-top: -10px !important;
    }
}

@media (max-width: 768px) {
.webdev-main-title{
    margin-top:10px;
}

}
/* =========================
   BUSINESS PROFILES
   ========================= */
.Business-profiles {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}
        .controls-container {
            display: flex;
            justify-content: center;
            gap: 2.5rem;
            margin-bottom: 0rem;
            flex-wrap: wrap;
        }

        .toggle-container {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-weight: 500;
            color: #e1ff00;
        }

        .toggle-switch {
            position: relative;
            width: 52px;
            height: 28px;
            background: #63e331;
            border-radius: 14px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .toggle-switch.active {
            background: #ffffff;
        }

        .toggle-switch::after {
            content: '';
            position: absolute;
            width: 24px;
            height: 24px;
            background: white;
            border-radius: 50%;
            top: 2px;
            left: 2px;
            transition: left 0.3s;
        }

        .toggle-switch.active::after {
            left: 26px;
                   background: rgb(25, 25, 25);
        }
        .toggle-container {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-weight: 500;
            color: #e1ff00;
        }

        .toggle-switch {
            position: relative;
            width: 52px;
            height: 28px;
            background: #63e331;
            border-radius: 14px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .toggle-switch.active {
            background: #ffffff;
        }

        .toggle-switch::after {
            content: '';
            position: absolute;
            width: 24px;
            height: 24px;
            background: white;
            border-radius: 50%;
            top: 2px;
            left: 2px;
            transition: left 0.3s;
        }

        .toggle-switch.active::after {
            left: 26px;
                   background: rgb(25, 25, 25);
        }
        .currency-select {
            padding: 0.5rem 1rem;
            border: 1px solid #374151;
            border-radius: 8px;
            background: #1f2937;
            color: white;
            font-size: 0.95rem;
        }
/* =========================
   SERVICE TAGS
   ========================= */
.service-tags-container {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    justify-content: center;
    z-index: 3;
}

.service-tag {
    width: 100px;
    height: auto;
    min-height: 40px;
    background-color: rgb(255, 255, 255) !important;
    color: black !important;
    border: 1px solid rgb(77, 77, 77) !important;
    border-radius: 40px !important;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
}

@media (max-width: 768px) {
    .service-tags-container {
        flex-wrap: wrap;
        gap: 10px;
        top: 85%;
    }

    .service-tag {
        width: 90px;
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .service-tags-container {
        top: 90%;
        gap: 8px;
    }

    .service-tag {
        width: 80px;
        font-size: 0.7rem;
        padding: 5px 10px;
    }
}
















