* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}


        .header {
            position: sticky;
            top: 0;
            width: 100%;
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.95), rgba(59, 130, 246, 0.95));
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
        }

        .header.scrolled {
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.98), rgba(59, 130, 246, 0.98));
            box-shadow: 0 8px 30px rgba(30, 58, 138, 0.4);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #3b82f6, #1e40af);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: bold;
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
            transition: all 0.3s ease;
        }

        .logo-icon:hover {
            transform: rotate(10deg) scale(1.05);
            box-shadow: 0 12px 30px rgba(59, 130, 246, 0.6);
        }

        .logo-text {
            color: white;
        }

        .logo-text h1 {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .logo-text p {
            font-size: 0.9rem;
            opacity: 0.9;
            letter-spacing: 1px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-item a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .nav-item a:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .cta-button {
            background: linear-gradient(45deg, #f59e0b, #d97706);
            color: white;
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
            background: linear-gradient(45deg, #d97706, #b45309);
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 3px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Mobile Sidebar */
        .mobile-sidebar {
            position: fixed;
            top: 0;
            right: -100%;
            width: 300px;
            height: 100vh;
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.98), rgba(59, 130, 246, 0.98));
            backdrop-filter: blur(15px);
            z-index: 999;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            padding: 80px 0 20px 0;
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
        }

        .mobile-sidebar.active {
            right: 0;
        }

        .mobile-nav-menu {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-nav-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-nav-item a {
            display: block;
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 20px 30px;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .mobile-nav-item a:hover {
            background: rgba(255, 255, 255, 0.1);
            padding-left: 40px;
        }

        .mobile-cta-button {
            background: linear-gradient(45deg, #f59e0b, #d97706);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
            margin: 30px;
            width: calc(100% - 60px);
            font-size: 1.1rem;
        }

        .mobile-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
        }

        /* Overlay */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Media Queries */
        @media (max-width: 768px) {
            .nav-container {
                padding: 1rem;
            }

            .logo-text h1 {
                font-size: 1.5rem;
            }

            .logo-text p {
                font-size: 0.8rem;
            }

            .logo-icon {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .nav-menu,
            .cta-button {
                display: none;
            }

            .hamburger {
                display: flex;
            }
        }

        @media (max-width: 480px) {
            .mobile-sidebar {
                width: 280px;
            }

            .logo-text h1 {
                font-size: 1.3rem;
            }

            .logo-text p {
                font-size: 0.7rem;
            }
        }

      
   


            /* Hero Section */
            .hero {
                min-height: 95vh;
                background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
                display: flex;
                align-items: center;
                position: relative;
                overflow: hidden;
            }
    
            .hero::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
                animation: slideGrid 20s linear infinite;
            }
    
            @keyframes slideGrid {
                0% { transform: translateX(0) translateY(0); }
                100% { transform: translateX(10px) translateY(10px); }
            }
    
            .hero-container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 2rem;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
                align-items: center;
                position: relative;
                z-index: 2;
            }
    
            .hero-content {
                color: white;
            }
    
            .hero-badge {
                display: inline-block;
                background: rgba(255, 255, 255, 0.1);
                padding: 0.5rem 1.5rem;
                border-radius: 50px;
                font-size: 0.9rem;
                font-weight: 500;
                margin-bottom: 2rem;
                backdrop-filter: blur(10px);
                border: 1px solid rgba(255, 255, 255, 0.2);
                animation: fadeInUp 1s ease 0.2s both;
            }
    
            .hero-title {
                font-size: 3.5rem;
                font-weight: 800;
                line-height: 1.1;
                margin-bottom: 1.5rem;
                background: linear-gradient(135deg, #ffffff, #e0f2fe);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                animation: fadeInUp 1s ease 0.4s both;
            }
    
            .hero-subtitle {
                font-size: 1.3rem;
                opacity: 0.9;
                margin-bottom: 2rem;
                line-height: 1.6;
                animation: fadeInUp 1s ease 0.6s both;
            }
    
            .hero-buttons {
                display: flex;
                gap: 1rem;
                animation: fadeInUp 1s ease 0.8s both;
            }
    
            .btn-primary {
                background: linear-gradient(45deg, #f59e0b, #d97706);
                color: white;
                padding: 1rem 2.5rem;
                border: none;
                border-radius: 50px;
                font-size: 1.1rem;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s ease;
                box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
            }
    
            .btn-primary:hover {
                transform: translateY(-3px);
                box-shadow: 0 15px 35px rgba(245, 158, 11, 0.6);
            }
    
            .btn-secondary {
                background: transparent;
                color: white;
                padding: 1rem 2.5rem;
                border: 2px solid rgba(255, 255, 255, 0.3);
                border-radius: 50px;
                font-size: 1.1rem;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s ease;
                backdrop-filter: blur(10px);
            }
    
            .btn-secondary:hover {
                background: rgba(255, 255, 255, 0.1);
                border-color: rgba(255, 255, 255, 0.5);
                transform: translateY(-3px);
            }
    
            .hero-image {
                position: relative;
                animation: fadeInRight 1s ease 1s both;
            }
    
            .tool-showcase {
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(20px);
                border-radius: 30px;
                padding: 3rem;
                border: 1px solid rgba(255, 255, 255, 0.2);
                position: relative;
                overflow: hidden;
                transition: all 0.3s ease;
            }
    
            .tool-showcase:hover {
                transform: translateY(-10px);
                box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            }
    
            .tool-showcase::before {
                content: '';
                position: absolute;
                top: -50%;
                right: -50%;
                width: 100%;
                height: 100%;
                background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
                transform: rotate(45deg);
                animation: shimmer 3s ease-in-out infinite;
            }
    
            @keyframes shimmer {
                0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
                50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
            }
    
            .tool-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
                margin-bottom: 2rem;
            }
    
            .tool-item {
                background: rgba(255, 255, 255, 0.05);
                padding: 1.5rem;
                border-radius: 15px;
                text-align: center;
                transition: all 0.3s ease;
                border: 1px solid rgba(255, 255, 255, 0.1);
            }
    
            .tool-item:hover {
                background: rgba(255, 255, 255, 0.1);
                transform: scale(1.05);
            }
    
            .tool-icon {
                width: 60px;
                height: 60px;
                background: linear-gradient(45deg, #3b82f6, #1e40af);
                border-radius: 15px;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 1rem;
                font-size: 24px;
                color: white;
                animation: pulse 2s ease-in-out infinite;
            }
    
            .tool-icon img{
                width: 100px;
            }

            @keyframes pulse {
                0%, 100% { transform: scale(1); }
                50% { transform: scale(1.05); }
            }
    
            .tool-name {
                color: white;
                font-weight: 600;
                font-size: 0.9rem;
            }
    
            .stats-container {
                display: flex;
                justify-content: space-between;
                color: white;
                text-align: center;
            }
    
            .stat-item {
                cursor: pointer;
                transition: all 0.3s ease;
                padding: 1rem;
                border-radius: 15px;
            }
    
            .stat-item:hover {
                background: rgba(255, 255, 255, 0.1);
                transform: translateY(-5px);
            }
    
            .stat-item h3 {
                font-size: 2rem;
                font-weight: 700;
                margin-bottom: 0.5rem;
                color: #fbbf24;
                transition: all 0.3s ease;
            }
    
            .stat-item:hover h3 {
                color: #ffffff;
                text-shadow: 0 0 20px #fbbf24;
            }
    
            .stat-item p {
                font-size: 0.9rem;
                opacity: 0.8;
                transition: opacity 0.3s ease;
            }
    
            .stat-item:hover p {
                opacity: 1;
            }
    
            .floating-elements {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                pointer-events: none;
                overflow: hidden;
            }
    
            .floating-element {
                position: absolute;
                background: rgba(255, 255, 255, 0.1);
                border-radius: 50%;
                animation: float 6s ease-in-out infinite;
            }
    
            .floating-element:nth-child(1) {
                width: 80px;
                height: 80px;
                top: 20%;
                left: 10%;
                animation-delay: 0s;
            }
    
            .floating-element:nth-child(2) {
                width: 60px;
                height: 60px;
                top: 60%;
                left: 80%;
                animation-delay: 2s;
            }
    
            .floating-element:nth-child(3) {
                width: 100px;
                height: 100px;
                top: 80%;
                left: 20%;
                animation-delay: 4s;
            }
    
            @keyframes float {
                0%, 100% { transform: translateY(0px) rotate(0deg); }
                50% { transform: translateY(-20px) rotate(180deg); }
            }
    
            @keyframes fadeInUp {
                from {
                    opacity: 0;
                    transform: translateY(30px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
    
            @keyframes fadeInRight {
                from {
                    opacity: 0;
                    transform: translateX(30px);
                }
                to {
                    opacity: 1;
                    transform: translateX(0);
                }
            }
    /* Responsive Styles for Hero Section */

/* Tablet View (768px - 1024px) */
@media (max-width: 1024px) {
    .hero-container {
        gap: 3rem;
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .tool-showcase {
        padding: 2.5rem;
    }
    
    .tool-grid {
        gap: 1.5rem;
    }
    
    .tool-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
    }
}

/* Mobile Large (481px - 768px) */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 1rem;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .tool-showcase {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .tool-grid {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .tool-item {
        padding: 1rem;
    }
    
    .tool-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 0.75rem;
    }
    
    .tool-name {
        font-size: 0.85rem;
    }
    
    .stats-container {
        flex-direction: row;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 0.75rem;
    }
    
    .stat-item h3 {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }
    
    .stat-item p {
        font-size: 0.85rem;
    }
    
    .floating-element {
        display: none;
    }
}

/* Mobile Small (320px - 480px) */
@media (max-width: 480px) {
    .hero {
        min-height: 90vh;
        padding: 1rem 0;
    }
    
    .hero-container {
        gap: 2rem;
        padding: 0.5rem;
    }
    
    .hero-badge {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        gap: 0.75rem;
    }
    
    .btn-primary,
    .btn-secondary {
        max-width: 280px;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        border-radius: 40px;
    }
    
    .tool-showcase {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .tool-item {
        padding: 0.75rem;
        border-radius: 10px;
    }
    
    .tool-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-radius: 10px;
        margin-bottom: 0.5rem;
    }
    
    .tool-name {
        font-size: 0.8rem;
    }
    
    .stat-item {
        padding: 0.5rem;
    }
    
    .stat-item h3 {
        font-size: 1.3rem;
    }
    
    .stat-item p {
        font-size: 0.8rem;
    }
}

/* Extra Small Mobile (max-width: 320px) */
@media (max-width: 320px) {
    .hero-container {
        padding: 0.25rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .btn-primary,
    .btn-secondary {
        max-width: 250px;
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .tool-showcase {
        padding: 1rem;
    }
    
    .tool-item {
        padding: 0.5rem;
    }
    
    .tool-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .stat-item h3 {
        font-size: 1.2rem;
    }
    
    .stat-item p {
        font-size: 0.75rem;
    }
}

/* Landscape Phone Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 1rem 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: center;
    }
    
    .hero-content {
        order: 1;
        text-align: left;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: auto;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .tool-showcase {
        padding: 1.5rem;
    }
    
    .stats-container {
        flex-direction: row;
        gap: 0.5rem;
    }
}
           

/* about-section */
      .about-section {
        padding: 5rem 0;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        position: relative;
        overflow: hidden;
    }

    .about-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%233b82f6" opacity="0.1"/></pattern></defs><rect width="200" height="200" fill="url(%23dots)"/></svg>');
    }

    .about-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 2;
    }

    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .section-badge {
        display: inline-block;
        background: linear-gradient(135deg, #3b82f6, #1e40af);
        color: white;
        padding: 0.5rem 1.5rem;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 1rem;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        animation: fadeInUp 1s ease both;
    }

    .section-title {
        font-size: 3rem;
        font-weight: 800;
        color: #1e293b;
        margin-bottom: 1rem;
        line-height: 1.2;
        animation: fadeInUp 1s ease 0.2s both;
    }

    .section-subtitle {
        font-size: 1.2rem;
        color: #64748b;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
        animation: fadeInUp 1s ease 0.4s both;
    }

    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .feature-list {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .feature-item {
        display: flex;
        gap: 1.5rem;
        background: white;
        padding: 2rem;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        border: 1px solid rgba(59, 130, 246, 0.1);
        animation: fadeInLeft 1s ease both;
    }

    .feature-item:nth-child(2) { animation-delay: 0.2s; }
    .feature-item:nth-child(3) { animation-delay: 0.4s; }

    .feature-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        border-color: rgba(59, 130, 246, 0.3);
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #3b82f6, #1e40af);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: white;
        flex-shrink: 0;
        box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
        transition: all 0.3s ease;
    }

    .feature-item:hover .feature-icon {
        transform: rotate(10deg) scale(1.1);
    }

    .feature-content h3 {
        font-size: 1.4rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 0.5rem;
    }

    .feature-content p {
        color: #64748b;
        line-height: 1.6;
    }

    .about-visual {
        animation: fadeInRight 1s ease 0.6s both;
    }

    .experience-card {
        background: white;
        padding: 3rem;
        border-radius: 30px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(59, 130, 246, 0.1);
        position: relative;
        overflow: hidden;
    }

    .experience-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #3b82f6, #1e40af);
    }

    .card-header h3 {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 2rem;
        text-align: center;
    }

    .experience-stats {
        display: flex;
        justify-content: space-around;
        margin-bottom: 3rem;
    }

    .stat-circle {
        text-align: center;
    }

    .circle-progress {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        position: relative;
        background: #e2e8f0;
        transition: all 0.3s ease;
    }

    .circle-progress::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: conic-gradient(
            from 0deg,
            #3b82f6 0deg,
            #3b82f6 var(--progress, 95%),
            #e2e8f0 var(--progress, 95%)
        );
        transition: all 0.8s ease;
    }

    .circle-progress::after {
        content: '';
        position: absolute;
        top: 15px;
        left: 15px;
        width: 90px;
        height: 90px;
        background: white;
        border-radius: 50%;
        box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .percent-text {
        font-size: 1.4rem;
        font-weight: 800;
        color: #1e293b;
        position: relative;
        z-index: 3;
        transition: all 0.3s ease;
    }

    .stat-circle:hover .circle-progress {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    }

    .stat-circle:hover .percent-text {
        color: #3b82f6;
        transform: scale(1.1);
    }

    .stat-circle p {
        color: #64748b;
        font-weight: 500;
        font-size: 1rem;
        transition: color 0.3s ease;
    }

    .stat-circle:hover p {
        color: #3b82f6;
        font-weight: 600;
    }

    .achievements {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .achievement-item {
        text-align: center;
        padding: 1rem;
        background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
        border-radius: 15px;
        transition: all 0.6s ease;
    }

    .achievement-item:hover {
        transform: translateY(-5px);
        background: linear-gradient(135deg, #3b82f6, #1e40af);
        color: white;
    }

    .achievement-number {
        display: block;
        font-size: 1.8rem;
        font-weight: 800;
        color: #3b82f6;
        margin-bottom: 0.5rem;
        transition: color 0.3s ease;
    }

    .achievement-item:hover .achievement-number {
        color: white;
    }

    .achievement-label {
        font-size: 0.9rem;
        font-weight: 500;
        color: #64748b;
        transition: color 0.3s ease;
    }

    .achievement-item:hover .achievement-label {
        color: rgba(255, 255, 255, 0.9);
    }

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes progressAnimation {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    /* Responsive Styles for About Section */

/* Tablet View (768px - 1024px) */
@media (max-width: 1024px) {
    .about-section {
        padding: 4rem 0;
    }
    
    .about-container {
        padding: 0 1.5rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .feature-item {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .feature-content h3 {
        font-size: 1.2rem;
    }
    
    .experience-card {
        padding: 2.5rem;
    }
    
    .card-header h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .circle-progress {
        width: 100px;
        height: 100px;
    }
    
    .circle-progress::after {
        top: 12px;
        left: 12px;
        width: 76px;
        height: 76px;
    }
    
    .percent-text {
        font-size: 1.2rem;
    }
    
    .achievement-number {
        font-size: 1.6rem;
    }
    
    .achievement-label {
        font-size: 0.85rem;
    }
}

/* Mobile Large (481px - 768px) */
@media (max-width: 768px) {
    .about-section {
        padding: 3rem 0;
    }
    
    .about-container {
        padding: 0 1rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .feature-list {
        gap: 1.5rem;
        order: 2;
    }
    
    .about-visual {
        order: 1;
    }
    
    .feature-item {
        padding: 1.25rem;
        gap: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin: 0 auto;
    }
    
    .feature-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
    
    .experience-card {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .card-header h3 {
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
    }
    
    .experience-stats {
        flex-direction: row;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .circle-progress {
        width: 80px;
        height: 80px;
    }
    
    .circle-progress::after {
        top: 10px;
        left: 10px;
        width: 60px;
        height: 60px;
    }
    
    .percent-text {
        font-size: 1rem;
    }
    
    .stat-circle p {
        font-size: 0.9rem;
    }
    
    .achievements {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .achievement-item {
        padding: 1rem;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 1rem;
    }
    
    .achievement-number {
        font-size: 1.4rem;
        margin-bottom: 0;
        min-width: 60px;
    }
    
    .achievement-label {
        font-size: 0.85rem;
        margin: 0;
    }
}

/* Mobile Small (320px - 480px) */
@media (max-width: 480px) {
    .about-section {
        padding: 2.5rem 0;
    }
    
    .about-container {
        padding: 0 0.75rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-badge {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .about-content {
        gap: 2rem;
    }
    
    .feature-list {
        gap: 1.25rem;
    }
    
    .feature-item {
        padding: 1rem;
        border-radius: 15px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-radius: 10px;
    }
    
    .feature-content h3 {
        font-size: 1rem;
        margin-bottom: 0.35rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .experience-card {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .card-header h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .experience-stats {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .circle-progress {
        width: 70px;
        height: 70px;
    }
    
    .circle-progress::after {
        top: 8px;
        left: 8px;
        width: 54px;
        height: 54px;
    }
    
    .percent-text {
        font-size: 0.9rem;
    }
    
    .stat-circle p {
        font-size: 0.8rem;
    }
    
    .achievement-item {
        padding: 0.75rem;
        gap: 0.75rem;
        border-radius: 10px;
    }
    
    .achievement-number {
        font-size: 1.2rem;
        min-width: 50px;
    }
    
    .achievement-label {
        font-size: 0.8rem;
    }
}

/* Extra Small Mobile (max-width: 320px) */
@media (max-width: 320px) {
    .about-section {
        padding: 2rem 0;
    }
    
    .about-container {
        padding: 0 0.5rem;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .about-content {
        gap: 1.5rem;
    }
    
    .feature-list {
        gap: 1rem;
    }
    
    .feature-item {
        padding: 0.75rem;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .feature-content h3 {
        font-size: 0.95rem;
    }
    
    .feature-content p {
        font-size: 0.85rem;
    }
    
    .experience-card {
        padding: 1.25rem;
    }
    
    .card-header h3 {
        font-size: 1.1rem;
    }
    
    .circle-progress {
        width: 60px;
        height: 60px;
    }
    
    .circle-progress::after {
        top: 6px;
        left: 6px;
        width: 48px;
        height: 48px;
    }
    
    .percent-text {
        font-size: 0.8rem;
    }
    
    .stat-circle p {
        font-size: 0.75rem;
    }
    
    .achievement-item {
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .achievement-number {
        font-size: 1.1rem;
        min-width: 45px;
    }
    
    .achievement-label {
        font-size: 0.75rem;
    }
}

/* Landscape Phone Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .about-section {
        padding: 2rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .feature-list {
        gap: 1rem;
        order: 1;
    }
    
    .about-visual {
        order: 2;
    }
    
    .feature-item {
        padding: 1rem;
        flex-direction: row;
        text-align: left;
    }
    
    .experience-card {
        padding: 1.5rem;
    }
    
    .experience-stats {
        flex-direction: row;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .circle-progress {
        width: 60px;
        height: 60px;
    }
    
    .achievements {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .achievement-item {
        padding: 0.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .achievement-number {
        font-size: 1rem;
        margin-bottom: 0.25rem;
        min-width: auto;
    }
    
    .achievement-label {
        font-size: 0.7rem;
    }
}

/* Tablet Portrait Specific */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .feature-item {
        flex-direction: row;
        text-align: left;
    }
    
    .experience-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .achievements {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .achievement-item {
        flex-direction: column;
        text-align: center;
    }
    
    .achievement-number {
        margin-bottom: 0.5rem;
        min-width: auto;
    }
}

/* Products Section */
.products-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    position: relative;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.products-section .section-badge,
.products-section .section-title,
.products-section .section-subtitle {
    color: white;
}

.products-section .section-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease both;
}

.product-card:nth-child(even) { animation-delay: 0.2s; }
.product-card:nth-child(3n) { animation-delay: 0.4s; }

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(59, 130, 246, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.view-product-btn {
    background: white;
    color: #3b82f6;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-product-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.product-info {
    padding: 2rem;
    color: white;
}

.product-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-info p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.products-cta {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    position: relative;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease both;
}

.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.4s; }
.service-card:nth-child(4) { animation-delay: 0.6s; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.service-icon-wrapper {
    margin-bottom: 2rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-card p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;

}

.service-features li {
    color: #64748b;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Styles for Products and Services Sections */

/* Tablet Styles (768px and below) */
@media (max-width: 768px) {
    /* Products Section */
    .products-section {
        padding: 3rem 0;
    }
    
    .products-container {
        padding: 0 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .product-card {
        border-radius: 20px;
    }
    
    .product-image {
        height: 150px;
    }
    
    .product-info {
        padding: 1.5rem;
    }
    
    .product-info h3 {
        font-size: 1.3rem;
    }
    
    .product-features {
        flex-wrap: wrap;
        gap: 0.3rem;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }
    
    .products-cta {
        flex-direction: rrow;
        align-items: center;
    }
    
    .view-product-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Services Section */
    .services-section {
        padding: 3rem 0;
    }
    
    .services-container {
        padding: 0 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .service-icon-wrapper {
        margin-bottom: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        border-radius: 15px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-card p {
        margin-bottom: 1.5rem;
    }
}

/* Mobile Styles (480px and below) */
@media (max-width: 480px) {
    /* Products Section */
    .products-section {
        padding: 2rem 0;
    }
    
    .products-container {
        padding: 0 0.75rem;
    }
    
    .products-grid {
        gap: 1rem;
    }
    
    .product-card {
        border-radius: 15px;
    }
    
    .product-image {
        height: 120px;
    }

    .product-image img{
        height: 202px;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-info h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .product-info p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .product-features {
        margin-bottom: 1rem;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .view-product-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
        border-radius: 20px;
    }
    
    /* Services Section */
    .services-section {
        padding: 2rem 0;
    }
    
    .services-container {
        padding: 0 0.75rem;
    }
    
    .services-grid {
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.25rem;
        border-radius: 15px;
    }
    
    .service-icon-wrapper {
        margin-bottom: 1.25rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        border-radius: 12px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .service-features li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }
}

/* Large Mobile Styles (576px and below) */
@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card:hover {
        transform: translateY(-10px);
    }
    
    .service-card:hover {
        transform: translateY(-10px);
    }
}

/* Small Tablet Styles (between 576px and 768px) */
@media (min-width: 577px) and (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large Tablet Styles (between 768px and 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .products-container,
    .services-container {
        padding: 0 1.5rem;
    }
}

/* Extra Large Screens (1200px and above) */
@media (min-width: 1200px) {
    .products-container,
    .services-container {
        max-width: 1400px;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}



/* Why Choose Us Section */
.why-choose-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="hexagon" width="40" height="40" patternUnits="userSpaceOnUse"><polygon points="20,5 35,15 35,25 20,35 5,25 5,15" fill="none" stroke="%2364748b" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="200" height="200" fill="url(%23hexagon)"/></svg>');
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.why-choose-section .section-badge,
.why-choose-section .section-title,
.why-choose-section .section-subtitle {
    color: white;
}

.why-choose-section .section-badge {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease both;
}

.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.4s; }
.benefit-card:nth-child(4) { animation-delay: 0.6s; }

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.benefit-card:hover::before {
    opacity: 1;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(45deg); }
    100% { transform: rotate(405deg); }
}

.benefit-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.4);
}

.benefit-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 2rem;
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotateY(360deg);
}

.benefit-card h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease both;
}

.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.4s; }

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 4rem;
    color: #3b82f6;
    opacity: 0.3;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2rem;
}

.rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 2rem;
}

.star {
    color: #fbbf24;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover .star {
    transform: scale(1.2);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.author-info h4 {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Mobile First Responsive Styles */

/* Extra Small Devices (phones, less than 576px) */
@media (max-width: 575.98px) {
    .why-choose-section,
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .why-choose-container,
    .testimonials-container {
        padding: 0 1rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .benefit-card,
    .testimonial-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .benefit-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .benefit-card h3 {
        font-size: 1.3rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .why-choose-section,
    .testimonials-section {
        padding: 4rem 0;
    }
    
    .why-choose-container,
    .testimonials-container {
        padding: 0 1.5rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    
    .benefit-card,
    .testimonial-card {
        padding: 2.25rem;
    }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .benefit-card,
    .testimonial-card {
        padding: 2.5rem;
    }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .why-choose-container,
    .testimonials-container {
        max-width: 1200px;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

/* Ultra Wide Screens (1400px and up) */
@media (min-width: 1400px) {
    .why-choose-container,
    .testimonials-container {
        max-width: 1320px;
    }
}

/* Hover States - Only for devices that support hover */
@media (hover: hover) {
    .benefit-card:hover {
        transform: translateY(-15px);
    }
    
    .testimonial-card:hover {
        transform: translateY(-10px);
    }
    
    .benefit-card:hover .benefit-icon {
        transform: scale(1.1) rotateY(360deg);
    }
    
    .testimonial-card:hover .star {
        transform: scale(1.2);
    }
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    .benefit-card,
    .testimonial-card,
    .benefit-icon,
    .star {
        transition: none;
        animation: none;
    }
    
    .benefit-card:hover,
    .testimonial-card:hover,
    .benefit-card:hover .benefit-icon,
    .testimonial-card:hover .star {
        transform: none;
    }
    
    .benefit-card::before {
        animation: none;
    }
}

/* Print Styles */
@media print {
    .why-choose-section,
    .testimonials-section {
        background: white !important;
        padding: 2rem 0;
    }
    
    .benefit-card,
    .testimonial-card {
        background: white !important;
        border: 1px solid #ccc;
        box-shadow: none;
        break-inside: avoid;
        margin-bottom: 1rem;
    }
    
    .benefit-card h3,
    .testimonial-author h4 {
        color: black !important;
    }
    
    .benefit-card p,
    .testimonial-text,
    .author-info p {
        color: #333 !important;
    }
}


/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-section .section-badge,
.faq-section .section-title,
.faq-section .section-subtitle {
    color: white;
}

.faq-section .section-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-list {
    margin-top: 3rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease both;
}

.faq-item:nth-child(2) { animation-delay: 0.1s; }
.faq-item:nth-child(3) { animation-delay: 0.2s; }
.faq-item:nth-child(4) { animation-delay: 0.3s; }
.faq-item:nth-child(5) { animation-delay: 0.4s; }

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #fbbf24;
}

.faq-icon {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #fbbf24;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 2rem;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

     /* CTA Section */
     .cta-section {
        padding: 6rem 0;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%233b82f6" opacity="0.1"/></pattern></defs><rect width="200" height="200" fill="url(%23dots)"/></svg>');
        z-index: 1;
    }

    .cta-section::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
        animation: float 6s ease-in-out infinite;
        z-index: 1;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(180deg); }
    }

    .cta-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 2rem;
        text-align: center;
        position: relative;
        z-index: 2;
    }

    .cta-badge {
        display: inline-block;
        background: linear-gradient(135deg, #3b82f6, #1e40af);
        color: white;
        padding: 0.75rem 2rem;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 2rem;
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
        animation: fadeInUp 1s ease both;
        position: relative;
        overflow: hidden;
    }

    .cta-badge::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        animation: shimmer 2s infinite;
    }

    @keyframes shimmer {
        0% { left: -100%; }
        100% { left: 100%; }
    }

    .cta-content h2 {
        font-size: 3.5rem;
        font-weight: 800;
        background: linear-gradient(135deg, #1e293b 0%, #3b82f6 50%, #1e40af 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 1.5rem;
        animation: fadeInUp 1s ease 0.2s both;
        line-height: 1.1;
    }

    .cta-content p {
        font-size: 1.3rem;
        color: #64748b;
        margin-bottom: 3rem;
        animation: fadeInUp 1s ease 0.4s both;
        line-height: 1.6;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 3rem;
    }

    .cta-buttons {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        animation: fadeInUp 1s ease 0.6s both;
        flex-wrap: wrap;
    }

    .cta-btn-primary {
        background: linear-gradient(135deg, #3b82f6, #1e40af);
        color: white;
        padding: 1.5rem 3.5rem;
        border: none;
        border-radius: 50px;
        font-size: 1.2rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.4s ease;
        box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
        position: relative;
        overflow: hidden;
    }

    .cta-btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: all 0.5s ease;
    }

    .cta-btn-primary:hover::before {
        left: 100%;
    }

    .cta-btn-primary:hover {
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 25px 50px rgba(59, 130, 246, 0.5);
    }

    .cta-btn-secondary {
        background: rgba(255, 255, 255, 0.9);
        color: #3b82f6;
        padding: 1.5rem 3.5rem;
        border: 2px solid #3b82f6;
        border-radius: 50px;
        font-size: 1.2rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.4s ease;
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
    }

    .cta-btn-secondary:hover {
        background: #3b82f6;
        color: white;
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 25px 50px rgba(59, 130, 246, 0.3);
    }


    /* Responsive Styles for FAQ and CTA Sections */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    .faq-container,
    .cta-container {
        max-width: 90%;
        padding: 0 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 3rem;
    }
    
    .cta-content p {
        font-size: 1.2rem;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 1.3rem 3rem;
        font-size: 1.1rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .faq-section,
    .cta-section {
        padding: 4rem 0;
    }
    
    .faq-container,
    .cta-container {
        padding: 0 1rem;
    }
    
    .faq-question {
        padding: 1.5rem;
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1.5rem;
        max-height: 250px;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 300px;
        padding: 1.2rem 2.5rem;
    }
    
    .cta-badge {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* Mobile Devices */
@media (max-width: 480px) {
    .faq-section,
    .cta-section {
        padding: 3rem 0;
    }
    
    .faq-container,
    .cta-container {
        padding: 0 0.75rem;
    }
    
    .faq-question {
        padding: 1.25rem;
        font-size: 0.95rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .faq-icon {
        font-size: 1.25rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1.25rem;
        max-height: 300px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
        max-width: 280px;
    }
    
    .cta-badge {
        padding: 0.5rem 1.25rem;
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons {
        gap: 0.75rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 320px) {
    .faq-section,
    .cta-section {
        padding: 2.5rem 0;
    }
    
    .faq-container,
    .cta-container {
        padding: 0 0.5rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        max-width: 250px;
    }
    
    .cta-badge {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }

    .service-card{
        width: 85%;
    }
}

/* Hover Effects Adjustments for Touch Devices */
@media (hover: none) and (pointer: coarse) {
    .faq-item:hover {
        transform: none;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
    
    .faq-question:hover {
        color: white;
    }
    
    .cta-btn-primary:hover,
    .cta-btn-secondary:hover {
        transform: none;
        box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
    }
}

/* Landscape Orientation for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .faq-section,
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: auto;
        max-width: none;
        padding: 1rem 2rem;
    }
}



    /* Trust Indicators */
    .trust-indicators {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        margin-top: 3rem;
        animation: fadeInUp 1s ease 1s both;
        flex-wrap: wrap;
    }

    .trust-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: #64748b;
        font-size: 0.9rem;
        font-weight: 600;
    }

    .trust-icon {
        width: 24px;
        height: 24px;
        background: linear-gradient(135deg, #3b82f6, #1e40af);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 0.8rem;
    }

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

   


/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    animation: fadeInLeft 1s ease both;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.contact-details h4 {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #64748b;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: fadeInRight 1s ease both;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    padding: 1.25rem;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: #3b82f6;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.8;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #3b82f6;
    transform: translateX(5px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p a{
    color: white;
    text-decoration: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile First Responsive Styles */

/* Tablet and below (768px and down) */
@media (max-width: 768px) {
    /* Trust Indicators */
    .trust-indicators {
        gap: 1.5rem;
        margin-top: 2rem;
        justify-content: center;
    }

    .trust-item {
        font-size: 0.8rem;
        gap: 0.5rem;
    }

    .trust-icon {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }

    /* Contact Section */
    .contact-section {
        padding: 3rem 0;
    }

    .contact-container {
        padding: 0 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .contact-form {
        padding: 2rem;
        border-radius: 20px;
    }

    .contact-item {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Mobile (480px and down) */
@media (max-width: 480px) {
    /* Trust Indicators */
    .trust-indicators {
        gap: 1rem;
        margin-top: 1.5rem;
        flex-direction: row;
        align-items: center;
    }

    .trust-item {
        font-size: 0.75rem;
        justify-content: center;
    }

    /* Contact Section */
    .contact-section {
        padding: 2rem 0;
    }

    .contact-container {
        padding: 0 0.75rem;
    }

    .contact-content {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .contact-item {
        padding: 0.75rem;
        margin-bottom: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .contact-item:hover {
        transform: translateY(-5px);
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 1rem;
        font-size: 1rem;
    }

    /* Footer */
    .footer-container {
        padding: 0 0.75rem;
    }

    .footer-content {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .social-links {
        gap: 0.75rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.9rem;
    }
}

/* Large Mobile (360px and down) */
@media (max-width: 360px) {
    .contact-container,
    .footer-container {
        padding: 0 0.5rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .trust-indicators {
        gap: 0.75rem;
    }

    .trust-item {
        font-size: 0.7rem;
    }

    .contact-item {
        padding: 0.5rem;
    }

    .social-links {
        gap: 0.5rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .contact-section {
        padding: 1.5rem 0;
    }

    .footer {
        padding: 1.5rem 0 0.5rem;
    }

    .contact-content {
        margin-top: 1rem;
    }
}


        /* About-Page */

        .about-hardtools-container {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
            min-height: 100vh;
            color: white;
            overflow-x: hidden;
        }

        .about-hero-section {
            padding: 80px 20px 60px;
            text-align: center;
            position: relative;
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(59, 130, 246, 0.9));
        }

        .about-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .about-hero-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .about-main-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #ffffff, #f0f4ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: aboutTitleSlide 1s ease-out;
        }

        .about-subtitle {
            font-size: 1.3rem;
            opacity: 0.9;
            margin-bottom: 40px;
            animation: aboutSubtitleFade 1.2s ease-out 0.3s both;
        }

        .about-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 50px;
            animation: aboutStatsSlide 1.5s ease-out 0.6s both;
        }

        .about-stat-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.4s ease;
            transform: translateY(0);
        }

        .about-stat-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .about-stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffd700;
            display: block;
            margin-bottom: 10px;
        }

        .about-stat-label {
            font-size: 1rem;
            opacity: 0.9;
        }

        .about-story-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
            color: #1e3a8a;
        }

        .about-story-section .about-section-title {
            color: #1e3a8a;
        }

        .about-story-section .about-story-text {
            color: #374151;
            opacity: 1;
        }

        .about-story-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-story-content {
            animation: aboutContentSlide 1s ease-out;
        }

        .about-section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: #ffffff;
        }

        .about-story-text {
            font-size: 1.1rem;
            line-height: 1.8;
            opacity: 0.9;
            margin-bottom: 25px;
        }

        .about-story-visual {
            position: relative;
            animation: aboutVisualFloat 1.2s ease-out 0.4s both;
        }

        .about-visual-card {
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(59, 130, 246, 0.1));
            backdrop-filter: blur(15px);
            border: 2px solid rgba(30, 58, 138, 0.3);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            transition: all 0.4s ease;
            color: #1e3a8a;
        }

        .about-visual-card:hover {
            transform: scale(1.05);
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(59, 130, 246, 0.2));
            border-color: rgba(30, 58, 138, 0.5);
        }

        .about-visual-card h3 {
            color: #1e3a8a !important;
        }

        .about-visual-card p {
            color: #374151 !important;
        }

        .about-visual-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #3b82f6, #60a5fa);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
            color: white;
        }

        .about-visual-card:hover .about-visual-icon {
            transform: rotate(360deg);
        }

        .about-values-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.4), rgba(59, 130, 246, 0.3));
        }

        .about-values-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .about-values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .about-value-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            padding: 40px 30px;
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
        }

        .about-value-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
            opacity: 0;
        }

        .about-value-card:hover::before {
            animation: aboutShimmer 0.6s ease-in-out;
        }

        .about-value-card:hover {
            transform: translateY(-15px);
            background: rgba(255, 255, 255, 0.12);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }

        .about-value-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #ef4444, #f87171);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 25px;
            transition: all 0.4s ease;
            color: white;
        }

        .about-value-card:nth-child(2) .about-value-icon {
            background: linear-gradient(135deg, #10b981, #34d399);
            color: white;
        }

        .about-value-card:nth-child(3) .about-value-icon {
            background: linear-gradient(135deg, #f59e0b, #fbbf24);
            color: white;
        }

        .about-value-card:hover .about-value-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .about-value-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #ffffff;
        }

        .about-value-description {
            font-size: 1rem;
            line-height: 1.6;
            opacity: 0.9;
        }

        .about-team-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(241, 245, 249, 0.95) 100%);
            color: #1e3a8a;
        }

        .about-team-section .about-section-title {
            color: #1e3a8a;
        }

        .about-team-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .about-team-highlight {
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(59, 130, 246, 0.1));
            backdrop-filter: blur(15px);
            border: 2px solid rgba(30, 58, 138, 0.3);
            border-radius: 25px;
            padding: 60px 40px;
            margin-top: 50px;
            transition: all 0.4s ease;
            color: #1e3a8a;
        }

        .about-team-highlight:hover {
            transform: scale(1.02);
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(59, 130, 246, 0.2));
            border-color: rgba(30, 58, 138, 0.5);
        }

        .about-team-highlight h3 {
            color: #3b82f6 !important;
        }

        .about-team-highlight p {
            color: #374151 !important;
        }

        .about-cta-section {
            padding: 80px 20px;
            text-align: center;
            background: linear-gradient(135deg, #1e3a8a, #3b82f6);
        }

        .about-cta-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .about-cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #ffffff, #f8fafc);
            color: #1e3a8a;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            margin-top: 30px;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .about-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3);
            background: linear-gradient(135deg, #f8fafc, #ffffff);
            border-color: rgba(255, 255, 255, 0.6);
        }

        /* Animations */
        @keyframes aboutTitleSlide {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes aboutSubtitleFade {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 0.9;
                transform: translateY(0);
            }
        }

        @keyframes aboutStatsSlide {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes aboutContentSlide {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes aboutVisualFloat {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes aboutShimmer {
            0% {
                opacity: 0;
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
            }
            50% {
                opacity: 1;
            }
            100% {
                opacity: 0;
                transform: translateX(100%) translateY(100%) rotate(45deg);
            }
        }

       

        /* Scroll animations */
        .about-animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .about-animate-on-scroll.about-visible {
            opacity: 1;
            transform: translateY(0);
        }
   

        /* Responsive Styles for About HardTools */

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .about-main-title {
        font-size: 4rem;
    }
    
    .about-subtitle {
        font-size: 1.4rem;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
    
    .about-story-container {
        gap: 80px;
    }
    
    .about-values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }
}

/* Medium Desktop (992px to 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .about-hero-content,
    .about-story-container,
    .about-values-container,
    .about-team-container,
    .about-cta-container {
        max-width: 960px;
    }
    
    .about-main-title {
        font-size: 3.2rem;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    .about-story-container {
        gap: 50px;
    }
    
    .about-values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet (768px to 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .about-hero-section {
        padding: 60px 20px 50px;
    }
    
    .about-main-title {
        font-size: 2.8rem;
    }
    
    .about-subtitle {
        font-size: 1.2rem;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 40px;
    }
    
    .about-stat-card {
        padding: 25px 15px;
    }
    
    .about-stat-number {
        font-size: 2.2rem;
    }
    
    .about-story-section,
    .about-values-section,
    .about-team-section,
    .about-cta-section {
        padding: 60px 20px;
    }
    
    .about-story-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-section-title {
        font-size: 2.2rem;
    }
    
    .about-story-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .about-visual-card {
        padding: 30px;
    }
    
    .about-visual-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 40px;
    }
    
    .about-value-card {
        padding: 35px 25px;
    }
    
    .about-value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .about-team-highlight {
        padding: 50px 30px;
        margin-top: 40px;
    }
}

/* Large Mobile (576px to 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .about-hero-section {
        padding: 50px 15px 40px;
    }
    
    .about-main-title {
        font-size: 2.4rem;
        margin-bottom: 15px;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }
    
    .about-stat-card {
        padding: 20px 15px;
    }
    
    .about-stat-number {
        font-size: 2rem;
        margin-bottom: 8px;
    }
    
    .about-stat-label {
        font-size: 0.9rem;
    }
    
    .about-story-section,
    .about-values-section,
    .about-team-section,
    .about-cta-section {
        padding: 50px 15px;
    }
    
    .about-story-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-section-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .about-story-text {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    
    .about-visual-card {
        padding: 25px 20px;
    }
    
    .about-visual-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }
    
    .about-value-card {
        padding: 30px 20px;
    }
    
    .about-value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .about-value-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .about-value-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .about-team-highlight {
        padding: 40px 25px;
        margin-top: 30px;
    }
    
    .about-cta-button {
        padding: 12px 30px;
        font-size: 1rem;
        margin-top: 25px;
    }
}

/* Medium Mobile (481px to 575px) */
@media (max-width: 575px) and (min-width: 481px) {
    .about-hero-section {
        padding: 40px 10px 30px;
    }
    
    .about-main-title {
        font-size: 2rem;
        margin-bottom: 12px;
        line-height: 1.2;
    }
    
    .about-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 25px;
    }
    
    .about-stat-card {
        padding: 20px 15px;
        margin: 0 10px;
    }
    
    .about-stat-number {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .about-stat-label {
        font-size: 0.85rem;
    }
    
    .about-story-section,
    .about-values-section,
    .about-team-section,
    .about-cta-section {
        padding: 40px 10px;
    }
    
    .about-story-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .about-section-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
        padding: 0 5px;
    }
    
    .about-story-text {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 18px;
        padding: 0 5px;
    }
    
    .about-visual-card {
        padding: 20px 15px;
        margin: 0 5px;
    }
    
    .about-visual-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 25px;
    }
    
    .about-value-card {
        padding: 25px 15px;
        margin: 0 5px;
    }
    
    .about-value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .about-value-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .about-value-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .about-team-highlight {
        padding: 30px 20px;
        margin: 25px 5px 0;
    }
    
    .about-team-highlight h3 {
        font-size: 1.3rem !important;
    }
    
    .about-team-highlight p {
        font-size: 0.9rem !important;
    }
    
    .about-cta-container {
        padding: 0 10px;
    }
    
    .about-cta-button {
        padding: 12px 25px;
        font-size: 0.95rem;
        margin-top: 20px;
        display: block;
        text-align: center;
    }
}

/* Small Mobile (321px to 480px) */
@media (max-width: 480px) and (min-width: 321px) {
    .about-hero-section {
        padding: 35px 12px 25px;
    }

    .about-story-container{
        grid-template-columns: 1fr;
    }
    
    .about-main-title {
        font-size: 1.9rem;
        margin-bottom: 10px;
        line-height: 1.1;
    }
    
    .about-subtitle {
        font-size: 0.98rem;
        margin-bottom: 22px;
        padding: 0 8px;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 20px;
    }
    
    .about-stat-card {
        padding: 18px 12px;
        margin: 0 8px;
    }
    
    .about-stat-number {
        font-size: 1.7rem;
        margin-bottom: 6px;
    }
    
    .about-stat-label {
        font-size: 0.82rem;
    }
    
    .about-story-section,
    .about-values-section,
    .about-team-section,
    .about-cta-section {
        padding: 35px 12px;
    }
    
    .about-section-title {
        font-size: 1.7rem;
        margin-bottom: 18px;
        padding: 0 3px;
        text-align: center;
    }
    
    .about-story-text {
        font-size: 0.92rem;
        line-height: 1.55;
        margin-bottom: 16px;
        padding: 0 3px;
    }
    
    .about-visual-card {
        padding: 18px 12px;
        margin: 0 3px;
    }
    
    .about-visual-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
        margin-bottom: 10px;
    }
    
    .about-values-grid {
        gap: 18px;
        margin-top: 22px;
    }
    
    .about-value-card {
        padding: 22px 12px;
        margin: 0 3px;
    }
    
    .about-value-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
        margin-bottom: 12px;
    }
    
    .about-value-title {
        font-size: 1.15rem;
        margin-bottom: 8px;
    }
    
    .about-value-description {
        font-size: 0.88rem;
        line-height: 1.4;
    }
    
    .about-team-highlight {
        padding: 25px 15px;
        margin: 20px 3px 0;
    }
    
    .about-cta-button {
        padding: 10px 22px;
        font-size: 0.92rem;
        margin-top: 18px;
    }
}

/* Extra Small Mobile (up to 320px) */
@media (max-width: 320px) {
    .about-hero-section {
        padding: 30px 8px 20px;
    }
    
    .about-main-title {
        font-size: 1.6rem;
        margin-bottom: 8px;
        line-height: 1.1;
    }
    
    .about-subtitle {
        font-size: 0.85rem;
        margin-bottom: 18px;
        padding: 0 5px;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 15px;
    }
    
    .about-stat-card {
        padding: 15px 10px;
        margin: 0 5px;
    }
    
    .about-stat-number {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }
    
    .about-stat-label {
        font-size: 0.75rem;
    }
    
    .about-story-section,
    .about-values-section,
    .about-team-section,
    .about-cta-section {
        padding: 30px 8px;
    }
    
    .about-section-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
        padding: 0 2px;
    }
    
    .about-story-text {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 15px;
        padding: 0 2px;
    }
    
    .about-visual-card {
        padding: 15px 10px;
        margin: 0 2px;
    }
    
    .about-visual-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .about-values-grid {
        gap: 15px;
        margin-top: 20px;
    }
    
    .about-value-card {
        padding: 20px 10px;
        margin: 0 2px;
    }
    
    .about-value-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .about-value-title {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .about-value-description {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .about-team-highlight {
        padding: 20px 12px;
        margin: 15px 2px 0;
    }
    
    .about-team-highlight h3 {
        font-size: 1.1rem !important;
    }
    
    .about-team-highlight p {
        font-size: 0.8rem !important;
    }
    
    .about-cta-container {
        padding: 0 5px;
    }
    
    .about-cta-button {
        padding: 8px 18px;
        font-size: 0.85rem;
        margin-top: 15px;
        width: 100%;
        box-sizing: border-box;
    }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) and (min-width: 321px) {
    .about-main-title {
        font-size: 1.8rem;
    }
    
    .about-subtitle {
        font-size: 0.95rem;
    }
    
    .about-section-title {
        font-size: 1.6rem;
    }
    
    .about-story-text {
        font-size: 0.9rem;
    }
    
    .about-stat-number {
        font-size: 1.6rem;
    }
    
    .about-value-title {
        font-size: 1.1rem;
    }
    
    .about-value-description {
        font-size: 0.85rem;
    }
    
    .about-cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Landscape Mobile Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .about-hero-section {
        padding: 30px 20px 25px;
    }
    
    .about-main-title {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }
    
    .about-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .about-stats-grid {
        margin-top: 20px;
        grid-template-columns: repeat(4, 1fr);
    }
    
    .about-stat-card {
        padding: 15px 10px;
    }
    
    .about-stat-number {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }
    
    .about-story-section,
    .about-values-section,
    .about-team-section,
    .about-cta-section {
        padding: 40px 20px;
    }
}

/* Print Styles */
@media print {
    .about-hardtools-container {
        background: white !important;
        color: black !important;
    }
    
    .about-hero-section,
    .about-story-section,
    .about-values-section,
    .about-team-section,
    .about-cta-section {
        background: white !important;
        color: black !important;
        page-break-inside: avoid;
    }
    
    .about-stat-card,
    .about-visual-card,
    .about-value-card,
    .about-team-highlight {
        background: white !important;
        border: 1px solid #ccc !important;
        color: black !important;
    }
    
    .about-cta-button {
        display: none;
    }
}



        /* Service-page */

        .services-main-container {
            min-height: 100vh;
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            position: relative;
            overflow-x: hidden;
        }

        /* Animated Background Elements */
        .services-bg-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            animation: services-float 6s ease-in-out infinite;
        }

        .services-bg-circle-1 {
            width: 200px;
            height: 200px;
            top: 10%;
            left: -5%;
            animation-delay: 0s;
        }

        .services-bg-circle-2 {
            width: 150px;
            height: 150px;
            top: 60%;
            right: -3%;
            animation-delay: 2s;
        }

        .services-bg-circle-3 {
            width: 300px;
            height: 300px;
            bottom: 10%;
            left: 70%;
            animation-delay: 4s;
        }

        .services-bg-circle-4 {
            width: 100px;
            height: 100px;
            top: 40%;
            left: 80%;
            background: rgba(59, 130, 246, 0.2);
            animation-delay: 1s;
        }

        .services-bg-circle-5 {
            width: 250px;
            height: 250px;
            top: 20%;
            right: 60%;
            background: rgba(96, 165, 250, 0.15);
            animation-delay: 3s;
        }

        @keyframes services-float {
            0%, 100% { transform: translateY(0px) scale(1); }
            50% { transform: translateY(-20px) scale(1.1); }
        }

        /* Hero Section */
        .services-hero-section {
            text-align: center;
            padding: 80px 20px 60px;
            position: relative;
            z-index: 10;
        }

        .services-hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 20px;
            border-radius: 25px;
            color: white;
            font-size: 14px;
            margin-bottom: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            animation: services-pulse 2s infinite;
        }

        @keyframes services-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .services-hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            animation: services-slideUp 1s ease-out;
        }

        .services-hero-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            margin: 0 auto 40px;
            line-height: 1.6;
            animation: services-slideUp 1s ease-out 0.2s both;
        }

        @keyframes services-slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Services Grid */
        .services-grid-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px 80px;
            position: relative;
            z-index: 10;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }


        
        .services-card {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(15px);
            border-radius: 16px;
            padding: 25px 20px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            animation: cardSlide 0.8s ease-out, float 3s ease-in-out infinite;
            width: 320px;
            max-width: 350px;
        }

        @keyframes cardSlide {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-5px);
            }
        }

        .services-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
            transition: left 0.6s;
        }

        .services-card:hover::before {
            left: 100%;
        }

        .services-card:hover {
            transform: translateY(-8px) scale(1.03);
            background: rgba(255, 255, 255, 0.18);
            border-color: rgba(255, 255, 255, 0.4);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
            animation: none;
        }

        /* New layout for image and title */
        .services-card-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .services-card-image {
            width: 70px;
            height: 70px;
            border-radius: 15px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .services-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .services-card:hover .services-card-image {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .services-card-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: white;
            margin: 0;
            transition: all 0.3s ease;
            flex: 1;
        }

        .services-card:hover .services-card-title {
            color: #fbbf24;
            transform: translateY(-2px);
        }

        /* Center the features and button */
        .services-card-content {
            text-align: center;
        }

        .services-card-features {
            list-style: none;
            margin-bottom: 20px;
            padding: 0;
        }

        .services-card-features li {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 6px;
            position: relative;
            padding-left: 18px;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .services-card-features li::before {
            content: '✨';
            position: absolute;
            left: 0;
            font-size: 0.8rem;
        }

        .services-card:hover .services-card-features li {
            color: rgba(255, 255, 255, 0.95);
            transform: translateX(3px);
        }

        .services-card-button {
            background: linear-gradient(135deg, #f59e0b, #fbbf24);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            font-size: 0.9rem;
        }

        .services-card-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            transition: left 0.3s ease;
        }

        .services-card-button:hover::before {
            left: 0;
        }

        .services-card-button a {
            position: relative;
            z-index: 2;
            text-decoration: none;
            color: white;
        }

        .services-card-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 15px rgba(245, 158, 11, 0.4);
        }

        /* CTA Section */
        .services-cta-section {
            text-align: center;
            padding: 80px 20px;
            position: relative;
            z-index: 10;
        }

        .services-cta-card {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            padding: 60px 40px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .services-cta-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            animation: services-rotate 4s linear infinite;
        }

        @keyframes services-rotate {
            to { transform: rotate(360deg); }
        }

        .services-cta-content {
            position: relative;
            z-index: 2;
        }

        .services-cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
        }

        .services-cta-text {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .services-cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .services-cta-btn-primary,
        .services-cta-btn-secondary {
            padding: 15px 30px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .services-cta-btn-primary {
            background: linear-gradient(135deg, #f59e0b, #fbbf24);
            color: white;
        }

        .services-cta-btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .services-cta-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(245, 158, 11, 0.4);
        }

        .services-cta-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.6);
            transform: translateY(-3px);
        }
    

/* Enhanced Mobile-First Responsive Styles - 100% Card Width */

/* Extra Large Screens - 1400px+ */
@media (min-width: 1400px) {
    .services-hero-title {
        font-size: 4.5rem;
        margin-bottom: 30px;
    }
    
    .services-hero-subtitle {
        font-size: 1.4rem;
        max-width: 700px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }
    
    .services-card {
        width: 100%;
        max-width: 100%;
        padding: 35px 30px;
    }
    
    .services-cta-title {
        font-size: 3.5rem;
    }
    
    .services-cta-card {
        padding: 80px 60px;
    }
}

/* Large Screens - Desktop 1200px-1399px */
@media (max-width: 1399px) and (min-width: 1200px) {
    .services-hero-title {
        font-size: 4rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .services-card {
        width: 100%;
        max-width: 100%;
        padding: 30px 25px;
    }
    
    .services-cta-title {
        font-size: 3rem;
    }
    
    .services-cta-card {
        padding: 70px 50px;
    }
}

/* Medium Large - 992px-1199px */
@media (max-width: 1199px) and (min-width: 992px) {
    .services-hero-title {
        font-size: 3.5rem;
    }
    
    .services-hero-subtitle {
        font-size: 1.15rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .services-card {
        width: 100%;
        max-width: 100%;
        padding: 28px 24px;
    }
    
    .services-cta-title {
        font-size: 2.8rem;
    }
    
    .services-cta-card {
        padding: 60px 40px;
    }
}

/* Medium - Tablet Landscape 768px-991px */
@media (max-width: 991px) and (min-width: 768px) {
    .services-hero-section {
        padding: 70px 20px 50px;
    }
    
    .services-hero-title {
        font-size: 3rem;
        line-height: 1.1;
    }
    
    .services-hero-subtitle {
        font-size: 1.1rem;
        max-width: 550px;
        margin-bottom: 35px;
    }
    
    .services-grid-container {
        padding: 0 20px 70px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 50px;
    }
    
    .services-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 25px 22px;
    }
    
    .services-card-header {
        gap: 15px;
        margin-bottom: 18px;
    }
    
    .services-card-image {
        width: 65px;
        height: 65px;
    }
    
    .services-card-title {
        font-size: 1.25rem;
    }
    
    .services-cta-section {
        padding: 70px 20px;
    }
    
    .services-cta-title {
        font-size: 2.5rem;
    }
    
    .services-cta-card {
        padding: 50px 35px;
    }
    
    .services-cta-buttons {
        gap: 25px;
    }
}

/* Small Medium - Tablet Portrait 576px-767px */
@media (max-width: 767px) and (min-width: 576px) {
    .services-main-container {
        overflow-x: hidden;
    }
    
    .services-hero-section {
        padding: 60px 20px 40px;
    }
    
    .services-hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .services-hero-subtitle {
        font-size: 1rem;
        max-width: 480px;
        margin-bottom: 35px;
        line-height: 1.5;
    }
    
    .services-hero-badge {
        font-size: 13px;
        padding: 8px 18px;
        margin-bottom: 25px;
    }
    
    .services-grid-container {
        padding: 0 20px 60px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .services-card {
        width: 100%;
        max-width: 100%;
        padding: 24px 20px;
        margin: 0;
    }
    
    .services-card-header {
        gap: 12px;
        margin-bottom: 16px;
    }
    
    .services-card-image {
        width: 60px;
        height: 60px;
    }
    
    .services-card-title {
        font-size: 1.2rem;
    }
    
    .services-card-features {
        margin-bottom: 18px;
    }
    
    .services-card-features li {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .services-card-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .services-cta-section {
        padding: 60px 20px;
    }
    
    .services-cta-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 18px;
    }
    
    .services-cta-card {
        padding: 40px 30px;
        border-radius: 20px;
    }
    
    .services-cta-text {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .services-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    
    .services-cta-btn-primary,
    .services-cta-btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    /* Background elements adjustment */
    .services-bg-circle-1 {
        width: 140px;
        height: 140px;
        top: 8%;
        left: -8%;
    }
    
    .services-bg-circle-2 {
        width: 90px;
        height: 90px;
        top: 65%;
        right: -5%;
    }
    
    .services-bg-circle-3 {
        width: 180px;
        height: 180px;
        bottom: 8%;
        left: 75%;
    }
    
    .services-bg-circle-4 {
        width: 70px;
        height: 70px;
    }
    
    .services-bg-circle-5 {
        width: 160px;
        height: 160px;
    }
}

/* Mobile Large - 480px-575px */
@media (max-width: 575px) and (min-width: 480px) {
    .services-hero-section {
        padding: 50px 18px 35px;
    }
    
    .services-hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 18px;
    }
    
    .services-hero-subtitle {
        font-size: 0.95rem;
        max-width: 420px;
        margin-bottom: 30px;
        line-height: 1.4;
    }
    
    .services-hero-badge {
        font-size: 12px;
        padding: 7px 16px;
        margin-bottom: 20px;
    }
    
    .services-grid-container {
        padding: 0 18px 50px;
    }
    
    .services-grid {
        gap: 20px;
        margin-top: 35px;
    }
    
    .services-card {
        width: 100%;
        max-width: 100%;
        padding: 20px 18px;
        border-radius: 14px;
    }
    
    .services-card-header {
        gap: 10px;
        margin-bottom: 14px;
    }
    
    .services-card-image {
        width: 55px;
        height: 55px;
        border-radius: 12px;
    }
    
    .services-card-title {
        font-size: 1.1rem;
    }
    
    .services-card-features {
        margin-bottom: 16px;
    }
    
    .services-card-features li {
        font-size: 0.85rem;
        margin-bottom: 5px;
        padding-left: 16px;
    }
    
    .services-card-button {
        padding: 9px 18px;
        font-size: 0.85rem;
        border-radius: 22px;
    }
    
    .services-cta-section {
        padding: 50px 18px;
    }
    
    .services-cta-title {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 16px;
    }
    
    .services-cta-card {
        padding: 35px 25px;
        border-radius: 18px;
    }
    
    .services-cta-text {
        font-size: 0.95rem;
        margin-bottom: 22px;
        line-height: 1.4;
    }
    
    .services-cta-btn-primary,
    .services-cta-btn-secondary {
        max-width: 260px;
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    /* Background adjustments */
    .services-bg-circle-1 {
        width: 120px;
        height: 120px;
        opacity: 0.8;
    }
    
    .services-bg-circle-2 {
        width: 75px;
        height: 75px;
        opacity: 0.8;
    }
    
    .services-bg-circle-3 {
        width: 150px;
        height: 150px;
        opacity: 0.8;
    }
}

/* Mobile Medium - 375px-479px */
@media (max-width: 479px) and (min-width: 375px) {
    .services-main-container {
        overflow-x: hidden;
    }
    
    .services-hero-section {
        padding: 45px 16px 30px;
    }
    
    .services-hero-title {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 16px;
    }
    
    .services-hero-subtitle {
        font-size: 0.9rem;
        max-width: 340px;
        margin-bottom: 28px;
        line-height: 1.4;
    }
    
    .services-hero-badge {
        font-size: 11px;
        padding: 6px 14px;
        margin-bottom: 18px;
    }
    
    .services-grid-container {
        padding: 0 16px 45px;
    }
    
    .services-grid {
        gap: 18px;
        margin-top: 30px;
    }
    
    .services-card {
        width: 100%;
        max-width: 100%;
        padding: 18px 16px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .services-card-header {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .services-card-image {
        width: 50px;
        height: 50px;
        align-self: center;
        border-radius: 10px;
    }
    
    .services-card-title {
        font-size: 1.05rem;
        text-align: center;
        margin: 0;
    }
    
    .services-card-features {
        margin-bottom: 14px;
        text-align: left;
    }
    
    .services-card-features li {
        font-size: 0.8rem;
        margin-bottom: 4px;
        padding-left: 14px;
    }
    
    .services-card-features li::before {
        font-size: 0.7rem;
    }
    
    .services-card-button {
        padding: 8px 16px;
        font-size: 0.8rem;
        border-radius: 20px;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        display: block;
    }
    
    .services-cta-section {
        padding: 45px 16px;
    }
    
    .services-cta-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 14px;
    }
    
    .services-cta-card {
        padding: 30px 20px;
        border-radius: 16px;
    }
    
    .services-cta-text {
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .services-cta-buttons {
        gap: 14px;
    }
    
    .services-cta-btn-primary,
    .services-cta-btn-secondary {
        max-width: 240px;
        padding: 11px 22px;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    /* Hide complex background elements */
    .services-bg-circle-4,
    .services-bg-circle-5 {
        display: none;
    }
    
    .services-bg-circle-1 {
        width: 100px;
        height: 100px;
        opacity: 0.6;
        top: 5%;
        left: -10%;
    }
    
    .services-bg-circle-2 {
        width: 60px;
        height: 60px;
        opacity: 0.6;
        top: 70%;
        right: -8%;
    }
    
    .services-bg-circle-3 {
        width: 130px;
        height: 130px;
        opacity: 0.6;
        bottom: 5%;
        left: 80%;
    }
}

/* Mobile Small - 320px-374px */
@media (max-width: 374px) and (min-width: 320px) {
    .services-main-container {
        overflow-x: hidden;
        min-height: 100vh;
    }
    
    .services-hero-section {
        padding: 40px 14px 25px;
    }
    
    .services-hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 14px;
        word-break: break-word;
    }
    
    .services-hero-subtitle {
        font-size: 0.85rem;
        max-width: 290px;
        margin-bottom: 25px;
        line-height: 1.3;
    }
    
    .services-hero-badge {
        font-size: 10px;
        padding: 5px 12px;
        margin-bottom: 16px;
    }
    
    .services-grid-container {
        padding: 0 14px 40px;
    }
    
    .services-grid {
        gap: 16px;
        margin-top: 25px;
    }
    
    .services-card {
        width: 100%;
        max-width: 100%;
        padding: 16px 14px;
        border-radius: 10px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    }
    
    .services-card-header {
        flex-direction: column;
        text-align: center;
        gap: 6px;
        margin-bottom: 10px;
    }
    
    .services-card-image {
        width: 45px;
        height: 45px;
        align-self: center;
        border-radius: 8px;
    }
    
    .services-card-title {
        font-size: 1rem;
        text-align: center;
        margin: 0;
        line-height: 1.2;
    }
    
    .services-card-features {
        margin-bottom: 12px;
        text-align: left;
    }
    
    .services-card-features li {
        font-size: 0.75rem;
        margin-bottom: 3px;
        padding-left: 12px;
        line-height: 1.3;
    }
    
    .services-card-features li::before {
        font-size: 0.6rem;
    }
    
    .services-card-button {
        padding: 7px 14px;
        font-size: 0.75rem;
        border-radius: 18px;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        display: block;
    }
    
    .services-cta-section {
        padding: 40px 14px;
    }
    
    .services-cta-title {
        font-size: 1.6rem;
        line-height: 1.1;
        margin-bottom: 12px;
        word-break: break-word;
    }
    
    .services-cta-card {
        padding: 25px 18px;
        border-radius: 14px;
    }
    
    .services-cta-text {
        font-size: 0.85rem;
        margin-bottom: 18px;
        line-height: 1.3;
    }
    
    .services-cta-buttons {
        gap: 12px;
    }
    
    .services-cta-btn-primary,
    .services-cta-btn-secondary {
        width: 100%;
        max-width: 220px;
        padding: 10px 20px;
        font-size: 0.85rem;
        border-radius: 8px;
    }
    
    /* Minimal background elements */
    .services-bg-circle-4,
    .services-bg-circle-5 {
        display: none;
    }
    
    .services-bg-circle-1 {
        width: 80px;
        height: 80px;
        opacity: 0.4;
        top: 3%;
        left: -12%;
    }
    
    .services-bg-circle-2 {
        width: 50px;
        height: 50px;
        opacity: 0.4;
        top: 75%;
        right: -10%;
    }
    
    .services-bg-circle-3 {
        width: 100px;
        height: 100px;
        opacity: 0.4;
        bottom: 3%;
        left: 85%;
    }
}

/* Mobile Extra Small - Below 320px */
@media (max-width: 319px) {
    .services-main-container {
        overflow-x: hidden;
        min-height: 100vh;
        padding: 0 8px;
    }
    
    .services-hero-section {
        padding: 35px 12px 20px;
    }
    
    .services-hero-title {
        font-size: 1.6rem;
        line-height: 1.1;
        margin-bottom: 12px;
        word-break: break-word;
    }
    
    .services-hero-subtitle {
        font-size: 0.8rem;
        max-width: 250px;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .services-hero-badge {
        font-size: 9px;
        padding: 4px 10px;
        margin-bottom: 14px;
    }
    
    .services-grid-container {
        padding: 0 12px 35px;
    }
    
    .services-grid {
        gap: 14px;
        margin-top: 20px;
    }
    
    .services-card {
        width: 100%;
        max-width: 100%;
        padding: 14px 12px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .services-card-header {
        flex-direction: column;
        text-align: center;
        gap: 5px;
        margin-bottom: 8px;
    }
    
    .services-card-image {
        width: 40px;
        height: 40px;
        align-self: center;
        border-radius: 6px;
    }
    
    .services-card-title {
        font-size: 0.9rem;
        text-align: center;
        margin: 0;
        line-height: 1.2;
    }
    
    .services-card-features {
        margin-bottom: 10px;
        text-align: left;
    }
    
    .services-card-features li {
        font-size: 0.7rem;
        margin-bottom: 2px;
        padding-left: 10px;
        line-height: 1.3;
    }
    
    .services-card-features li::before {
        font-size: 0.5rem;
    }
    
    .services-card-button {
        padding: 6px 12px;
        font-size: 0.7rem;
        border-radius: 16px;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        display: block;
    }
    
    .services-cta-section {
        padding: 35px 12px;
    }
    
    .services-cta-title {
        font-size: 1.4rem;
        line-height: 1.1;
        margin-bottom: 10px;
        word-break: break-word;
    }
    
    .services-cta-card {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .services-cta-text {
        font-size: 0.8rem;
        margin-bottom: 16px;
        line-height: 1.3;
    }
    
    .services-cta-buttons {
        gap: 10px;
    }
    
    .services-cta-btn-primary,
    .services-cta-btn-secondary {
        width: 100%;
        max-width: 100%;
        padding: 9px 18px;
        font-size: 0.8rem;
        border-radius: 6px;
    }
    
    /* Minimal background elements */
    .services-bg-circle-4,
    .services-bg-circle-5 {
        display: none;
    }
    
    .services-bg-circle-1 {
        width: 60px;
        height: 60px;
        opacity: 0.3;
        top: 2%;
        left: -15%;
    }
    
    .services-bg-circle-2 {
        width: 40px;
        height: 40px;
        opacity: 0.3;
        top: 80%;
        right: -12%;
    }
    
    .services-bg-circle-3 {
        width: 80px;
        height: 80px;
        opacity: 0.3;
        bottom: 2%;
        left: 88%;
    }
}



  
  /* Contact-Page */

  .hardtools-contact-page {
    background: white;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(79, 70, 229, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(37, 99, 235, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 2px 2px, rgba(79, 70, 229, 0.15) 1px, transparent 0);
    background-size: 100% 100%, 100% 100%, 100% 100%, 40px 40px;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.hardtools-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
    z-index: 2;
}

.hardtools-contact-hero {
    text-align: center;
    margin-bottom: 80px;
    animation: hardtools-fadeInUp 1s ease-out;
}

.hardtools-contact-badge {
    display: inline-block;
    background: rgba(79, 70, 229, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    color: #4f46e5;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(79, 70, 229, 0.2);
    transition: all 0.3s ease;
}

.hardtools-contact-badge:hover {
    background: rgba(79, 70, 229, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.2);
}

.hardtools-contact-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(79, 70, 229, 0.1);
}

.hardtools-contact-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.hardtools-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.hardtools-contact-info {
    animation: hardtools-slideInLeft 1s ease-out 0.3s both;
}

.hardtools-contact-form-wrapper {
    animation: hardtools-slideInRight 1s ease-out 0.3s both;
}

.hardtools-info-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(79, 70, 229, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.08);
}

.hardtools-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.05), transparent);
    transition: left 0.6s ease;
}

.hardtools-info-card:hover::before {
    left: 100%;
}

.hardtools-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.hardtools-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    transition: transform 0.3s ease;
}

.hardtools-info-item:hover {
    transform: translateX(10px);
}

.hardtools-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.hardtools-info-icon:hover {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
}

.hardtools-info-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.hardtools-info-content h3 {
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.hardtools-info-content p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

.hardtools-contact-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(79, 70, 229, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.08);
}

.hardtools-contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.03) 0%, transparent 70%);
    animation: hardtools-rotate 20s linear infinite;
    pointer-events: none;
}

.hardtools-form-group {
    margin-bottom: 25px;
    position: relative;
}

.hardtools-form-label {
    display: block;
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.hardtools-form-input,
.hardtools-form-textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(79, 70, 229, 0.2);
    border-radius: 12px;
    color: #1e293b;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hardtools-form-input::placeholder,
.hardtools-form-textarea::placeholder {
    color: #94a3b8;
}

.hardtools-form-input:focus,
.hardtools-form-textarea:focus {
    outline: none;
    border-color: #4f46e5;
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.15);
}

.hardtools-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.hardtools-submit-btn {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.hardtools-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.hardtools-submit-btn:hover::before {
    left: 100%;
}

.hardtools-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.hardtools-submit-btn:active {
    transform: translateY(-1px);
}

.hardtools-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hardtools-floating-element {
    position: absolute;
    background: rgba(79, 70, 229, 0.08);
    border-radius: 50%;
    animation: hardtools-float 6s ease-in-out infinite;
}

.hardtools-floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hardtools-floating-element:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.hardtools-floating-element:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes hardtools-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hardtools-slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes hardtools-slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes hardtools-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes hardtools-rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Styles Only */

/* Large Desktop */
@media (max-width: 1400px) {
    .hardtools-contact-container {
        max-width: 1000px;
        padding: 50px 20px;
    }
}

/* Medium Desktop */
@media (max-width: 1200px) {
    .hardtools-contact-container {
        max-width: 900px;
        padding: 40px 20px;
    }
    
    .hardtools-contact-grid {
        gap: 40px;
    }
    
    .hardtools-contact-title {
        font-size: 3rem;
    }
}

/* Small Desktop */
@media (max-width: 1024px) {
    .hardtools-contact-container {
        padding: 30px 20px;
    }
    
    .hardtools-contact-hero {
        margin-bottom: 60px;
    }
    
    .hardtools-contact-grid {
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .hardtools-info-card,
    .hardtools-contact-form {
        padding: 30px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .hardtools-contact-container {
        padding: 20px 15px;
    }
    
    .hardtools-contact-hero {
        margin-bottom: 40px;
    }
    
    .hardtools-contact-title {
        font-size: 2.5rem;
    }
    
    .hardtools-contact-subtitle {
        font-size: 1.1rem;
        max-width: 90%;
    }
    
    .hardtools-contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .hardtools-info-card,
    .hardtools-contact-form {
        padding: 25px;
        border-radius: 20px;
    }
    
    .hardtools-info-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    
    .hardtools-info-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .hardtools-info-content h3 {
        font-size: 1.2rem;
    }
    
    .hardtools-floating-element:nth-child(1) {
        width: 60px;
        height: 60px;
    }
    
    .hardtools-floating-element:nth-child(2) {
        width: 40px;
        height: 40px;
    }
    
    .hardtools-floating-element:nth-child(3) {
        width: 70px;
        height: 70px;
    }
}

/* Large Mobile */
@media (max-width: 640px) {
    .hardtools-contact-container {
        padding: 15px 10px;
    }
    
    .hardtools-contact-badge {
        padding: 10px 20px;
        font-size: 13px;
        margin-bottom: 25px;
    }
    
    .hardtools-contact-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .hardtools-contact-subtitle {
        font-size: 1rem;
        max-width: 95%;
    }
    
    .hardtools-info-card,
    .hardtools-contact-form {
        padding: 20px;
        border-radius: 16px;
    }
    
    .hardtools-info-item {
        margin-bottom: 25px;
    }
    
    .hardtools-form-input,
    .hardtools-form-textarea {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .hardtools-form-textarea {
        min-height: 100px;
    }
    
    .hardtools-submit-btn {
        width: 100%;
        padding: 16px 30px;
        font-size: 1rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hardtools-contact-page {
        background-size: 100% 100%, 100% 100%, 100% 100%, 30px 30px;
    }
    
    .hardtools-contact-container {
        padding: 10px 8px;
    }
    
    .hardtools-contact-hero {
        margin-bottom: 30px;
    }
    
    .hardtools-contact-badge {
        padding: 8px 16px;
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .hardtools-contact-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hardtools-contact-subtitle {
        font-size: 0.95rem;
        max-width: 100%;
    }
    
    .hardtools-contact-grid {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .hardtools-info-card,
    .hardtools-contact-form {
        padding: 16px;
        border-radius: 12px;
    }
    
    .hardtools-info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .hardtools-info-icon {
        width: 45px;
        height: 45px;
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .hardtools-info-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .hardtools-info-content h3 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }
    
    .hardtools-info-content p {
        font-size: 0.9rem;
    }
    
    .hardtools-form-group {
        margin-bottom: 20px;
    }
    
    .hardtools-form-label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .hardtools-form-input,
    .hardtools-form-textarea {
        padding: 12px 14px;
        border-radius: 10px;
    }
    
    .hardtools-submit-btn {
        padding: 14px 25px;
        border-radius: 10px;
        font-size: 0.95rem;
    }
    
    /* Hide floating elements on very small screens */
    .hardtools-floating-elements {
        display: none;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .hardtools-contact-title {
        font-size: 1.6rem;
    }
    
    .hardtools-contact-subtitle {
        font-size: 0.9rem;
    }
    
    .hardtools-info-card,
    .hardtools-contact-form {
        padding: 12px;
    }
    
    .hardtools-form-input,
    .hardtools-form-textarea {
        padding: 10px 12px;
    }
    
    .hardtools-submit-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Very Small Mobile - 320px */
@media (max-width: 320px) {
    .hardtools-contact-container {
        padding: 8px 6px;
    }
    
    .hardtools-contact-badge {
        padding: 6px 12px;
        font-size: 11px;
        margin-bottom: 15px;
    }
    
    .hardtools-contact-title {
        font-size: 1.4rem;
        line-height: 1.4;
    }
    
    .hardtools-contact-subtitle {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .hardtools-contact-hero {
        margin-bottom: 25px;
    }
    
    .hardtools-contact-grid {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .hardtools-info-card,
    .hardtools-contact-form {
        padding: 10px;
        border-radius: 10px;
    }
    
    .hardtools-info-item {
        margin-bottom: 15px;
    }
    
    .hardtools-info-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }
    
    .hardtools-info-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .hardtools-info-content h3 {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .hardtools-info-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .hardtools-form-group {
        margin-bottom: 15px;
    }
    
    .hardtools-form-label {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }
    
    .hardtools-form-input,
    .hardtools-form-textarea {
        padding: 8px 10px;
        font-size: 16px;
        border-radius: 8px;
    }
    
    .hardtools-form-textarea {
        min-height: 80px;
    }
    
    .hardtools-submit-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
        border-radius: 8px;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hardtools-contact-hero {
        margin-bottom: 20px;
    }
    
    .hardtools-contact-title {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .hardtools-contact-badge {
        margin-bottom: 15px;
    }
    
    .hardtools-contact-grid {
        margin-bottom: 20px;
    }
    
    .hardtools-info-card,
    .hardtools-contact-form {
        padding: 20px;
    }
}

/* Hover states disabled on touch devices */
@media (hover: none) {
    .hardtools-contact-badge:hover,
    .hardtools-info-card:hover,
    .hardtools-info-item:hover,
    .hardtools-info-icon:hover,
    .hardtools-submit-btn:hover {
        transform: none;
        background: initial;
        box-shadow: initial;
    }
    
    .hardtools-info-card:hover::before,
    .hardtools-submit-btn:hover::before {
        left: -100%;
    }
}





/* Product-Detail Page */


.product-detail-container {
    background: white;
    min-height: 100vh;
    font-family: 'Arial', sans-serif;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.product-detail-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(74, 108, 247, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(45, 75, 212, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 40% 60%, rgba(74, 108, 247, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 70% 30%, rgba(45, 75, 212, 0.08) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 80px 80px, 120px 120px;
    background-position: 0 0, 30px 30px, 10px 10px, 50px 50px;
    animation: floatingDots 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatingDots {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(10px, -10px); }
    50% { transform: translate(-5px, 5px); }
    75% { transform: translate(5px, -5px); }
}

.product-detail-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.product-detail-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInDown 0.8s ease-out;
}

.product-detail-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4a6cf7, #2d4bd4);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(74, 108, 247, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-detail-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.product-detail-badge:hover::before {
    left: 100%;
}

.product-detail-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 108, 247, 0.4);
}

.product-detail-title {
    color: #2d4bd4;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(45, 75, 212, 0.1);
    position: relative;
}

.product-detail-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #4a6cf7, #2d4bd4);
    border-radius: 2px;
    animation: expandLine 0.8s ease-out 0.5s both;
}

@keyframes expandLine {
    from { width: 0; }
    to { width: 100px; }
}

.product-detail-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

.product-detail-image-section {
    animation: slideInLeft 0.8s ease-out;
}

.product-detail-image-container {
    background: linear-gradient(135deg, rgba(74, 108, 247, 0.1), rgba(45, 75, 212, 0.1));
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(74, 108, 247, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(74, 108, 247, 0.15);
}

.product-detail-image-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(74, 108, 247, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.product-detail-image-container:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(100%, 100%);
}

.product-detail-image-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(74, 108, 247, 0.25);
    border-color: rgba(74, 108, 247, 0.4);
}

.product-detail-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(74, 108, 247, 0.05), rgba(45, 75, 212, 0.05));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a6cf7;
    font-size: 4rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px dashed rgba(74, 108, 247, 0.3);
}

.product-detail-image::before {
    content: '🔧';
    position: absolute;
    font-size: 6rem;
    opacity: 0.1;
    animation: rotate 10s linear infinite;
}

.product-detail-image::after {
    content: '⚙️';
    position: absolute;
    font-size: 2rem;
    top: 20px;
    right: 20px;
    opacity: 0.3;
    animation: bounce 2s ease-in-out infinite;
}

.product-detail-image img{
    width: 100%;
    height: 400px;
}

.product-detail-info {
    animation: slideInRight 0.8s ease-out;
}

.product-detail-info-card {
    background: linear-gradient(135deg, rgba(74, 108, 247, 0.1), rgba(45, 75, 212, 0.1));
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid rgba(74, 108, 247, 0.2);
    height: fit-content;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(74, 108, 247, 0.15);
    position: relative;
    overflow: hidden;
}

.product-detail-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: all 0.8s ease;
}

.product-detail-info-card:hover::before {
    left: 100%;
}

.product-detail-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(74, 108, 247, 0.25);
    border-color: rgba(74, 108, 247, 0.4);
}

.product-detail-description {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.product-detail-features {
    list-style: none;
    margin-bottom: 2rem;
}

.product-detail-features li {
    color: #555;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
    transform: translateX(0);
}

.product-detail-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a6cf7;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.product-detail-features li:hover {
    transform: translateX(10px);
    color: #2d4bd4;
}

.product-detail-features li:hover::before {
    transform: scale(1.2);
    color: #2d4bd4;
}

.product-detail-sizes-section {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.product-detail-sizes-title {
    color: #2d4bd4;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(45, 75, 212, 0.1);
    position: relative;
}

.product-detail-sizes-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(135deg, #4a6cf7, #2d4bd4);
    border-radius: 2px;
    animation: expandLine 0.8s ease-out 0.8s both;
}

.product-detail-table-container {
    background: linear-gradient(135deg, rgba(74, 108, 247, 0.1), rgba(45, 75, 212, 0.1));
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(74, 108, 247, 0.2);
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(74, 108, 247, 0.15);
    position: relative;
}

.product-detail-table-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: all 1s ease;
}

.product-detail-table-container:hover::before {
    left: 100%;
}

.product-detail-table-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(74, 108, 247, 0.25);
    border-color: rgba(74, 108, 247, 0.4);
}

.product-detail-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
}

.product-detail-table th,
.product-detail-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(74, 108, 247, 0.2);
    transition: all 0.3s ease;
}

.product-detail-table th {
    background: linear-gradient(135deg, rgba(74, 108, 247, 0.2), rgba(45, 75, 212, 0.2));
    color: #2d4bd4;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.product-detail-table th::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #4a6cf7, transparent);
    transition: all 0.3s ease;
}

.product-detail-table tr:hover th::after {
    background: linear-gradient(90deg, #4a6cf7, #2d4bd4);
}

.product-detail-table td {
    color: #333;
    font-size: 0.9rem;
}

.product-detail-table tr {
    transition: all 0.3s ease;
    position: relative;
}

.product-detail-table tr:hover {
    background: rgba(74, 108, 247, 0.1);
    transform: scale(1.01);
}

.product-detail-table tr:hover td {
    color: #2d4bd4;
    font-weight: 500;
}

.product-detail-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.product-detail-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.product-detail-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.product-detail-btn:hover::before {
    left: 100%;
}

.product-detail-btn-primary {
    background: linear-gradient(135deg, #4a6cf7, #2d4bd4);
    color: white;
    box-shadow: 0 8px 20px rgba(74, 108, 247, 0.3);
}

.product-detail-btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 25px rgba(74, 108, 247, 0.4);
}

.product-detail-btn-secondary {
    background: white;
    color: #4a6cf7;
    border: 2px solid #4a6cf7;
    box-shadow: 0 4px 15px rgba(74, 108, 247, 0.2);
}

.product-detail-btn-secondary:hover {
    transform: translateY(-3px) scale(1.05);
    background: #4a6cf7;
    color: white;
    box-shadow: 0 12px 25px rgba(74, 108, 247, 0.3);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Styles for Product Detail */

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .product-detail-container {
        padding: 3rem;
    }
    
    .product-detail-title {
        font-size: 3.5rem;
    }
    
    .product-detail-main {
        gap: 5rem;
    }
    
    .product-detail-sizes-title {
        font-size: 3rem;
    }
}

/* Desktop/Laptop (992px to 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .product-detail-container {
        padding: 2.5rem;
    }
    
    .product-detail-wrapper {
        max-width: 1200px;
    }
    
    .product-detail-main {
        gap: 3.5rem;
    }
}

/* Tablet Landscape (768px to 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .product-detail-container {
        padding: 2rem 1.5rem;
    }
    
    .product-detail-title {
        font-size: 2.5rem;
    }
    
    .product-detail-main {
        gap: 3rem;
    }
    
    .product-detail-image {
        height: 350px;
        font-size: 3rem;
    }
    
    .product-detail-image::before {
        font-size: 4.5rem;
    }
    
    .product-detail-sizes-title {
        font-size: 2.2rem;
    }
    
    .product-detail-info-card {
        padding: 2rem;
    }
    
    .product-detail-table-container {
        padding: 1.5rem;
    }
    
    .product-detail-table th,
    .product-detail-table td {
        padding: 0.8rem 1rem;
    }
}

/* Tablet Portrait (576px to 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .product-detail-container {
        padding: 1.5rem 1rem;
    }
    
    .product-detail-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .product-detail-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .product-detail-image-section {
        order: 1;
    }
    
    .product-detail-info {
        order: 2;
    }
    
    .product-detail-image {
        height: 300px;
        font-size: 2.5rem;
    }
    
    .product-detail-image::before {
        font-size: 4rem;
    }
    
    .product-detail-image::after {
        font-size: 1.5rem;
        top: 15px;
        right: 15px;
    }
    
    .product-detail-info-card {
        padding: 1.8rem;
    }
    
    .product-detail-description {
        font-size: 1rem;
    }
    
    .product-detail-sizes-title {
        font-size: 2rem;
    }
    
    .product-detail-table-container {
        padding: 1.2rem;
        overflow-x: auto;
    }
    
    .product-detail-table {
        min-width: 500px;
    }
    
    .product-detail-table th,
    .product-detail-table td {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .product-detail-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .product-detail-btn {
        width: 100%;
        max-width: 300px;
        padding: 1.2rem 2rem;
    }
}

/* Mobile Large (480px to 575px) */
@media (max-width: 575px) and (min-width: 480px) {
    .product-detail-container {
        padding: 1rem 0.8rem;
    }
    
    .product-detail-header {
        margin-bottom: 2rem;
    }
    
    .product-detail-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }
    
    .product-detail-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .product-detail-title::after {
        width: 80px;
    }
    
    .product-detail-main {
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .product-detail-image-container {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .product-detail-image {
        height: 250px;
        font-size: 2rem;
        border-radius: 12px;
    }
    
    .product-detail-image::before {
        font-size: 3rem;
    }
    
    .product-detail-image::after {
        font-size: 1.2rem;
        top: 10px;
        right: 10px;
    }
    
    .product-detail-info-card {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .product-detail-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .product-detail-features li {
        padding: 0.4rem 0;
        padding-left: 1.8rem;
        font-size: 0.9rem;
    }
    
    .product-detail-features li::before {
        font-size: 1rem;
    }
    
    .product-detail-sizes-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .product-detail-sizes-title::after {
        width: 120px;
    }
    
    .product-detail-table-container {
        padding: 1rem;
        border-radius: 15px;
        overflow-x: auto;
    }
    
    .product-detail-table {
        min-width: 450px;
    }
    
    .product-detail-table th,
    .product-detail-table td {
        padding: 0.6rem 0.7rem;
        font-size: 0.8rem;
    }
    
    .product-detail-btn {
        font-size: 1rem;
        padding: 1.1rem 1.8rem;
    }
}

/* Mobile Small (320px to 479px) */
@media (max-width: 479px) {
    .product-detail-container {
        padding: 0.8rem 0.5rem;
        font-size: 14px;
    }
    
    .product-detail-container::before {
        background-size: 60px 60px, 80px 80px, 50px 50px, 70px 70px;
    }
    
    .product-detail-header {
        margin-bottom: 1.5rem;
    }
    
    .product-detail-badge {
        font-size: 0.75rem;
        padding: 0.3rem 1rem;
        border-radius: 20px;
    }
    
    .product-detail-title {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    .product-detail-title::after {
        width: 60px;
        height: 3px;
        bottom: -8px;
    }
    
    .product-detail-main {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .product-detail-image-container {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .product-detail-image {
        height: 200px;
        font-size: 1.8rem;
        border-radius: 10px;
    }
    
    .product-detail-image::before {
        font-size: 2.5rem;
    }
    
    .product-detail-image::after {
        font-size: 1rem;
        top: 8px;
        right: 8px;
    }
    
    .product-detail-image-section{
        width: 100%;
    }

    .product-detail-info-card {
        padding: 1.2rem;
        border-radius: 12px;
    }
    
    .product-detail-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }
    
    .product-detail-features {
        margin-bottom: 1.5rem;
    }
    
    .product-detail-features li {
        padding: 0.3rem 0;
        padding-left: 1.5rem;
        font-size: 0.85rem;
    }
    
    .product-detail-features li::before {
        font-size: 0.9rem;
    }
    
    .product-detail-sizes-title {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }
    
    .product-detail-sizes-title::after {
        width: 100px;
        height: 3px;
    }
    
    .product-detail-table-container {
        padding: 0.8rem;
        border-radius: 12px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .product-detail-table {
        min-width: 400px;
        font-size: 0.75rem;
    }
    
    .product-detail-table th,
    .product-detail-table td {
        padding: 0.5rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .product-detail-table th {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }
    
    .product-detail-actions {
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    
    .product-detail-btn {
        font-size: 0.9rem;
        padding: 1rem 1.5rem;
        border-radius: 40px;
        letter-spacing: 0.5px;
    }
    
    /* Disable hover effects on touch devices */
    .product-detail-image-container:hover,
    .product-detail-info-card:hover,
    .product-detail-table-container:hover {
        transform: none;
    }
    
    /* Reduce animation intensity on small screens */
    .product-detail-container::before {
        animation-duration: 30s;
    }
}

/* Extra Small Mobile (below 320px) */
@media (max-width: 319px) {
    .product-detail-container {
        padding: 0.5rem 0.3rem;
        font-size: 13px;
    }
    
    .product-detail-title {
        font-size: 1.3rem;
    }
    
    .product-detail-image {
        height: 180px;
        font-size: 1.5rem;
    }
    
    .product-detail-sizes-title {
        font-size: 1.3rem;
    }
    
    .product-detail-table {
        min-width: 350px;
    }
    
    .product-detail-table th,
    .product-detail-table td {
        padding: 0.4rem 0.5rem;
        font-size: 0.7rem;
    }
    
    .product-detail-btn {
        font-size: 0.8rem;
        padding: 0.9rem 1.3rem;
    }
}

/* Landscape orientation adjustments for mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .product-detail-container {
        padding: 1rem;
    }
    
    .product-detail-header {
        margin-bottom: 1.5rem;
    }
    
    .product-detail-title {
        font-size: 1.8rem;
    }
    
    .product-detail-image {
        height: 200px;
    }
    
    .product-detail-main {
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .product-detail-sizes-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
}

/* High DPI/Retina displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .product-detail-title,
    .product-detail-sizes-title {
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .product-detail-container::before,
    .product-detail-image::before,
    .product-detail-image::after {
        animation: none;
    }
    
    .product-detail-badge::before,
    .product-detail-image-container::before,
    .product-detail-info-card::before,
    .product-detail-table-container::before,
    .product-detail-btn::before {
        transition: none;
    }
    
    .product-detail-header,
    .product-detail-image-section,
    .product-detail-info,
    .product-detail-sizes-section {
        animation: none;
    }
}